@wick-charts/react 0.3.5 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -6
- package/dist/index.cjs +2 -2
- package/dist/index.d.ts +889 -335
- package/dist/index.js +4761 -3949
- package/package.json +3 -3
- package/src/BarSeries.tsx +18 -56
- package/src/CandlestickSeries.tsx +11 -57
- package/src/ChartContainer.tsx +97 -51
- package/src/EdgeLoader.tsx +187 -0
- package/src/LineSeries.tsx +18 -56
- package/src/PieSeries.tsx +1 -2
- package/src/index.ts +14 -4
- package/src/ui/Crosshair.tsx +5 -1
- package/src/ui/InfoBar.tsx +35 -1
- package/src/ui/Sparkline.tsx +95 -2
- package/src/ui/TimeAxis.tsx +13 -72
- package/src/ui/Title.tsx +33 -29
- package/src/ui/YAxis.tsx +11 -67
- package/src/ui/axisFade.ts +0 -23
package/dist/index.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const A=require("react"),C=require("react/jsx-runtime");var Gn=Object.defineProperty,Xs=i=>{throw TypeError(i)},Kn=(i,t,e)=>t in i?Gn(i,t,{enumerable:!0,configurable:!0,writable:!0,value:e}):i[t]=e,R=(i,t,e)=>Kn(i,typeof t!="symbol"?t+"":t,e),Qi=(i,t,e)=>t.has(i)||Xs("Cannot "+e),a=(i,t,e)=>(Qi(i,t,"read from private field"),e?e.call(i):t.get(i)),W=(i,t,e)=>t.has(i)?Xs("Cannot add the same private member more than once"):t instanceof WeakSet?t.add(i):t.set(i,e),k=(i,t,e,s)=>(Qi(i,t,"write to private field"),t.set(i,e),e),B=(i,t,e)=>(Qi(i,t,"access private method"),e),Hi=(i,t,e,s)=>({set _(n){k(i,t,n)},get _(){return a(i,t,s)}});const pe=i=>1-(1-i)**3;class Pe{constructor(t){R(this,"_current"),R(this,"_from"),R(this,"_to"),R(this,"_startTime",0),R(this,"_activeDuration"),R(this,"_defaultDuration"),R(this,"_easing"),R(this,"_lerp"),R(this,"_equals"),R(this,"_animating",!1),this._current=t.initial,this._from=t.initial,this._to=t.initial,this._defaultDuration=t.duration,this._activeDuration=t.duration,this._easing=t.easing??pe,this._lerp=t.lerp,this._equals=t.equals??Object.is}get current(){return this._current}get target(){return this._to}get animating(){return this._animating}snap(t){this._current=t,this._from=t,this._to=t,this._animating=!1}setTarget(t,e={}){const s=e.now??performance.now();if(this._animating){if(this._equals(t,this._to))return;this.tick(s)}else if(this._equals(t,this._current))return;const n=e.duration??this._defaultDuration;if(n<=0){this.snap(t);return}this._from=this._current,this._to=t,this._activeDuration=n,this._startTime=s,this._animating=!0}tick(t){if(!this._animating)return!1;const e=t-this._startTime;if(e>=this._activeDuration)return this._current=this._to,this._animating=!1,!1;const s=e<=0?0:e/this._activeDuration;return this._current=this._lerp(this._from,this._to,this._easing(s)),!0}}const ms=250,bi={streamTick:ms,fit:ms},Ii=250,be=Ii,Zi=Ii,Us=600,Gs=Ii,qn=0,Ni=Ii,ps=100;class ai{constructor(){R(this,"listeners",new Map)}on(t,e){let s=this.listeners.get(t);s||(s=new Set,this.listeners.set(t,s)),s.add(e)}off(t,e){var s;(s=this.listeners.get(t))==null||s.delete(e)}emit(t,...e){var s;(s=this.listeners.get(t))==null||s.forEach(n=>n(...e))}removeAllListeners(){this.listeners.clear()}}function bs(i,t){const e=new Map;return new Proxy(i,{get(s,n){const r=Reflect.get(s,n,s);if(typeof r!="function")return r;const o=e.get(n);if(o)return o;const l=typeof n=="string"?n:String(n),h=r,d=(...c)=>(t.set(l,(t.get(l)??0)+1),h.apply(s,c));return e.set(n,d),d},set(s,n,r){return Reflect.set(s,n,r,s)}})}function vs(i,t,e){const s=document.createElement("canvas");return s.style.position="absolute",s.style.inset="0",s.style.width="100%",s.style.height="100%",s.style.display="block",s.style.zIndex=String(t),i.appendChild(s),s}class Jn extends ai{constructor(t,e){super(),R(this,"mainCanvas"),R(this,"mainCtx"),R(this,"overlayCanvas"),R(this,"overlayCtx"),R(this,"resizeObserver"),R(this,"_size"),R(this,"supportsDevicePixelContentBox",!1),this.mainCanvas=vs(t,0),this.overlayCanvas=vs(t,1);const s=this.mainCanvas.getContext("2d",{alpha:!0}),n=this.overlayCanvas.getContext("2d",{alpha:!0});if(!s||!n)throw new Error("CanvasManager: failed to acquire 2D rendering context");this.mainCtx=e?bs(s,e.drawCallsMain):s,this.overlayCtx=e?bs(n,e.drawCallsOverlay):n;const r=window.devicePixelRatio||1;this._size={media:{width:0,height:0},bitmap:{width:0,height:0},horizontalPixelRatio:r,verticalPixelRatio:r},this.resizeObserver=new ResizeObserver(l=>{this.handleResize(l[0])});try{this.resizeObserver.observe(t,{box:"device-pixel-content-box"}),this.supportsDevicePixelContentBox=!0}catch{this.resizeObserver.observe(t,{box:"content-box"})}const o=t.getBoundingClientRect();if(o.width>0&&o.height>0){const l=window.devicePixelRatio||1,h=l,d=Math.round(o.width*l),c=Math.round(o.height*h);this.mainCanvas.width=d,this.mainCanvas.height=c,this.overlayCanvas.width=d,this.overlayCanvas.height=c,this._size={media:{width:o.width,height:o.height},bitmap:{width:d,height:c},horizontalPixelRatio:d/o.width,verticalPixelRatio:c/o.height}}}handleResize(t){var e,s;let n,r,o,l;if(this.supportsDevicePixelContentBox&&(e=t.devicePixelContentBoxSize)!=null&&e[0]){const c=t.devicePixelContentBoxSize[0];n=c.inlineSize,r=c.blockSize;const u=t.contentBoxSize[0];o=u.inlineSize,l=u.blockSize}else{const c=(s=t.contentBoxSize)==null?void 0:s[0];if(c)o=c.inlineSize,l=c.blockSize;else{const f=t.contentRect;o=f.width,l=f.height}const u=window.devicePixelRatio||1;n=Math.round(o*u),r=Math.round(l*u)}if(n===0||r===0)return;this.mainCanvas.width=n,this.mainCanvas.height=r,this.overlayCanvas.width=n,this.overlayCanvas.height=r;const h=n/o,d=r/l;this._size={media:{width:o,height:l},bitmap:{width:n,height:r},horizontalPixelRatio:h,verticalPixelRatio:d},this.emit("resize",this._size)}get size(){return this._size}useMainLayer(t){this.mainCtx.save(),t({context:this.mainCtx,bitmapSize:this._size.bitmap,mediaSize:this._size.media,horizontalPixelRatio:this._size.horizontalPixelRatio,verticalPixelRatio:this._size.verticalPixelRatio}),this.mainCtx.restore()}useOverlayLayer(t){const{width:e,height:s}=this._size.bitmap;this.overlayCtx.clearRect(0,0,e,s),this.overlayCtx.save(),t({context:this.overlayCtx,bitmapSize:this._size.bitmap,mediaSize:this._size.media,horizontalPixelRatio:this._size.horizontalPixelRatio,verticalPixelRatio:this._size.verticalPixelRatio}),this.overlayCtx.restore()}get canvas(){return this.overlayCanvas}destroy(){this.resizeObserver.disconnect(),this.mainCanvas.remove(),this.overlayCanvas.remove(),this.removeAllListeners()}}function Qn(i,t,e,s){const{context:n,bitmapSize:r,horizontalPixelRatio:o}=i;n.strokeStyle=s.crosshair.color,n.lineWidth=1,n.setLineDash([4*o,4*o]);const l=Math.round(t)+.5,h=Math.round(e)+.5;n.beginPath(),n.moveTo(l,0),n.lineTo(l,r.height),n.moveTo(0,h),n.lineTo(r.width,h),n.stroke(),n.setLineDash([])}const Zn=3,tr=8,ys=900,er=24,ir=11,sr=10,nr=18;function rr(i){const{state:t}=i;if(t==="idle"||t==="has-more")return;const e=i.timeScale.timeToX(i.boundaryTime);if(Number.isFinite(e)){if(t==="loading"){or(i,e);return}t==="no-data"&&ar(i,e)}}function or({scope:i,theme:t,chartMediaHeight:e,side:s,now:n},r){const{context:o,horizontalPixelRatio:l,verticalPixelRatio:h}=i,d=Zn*l,c=tr*l,u=er*l,f=r*l,m=s==="right"?f+u:f-u,g=e/2*h,p=n%ys/ys,v=Math.floor(p*3),w=Ks(t.axis.textColor??"#787b86",.3),x=t.axis.textColor??"#787b86";o.save();for(let y=0;y<3;y++){const M=(y-1)*c,S=m+M;o.beginPath(),o.arc(S,g,d,0,Math.PI*2),o.fillStyle=y===v?x:w,o.fill()}o.restore()}function ar({scope:i,theme:t,chartMediaHeight:e,side:s},n){const{context:r,horizontalPixelRatio:o,verticalPixelRatio:l}=i,h=Math.round(n*o)+.5;r.save(),r.strokeStyle=Ks(t.axis.textColor??"#787b86",.6),r.lineWidth=1,r.setLineDash([4*o,4*o]),r.beginPath(),r.moveTo(h,0),r.lineTo(h,e*l),r.stroke(),r.setLineDash([]);const d=sr*o,c=s==="right"?h-d:h+d,u=nr*l;r.fillStyle=t.axis.textColor??"#787b86",r.font=`${ir*o}px ${t.typography.fontFamily}`,r.textAlign=s==="right"?"right":"left",r.textBaseline="top",r.fillText("No more data",c,u),r.restore()}function Ks(i,t){const e=/^#([0-9a-f]{6})$/i.exec(i.trim());if(!e)return i;const s=parseInt(e[1].slice(0,2),16),n=parseInt(e[1].slice(2,4),16),r=parseInt(e[1].slice(4,6),16);return`rgba(${s}, ${n}, ${r}, ${t})`}function lr(i,t,e,s,n){const{context:r,bitmapSize:o,horizontalPixelRatio:l,verticalPixelRatio:h}=i;r.strokeStyle=s.grid.color,r.lineWidth=1,s.grid.style==="dashed"?r.setLineDash([4*l,4*l]):s.grid.style==="dotted"&&r.setLineDash([1*l,3*l]);const d=e.niceTickValues();r.beginPath();for(const u of d){const f=Math.round(e.valueToBitmapY(u))+.5;r.moveTo(0,f),r.lineTo(o.width,f)}r.stroke();const{ticks:c}=t.niceTickValues(n);r.beginPath();for(const u of c){const f=Math.round(t.timeToBitmapX(u))+.5;r.moveTo(f,0),r.lineTo(f,o.height)}r.stroke(),r.setLineDash([])}function Fe(i,t,e){return Math.max(t,Math.min(e,i))}function mt(i,t,e){return i+(t-i)*e}function xs(i,t,e,s){const n=Math.exp(-e*s);return t+(i-t)*n}function qs(i){return 1-(1-i)**3}function Bi(i,t,e){let s=0,n=i.length-1;for(;s<=n;){const r=s+n>>>1,o=e(i[r]);if(o<t)s=r+1;else if(o>t)n=r-1;else return r}return s}class Js extends ai{constructor(){super(...arguments),R(this,"data",[]),R(this,"_visible",!0),R(this,"cachedRange",null),R(this,"cachedResult",[])}setVisible(t){this._visible=t}isVisible(){return this._visible}setData(t){let e=!0;for(let s=1;s<t.length;s++)if(t[s].time<t[s-1].time){e=!1;break}this.data=e?t.slice():[...t].sort((s,n)=>s.time-n.time),this.cachedRange=null,this.emit("update")}append(t){if(this.data.length>0&&t.time<=this.data[this.data.length-1].time){this.updateLast(t);return}this.data.push(t),this.cachedRange=null,this.emit("update")}updateLast(t){this.data.length!==0&&(this.data[this.data.length-1]=t,this.cachedRange=null,this.emit("update"))}getAll(){return this.data}getVisibleData(t,e){if(this.data.length===0)return[];if(this.cachedRange&&this.cachedRange.from===t&&this.cachedRange.to===e)return this.cachedResult;const s=Math.max(0,Bi(this.data,t,r=>r.time)-1),n=Math.min(this.data.length,Bi(this.data,e,r=>r.time)+1);return this.cachedResult=this.data.slice(s,n),this.cachedRange={from:t,to:e},this.cachedResult}first(){return this.data[0]}last(){return this.data[this.data.length-1]}get length(){return this.data.length}isEmpty(){return this.data.length===0}findNearest(t,e){if(this.data.length===0)return null;const s=Bi(this.data,t,o=>o.time);let n=null,r=e;for(let o=Math.max(0,s-1);o<=Math.min(this.data.length-1,s+1);o++){const l=Math.abs(this.data[o].time-t);l<=r&&(r=l,n=this.data[o])}return n}}class hr{constructor(t,e,s,n=0){R(this,"dragging",!1),R(this,"lastX",0),this.viewport=t,this.timeScale=e,this.canvas=s,this.inputResponseMs=n}setInputResponseMs(t){this.inputResponseMs=Math.max(0,t)}handleMouseDown(t){t.button===0&&(this.dragging=!0,this.lastX=t.clientX,this.canvas.style.cursor="grabbing")}handleMouseMove(t){if(!this.dragging)return;const e=t.clientX-this.lastX;this.lastX=t.clientX;const s=this.timeScale.pixelDeltaToTimeDelta(-e);this.viewport.pan(s,this.timeScale.getMediaWidth(),this.inputResponseMs)}handleMouseUp(){this.dragging&&(this.dragging=!1,this.canvas.style.cursor="crosshair",this.viewport.startRebound(this.timeScale.getMediaWidth()))}isDragging(){return this.dragging}}const cr=150;class ur{constructor(t,e,s=0){R(this,"reboundTimer",null),this.viewport=t,this.timeScale=e,this.inputResponseMs=s}setInputResponseMs(t){this.inputResponseMs=Math.max(0,t)}getInputResponseMs(){return this.inputResponseMs}handleWheel(t){t.preventDefault();const e=dr(t.deltaY,t.deltaMode),s=Math.exp(e*.005),n=this.timeScale.getMediaWidth(),r=Math.min(t.offsetX,n),o=this.timeScale.xToTime(r);this.viewport.zoomAt(o,s,n,this.inputResponseMs),this.reboundTimer!==null&&clearTimeout(this.reboundTimer),this.reboundTimer=setTimeout(()=>{this.reboundTimer=null,this.viewport.startRebound(n)},cr)}cancelPendingRebound(){this.reboundTimer!==null&&(clearTimeout(this.reboundTimer),this.reboundTimer=null)}}function dr(i,t){return t===WheelEvent.DOM_DELTA_LINE?i*8:t===WheelEvent.DOM_DELTA_PAGE?i*24:i}class fr extends ai{constructor(t,e,s,n,r=0){super(),R(this,"zoom"),R(this,"pan"),R(this,"canvas"),R(this,"timeScale"),R(this,"yScale"),R(this,"viewport"),R(this,"onWheel",o=>{this.zoom.handleWheel(o)}),R(this,"onMouseDown",o=>{this.zoom.cancelPendingRebound(),this.pan.handleMouseDown(o)}),R(this,"onMouseMove",o=>{this.pan.isDragging()&&this.pan.handleMouseMove(o),this.emitCrosshair(o.offsetX,o.offsetY)}),R(this,"onMouseUp",()=>{this.pan.handleMouseUp()}),R(this,"onMouseLeave",()=>{this.pan.handleMouseUp(),this.emit("crosshairMove",null)}),R(this,"onDblClick",()=>{}),R(this,"lastTouchDist",0),R(this,"lastTouchCenter",0),R(this,"touchCount",0),R(this,"onTouchStart",o=>{o.preventDefault(),this.zoom.cancelPendingRebound(),this.touchCount=o.touches.length,o.touches.length===1?this.pan.handleMouseDown({button:0,clientX:o.touches[0].clientX}):o.touches.length===2&&(this.lastTouchDist=Math.abs(o.touches[0].clientX-o.touches[1].clientX),this.lastTouchCenter=(o.touches[0].clientX+o.touches[1].clientX)/2)}),R(this,"onTouchMove",o=>{if(o.preventDefault(),o.touches.length===1&&this.touchCount===1)this.pan.handleMouseMove({clientX:o.touches[0].clientX});else if(o.touches.length===2){const l=Math.abs(o.touches[0].clientX-o.touches[1].clientX),h=(o.touches[0].clientX+o.touches[1].clientX)/2,d=this.canvas.getBoundingClientRect();if(this.lastTouchDist>0){const c=this.lastTouchDist/l,u=this.timeScale.xToTime(h-d.left);this.viewport.zoomAt(u,c,this.timeScale.getMediaWidth(),this.zoom.getInputResponseMs())}this.lastTouchDist=l,this.lastTouchCenter=h}}),R(this,"onTouchEnd",o=>{if(o.touches.length===0){const l=this.touchCount===2;this.pan.handleMouseUp(),l&&this.viewport.startRebound(this.timeScale.getMediaWidth()),this.touchCount=0,this.lastTouchDist=0,this.emit("crosshairMove",null)}}),this.canvas=t,this.viewport=e,this.timeScale=s,this.yScale=n,this.zoom=new ur(e,s,r),this.pan=new hr(e,s,t,r),t.style.cursor="crosshair",t.style.touchAction="none",t.addEventListener("wheel",this.onWheel,{passive:!1}),t.addEventListener("mousedown",this.onMouseDown),t.addEventListener("mousemove",this.onMouseMove),t.addEventListener("mouseup",this.onMouseUp),t.addEventListener("mouseleave",this.onMouseLeave),t.addEventListener("dblclick",this.onDblClick),t.addEventListener("touchstart",this.onTouchStart,{passive:!1}),t.addEventListener("touchmove",this.onTouchMove,{passive:!1}),t.addEventListener("touchend",this.onTouchEnd)}setInputResponseMs(t){this.pan.setInputResponseMs(t),this.zoom.setInputResponseMs(t)}emitCrosshair(t,e){const s=this.timeScale.xToTime(t),n=this.yScale.yToValue(e);this.emit("crosshairMove",{mediaX:t,mediaY:e,time:s,y:n})}destroy(){this.zoom.cancelPendingRebound(),this.canvas.removeEventListener("wheel",this.onWheel),this.canvas.removeEventListener("mousedown",this.onMouseDown),this.canvas.removeEventListener("mousemove",this.onMouseMove),this.canvas.removeEventListener("mouseup",this.onMouseUp),this.canvas.removeEventListener("mouseleave",this.onMouseLeave),this.canvas.removeEventListener("dblclick",this.onDblClick),this.canvas.removeEventListener("touchstart",this.onTouchStart),this.canvas.removeEventListener("touchmove",this.onTouchMove),this.canvas.removeEventListener("touchend",this.onTouchEnd),this.removeAllListeners()}}const gr=new WeakMap;function mr(i,t){gr.set(i,t)}const pr=100,br={position:"absolute",top:"4px",right:"4px",padding:"4px 6px",background:"rgba(0, 0, 0, 0.6)",color:"#e0e0e0",font:"11px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace",borderRadius:"3px",pointerEvents:"none",zIndex:"20",whiteSpace:"pre",letterSpacing:"0.01em"};function ws(i){let t=0;for(const e of Object.values(i))t+=e;return t}const oi=9,ts=7,Ft=6,es=9;function vr(i,t){return Math.round(i*t).toLocaleString("en-US")}function Ss(i,t,e,s,n){return[i.padEnd(oi),t.toFixed(1).padStart(ts),e.toFixed(2).padStart(Ft),s.toFixed(2).padStart(Ft),vr(n,t).padStart(es)].join(" ")}function Ms(i){return[i.padEnd(oi),"—".padStart(ts),"—".padStart(Ft),"—".padStart(Ft),"idle".padStart(es)].join(" ")}function yr(){return["".padEnd(oi),"FPS".padStart(ts),"ms".padStart(Ft),"worst".padStart(Ft),"calls/s".padStart(es)].join(" ")}function xr(i){const t=ws(i.drawCalls.main),e=ws(i.drawCalls.overlay),s=i.frameCount.main===0?Ms("Main"):Ss("Main",i.mainRendersPerSec,i.mainFrameMs.last,i.mainFrameMs.p95,t),n=i.frameCount.overlay===0?Ms("Overlay"):Ss("Overlay",i.overlayRendersPerSec,i.overlayFrameMs.last,i.overlayFrameMs.p95,e),r=[yr(),s,n],o=Object.keys(i.perSeries);if(o.length>1){r.push(""),r.push("Per series (main pass)"),r.push(["".padEnd(oi),"ms".padStart(Ft),"worst".padStart(Ft)].join(" "));for(const l of o){const h=i.perSeries[l];r.push([` ${l}`.padEnd(oi),h.last.toFixed(2).padStart(Ft),h.p95.toFixed(2).padStart(Ft)].join(" "))}}return r.join(`
|
|
2
|
-
`)}class wr{constructor(t,e,s=pr){R(this,"element"),R(this,"unsubscribe"),R(this,"updateIntervalMs"),R(this,"lastUpdate",0),this.updateIntervalMs=s;for(const n of t.querySelectorAll("[data-chart-perf-hud]"))n.remove();this.element=document.createElement("div"),this.element.setAttribute("data-chart-perf-hud",""),Object.assign(this.element.style,br),this.element.textContent="perf: waiting for first frame…",t.appendChild(this.element),this.unsubscribe=e.onFrame(n=>this.onFrame(n))}destroy(){this.unsubscribe(),this.element.remove()}onFrame(t){const e=performance.now();e-this.lastUpdate<this.updateIntervalMs||(this.lastUpdate=e,this.element.textContent=xr(t))}}const Sr=5e3,Mr=2e3,kr=30;function zi(i,t,e){let s=0;for(;s<t.length&&t[s]<e;)s++;s>0&&(i.splice(0,s),t.splice(0,s))}function Ei(i,t,e){const s=i.length-e;s>0&&(i.splice(0,s),t.splice(0,s))}function Vi(i){if(i.length===0)return{last:0,p50:0,p95:0};const t=[...i].sort((e,s)=>e-s);return{last:i[i.length-1],p50:t[Math.floor(t.length*.5)]??0,p95:t[Math.floor(t.length*.95)]??0}}function ks(i){if(i.length<2)return 0;const t=i[i.length-1]-i[0];return t<=0?0:(i.length-1)*1e3/t}function Cs(i){const t={};for(const[e,s]of i)t[e]=s;return t}class Yi{constructor(t={}){R(this,"drawCallsMain",new Map),R(this,"drawCallsOverlay",new Map),R(this,"mainMs",[]),R(this,"overlayMs",[]),R(this,"mainStamps",[]),R(this,"overlayStamps",[]),R(this,"perSeriesMs",new Map),R(this,"perSeriesStamps",new Map),R(this,"listeners",new Set),R(this,"windowMs"),R(this,"maxSamples"),R(this,"heapInterval"),R(this,"heapCounter",0),R(this,"heapMb",null),R(this,"mainFrameCount",0),R(this,"overlayFrameCount",0),R(this,"lastStamp",0),this.windowMs=t.windowMs??Sr,this.maxSamples=t.maxSamples??Mr,this.heapInterval=t.heapSampleEveryNFrames??kr}resetDrawCalls(t){(t==="main"?this.drawCallsMain:this.drawCallsOverlay).clear()}recordFrame(t,e,s){if(this.lastStamp=s,t==="main"?(this.mainMs.push(e),this.mainStamps.push(s),this.mainFrameCount++,this.sampleHeap()):(this.overlayMs.push(e),this.overlayStamps.push(s),this.overlayFrameCount++),this.trimAll(s),this.listeners.size>0){const n=this.getStats();for(const r of this.listeners)r(n)}}recordSeries(t,e,s=this.lastStamp){let n=this.perSeriesMs.get(t),r=this.perSeriesStamps.get(t);(!n||!r)&&(n=[],r=[],this.perSeriesMs.set(t,n),this.perSeriesStamps.set(t,r)),n.push(e),r.push(s)}trimAll(t){const e=t-this.windowMs;zi(this.mainMs,this.mainStamps,e),zi(this.overlayMs,this.overlayStamps,e),Ei(this.mainMs,this.mainStamps,this.maxSamples),Ei(this.overlayMs,this.overlayStamps,this.maxSamples);for(const s of this.perSeriesMs.keys()){const n=this.perSeriesMs.get(s),r=this.perSeriesStamps.get(s);!n||!r||(zi(n,r,e),Ei(n,r,this.maxSamples))}}onFrame(t){return this.listeners.add(t),()=>{this.listeners.delete(t)}}getStats(){const t={};for(const[s,n]of this.perSeriesMs)t[s]=Vi(n);const e=ks(this.mainStamps);return{mainRendersPerSec:e,overlayRendersPerSec:ks(this.overlayStamps),fps:e,mainFrameMs:Vi(this.mainMs),overlayFrameMs:Vi(this.overlayMs),frameCount:{main:this.mainFrameCount,overlay:this.overlayFrameCount},drawCalls:{main:Cs(this.drawCallsMain),overlay:Cs(this.drawCallsOverlay)},perSeries:t,heapMb:this.heapMb}}destroy(){this.listeners.clear(),this.mainMs.length=0,this.overlayMs.length=0,this.mainStamps.length=0,this.overlayStamps.length=0,this.perSeriesMs.clear(),this.perSeriesStamps.clear(),this.drawCallsMain.clear(),this.drawCallsOverlay.clear(),this.mainFrameCount=0,this.overlayFrameCount=0,this.lastStamp=0,this.heapCounter=0,this.heapMb=null}sampleHeap(){if(this.heapCounter++,this.heapCounter<this.heapInterval)return;this.heapCounter=0;const t=performance.memory;this.heapMb=t?t.usedJSHeapSize/(1024*1024):null}}class mi{constructor(t){R(this,"dirty",!1),R(this,"rafId",null),R(this,"callback"),R(this,"render",e=>{this.dirty=!1,this.rafId=null,this.callback(e)}),this.callback=t}markDirty(){this.dirty||(this.dirty=!0,this.rafId=requestAnimationFrame(this.render))}destroy(){this.rafId!==null&&(cancelAnimationFrame(this.rafId),this.rafId=null),this.dirty=!1}}const ve=6e4,le=36e5,se=864e5,Bt=365*se;function ct(i){return i instanceof Date?i.getTime():i}function Cr(i){return i.length===0||!i.some(t=>t.time instanceof Date)?i:i.map(t=>({...t,time:ct(t.time)}))}function Tr(i){return i.length===0||!i.some(t=>t.time instanceof Date)?i:i.map(t=>({...t,time:ct(t.time)}))}function Qs(i){if(i.length<2)return se;const t=[];for(let e=1;e<Math.min(i.length,20);e++)t.push(i[e]-i[e-1]);return t.sort((e,s)=>e-s),t[Math.floor(t.length/2)]}function li(i,t){const e=new Date(i);return t>=Bt?e.toLocaleDateString("en-US",{year:"numeric"}):t>=se?e.toLocaleDateString("en-US",{month:"short",day:"numeric"}):t>=le?e.toLocaleTimeString("en-US",{hour:"2-digit",minute:"2-digit",hour12:!1}):e.toLocaleTimeString("en-US",{hour:"2-digit",minute:"2-digit",second:"2-digit",hour12:!1})}function Zs(i){return new Date(i).toLocaleDateString("en-US",{month:"short",day:"numeric",year:"numeric"})}function Rr(i){const t=[1e3,5e3,1e4,15e3,3e4],e=[ve,5*ve,10*ve,15*ve,30*ve],s=[le,2*le,4*le,6*le,12*le],n=[se,7*se,30*se,90*se],r=[Bt,2*Bt,5*Bt,10*Bt,25*Bt,50*Bt,100*Bt];return i<ve?[...t,...e,...s,...n,...r]:i<le?[...e,...s,...n,...r]:i<se?[...s,...n,...r]:i<Bt?[...n,...r]:r}const Lr=50,Ir=80;class tn{constructor(){R(this,"from",0),R(this,"to",0),R(this,"width",1),R(this,"pixelRatio",1),R(this,"dataInterval",null),R(this,"labelCountHintValue",null),R(this,"minSpacingValue",null),R(this,"resolvedInterval",null),R(this,"lastInterval",null),R(this,"lastWant",null),R(this,"lastBucketKey",null)}get labelCountHint(){return this.labelCountHintValue}get minLabelSpacing(){return this.minSpacingValue??Ir}update(t,e,s,n){if(this.from=t.from,this.to=t.to,this.width=e,this.pixelRatio=s,n!==void 0&&n>0){const r=Ts(n);this.lastBucketKey!==null&&this.lastBucketKey!==r&&this.resetHysteresis(),this.lastBucketKey=r,this.dataInterval=n}this.resolveInterval()}setLabelCount(t){this.labelCountHintValue=Ar(t),this.resetHysteresis(),this.resolveInterval()}setMinSpacing(t){this.minSpacingValue=Wr(t),this.resetHysteresis(),this.resolveInterval()}resetHysteresis(){this.lastInterval=null,this.lastWant=null}timeToX(t){return this.to<=this.from?0:(t-this.from)/(this.to-this.from)*this.width}timeToBitmapX(t){return Math.round(this.timeToX(t)*this.pixelRatio)}xToTime(t){return this.to<=this.from?this.from:this.from+t/this.width*(this.to-this.from)}pixelDeltaToTimeDelta(t){return this.to<=this.from?0:t/this.width*(this.to-this.from)}barWidthMedia(t){return this.to<=this.from?0:t/(this.to-this.from)*this.width}barWidthBitmap(t){return Math.max(1,Math.round(this.barWidthMedia(t)*this.pixelRatio))}niceTickValues(t){if(this.to<=this.from)return{ticks:[],tickInterval:0};if(this.dataInterval!==t){const o=Ts(t);this.lastBucketKey!==null&&this.lastBucketKey!==o&&this.resetHysteresis(),this.lastBucketKey=o,this.dataInterval=t,this.resolveInterval()}if(this.resolvedInterval==null)return{ticks:[],tickInterval:0};const e=this.resolvedInterval,s=Math.ceil(this.from/e)*e,n=Math.max(0,Math.min(Lr,Math.floor((this.to-s)/e)+1)),r=[];for(let o=0;o<n;o++)r.push(s+o*e);return{ticks:r,tickInterval:e}}getRange(){return{from:this.from,to:this.to}}getMediaWidth(){return this.width}resolveInterval(){if(this.to<=this.from||this.width<=0||this.dataInterval==null||this.dataInterval<=0){this.resolvedInterval=null;return}const t=Rr(this.dataInterval),e=this.to-this.from,s=e/this.width*this.minLabelSpacing;let n;if(this.labelCountHint!=null){const l=Math.max(1,this.labelCountHint);n=Math.max(e/l,s)}else n=s;if(this.lastInterval!=null&&this.lastWant!=null&&t.includes(this.lastInterval)){const l=n>=this.lastWant*.8&&n<=this.lastWant*1.25,h=this.lastInterval>=s;if(l&&h){this.resolvedInterval=this.lastInterval;return}}let r=t[t.length-1],o=t.length-1;for(let l=0;l<t.length;l++)if(t[l]>=n){r=t[l],o=l;break}if(this.labelCountHint!=null&&o>0&&this.countTicks(r)<this.labelCountHint){const l=t[o-1];l>=s&&(r=l)}this.resolvedInterval=r,this.lastInterval=r,this.lastWant=n}countTicks(t){if(!(t>0))return 0;const e=Math.ceil(this.from/t)*t;return Math.max(0,Math.floor((this.to-e)/t)+1)}}function Ts(i){return i<6e4?0:i<36e5?1:i<864e5?2:3}function Ar(i){return typeof i=="number"&&Number.isFinite(i)&&i>=2?Math.floor(i):null}function Wr(i){return typeof i=="number"&&Number.isFinite(i)&&i>0?i:null}function en(i){const t=Math.abs(i);if(t===0)return"0";if(t<1e-12)return i.toExponential(2);const e=Math.max(0,Math.ceil(-Math.log10(t))-1),s=Math.min(12,e+4),n=i.toFixed(s);return n.includes(".")?n.replace(/\.?0+$/,""):n}function sn(i){return Number.isNaN(i)?"—":i===1/0?"∞":i===-1/0?"−∞":null}function ae(i,t){const e=sn(i);if(e!==null)return e;const s=Math.abs(i),n=(t==null?void 0:t.decimals)??2,r=(o,l,h)=>{const d=o/l,c=Number.parseFloat(d.toFixed(n));return Math.abs(c)>=1e3?null:`${d.toFixed(n)}${h}`};return s>=1e15?i.toExponential(2):s>=1e12?r(i,1e12,"T")??i.toExponential(2):s>=1e9?r(i,1e9,"B")??`${(i/1e12).toFixed(n)}T`:s>=1e6?r(i,1e6,"M")??`${(i/1e9).toFixed(n)}B`:s>=1e3?r(i,1e3,"K")??`${(i/1e6).toFixed(n)}M`:s<1?en(i):s<100?i.toFixed(2):i.toFixed(0)}function is(i){const t=sn(i);if(t!==null)return t;const e=Math.abs(i);return e===0?"0":e<1?en(i):e<100?i.toFixed(4):e>=1e7?ae(i):e<1e4?i.toFixed(2):i.toFixed(0)}function Dr(i){if(!Number.isFinite(i)||i<=0)return 1;const t=10**Math.floor(Math.log10(i)),e=i/t;return(e<=1?1:e<=2?2:e<=5?5:10)*t}function Fr(i){if(!Number.isFinite(i)||i<=0)return 1;const t=10**Math.floor(Math.log10(i)),e=i/t;return(e>=5?5:e>=2?2:1)*t}const Pr=50,Br=50;class nn{constructor(){R(this,"min",0),R(this,"max",0),R(this,"height",1),R(this,"pixelRatio",1),R(this,"labelCountHintValue",null),R(this,"minSpacingValue",null),R(this,"resolvedInterval",null),R(this,"lastInterval",null),R(this,"lastRawInterval",null),R(this,"customFormat",null)}get labelCountHint(){return this.labelCountHintValue}get minLabelSpacing(){return this.minSpacingValue??Br}update(t,e,s){this.min=t.min,this.max=t.max,this.height=e,this.pixelRatio=s,this.resolveInterval()}setLabelCount(t){this.labelCountHintValue=zr(t),this.resetHysteresis(),this.resolveInterval()}setMinSpacing(t){this.minSpacingValue=Er(t),this.resetHysteresis(),this.resolveInterval()}resetHysteresis(){this.lastInterval=null,this.lastRawInterval=null}setFormat(t){this.customFormat=t}getFormat(){return this.customFormat}valueToY(t){const e=this.max-this.min;return e===0?this.height/2:(1-(t-this.min)/e)*this.height}valueToBitmapY(t){return Math.round(this.valueToY(t)*this.pixelRatio)}yToValue(t){const e=this.max-this.min;return e===0?this.min:this.max-t/this.height*e}niceTickValues(){if(this.resolvedInterval==null)return[];const t=this.resolvedInterval,e=Math.ceil(this.min/t)*t,s=Math.max(0,Math.min(Pr,Math.floor((this.max-e)/t)+1)),n=[];for(let r=0;r<s;r++)n.push(e+r*t);return n}getRange(){return{min:this.min,max:this.max}}getMediaHeight(){return this.height}formatY(t){if(this.customFormat)return this.customFormat(t);if(this.max-this.min>=1e6)return ae(t);const e=this.resolvedInterval,s=e!=null&&e>0?Math.max(0,-Math.floor(Math.log10(e))):1;return t.toFixed(s)}resolveInterval(){if(this.max<=this.min||this.height<=0){this.resolvedInterval=null;return}const t=this.max-this.min,e=t*this.minLabelSpacing/this.height,s=this.labelCountHint!=null?Math.max(1,this.labelCountHint):Math.max(1,Math.floor(this.height/this.minLabelSpacing));let n=t/s;if(n<e&&(n=e),this.lastInterval!=null&&this.lastRawInterval!=null){const o=n>=this.lastRawInterval*.8&&n<=this.lastRawInterval*1.25,l=this.lastInterval>=e;if(o&&l){this.resolvedInterval=this.lastInterval;return}}let r=Dr(n);if(this.labelCountHint!=null&&this.countTicks(r)<this.labelCountHint){const o=Fr(n);o>=e&&o>0&&(r=o)}this.resolvedInterval=r,this.lastInterval=r,this.lastRawInterval=n}countTicks(t){if(!(t>0))return 0;const e=Math.ceil(this.min/t)*t;return Math.max(0,Math.floor((this.max-e)/t)+1)}}function zr(i){return typeof i=="number"&&Number.isFinite(i)&&i>=2?Math.floor(i):null}function Er(i){return typeof i=="number"&&Number.isFinite(i)&&i>0?i:null}function oe(i,t){return i===!1?0:i===void 0?t:i}function Vr(i,t,e,s){const n=i==null?void 0:i.get(t);if(!n)return 1;if(s<=0)return i==null||i.delete(t),1;const r=Fe((e-n.startTime)/s,0,1),o=qs(r);return r>=1&&(i==null||i.delete(t)),o}function Yr(i){let t=0,e=0;for(const s of i)s>0?t+=s:s<0&&(e+=s);return{positive:t,negative:e}}function jr(i){return i.positive>0?i.positive:i.negative<0?i.negative:0}function _r(i){return i.positive>0?100:i.negative<0?-100:0}const Or=16,Hr=(i,t,e)=>i+(t-i)*e;var xt,zt,he;class rn{constructor(t){R(this,"stores"),W(this,xt),W(this,zt),W(this,he,0),R(this,"entries"),this.stores=Array.from({length:t},()=>new Js),k(this,xt,new Array(t).fill(null)),k(this,zt,new Array(t).fill(Number.NaN)),this.entries=Array.from({length:t},()=>new Map)}get displayedLastValues(){return a(this,xt).map(t=>(t==null?void 0:t.current)??null)}get lastSeededTimes(){return a(this,zt)}getColor(){return this.getCommonOptions().colors[0]}getColors(){return this.getCommonOptions().colors}setData(t,e=0){var s;const n=this.stores[e];if(!n)return;const r=Tr(t??[]);n.setData(r),(s=this.entries[e])==null||s.clear()}appendPoint(t,e=0){var s;const n=this.stores[e];if(!n)return;const r=t,o=ct(r.time),l=this.createEntry(e,o,performance.now());n.append({...r,time:o}),l&&((s=this.entries[e])==null||s.set(o,l))}updateLastPoint(t,e=0){const s=this.stores[e];if(!s)return;const n=t;s.updateLast({...n,time:ct(n.time)})}getLayerCount(){return this.stores.length}setLayerVisible(t,e){var s;(s=this.stores[t])==null||s.setVisible(e)}isLayerVisible(t){var e;return((e=this.stores[t])==null?void 0:e.isVisible())??!0}getLayerColors(){return this.getColors()}onDataChanged(t){for(const e of this.stores)e.on("update",t);return()=>{for(const e of this.stores)e.off("update",t)}}dispose(){for(const t of this.stores)t.removeAllListeners();for(const t of this.entries)t.clear();for(let t=0;t<a(this,xt).length;t++)a(this,xt)[t]=null,a(this,zt)[t]=Number.NaN;k(this,he,0)}cancelEntranceAnimations(){for(const t of this.entries)t.clear()}get needsAnimation(){for(const t of this.entries)if(t.size>0)return!0;for(const t of a(this,xt))if(t!=null&&t.animating)return!0;return!1}advanceLiveTracking(t){if(t===a(this,he))return;const e=oe(this.getCommonOptions().smoothMs,Zi),s=a(this,he)?Math.min(t-a(this,he),Or):0,n=t-s;for(let r=0;r<this.stores.length;r++){const o=this.stores[r].last();if(!o){a(this,xt)[r]=null,a(this,zt)[r]=Number.NaN;continue}const l=a(this,zt)[r]!==o.time,h=a(this,xt)[r];if(h===null||l||e<=0){a(this,xt)[r]=new Pe({initial:o.value,duration:e>0?e:0,easing:pe,lerp:Hr}),a(this,zt)[r]=o.time;continue}h.setTarget(o.value,{duration:e,now:n}),h.tick(t)}k(this,he,t)}entranceProgress(t,e,s){const n=oe(this.getCommonOptions().entryMs,be);return Vr(this.entries[t],e,s,n)}effectiveValue(t,e,s){var n;if(a(this,zt)[t]!==e)return s;const r=(n=a(this,xt)[t])==null?void 0:n.current;return r===void 0?s:r}getLastValue(){for(let t=this.stores.length-1;t>=0;t--){const e=this.stores[t].last();if(e)return e.value}return null}getDataAtTime(t,e){var s;return((s=this.stores[0])==null?void 0:s.findNearest(t,e))??null}getLayerSnapshots(t,e){if(this.stores.length<=1)return null;const s=this.getColors(),n=[];for(let r=0;r<this.stores.length;r++){if(!this.stores[r].isVisible())continue;const o=this.stores[r].getVisibleData(t-e,t+e);if(o.length===0)continue;let l=o[0],h=Math.abs(o[0].time-t);for(let d=1;d<o.length;d++){const c=Math.abs(o[d].time-t);c<=h&&(h=c,l=o[d])}n.push({layerIndex:r,time:l.time,value:l.value,color:s[r%s.length]})}return n.length>0?n:null}getStackedLastValue(){var t;if(this.stores.length<=1){const o=(t=this.stores[0])==null?void 0:t.last();return o?{value:o.value,isLive:!0}:null}let e=-1/0;for(const o of this.stores){if(!o.isVisible())continue;const l=o.last();l&&l.time>e&&(e=l.time)}if(e===-1/0)return null;const s=this.getCommonOptions().stacking;if(s==="off"){for(let o=this.stores.length-1;o>=0;o--){if(!this.stores[o].isVisible())continue;const l=this.stores[o].last();if(l)return{value:l.value,isLive:!0}}return null}const n=[];for(const o of this.stores){if(!o.isVisible())continue;const l=o.last();n.push(l&&l.time===e?l.value:0)}const r=Yr(n);return{value:s==="percent"?_r(r):jr(r),isLive:!0}}getLayerLastSnapshots(){if(this.stores.length<=1)return null;const t=this.getColors(),e=[];for(let s=0;s<this.stores.length;s++){if(!this.stores[s].isVisible())continue;const n=this.stores[s].last();n&&e.push({layerIndex:s,time:n.time,value:n.value,color:t[s%t.length]})}return e.length>0?e:null}getTotalLength(){let t=0;for(const e of this.stores)t+=e.length;return t}getValueRange(t,e){const s=this.getCommonOptions().stacking;if(s==="percent")return{min:0,max:100};if(this.stores.length<=1)return null;const n=this.stores.map(h=>h.isVisible()?h.getVisibleData(t,e):[]);if(s==="off"){let h=1/0,d=-1/0;for(const c of n)for(const u of c)Number.isFinite(u.value)&&(u.value<h&&(h=u.value),u.value>d&&(d=u.value));return h<1/0?{min:h,max:d}:null}const r=new Map;for(let h=0;h<n.length;h++)for(const d of n[h]){let c=r.get(d.time);c||(c=new Array(n.length).fill(0),r.set(d.time,c)),c[h]=Number.isFinite(d.value)?d.value:0}let o=0,l=0;for(const h of r.values()){let d=0,c=0;for(const u of h)u>0?d+=u:c+=u;d>l&&(l=d),c<o&&(o=c)}return l>o?{min:o,max:l}:null}}xt=new WeakMap,zt=new WeakMap,he=new WeakMap;const Nr={colors:["#26a69a","#ef5350"],barWidthRatio:.6,stacking:"off"};function Rs(i){if(!i)return{};const t={...i};return i.enterAnimation!==void 0&&i.entryAnimation===void 0&&(t.entryAnimation=i.enterAnimation),i.enterMs!==void 0&&i.entryMs===void 0&&(t.entryMs=i.enterMs),t}class $r extends rn{constructor(t,e){super(t),R(this,"options"),this.options={...Nr,...Rs(e)}}get store(){return this.stores[0]}updateOptions(t){this.options={...this.options,...Rs(t)}}getCommonOptions(){return this.options}createEntry(t,e,s){const n=this.options.entryAnimation??"fade-grow",r=oe(this.options.entryMs,be);return n==="none"||r<=0?null:{startTime:s}}applyTheme(t,e){const s=e.seriesColors,n=this.options.colors.map((r,o)=>r===s[o]?t.seriesColors[o]??r:r);this.updateOptions({colors:n})}applyBarTransform(t,e,s,n,r,o){const l=this.options.entryAnimation??"fade-grow";if(t>=1||l==="none")return{topY:s,barHeight:n,x:r,barWidth:o,alpha:1};let h=s,d=n,c=r,u=1;if((l==="fade"||l==="fade-grow")&&(u=t),l==="grow"||l==="fade-grow"){const f=n*t;s<e?h=e-f:h=e,d=Math.max(1,f)}return l==="slide"&&(c=r+(1-t)*o,u=t),{topY:h,barHeight:d,x:c,barWidth:o,alpha:u}}render(t){switch(this.advanceLiveTracking(performance.now()),this.options.stacking){case"normal":this.renderStacked(t,!1);break;case"percent":this.renderStacked(t,!0);break;default:this.renderOff(t);break}}renderOff(t){const{scope:e,timeScale:s,yScale:n,dataInterval:r}=t,{context:o,horizontalPixelRatio:l}=e,h=s.getRange(),d=performance.now();let c=0;for(const x of this.stores){if(!x.isVisible())continue;const y=x.getVisibleData(h.from,h.to).length;if(y>c&&(c=y),c>2)break}const u=s.barWidthBitmap(r),f=Math.round(30*l),m=c<=2?Math.min(f,u):u,g=Math.max(1,Math.round(m*this.options.barWidthRatio)-2),p=Math.floor(g/2),v=n.getRange().min<0,w=v?n.valueToBitmapY(0):e.bitmapSize.height;if(this.stores.length===1){if(!this.stores[0].isVisible())return;const x=this.options.colors[0],y=this.options.colors.length>1?this.options.colors[1]:x,M=this.stores[0].getVisibleData(h.from,h.to);for(const S of M){if(!Number.isFinite(S.value))continue;const P=this.effectiveValue(0,S.time,S.value),b=this.entranceProgress(0,S.time,d),L=s.timeToBitmapX(S.time);if(P>=0){const I=n.valueToBitmapY(P),T=Math.max(1,w-I);this.drawAnimatedBar(o,b,w,I,T,L-p,g,P>=0?x:y)}else{const I=n.valueToBitmapY(P),T=Math.max(1,I-w);this.drawAnimatedBar(o,b,w,w,T,L-p,g,y)}}}else{const x=this.stores.map(M=>M.isVisible()?M.getVisibleData(h.from,h.to):[]),y=new Map;for(let M=0;M<x.length;M++)for(const S of x[M]){if(!Number.isFinite(S.value))continue;let P=y.get(S.time);P||(P=[],y.set(S.time,P)),P.push({layer:M,value:this.effectiveValue(M,S.time,S.value)})}for(const[M,S]of y){S.sort((b,L)=>Math.abs(L.value)-Math.abs(b.value));const P=s.timeToBitmapX(M);for(const{layer:b,value:L}of S){const I=this.options.colors[b%this.options.colors.length],T=this.entranceProgress(b,M,d);if(L>=0){const D=n.valueToBitmapY(L),F=Math.max(1,w-D);this.drawAnimatedBar(o,T,w,D,F,P-p,g,I)}else{const D=n.valueToBitmapY(L),F=Math.max(1,D-w);this.drawAnimatedBar(o,T,w,w,F,P-p,g,I)}}}}if(v){o.strokeStyle=t.theme.grid.color,o.lineWidth=1;const x=Math.round(w)+.5;o.beginPath(),o.moveTo(0,x),o.lineTo(e.bitmapSize.width,x),o.stroke()}}renderStacked(t,e){const{scope:s,timeScale:n,yScale:r,dataInterval:o}=t,{context:l,horizontalPixelRatio:h}=s,d=n.getRange(),c=performance.now();let u=0;for(const y of this.stores){if(!y.isVisible())continue;const M=y.getVisibleData(d.from,d.to).length;if(M>u&&(u=M),u>2)break}const f=n.barWidthBitmap(o),m=Math.round(30*h),g=u<=2?Math.min(m,f):f,p=Math.max(1,Math.round(g*this.options.barWidthRatio)-2),v=Math.floor(p/2),w=this.stores.map(y=>y.isVisible()?y.getVisibleData(d.from,d.to):[]);if(w.every(y=>y.length===0))return;const x=new Map;for(let y=0;y<w.length;y++)for(const M of w[y]){let S=x.get(M.time);S||(S=new Array(w.length).fill(0),x.set(M.time,S));const P=Number.isFinite(M.value)?M.value:0;S[y]=this.stores[y].isVisible()?this.effectiveValue(y,M.time,P):0}for(let y=0;y<w.length;y++){const M=this.options.colors[y%this.options.colors.length];for(const[S,P]of x){const b=P[y];if(b===0)continue;const L=n.timeToBitmapX(S);let I=0,T=0;for(let F=0;F<y;F++){const V=P[F];V>0?I+=V:T+=V}const D=this.entranceProgress(y,S,c);if(e){let F=0,V=0;for(const z of P)z>0?F+=z:V+=z;if(b>0&&F>0){const z=I/F*100,_=(I+b)/F*100,$=r.valueToBitmapY(_),H=r.valueToBitmapY(z),it=Math.max(1,H-$);this.drawAnimatedBar(l,D,H,$,it,L-v,p,M)}else if(b<0&&V<0){const z=T/V*-100,_=(T+b)/V*-100,$=r.valueToBitmapY(z),H=r.valueToBitmapY(_),it=Math.max(1,H-$);this.drawAnimatedBar(l,D,$,$,it,L-v,p,M)}}else if(b>0){const F=r.valueToBitmapY(I+b),V=r.valueToBitmapY(I),z=Math.max(1,V-F);this.drawAnimatedBar(l,D,V,F,z,L-v,p,M)}else{const F=r.valueToBitmapY(T),V=r.valueToBitmapY(T+b),z=Math.max(1,V-F);this.drawAnimatedBar(l,D,F,F,z,L-v,p,M)}}}}fillBar(t,e,s,n,r,o){t.fillStyle=o,t.fillRect(e,s,n,r)}drawAnimatedBar(t,e,s,n,r,o,l,h){const d=this.options.entryAnimation??"fade-grow";if(e>=1||d==="none"){this.fillBar(t,o,n,l,r,h);return}const c=this.applyBarTransform(e,s,n,r,o,l);t.save(),t.globalAlpha=c.alpha,t.fillStyle=h,t.fillRect(c.x,c.topY,c.barWidth,c.barHeight),t.restore()}}function Ls(i,t){return i.length<=t?i:Ur(i,t,e=>e.time,e=>e.value)}function Xr(i,t){if(i.length<=t)return i;const e=Math.ceil(i.length/t),s=[];for(let n=0;n<i.length;n+=e){const r=Math.min(n+e,i.length);let o=-1/0,l=1/0,h=0;for(let d=n;d<r;d++)i[d].high>o&&(o=i[d].high),i[d].low<l&&(l=i[d].low),h+=i[d].volume??0;s.push({time:i[n].time,open:i[n].open,high:o,low:l,close:i[r-1].close,volume:h})}return s}function Ur(i,t,e,s){if(t>=i.length||t<3)return i;const n=[i[0]],r=(i.length-2)/(t-2);let o=0;for(let l=0;l<t-2;l++){const h=Math.floor((l+1)*r)+1,d=Math.min(Math.floor((l+2)*r)+1,i.length-1);let c=0,u=0;const f=d,m=Math.min(Math.floor((l+3)*r)+1,i.length),g=m-f;if(g>0){for(let y=f;y<m;y++)c+=e(i[y]),u+=s(i[y]);c/=g,u/=g}let p=-1,v=h;const w=e(i[o]),x=s(i[o]);for(let y=h;y<d;y++){const M=Math.abs((w-c)*(s(i[y])-x)-(w-e(i[y]))*(u-x));M>p&&(p=M,v=y)}n.push(i[v]),o=v}return n.push(i[i.length-1]),n}function ss(i,t){var e,s;return t==="x"&&((e=i.axis.x)==null?void 0:e.fontSize)!==void 0?i.axis.x.fontSize:t==="y"&&((s=i.axis.y)==null?void 0:s.fontSize)!==void 0?i.axis.y.fontSize:i.axis.fontSize}function ns(i,t){var e,s;return t==="x"&&((e=i.axis.x)==null?void 0:e.textColor)!==void 0?i.axis.x.textColor:t==="y"&&((s=i.axis.y)==null?void 0:s.textColor)!==void 0?i.axis.y.textColor:i.axis.textColor}function pt(i){return Array.isArray(i)?i.source??i[0]:i}const Is=new Map;function Gr(i){return[parseInt(i.slice(1,3),16),parseInt(i.slice(3,5),16),parseInt(i.slice(5,7),16)]}function Ae(i,t){if(i.startsWith("rgba"))return i.replace(/[\d.]+\)\s*$/,`${t})`);if(i.startsWith("rgb("))return i.replace(/^rgb\((.*)\)$/i,`rgba($1, ${t})`);const e=i+t;let s=Is.get(e);if(s)return s;const[n,r,o]=Gr(i);return s=`rgba(${n}, ${r}, ${o}, ${t})`,Is.set(e,s),s}const Kr=(i,t,e)=>({time:t.time,open:i.open+(t.open-i.open)*e,high:i.high+(t.high-i.high)*e,low:i.low+(t.low-i.low)*e,close:i.close+(t.close-i.close)*e,volume:i.volume===void 0||t.volume===void 0?t.volume:i.volume+(t.volume-i.volume)*e}),qr=(i,t)=>i.time===t.time&&i.open===t.open&&i.high===t.high&&i.low===t.low&&i.close===t.close&&i.volume===t.volume,Jr={up:{body:"#26a69a",wick:"#26a69a"},down:{body:"#ef5350",wick:"#ef5350"},bodyWidthRatio:.6};function As(i){if(!i)return{};const t={...i};return i.enterAnimation!==void 0&&i.entryAnimation===void 0&&(t.entryAnimation=i.enterAnimation),i.enterMs!==void 0&&i.entryMs===void 0&&(t.entryMs=i.enterMs),t}var kt,we,Se;class Qr{constructor(t,e){R(this,"store"),R(this,"options"),W(this,kt,null),W(this,we,Number.NaN),W(this,Se,0),R(this,"entries",new Map),this.store=t,this.options={...Jr,...As(e)}}get displayedLast(){var t;return((t=a(this,kt))==null?void 0:t.current)??null}updateOptions(t){this.options={...this.options,...As(t)}}getColor(){return pt(this.options.up.body)}setData(t){this.store.setData(Cr(t??[])),this.entries.clear()}appendPoint(t){const e=t,s=ct(e.time);this.store.append({...e,time:s});const n=this.options.entryAnimation??"unfold",r=oe(this.options.entryMs,be);n!=="none"&&r>0&&this.entries.set(s,{startTime:performance.now()})}updateLastPoint(t){const e=t;this.store.updateLast({...e,time:ct(e.time)})}getLayerCount(){return 1}setLayerVisible(t,e){}isLayerVisible(t){return!0}getLayerColors(){return[pt(this.options.up.body)]}applyTheme(t,e){this.updateOptions({up:{...t.candlestick.up},down:{...t.candlestick.down}})}onDataChanged(t){return this.store.on("update",t),()=>this.store.off("update",t)}dispose(){this.store.removeAllListeners(),k(this,kt,null),k(this,we,Number.NaN),k(this,Se,0),this.entries.clear()}getLastValue(){const t=this.store.last();return t?t.close:null}getDataAtTime(t,e){return this.store.findNearest(t,e)}cancelEntranceAnimations(){this.entries.clear()}get needsAnimation(){var t;return!!(this.entries.size>0||(t=a(this,kt))!=null&&t.animating)}entranceProgress(t,e){const s=this.entries.get(t);if(!s)return 1;const n=oe(this.options.entryMs,be);if(n<=0)return this.entries.delete(t),1;const r=Fe((e-s.startTime)/n,0,1),o=qs(r);return r>=1&&this.entries.delete(t),o}advanceLiveTracking(t){const e=this.store.last();if(!e){k(this,kt,null),k(this,we,Number.NaN);return}const s=a(this,we)!==e.time,n=oe(this.options.smoothMs,Zi);if(a(this,kt)===null||s||n<=0){k(this,kt,new Pe({initial:{...e},duration:n>0?n:0,easing:pe,lerp:Kr,equals:qr})),k(this,we,e.time),k(this,Se,t);return}const r=Math.min(t-a(this,Se),16),o=t-r;a(this,kt).setTarget(e,{duration:n,now:o}),a(this,kt).tick(t),k(this,Se,t)}render(t){const{scope:e,timeScale:s,yScale:n,dataInterval:r}=t,{context:o,horizontalPixelRatio:l}=e,h=s.getRange(),d=performance.now();this.advanceLiveTracking(d);let c=this.store.getVisibleData(h.from,h.to);const u=e.mediaSize.width,f=c.length>u*2;if(f&&(c=Xr(c,Math.round(u*1.5)),this.entries.clear()),c.length===0)return;if(!f&&this.displayedLast){const L=c.length-1;c[L].time===this.displayedLast.time&&(c=[...c.slice(0,L),this.displayedLast])}const m=this.entries.size>0?new Map:null;if(m)for(const L of c)this.entries.has(L.time)&&m.set(L.time,this.entranceProgress(L.time,d));const g=s.barWidthBitmap(r),p=Math.round(30*l),v=c.length<=2?Math.min(p,g):g,w=Math.max(1,Math.round(l));let x=Math.max(1,Math.round(v*this.options.bodyWidthRatio)-2);(x&1)!==(w&1)&&(x=x>1?x-1:2);const y=Math.floor(x/2),M=Math.round(n.getMediaHeight()*e.verticalPixelRatio);this.drawVolume({ctx:o,data:c,timeScale:s,chartHeight:M,barWidth:v,wickWidth:w,entranceByTime:m});const S=[],P=[];for(const L of c)L.close>=L.open?S.push(L):P.push(L);const b={ctx:o,timeScale:s,yScale:n,halfBody:y,bodyWidth:x,wickWidth:w,entranceByTime:m};this.drawCandles({...b,candles:S,body:this.options.up.body,wickColor:this.options.up.wick}),this.drawCandles({...b,candles:P,body:this.options.down.body,wickColor:this.options.down.wick})}drawVolume({ctx:t,data:e,timeScale:s,chartHeight:n,barWidth:r,wickWidth:o,entranceByTime:l}){let h=0;for(const p of e)Number.isFinite(p.volume)&&p.volume>h&&(h=p.volume);if(h===0)return;const d=n*.2;let c=Math.max(1,r-2);(c&1)!==(o&1)&&(c=c>1?c-1:2);const u=Math.floor(c/2),f=Ae(pt(this.options.up.body),.2),m=Ae(pt(this.options.down.body),.2),g=this.options.entryAnimation??"unfold";for(const p of e){if(!Number.isFinite(p.volume)||p.volume<=0)continue;const v=p.volume,w=s.timeToBitmapX(p.time),x=Math.max(1,v/h*d),y=p.close>=p.open;t.fillStyle=y?f:m;const M=(l==null?void 0:l.get(p.time))??1;if(M>=1||g==="none"){t.fillRect(w-u,n-x,c,x);continue}const S=ji(M,g,{x:w-u,barWidth:c,anchorY:n,topY:n-x,bottomY:n});t.save(),t.globalAlpha=S.alpha,t.fillRect(S.x,S.topY,c,Math.max(1,S.bottomY-S.topY)),t.restore()}}drawCandles({ctx:t,candles:e,timeScale:s,yScale:n,halfBody:r,bodyWidth:o,wickWidth:l,body:h,wickColor:d,entranceByTime:c}){if(e.length===0)return;const u=this.options.entryAnimation??"unfold",f=o+2;t.fillStyle=d;for(const g of e){const p=(c==null?void 0:c.get(g.time))??1,v=s.timeToBitmapX(g.time),w=n.valueToBitmapY(g.open),x=n.valueToBitmapY(g.high),y=n.valueToBitmapY(g.low),M=v-Math.floor(l/2);if(p>=1||u==="none"){t.fillRect(M,x,l,y-x);continue}const S=ji(p,u,{x:M,barWidth:f,anchorY:w,topY:x,bottomY:y});t.save(),t.globalAlpha=S.alpha,t.fillRect(S.x,S.topY,l,Math.max(1,S.bottomY-S.topY)),t.restore()}const m=Array.isArray(h);for(const g of e){const p=(c==null?void 0:c.get(g.time))??1,v=s.timeToBitmapX(g.time),w=n.valueToBitmapY(g.open),x=n.valueToBitmapY(g.close),y=Math.min(w,x),M=Math.max(w,x),S=Math.max(1,M-y),P=p<1&&u!=="none";let b=v-r,L=y,I=S,T=1;if(P){const D=ji(p,u,{x:v-r,barWidth:f,anchorY:w,topY:y,bottomY:M});b=D.x,L=D.topY,I=Math.max(1,D.bottomY-D.topY),T=D.alpha}if(P&&t.save(),m&&I>2){const D=t.createLinearGradient(0,L,0,L+I);D.addColorStop(0,h[0]),D.addColorStop(1,h[1]),t.fillStyle=D}else t.fillStyle=m?h[0]:h;P&&(t.globalAlpha=T),t.fillRect(b,L,o,I),P&&t.restore()}}}kt=new WeakMap,we=new WeakMap,Se=new WeakMap;function ji(i,t,e){switch(t){case"none":return{x:e.x,topY:e.topY,bottomY:e.bottomY,alpha:1};case"fade":return{x:e.x,topY:e.topY,bottomY:e.bottomY,alpha:i};case"unfold":return{x:e.x,topY:mt(e.anchorY,e.topY,i),bottomY:mt(e.anchorY,e.bottomY,i),alpha:1};case"slide":return{x:e.x+(1-i)*e.barWidth,topY:e.topY,bottomY:e.bottomY,alpha:i};case"fade-unfold":return{x:e.x,topY:mt(e.anchorY,e.topY,i),bottomY:mt(e.anchorY,e.bottomY,i),alpha:i}}}const Zr={colors:["#2962FF"],strokeWidth:1,area:{visible:!0},pulse:!0,stacking:"off"};function Ws(i){if(!i)return{};const t={...i};return i.areaFill!==void 0&&i.area===void 0&&(t.area={visible:!!i.areaFill}),i.enterAnimation!==void 0&&i.entryAnimation===void 0&&(t.entryAnimation=i.enterAnimation),i.enterMs!==void 0&&i.entryMs===void 0&&(t.entryMs=i.enterMs),t}class to extends rn{constructor(t,e){super(t),R(this,"options"),R(this,"areaGradientCache",new Map),this.options={...Zr,...Ws(e)}}get store(){return this.stores[0]}updateOptions(t){this.options={...this.options,...Ws(t)}}getStacking(){return this.options.stacking}getCommonOptions(){return this.options}createEntry(t,e,s){var n;const r=this.options.entryAnimation??"grow",o=oe(this.options.entryMs,be);if(r==="none"||o<=0)return null;const l=(n=this.stores[t])==null?void 0:n.last();return{startTime:s,fromTime:l?l.time:e}}applyTheme(t,e){this.stores.length===1?this.getColor()===e.line.color&&this.updateOptions({colors:[t.line.color]}):this.updateOptions({colors:t.seriesColors.slice(0,this.stores.length)}),this.options.strokeWidth===e.line.width&&this.updateOptions({strokeWidth:t.line.width})}peekEntry(t,e){var s;return(s=this.entries[t])==null?void 0:s.get(e)}resolvedPulseMs(){return oe(this.options.pulseMs,Us)}get hasPulse(){return this.options.pulse&&this.resolvedPulseMs()>0&&this.stores.some(t=>t.isVisible()&&t.length>0)}get overlayNeedsAnimation(){return this.hasPulse}hasOverlayContentInRange(t,e){for(let s=0;s<this.stores.length;s++){if(!this.stores[s].isVisible())continue;const n=this.stores[s].last();if(n&&n.time>=t)return!0}return!1}render(t){this.advanceLiveTracking(performance.now()),this.options.stacking==="off"?this.renderOff(t):this.renderStacked(t,this.options.stacking==="percent")}trailingEndpoint(t,e,s,n){const r=this.stores[t],o=r.last();if(!o)return null;const l=e.timeToBitmapX(o.time),h=s.valueToBitmapY(this.effectiveValue(t,o.time,o.value)),d=this.options.entryAnimation??"grow";if(!this.peekEntry(t,o.time)||d!=="grow")return{x:l,y:h};const c=this.entranceProgress(t,o.time,n);if(c>=1)return{x:l,y:h};const u=r.getAll();if(u.length<2)return{x:l,y:h};const f=u[u.length-2];if(!Number.isFinite(f.value))return{x:l,y:h};const m=e.timeToBitmapX(f.time),g=s.valueToBitmapY(f.value);return{x:mt(m,l,c),y:mt(g,h,c)}}renderOff(t){var e;const{scope:s,timeScale:n,yScale:r}=t,{context:o}=s,l=n.getRange(),{verticalPixelRatio:h}=s,d=this.options.strokeWidth>0,c=Math.max(1,Math.round(this.options.strokeWidth*h)),u=performance.now(),f=this.options.entryAnimation??"grow";for(let m=0;m<this.stores.length;m++){if(!this.stores[m].isVisible())continue;let g=this.stores[m].getVisibleData(l.from,l.to);const p=s.mediaSize.width;if(g.length>p*2&&(g=Ls(g,Math.round(p*1.5))),g.length<2)continue;const v=this.options.colors[m%this.options.colors.length],w=g[g.length-1],x=this.peekEntry(m,w.time),y=this.entranceProgress(m,w.time,u),M=x&&f==="fade"&&y<1,S=this.trailingEndpoint(m,n,r,u)??{x:n.timeToBitmapX(w.time),y:r.valueToBitmapY(this.effectiveValue(m,w.time,w.value))},P=S.x,b=S.y;M&&(o.save(),o.globalAlpha=y);const L=g.length-1,I=[];let T=null;for(let F=0;F<L;F++){const V=g[F].value;if(!Number.isFinite(V)){T=null;continue}T||(T=[],I.push(T)),T.push({x:n.timeToBitmapX(g[F].time),y:r.valueToBitmapY(V)})}const D=(e=g[L])==null?void 0:e.value;if(Number.isFinite(P)&&Number.isFinite(b)&&Number.isFinite(D)&&(T?T.push({x:P,y:b}):I.push([{x:P,y:b}])),d&&I.some(F=>F.length>=2)){o.beginPath();for(const F of I)if(!(F.length<2)){o.moveTo(F[0].x,F[0].y);for(let V=1;V<F.length;V++)o.lineTo(F[V].x,F[V].y)}o.strokeStyle=v,o.lineWidth=c,o.lineJoin="round",o.lineCap="round",o.stroke()}if(d){const F=Math.max(1,c/2);let V=!1;for(const z of I)z.length===1&&(V||(o.beginPath(),V=!0),o.moveTo(z[0].x+F,z[0].y),o.arc(z[0].x,z[0].y,F,0,Math.PI*2));V&&(o.fillStyle=v,o.fill())}if(this.options.area.visible){const F=s.bitmapSize.height,V=String(m),z=this.areaGradientCache.get(V);let _;z&&z.bottomY===F&&z.color===v?_=z.gradient:(_=o.createLinearGradient(0,0,0,F),_.addColorStop(0,Ae(v,.12)),_.addColorStop(1,Ae(v,.01)),this.areaGradientCache.set(V,{gradient:_,bottomY:F,color:v})),o.fillStyle=_;for(const $ of I)if(!($.length<2)){o.beginPath(),o.moveTo($[0].x,$[0].y);for(let H=1;H<$.length;H++)o.lineTo($[H].x,$[H].y);o.lineTo($[$.length-1].x,F),o.lineTo($[0].x,F),o.closePath(),o.fill()}}M&&o.restore()}}renderStacked(t,e){const{scope:s,timeScale:n,yScale:r}=t,{context:o}=s,l=n.getRange(),{verticalPixelRatio:h}=s,d=this.options.strokeWidth>0,c=Math.max(1,Math.round(this.options.strokeWidth*h)),u=s.mediaSize.width,f=this.stores.map(b=>{let L=b.getVisibleData(l.from,l.to);return L.length>u*2&&(L=Ls(L,Math.round(u*1.5))),L}),m=new Set;for(const b of f)for(const L of b)m.add(L.time);const g=Array.from(m).sort((b,L)=>b-L);if(g.length<2)return;const p=f.map((b,L)=>{const I=new Map;for(const T of b)I.set(T.time,this.effectiveValue(L,T.time,T.value));return I}),v=Array.from({length:this.stores.length},()=>new Array(g.length).fill(0));for(let b=0;b<g.length;b++){const L=g[b];let I=0;if(e)for(let D=0;D<this.stores.length;D++){if(!this.stores[D].isVisible())continue;const F=p[D].get(L);Number.isFinite(F)&&(I+=F)}let T=0;for(let D=0;D<this.stores.length;D++){const F=this.stores[D].isVisible()?p[D].get(L):0,V=Number.isFinite(F)?F:0;T+=e&&I>0?V/I*100:V,v[D][b]=T}}const w=performance.now(),x=this.options.entryAnimation??"grow",y=new Map;for(let b=0;b<g.length;b++)y.set(g[b],b);const M=g.length-1,S=new Array(this.stores.length).fill(1);for(let b=0;b<this.stores.length;b++){if(!this.stores[b].isVisible())continue;const L=this.stores[b].last();if(!L)continue;const I=this.peekEntry(b,L.time);if(!I)continue;const T=y.get(L.time);T!==M||y.get(I.fromTime)!==T-1||(S[b]=this.entranceProgress(b,L.time,w))}const P=(b,L)=>{if(L>=1||b.length<2)return;const I=b.length-1,T=b[I-1],D=b[I];b[I]=[mt(T[0],D[0],L),mt(T[1],D[1],L)]};for(let b=this.stores.length-1;b>=0;b--){if(!this.stores[b].isVisible())continue;const L=this.options.colors[b%this.options.colors.length],I=S[b],T=b>0&&this.stores[b-1].isVisible()?S[b-1]:1,D=[];for(let z=0;z<g.length;z++)D.push([n.timeToBitmapX(g[z]),r.valueToBitmapY(v[b][z])]);x==="grow"&&P(D,I);const F=[];for(let z=0;z<g.length;z++){const _=b>0?v[b-1][z]:0;F.push([n.timeToBitmapX(g[z]),r.valueToBitmapY(_)])}x==="grow"&&P(F,T);const V=x==="fade"&&I<1;if(V&&(o.save(),o.globalAlpha=I),this.options.area.visible){o.beginPath(),o.moveTo(D[0][0],D[0][1]);for(let z=1;z<D.length;z++)o.lineTo(D[z][0],D[z][1]);for(let z=F.length-1;z>=0;z--)o.lineTo(F[z][0],F[z][1]);o.closePath(),o.fillStyle=Ae(L,.25),o.fill()}if(d){o.beginPath(),o.moveTo(D[0][0],D[0][1]);for(let z=1;z<D.length;z++)o.lineTo(D[z][0],D[z][1]);o.strokeStyle=L,o.lineWidth=c,o.lineJoin="round",o.lineCap="round",o.stroke()}V&&o.restore()}}drawOverlay(t){const{scope:e,timeScale:s,yScale:n,crosshair:r,dataInterval:o}=t,l=e,h=this.resolvedPulseMs();if(r){const d=this.options.colors,c=this.options.stacking,u=4*l.horizontalPixelRatio,f=[],m=[];for(let p=0;p<this.stores.length;p++){const v=this.stores[p].findNearest(r.time,o);v?(f.push(v.value),m.push(v.time)):(f.push(0),m.push(null))}const g=[];if(c==="off")for(const p of f)g.push(p);else{let p=0;if(c==="percent")for(let w=0;w<f.length;w++)this.stores[w].isVisible()&&(p+=f[w]);let v=0;for(let w=0;w<f.length;w++){const x=this.stores[w].isVisible()?f[w]:0;v+=c==="percent"&&p>0?x/p*100:x,g.push(v)}}for(let p=0;p<this.stores.length;p++){const v=m[p];if(v===null||!this.stores[p].isVisible())continue;const w=d[p%d.length],x=s.timeToBitmapX(v),y=n.valueToBitmapY(g[p]);e.context.beginPath(),e.context.arc(x,y,u+3*l.horizontalPixelRatio,0,Math.PI*2);const M=w.startsWith("#")?w+"40":/^rgb\(/i.test(w)?w.replace(/^rgb\((.*)\)$/i,"rgba($1, 0.25)"):w.replace(/[\d.]+\)\s*$/,"0.25)");e.context.fillStyle=M,e.context.fill(),e.context.beginPath(),e.context.arc(x,y,u,0,Math.PI*2),e.context.fillStyle=w,e.context.fill()}}if(this.hasPulse&&h>0){const d=performance.now();this.advanceLiveTracking(d);const c=this.options.stacking;for(let u=0;u<this.stores.length;u++){if(!this.stores[u].isVisible())continue;const f=this.options.colors[u%this.options.colors.length];if(c==="off"){const S=this.trailingEndpoint(u,s,n,d);if(!S)continue;this.drawPulse({ctx:e.context,x:S.x,y:S.y,color:f,pixelRatio:l.horizontalPixelRatio,pulseMs:h});continue}const m=this.stores[u].last();if(!m)continue;const g=m.time,p=c==="percent",v=S=>{const P=I=>{const T=I===u&&S===g?m:this.stores[I].findNearest(S,0);return!T||T.time!==S?0:this.effectiveValue(I,S,T.value)};let b=0;if(p)for(let I=0;I<this.stores.length;I++)this.stores[I].isVisible()&&(b+=P(I));let L=0;for(let I=0;I<=u;I++){if(!this.stores[I].isVisible())continue;const T=P(I);L+=p&&b>0?T/b*100:T}return L};let w=s.timeToBitmapX(g),x=n.valueToBitmapY(v(g));const y=this.options.entryAnimation??"grow",M=this.peekEntry(u,g);if(y==="grow"&&M){const S=this.entranceProgress(u,g,d);if(S<1&&M.fromTime!==g){const P=s.timeToBitmapX(M.fromTime),b=n.valueToBitmapY(v(M.fromTime));w=mt(P,w,S),x=mt(b,x,S)}}this.drawPulse({ctx:e.context,x:w,y:x,color:f,pixelRatio:l.horizontalPixelRatio,pulseMs:h})}}}drawPulse({ctx:t,x:e,y:s,color:n,pixelRatio:r,pulseMs:o}){const l=3*r,h=.4+.6*Math.abs(Math.sin(performance.now()/o)),d=l+4*r*h;t.beginPath(),t.arc(e,s,d,0,Math.PI*2),t.fillStyle=Ae(n,h*.3),t.fill(),t.beginPath(),t.arc(e,s,l,0,Math.PI*2),t.fillStyle=n,t.fill()}}const on={mode:"outside",content:"both",fontSize:11,minSliceAngle:2.5,elbowLen:12,legPad:6,distance:14,railWidth:16,labelGap:1.8,balanceSides:!0},eo={innerRadiusRatio:0,padAngle:1.15,sliceLabels:{...on},animate:!1},$i=Math.PI/180;function io(i,t){return{...i??{},...t}}function so(i){return{...on,...i??{}}}function no(i){const t={color:"rgba(0, 0, 0, 0.22)",blur:24,offsetX:0,offsetY:10};return i===!0||i===!1?t:{...t,...i}}function ro(i){const t={color:"rgba(0, 0, 0, 0.1)",depth:.3};return i===!0||i===!1?t:{...t,...i}}const We=Math.PI*2,an=.85;function Ds(i){const{bitmapWidth:t,bitmapHeight:e,padTop:s,padBottom:n}=i,r=Math.max(0,i.labelReserve??0),o=Math.min(Math.max(0,s),e),l=Math.min(Math.max(0,n),e-o),h=e-o-l,d=Math.max(0,t-2*r),c=t/2,u=o+h/2,f=Math.max(0,Math.min(d,h)/2*an);return{cx:c,cy:u,maxR:f}}function oo(i){if(!i.startsWith("#"))return!1;const t=parseInt(i.slice(1,3),16),e=parseInt(i.slice(3,5),16),s=parseInt(i.slice(5,7),16);return t*.299+e*.587+s*.114>150}function ao(i,t){if(!i.startsWith("#"))return i;const e=Math.min(255,parseInt(i.slice(1,3),16)+Math.round(255*t)),s=Math.min(255,parseInt(i.slice(3,5),16)+Math.round(255*t)),n=Math.min(255,parseInt(i.slice(5,7),16)+Math.round(255*t));return`#${e.toString(16).padStart(2,"0")}${s.toString(16).padStart(2,"0")}${n.toString(16).padStart(2,"0")}`}function Fs(i){if(i.startsWith("#"))return{r:parseInt(i.slice(1,3),16)||0,g:parseInt(i.slice(3,5),16)||0,b:parseInt(i.slice(5,7),16)||0,a:1};const t=i.match(/^rgba?\s*\(([^)]+)\)$/i);if(t){const e=t[1].split(",").map(s=>s.trim());return{r:Number.parseFloat(e[0])||0,g:Number.parseFloat(e[1])||0,b:Number.parseFloat(e[2])||0,a:e[3]===void 0?1:Number.parseFloat(e[3])}}return{r:0,g:0,b:0,a:1}}function lo(i,t){const e=Fs(i),s=Fs(t),n=s.a,r=Math.round(s.r*n+e.r*(1-n)),o=Math.round(s.g*n+e.g*(1-n)),l=Math.round(s.b*n+e.b*(1-n));return`#${r.toString(16).padStart(2,"0")}${o.toString(16).padStart(2,"0")}${l.toString(16).padStart(2,"0")}`}var X,G,Ct,at,Me,Jt,wt,ce,It,Xi,vi,ln,hn,cn;class yi{constructor(t){W(this,It),W(this,X,[]),W(this,G),W(this,Ct,-1),W(this,at,[]),W(this,Me,0),W(this,Jt,1),W(this,wt,null),W(this,ce,[]),k(this,G,B(this,It,Xi).call(this,eo,t??{}))}getData(){return a(this,X)}setData(t){const e=t??[];k(this,X,e),k(this,at,new Array(e.length).fill(0)),k(this,Jt,a(this,G).animate?0:1),k(this,wt,null);for(const s of a(this,ce))s()}onDataChanged(t){return a(this,ce).push(t),()=>{const e=a(this,ce).indexOf(t);e>=0&&a(this,ce).splice(e,1)}}updateOptions(t){var e,s;const n=(e=a(this,G).sliceLabels)==null?void 0:e.mode;k(this,G,B(this,It,Xi).call(this,a(this,G),t??{})),((s=a(this,G).sliceLabels)==null?void 0:s.mode)==="outside"&&n!=="outside"&&k(this,Jt,a(this,G).animate?0:1),k(this,wt,null)}getColor(){var t,e;return((t=a(this,X)[0])==null?void 0:t.color)??((e=a(this,G).colors)==null?void 0:e[0])??"#888"}getLayerCount(){return 1}setLayerVisible(t,e){}isLayerVisible(t){return!0}getLayerColors(){return[this.getColor()]}applyTheme(t,e){t.typography.fontFamily!==e.typography.fontFamily&&k(this,wt,null)}hitTest(t,e,s,n,r){var o;if(a(this,X).length===0)return-1;const l=a(this,X).reduce((y,M)=>y+M.value,0);if(l<=0)return-1;const h=((o=a(this,wt))==null?void 0:o.reserve)??0,{cx:d,cy:c,maxR:u}=Ds({bitmapWidth:s,bitmapHeight:n,padTop:(r==null?void 0:r.top)??0,padBottom:(r==null?void 0:r.bottom)??0,labelReserve:h}),f=u,m=f*a(this,G).innerRadiusRatio,g=t-d,p=e-c,v=Math.sqrt(g*g+p*p);if(v>f||v<m)return-1;let w=Math.atan2(p,g)+Math.PI/2;w<0&&(w+=We);let x=0;for(let y=0;y<a(this,X).length;y++){const M=a(this,X)[y].value/l*We;if(w>=x&&w<x+M)return y;x+=M}return-1}setHoverIndex(t){return a(this,Ct)===t?!1:(k(this,Ct,t),!0)}getHoverIndex(){return a(this,Ct)}getHoverInfo(t){if(a(this,Ct)<0)return null;const e=a(this,X)[a(this,Ct)];if(!e)return null;const s=a(this,X).reduce((r,o)=>r+o.value,0),n=a(this,G).colors??t.seriesColors;return{label:e.label,value:e.value,percent:s>0?e.value/s*100:0,color:e.color??n[a(this,Ct)%n.length]}}getSliceInfo(t){if(a(this,X).length===0)return null;const e=a(this,X).reduce((n,r)=>n+r.value,0),s=a(this,G).colors??t.seriesColors;return a(this,X).map((n,r)=>({label:n.label,value:n.value,percent:e>0?n.value/e*100:0,color:n.color??s[r%s.length]}))}get needsAnimation(){var t;if(!a(this,G).animate)return!1;for(let e=0;e<a(this,at).length;e++){const s=e===a(this,Ct)?1:0;if(Math.abs(a(this,at)[e]-s)>.01)return!0}return((t=a(this,G).sliceLabels)==null?void 0:t.mode)==="outside"&&a(this,Jt)<.99}dispose(){k(this,ce,[]),k(this,X,[]),k(this,at,[]),k(this,Me,0)}_inspectSliceOffsets(){return a(this,at)}render(t){if(a(this,X).length===0)return;const{scope:e,theme:s,padding:n}=t,{context:r,bitmapSize:o,horizontalPixelRatio:l,verticalPixelRatio:h}=e,d=performance.now(),c=a(this,Me)?Math.min(.05,(d-a(this,Me))/1e3):0;k(this,Me,d);const u=a(this,X).reduce((_,$)=>_+$.value,0);if(u<=0)return;const f=12;for(;a(this,at).length<a(this,X).length;)a(this,at).push(0);if(a(this,G).animate)for(let _=0;_<a(this,X).length;_++){const $=_===a(this,Ct)?1:0;a(this,at)[_]=xs(a(this,at)[_],$,f,c)}const m=so(a(this,G).sliceLabels);r.font=`${m.fontSize*l}px ${s.typography.fontFamily}`,m.mode==="outside"&&a(this,G).animate&&k(this,Jt,xs(a(this,Jt),1,6,c));const g=a(this,G).colors??s.seriesColors,p=m.mode==="outside"?B(this,It,ln).call(this,r,m,u,l):0,{cx:v,cy:w,maxR:x}=Ds({bitmapWidth:o.width,bitmapHeight:o.height,padTop:n.top*h,padBottom:n.bottom*h,labelReserve:p}),y=x,M=y*a(this,G).innerRadiusRatio,S=a(this,G).padAngle*$i,P=8*l,b=a(this,G).shadow??!1,L=no(b),I=a(this,G).innerShadow??!1,T=ro(I);let D=-Math.PI/2;for(let _=0;_<a(this,X).length;_++){const $=a(this,X)[_],H=$.value/u*We,it=D+S/2,U=D+H-S/2,bt=D+H/2,vt=$.color??g[_%g.length];if(U<=it){D+=H;continue}const St=a(this,at)[_]*P,Q=Math.cos(bt)*St,Ut=Math.sin(bt)*St,yt=v+Q,ut=w+Ut;r.beginPath(),r.arc(yt,ut,y,it,U),M>0?r.arc(yt,ut,M,U,it,!0):r.lineTo(yt,ut),r.closePath();const dt=r.createRadialGradient(yt,ut,M||0,yt,ut,y);if(dt.addColorStop(0,ao(vt,.15)),I){const Mt=Math.max(0,Math.min(.999,1-T.depth));dt.addColorStop(Mt,vt),dt.addColorStop(1,lo(vt,T.color))}else dt.addColorStop(1,vt);r.fillStyle=dt;const Pt=a(this,at)[_];if(b||Pt>.01){const Mt=b?1:0,Gt=Pt;r.shadowColor=b?L.color:"rgba(0,0,0,0.25)",r.shadowBlur=(L.blur*Mt+12*Gt)*l,r.shadowOffsetX=L.offsetX*Mt*l+Q*.3*Gt,r.shadowOffsetY=L.offsetY*Mt*h+Ut*.3*Gt}r.fill(),r.shadowColor="transparent",r.shadowBlur=0,r.shadowOffsetX=0,r.shadowOffsetY=0,D+=H}if(m.mode==="none")return;D=-Math.PI/2;const F=s.tooltip.textColor;if(m.mode==="outside"){const _=B(this,It,cn).call(this,{cx:v,cy:w,outerR:y,total:u,palette:g,labels:m,hpr:l,bitmapHeight:o.height}),$=_.length>1?Math.min(.06,.9/(_.length-1)):0;for(let H=0;H<_.length;H++){const it=_[H];if(it===null)continue;const U=H*$,bt=Fe((a(this,Jt)-U)/(1-U),0,1);B(this,It,hn).call(this,{context:r,entry:it,textColor:F,labels:m,hpr:l,progress:bt})}return}const V=M>0?(y+M)/2:y*.65;r.textAlign="center",r.textBaseline="middle";const z=m.minSliceAngle*$i;for(let _=0;_<a(this,X).length;_++){const $=a(this,X)[_],H=$.value/u*We;if(H>=z){const it=D+H/2,U=a(this,at)[_]*P,bt=$.color??g[_%g.length],vt=B(this,It,vi).call(this,$,u,m.content),St=r.measureText(vt).width,Q=m.fontSize*1.2*l,Ut=H<Math.PI?2*V*Math.sin(H/2):2*V,yt=St>Ut-4*l,ut=M>0&&V-M<Q;if(!yt&&!ut){const dt=v+Math.cos(it)*(V+U),Pt=w+Math.sin(it)*(V+U);r.fillStyle=oo(bt)?"#000000":"#ffffff",r.fillText(vt,dt,Pt)}}D+=H}}}X=new WeakMap,G=new WeakMap,Ct=new WeakMap,at=new WeakMap,Me=new WeakMap,Jt=new WeakMap,wt=new WeakMap,ce=new WeakMap,It=new WeakSet,Xi=function(i,t){const e={...i,...t};return t.sliceLabels!==void 0&&(e.sliceLabels=io(i.sliceLabels,t.sliceLabels)),e},vi=function(i,t,e){const s=t>0?i.value/t*100:0,n=`${s.toFixed(s>=10?0:1)}%`;return e==="percent"?n:e==="label"?i.label:`${i.label} ${n}`},ln=function(i,t,e,s){const n=i.font;if(a(this,wt)&&a(this,wt).fontScale===s&&a(this,wt).font===n)return a(this,wt).reserve;let r=0;for(const h of a(this,X)){const d=B(this,It,vi).call(this,h,e,t.content),c=i.measureText(d).width;c>r&&(r=c)}const o=Math.max(t.distance,t.elbowLen),l=(r+(o+Math.max(0,t.railWidth)+t.legPad+4)*s)/an;return k(this,wt,{fontScale:s,font:n,reserve:l}),l},hn=function(i){const{context:t,entry:e,textColor:s,labels:n,hpr:r,progress:o}=i;if(o<=0)return;const{anchorX:l,anchorY:h,elbowX:d,elbowY:c,side:u,text:f,color:m,labelX:g,labelY:p}=e,v=g+u*n.legPad*r,w=Fe(o/.15,0,1),x=Fe((o-.15)/.45,0,1),y=Fe((o-.6)/.4,0,1);if(t.save(),t.globalAlpha=w,t.fillStyle=m,t.beginPath(),t.arc(l,h,2.5*r,0,We),t.fill(),t.restore(),x>0){t.save(),t.globalAlpha=x,t.strokeStyle=m,t.lineWidth=1*r,t.lineCap="round",t.beginPath(),t.moveTo(l,h);const M=l+(d-l)*x,S=h+(c-h)*x;if(t.lineTo(M,S),y>0){const P=d+(g-d)*y,b=c+(p-c)*y;t.lineTo(P,b)}t.stroke(),t.restore()}y>0&&(t.save(),t.globalAlpha=y,t.fillStyle=s,t.textAlign=u>=0?"left":"right",t.textBaseline="middle",t.fillText(f,v,p),t.restore())},cn=function(i){const{cx:t,cy:e,outerR:s,total:n,palette:r,labels:o,hpr:l,bitmapHeight:h}=i,d=new Array(a(this,X).length).fill(null),c=o.elbowLen*l,u=Math.max(o.distance,o.elbowLen)*l,f=Math.max(0,o.railWidth)*l,m=[];let g=-Math.PI/2;const p=o.minSliceAngle*$i;for(let y=0;y<a(this,X).length;y++){const M=a(this,X)[y],S=M.value/n*We;if(S>=p){const P=g+S/2,b=a(this,at)[y]*(8*l),L=Math.cos(P),I=Math.sin(P),T=L>=0?1:-1,D=t+L*(s+b),F=e+I*(s+b),V=t+L*(s+b+c),z=e+I*(s+b+c),_=t+L*(s+b+u)+T*f,$=e+I*(s+b+u),H={anchorX:D,anchorY:F,elbowX:V,elbowY:z,side:T,labelX:_,labelY:$,text:B(this,It,vi).call(this,M,n,o.content),color:M.color??r[y%r.length]};d[y]=H,m.push({entry:H})}g+=S}const v=Math.max(1,o.fontSize*o.labelGap)*l,w=o.fontSize*l,x=h-o.fontSize*l;for(const y of[1,-1]){const M=[];for(const b of m)b.entry.side===y&&M.push(b.entry);if(M.length===0)continue;M.sort((b,L)=>b.labelY-L.labelY);const S=[];for(let b=0;b<M.length;b++)for(S.push({count:1,sumIdeal:M[b].labelY,startIdx:b});S.length>=2;){const L=S[S.length-2],I=S[S.length-1],T=L.sumIdeal/L.count,D=I.sumIdeal/I.count,F=T+(L.count-1)*v/2;if(D-(I.count-1)*v/2>=F+v)break;L.count+=I.count,L.sumIdeal+=I.sumIdeal,S.pop()}if(S.length>0){const b=S[0],L=b.sumIdeal/b.count-(b.count-1)*v/2;if(L<w)for(b.sumIdeal+=(w-L)*b.count;S.length>=2;){const I=S[0],T=S[1],D=I.sumIdeal/I.count,F=T.sumIdeal/T.count,V=D+(I.count-1)*v/2;if(F-(T.count-1)*v/2>=V+v)break;I.count+=T.count,I.sumIdeal+=T.sumIdeal,S.splice(1,1)}}if(S.length>0){const b=S[S.length-1],L=b.sumIdeal/b.count+(b.count-1)*v/2;if(L>x)for(b.sumIdeal-=(L-x)*b.count;S.length>=2;){const I=S[S.length-2],T=S[S.length-1],D=I.sumIdeal/I.count,F=T.sumIdeal/T.count,V=D+(I.count-1)*v/2;if(F-(T.count-1)*v/2>=V+v)break;I.count+=T.count,I.sumIdeal+=T.sumIdeal,S.pop()}}const P=(w+x)/2;for(const b of S){const L=(b.count-1)*v,I=b.sumIdeal/b.count;L>x-w&&I-L/2<w&&(b.sumIdeal=P*b.count)}for(const b of S){const L=b.sumIdeal/b.count;for(let I=0;I<b.count;I++)M[b.startIdx+I].labelY=L+(I-(b.count-1)/2)*v}}for(const y of m){const M=y.entry,S=M.labelY-M.anchorY;let P;if(Math.abs(S)<=c){const I=M.side*Math.sqrt(Math.max(0,c*c-S*S));P=M.anchorX+I}else P=(M.anchorX+M.labelX)/2;const b=Math.min(M.anchorX,M.labelX),L=Math.max(M.anchorX,M.labelX);M.elbowX=Math.max(b,Math.min(L,P)),M.elbowY=M.labelY}return d};function ho(i){return parseInt(i.slice(1,3),16)*.299+parseInt(i.slice(3,5),16)*.587+parseInt(i.slice(5,7),16)*.114<128}function J(i){var t,e,s,n,r,o,l,h,d,c,u,f,m,g,p,v,w,x,y,M,S,P,b,L,I,T,D,F,V,z,_,$,H,it;const{background:U,name:bt="Custom",description:vt,fontUrl:St=null}=i,Q=ho(U),Ut=Q?"#d1d4dc":"#24292f",yt=Q?"#787b86":"#8b949e",ut=Q?"#26a69a":"#2da44e",dt=Q?"#ef5350":"#cf222e",Pt=Q?"#2962ff":"#0969da",Mt=Q?"rgba(42,46,57,0.6)":"rgba(200,200,200,0.5)",Gt=Q?"rgba(150,150,150,0.5)":"rgba(170,170,170,0.3)",Be=Q?_e(U,.1):Ui(U,.05),di=Q?ke(U,.92):ke(U,.95),fi=Q?ke(_e(U,.15),.6):"rgba(200,200,200,0.5)",st=Di,ft=((e=(t=i.candlestick)==null?void 0:t.up)==null?void 0:e.body)??ut,Kt=((n=(s=i.candlestick)==null?void 0:s.down)==null?void 0:n.body)??dt,Pi=pt(ft),gi=pt(Kt),ze=((r=i.line)==null?void 0:r.color)??Pt,ds=((o=i.tooltip)==null?void 0:o.textColor)??Ut,fs=((l=i.axis)==null?void 0:l.textColor)??yt,$n=((h=i.typography)==null?void 0:h.fontFamily)??st,gs=((d=i.typography)==null?void 0:d.fontSize)??12,Xn=i.chartGradient??(Q?[_e(U,.04),Ui(U,.06)]:[_e(U,.06),U]),Un={background:U,chartGradient:Xn,typography:{fontFamily:$n,fontSize:gs},grid:{color:((c=i.grid)==null?void 0:c.color)??Mt,style:((u=i.grid)==null?void 0:u.style)??"dashed"},candlestick:{up:{body:ft,wick:((m=(f=i.candlestick)==null?void 0:f.up)==null?void 0:m.wick)??Pi},down:{body:Kt,wick:((p=(g=i.candlestick)==null?void 0:g.down)==null?void 0:p.wick)??gi}},line:{color:ze,width:((v=i.line)==null?void 0:v.width)??1,areaTopColor:((w=i.line)==null?void 0:w.areaTopColor)??ke(ze,.08),areaBottomColor:((x=i.line)==null?void 0:x.areaBottomColor)??ke(ze,.01)},seriesColors:i.seriesColors??[ze,ut,dt],bands:{upper:((y=i.bands)==null?void 0:y.upper)??ze,lower:((M=i.bands)==null?void 0:M.lower)??gi},crosshair:{color:((S=i.crosshair)==null?void 0:S.color)??Gt,labelBackground:((P=i.crosshair)==null?void 0:P.labelBackground)??Be,labelTextColor:((b=i.crosshair)==null?void 0:b.labelTextColor)??ds},axis:{fontSize:((L=i.axis)==null?void 0:L.fontSize)??10,textColor:fs,...(I=i.axis)!=null&&I.x?{x:{...i.axis.x}}:{},...(T=i.axis)!=null&&T.y?{y:{...i.axis.y}}:{}},yLabel:{fontSize:((D=i.yLabel)==null?void 0:D.fontSize)??11,upBackground:((F=i.yLabel)==null?void 0:F.upBackground)??Pi,downBackground:((V=i.yLabel)==null?void 0:V.downBackground)??gi,neutralBackground:((z=i.yLabel)==null?void 0:z.neutralBackground)??Be,textColor:((_=i.yLabel)==null?void 0:_.textColor)??"#ffffff"},tooltip:{fontSize:(($=i.tooltip)==null?void 0:$.fontSize)??gs,background:((H=i.tooltip)==null?void 0:H.background)??di,textColor:ds,borderColor:((it=i.tooltip)==null?void 0:it.borderColor)??fi},navigator:co({dark:Q,bg:U,neutralFg:fs,upBody:ft,downBody:Kt,upBase:Pi,downBase:gi,config:i.navigator})};return{name:bt,description:vt,fontUrl:St,dark:Q,theme:Un}}function co(i){var t,e,s,n,r,o,l,h,d,c,u,f,m,g,p,v,w,x;const{dark:y,bg:M,neutralFg:S,upBody:P,downBody:b,upBase:L,downBase:I,config:T}=i,D=(T==null?void 0:T.background)??"transparent",F=y?"rgba(255,255,255,1)":"rgba(0,0,0,1)",V=((t=T==null?void 0:T.handle)==null?void 0:t.color)??Ee(F,.3),z=((e=T==null?void 0:T.mask)==null?void 0:e.fill)??Ee(M,y?.78:.82);return{height:(T==null?void 0:T.height)??48,background:D,borderColor:(T==null?void 0:T.borderColor)??Ee(S,y?.18:.22),line:{color:((s=T==null?void 0:T.line)==null?void 0:s.color)??S,width:((n=T==null?void 0:T.line)==null?void 0:n.width)??1,areaTopColor:((r=T==null?void 0:T.line)==null?void 0:r.areaTopColor)??Ee(S,y?.22:.18),areaBottomColor:((o=T==null?void 0:T.line)==null?void 0:o.areaBottomColor)??Ee(S,0)},candlestick:{up:{body:((h=(l=T==null?void 0:T.candlestick)==null?void 0:l.up)==null?void 0:h.body)??P,wick:((c=(d=T==null?void 0:T.candlestick)==null?void 0:d.up)==null?void 0:c.wick)??L},down:{body:((f=(u=T==null?void 0:T.candlestick)==null?void 0:u.down)==null?void 0:f.body)??b,wick:((g=(m=T==null?void 0:T.candlestick)==null?void 0:m.down)==null?void 0:g.wick)??I}},window:{fill:((p=T==null?void 0:T.window)==null?void 0:p.fill)??"transparent",border:((v=T==null?void 0:T.window)==null?void 0:v.border)??"transparent",borderWidth:((w=T==null?void 0:T.window)==null?void 0:w.borderWidth)??0},handle:{color:V,width:((x=T==null?void 0:T.handle)==null?void 0:x.width)??6},mask:{fill:z}}}function Ee(i,t){if(i.startsWith("#")&&i.length===7)return ke(i,t);const e=i.match(/^rgba?\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)/);return e?`rgba(${e[1]},${e[2]},${e[3]},${t})`:i}function ke(i,t){const e=parseInt(i.slice(1,3),16),s=parseInt(i.slice(3,5),16),n=parseInt(i.slice(5,7),16);return`rgba(${e}, ${s}, ${n}, ${t})`}function _e(i,t){if(!i.startsWith("#"))return i;const e=Math.min(255,Math.round(parseInt(i.slice(1,3),16)+255*t)),s=Math.min(255,Math.round(parseInt(i.slice(3,5),16)+255*t)),n=Math.min(255,Math.round(parseInt(i.slice(5,7),16)+255*t));return`#${e.toString(16).padStart(2,"0")}${s.toString(16).padStart(2,"0")}${n.toString(16).padStart(2,"0")}`}function Ui(i,t){if(!i.startsWith("#"))return i;const e=Math.max(0,Math.round(parseInt(i.slice(1,3),16)*(1-t))),s=Math.max(0,Math.round(parseInt(i.slice(3,5),16)*(1-t))),n=Math.max(0,Math.round(parseInt(i.slice(5,7),16)*(1-t)));return`#${e.toString(16).padStart(2,"0")}${s.toString(16).padStart(2,"0")}${n.toString(16).padStart(2,"0")}`}function E(i){const t=i.startsWith("#")&&i.length===7?[_e(i,.2),Ui(i,.15)]:[i,i];return Object.defineProperty(t,"source",{value:i,enumerable:!1}),t}const Ai="'JetBrains Mono', 'Fira Code', monospace",Wi="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap",Di="'Outfit', -apple-system, BlinkMacSystemFont, sans-serif",rs="https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600&display=swap",un="'Roboto Mono', monospace",dn="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;600&display=swap",uo="'IBM Plex Mono', monospace",fo="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&display=swap",os="'Fira Code', monospace",as="https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600&display=swap",fn="'Source Code Pro', monospace",gn="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;500;600&display=swap",go="'Space Mono', monospace",mo="https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap",ls="'Plus Jakarta Sans', sans-serif",hs="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap",po="'Caveat', 'Comic Sans MS', cursive",bo="https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap",mn=J({name:"Catppuccin",description:"Pastel tones on a mocha base",background:"#1e1e2e",grid:{color:"rgba(49,50,68,0.8)"},candlestick:{up:{body:E("#a6e3a1"),wick:"#a6e3a1"},down:{body:E("#f38ba8"),wick:"#f38ba8"}},line:{color:"#89b4fa"},seriesColors:["#89b4fa","#fab387","#a6e3a1","#cba6f7","#f38ba8","#f9e2af","#94e2d5","#eba0ac","#74c7ec","#cba6f7"],bands:{upper:"#74c7ec",lower:"#f38ba8"},crosshair:{color:"rgba(108,112,134,0.4)",labelBackground:"#313244"},axis:{textColor:"#6c7086"},tooltip:{background:"rgba(30,30,46,0.92)",textColor:"#cdd6f4",borderColor:"rgba(49,50,68,0.6)"},typography:{fontFamily:Di},fontUrl:rs}),qt={top:20,bottom:20,right:{intervals:3},left:{intervals:0}},vo=.1,yo=.3,xo=.4,wo=.5,So=4,Mo=(i,t,e)=>({from:mt(i.from,t.from,e),to:mt(i.to,t.to,e)}),ko=(i,t)=>i.from===t.from&&i.to===t.to;var ot,Tt,nt;class Co extends ai{constructor({padding:t,reboundMs:e}={}){super(),W(this,ot),R(this,"_yRange",{min:0,max:0}),R(this,"_autoScroll",!0),R(this,"padding"),R(this,"reboundMs"),R(this,"dataInterval",6e4),W(this,Tt,null),W(this,nt,null),R(this,"_prevDataEnd",null),R(this,"_lastChartWidth",0),this.padding={top:(t==null?void 0:t.top)??qt.top,bottom:(t==null?void 0:t.bottom)??qt.bottom,right:(t==null?void 0:t.right)??qt.right,left:(t==null?void 0:t.left)??qt.left},this.reboundMs=e??Gs,k(this,ot,new Pe({initial:{from:0,to:0},duration:bi.streamTick,easing:pe,lerp:Mo,equals:ko}))}setReboundMs(t){this.reboundMs=Math.max(0,t)}resolveHPad(t,e,s){return typeof t=="object"?t.intervals*this.dataInterval:s<=0?0:t/s*e}get visualRange(){return a(this,ot).current}get logicalRange(){return a(this,ot).target}get visibleRange(){return a(this,ot).current}get yRange(){return this._yRange}get autoScroll(){return this._autoScroll}get animating(){return a(this,ot).animating}get dataStart(){return a(this,Tt)}get dataEnd(){return a(this,nt)}setDataInterval(t){this.dataInterval=t}setPadding(t){this.padding={top:(t==null?void 0:t.top)??qt.top,bottom:(t==null?void 0:t.bottom)??qt.bottom,right:(t==null?void 0:t.right)??qt.right,left:(t==null?void 0:t.left)??qt.left}}getPadding(){return this.padding}setDataStart(t){k(this,Tt,t)}setDataEnd(t){this._prevDataEnd=a(this,nt),k(this,nt,t)}cancelPendingAnimation(){a(this,ot).animating&&(a(this,ot).snap(a(this,ot).current),this.emit("change"))}applyLogical(t,e){e<=t||(e-t)/this.dataInterval<2||(a(this,ot).snap({from:t,to:e}),this.emit("change"))}retargetLogical(t,e,s,n){e<=t||(e-t)/this.dataInterval<2||(a(this,ot).setTarget({from:t,to:e},{duration:s,now:n}),this.emit("change"))}tick(t){if(!a(this,ot).animating)return!1;const e=a(this,ot).tick(t);return this.emit("change"),e}getSoftBounds(t,e){const s=o=>typeof o=="object"||o===0||e>0,n=a(this,Tt)!==null&&s(this.padding.left)?a(this,Tt)-this.resolveHPad(this.padding.left,t,e):null,r=a(this,nt)!==null&&s(this.padding.right)?a(this,nt)+this.resolveHPad(this.padding.right,t,e):null;return{left:n,right:r}}get softMinRange(){return 10*this.dataInterval}dataFitsCurrentViewport(t=0){if(a(this,Tt)===null||a(this,nt)===null)return!1;const{from:e,to:s}=this.logicalRange,n=s-e;if(n<=0)return!1;t>0&&(this._lastChartWidth=t);const r=t>0?t:this._lastChartWidth,o=this.resolveHPad(this.padding.left,n,r),l=a(this,Tt)-o,h=this.dataInterval*.5;return Math.abs(e-l)<=h}softMaxRange(){if(a(this,Tt)===null||a(this,nt)===null)return null;const t=a(this,nt)-a(this,Tt);if(t<=0)return null;const e=typeof this.padding.left=="object"?this.padding.left.intervals*this.dataInterval:null,s=typeof this.padding.right=="object"?this.padding.right.intervals*this.dataInterval:null;return e!==null||s!==null?t+(e??0)+(s??0):t+this.dataInterval*5}setRange(t){const{from:e,to:s}=t;if(!Number.isFinite(e)||!Number.isFinite(s)||s<=e||(s-e)/this.dataInterval<2)return;const n=a(this,nt)!==null&&a(this,nt)>=e&&a(this,nt)<=s;this._autoScroll=n,this.applyLogical(e,s)}setYRange(t,e,s,n=!1,r=!1){const o=e-t,l=s>0?this.padding.top/s*o:0,h=s>0?this.padding.bottom/s*o:0;this._yRange={min:n?t:t-h,max:r?e:e+l}}zoomAt(t,e,s=this._lastChartWidth,n=0){s>0&&(this._lastChartWidth=s),this.cancelPendingAnimation();const{from:r,to:o}=this.logicalRange,l=o-r;if(l<=0)return;const h=this.softMinRange,{left:d,right:c}=this.getSoftBounds(l,s),u=d!==null&&c!==null?c-d:this.softMaxRange();let f=e;const m=h*xo;if(e<1&&l<h){const x=h-l,y=(1-Math.min(1,x/m))**2;f=1-(1-e)*y}let g=l*f;g<h-m&&(g=h-m),e>1&&u!==null&&g>u&&(g=u);const p=(t-r)/l;let v=t-p*g,w=v+g;if(e<1&&w<o){const x=o-w;v+=x,w+=x}if(e>1){if(c!==null&&w>c){const x=w-c;v-=x,w-=x}if(d!==null&&v<d){const x=d-v;v+=x,w+=x}}n>0?this.retargetLogical(v,w,n):this.applyLogical(v,w),this.emit("interact")}pan(t,e=0,s=0){e>0&&(this._lastChartWidth=e),this.cancelPendingAnimation();const{from:n,to:r}=this.logicalRange,o=r-n;if(o<=0)return;const{left:l,right:h}=this.getSoftBounds(o,e),d=o*yo;let c=t;if(t>0&&h!==null){const g=Math.max(0,r-h);g>0&&(c*=1/(g/d+1))}else if(t<0&&l!==null){const g=Math.max(0,l-n);g>0&&(c*=1/(g/d+1))}let u=n+c,f=r+c;if(h!==null&&f>h+d){const g=f-(h+d);u-=g,f-=g}if(l!==null&&u<l-d){const g=l-d-u;u+=g,f+=g}const m=a(this,nt)!==null&&a(this,nt)>=u&&a(this,nt)<=f;this._autoScroll=m,s>0?this.retargetLogical(u,f,s):this.applyLogical(u,f),this.emit("interact")}startRebound(t=this._lastChartWidth){const{from:e,to:s}=this.logicalRange,n=s-e;if(n<=0)return;const r=this.softMinRange,o=this.softMaxRange();let l=n;l<r&&(l=r),o!==null&&l>o&&(l=o);let h=e,d=s;if(l!==n){const x=(e+s)/2;h=x-l/2,d=x+l/2}const{left:c,right:u}=this.getSoftBounds(l,t);if(u!==null&&d>u){const x=d-u;h-=x,d-=x}if(c!==null&&h<c){const x=c-h;h+=x,d+=x}const f=Math.abs(h-e),m=Math.abs(d-s);if(f<1&&m<1)return;const g=n*vo;let p=null,v=0,w=0;u!==null&&s-u>g?(p="right",v=s-u,w=u):c!==null&&c-e>g&&(p="left",v=c-e,w=c),this.reboundMs<=0?this.applyLogical(h,d):this.retargetLogical(h,d,this.reboundMs),this.emit("interact"),p!==null&&this.emit("edgeReached",{side:p,overshoot:v,boundaryTime:w})}fitToData(t,e,s=0,n=!1,r){this._autoScroll=!0,s>0&&(this._lastChartWidth=s);const o=400*this.dataInterval,l=e-t,h=l>0?l:this.dataInterval*10,d=this.resolveHPad(this.padding.right,h,s),c=this.resolveHPad(this.padding.left,h,s);let u=e+d,f=t-c;u-f>o&&(u=e+d,f=u-o);const{from:m,to:g}=this.logicalRange;n&&!(m===0&&g===0)?this.retargetLogical(f,u,r??bi.fit):this.applyLogical(f,u)}scrollToEnd(t,e=0){e>0&&(this._lastChartWidth=e);const{from:s,to:n}=this.logicalRange,r=n-s;if(r<=0)return;const o=this.resolveHPad(this.padding.right,r,e),l=n,h=this._prevDataEnd!==null?l-this._prevDataEnd:o,d=Math.max(0,Math.min(o,h)),c=t+d,u=c-r;this._autoScroll=!0;const f=wo*this.dataInterval,m=e>0?So/e*r:f,g=Math.min(f,m);Math.abs(c-n)<g||(this.retargetLogical(u,c,bi.streamTick),this._prevDataEnd=a(this,nt))}getVisibleBarsCount(){const{from:t,to:e}=a(this,ot).current;return(e-t)/this.dataInterval}destroy(){this.removeAllListeners()}}ot=new WeakMap,Tt=new WeakMap,nt=new WeakMap;function ye(i,t){return i===!1||i===0?0:i===void 0?t:i}function Ps(i){if(i===!1)return{points:{enterMs:0,smoothMs:0,pulseMs:0},viewport:{reboundMs:0,yAxisMs:0,inputResponseMs:0}};const t=i===!0||i===void 0?void 0:i,e=t==null?void 0:t.points,s=t==null?void 0:t.viewport,n=e===!1?{enterMs:0,smoothMs:0,pulseMs:0}:{enterMs:ye(e==null?void 0:e.enterMs,be),smoothMs:ye(e==null?void 0:e.smoothMs,Zi),pulseMs:ye(e==null?void 0:e.pulseMs,Us)},r=s===!1?{reboundMs:0,yAxisMs:0,inputResponseMs:0}:{reboundMs:ye(s==null?void 0:s.reboundMs,Gs),yAxisMs:ye(s==null?void 0:s.yAxisMs,Ni),inputResponseMs:ye(s==null?void 0:s.inputResponseMs,qn)};return{points:n,viewport:r}}function To(i){if(!i)return{monitor:null,ownsMonitor:!1,showHud:!1};if(i===!0)return{monitor:new Yi,ownsMonitor:!0,showHud:!0};if(i instanceof Yi)return{monitor:i,ownsMonitor:!1,showHud:!1};const{hud:t,monitor:e,...s}=i,n=e!==void 0;return{monitor:e??new Yi(s),ownsMonitor:!n,showHud:t??!n}}let Ro=0;var tt,O,K,Et,Ce,Y,Z,Oe,ht,Vt,rt,ee,Gi,Te,Rt,xi,wi,_t,He,ue,ni,Ti,At,Yt,Ne,$e,q,ie,Bs,Si,Xe,Ue,pn,bn,Mi,Ge,Qt,Zt,Re,Ke;class vn extends ai{constructor(t,e){var s,n,r,o;super(),W(this,q),W(this,tt),W(this,O),W(this,K),W(this,Et),R(this,"timeScale"),R(this,"yScale"),W(this,Ce),W(this,Y,[]),W(this,Z),W(this,Oe),W(this,ht,6e4),W(this,Vt,null),W(this,rt,{}),W(this,ee,null),W(this,Gi,!1),W(this,Te,{}),W(this,Rt,{left:"idle",right:"idle"}),W(this,xi,{left:null,right:null}),W(this,wi),W(this,_t,0),W(this,He,!1),W(this,ue,!1),W(this,ni,!1),W(this,Ti,0),W(this,At),W(this,Yt),W(this,Ne,!1),W(this,$e,null),W(this,Mi,0),W(this,Ge,!1),W(this,Qt,new Pe({initial:0,duration:Ni,easing:pe,lerp:(c,u,f)=>c+(u-c)*f})),W(this,Zt,new Pe({initial:0,duration:Ni,easing:pe,lerp:(c,u,f)=>c+(u-c)*f})),W(this,Re,!1),W(this,Ke,!1),e!=null&&e.axis&&(k(this,Te,e.axis),k(this,rt,{min:(s=e.axis.y)==null?void 0:s.min,max:(n=e.axis.y)==null?void 0:n.max})),k(this,Z,(e==null?void 0:e.theme)??mn.theme),k(this,Oe,((r=e==null?void 0:e.grid)==null?void 0:r.visible)!==!1),k(this,At,Ps(e==null?void 0:e.animations)),k(this,wi,e==null?void 0:e.onEdgeReached);const l=To(e==null?void 0:e.perf);k(this,Yt,l.monitor),k(this,Ne,l.ownsMonitor),k(this,tt,new Jn(t,a(this,Yt)??void 0)),k(this,O,new Co({padding:e==null?void 0:e.padding,reboundMs:a(this,At).viewport.reboundMs})),mr(this,a(this,O)),this.timeScale=new tn,this.yScale=new nn;const h=a(this,Yt);h?(k(this,K,new mi(c=>{h.resetDrawCalls("main");const u=performance.now();this.renderMain(c),h.recordFrame("main",performance.now()-u,c)})),k(this,Et,new mi(c=>{h.resetDrawCalls("overlay");const u=performance.now();this.renderOverlay(c),h.recordFrame("overlay",performance.now()-u,c)})),l.showHud&&k(this,$e,new wr(t,h))):(k(this,K,new mi(c=>this.renderMain(c))),k(this,Et,new mi(c=>this.renderOverlay(c))));const d=(e==null?void 0:e.interactive)!==!1;k(this,Ce,d?new fr(a(this,tt).canvas,a(this,O),this.timeScale,this.yScale,a(this,At).viewport.inputResponseMs):null),a(this,O).on("change",()=>{this.syncScales(),a(this,K).markDirty(),this.emit("viewportChange")}),a(this,O).on("edgeReached",c=>{var u;a(this,xi)[c.side]=c.boundaryTime,(u=a(this,wi))==null||u.call(this,c)}),a(this,O).on("interact",()=>{k(this,Ke,!0)}),a(this,tt).on("resize",()=>{this.updateScales(!0),this.renderMain(),this.emit("viewportChange")}),(o=a(this,Ce))==null||o.on("crosshairMove",c=>{k(this,Vt,c),a(this,Et).markDirty(),this.emit("crosshairMove",c),B(this,q,bn).call(this,c)})}get yAxisWidth(){const t=a(this,Te).y;return(t==null?void 0:t.visible)===!1?0:(t==null?void 0:t.width)??55}get xAxisHeight(){const t=a(this,Te).x;return(t==null?void 0:t.visible)===!1?0:(t==null?void 0:t.height)??30}getOverlayVersion(){return a(this,Ti)}addCandlestickSeries(t){const e=new Js,s=new Qr(e,{up:{...a(this,Z).candlestick.up},down:{...a(this,Z).candlestick.down},bodyWidthRatio:.6,...B(this,q,Si).call(this,"candle"),...t,...B(this,q,Xe).call(this)});return B(this,q,Ue).call(this,s,s.store,t??{})}addLineSeries(t){const{layers:e,...s}=t??{},n=e??1,r=new to(n,{colors:n===1?[a(this,Z).line.color]:a(this,Z).seriesColors.slice(0,n),strokeWidth:a(this,Z).line.width,area:{visible:!0},...B(this,q,Si).call(this,"line"),...s,...B(this,q,Xe).call(this)});return B(this,q,Ue).call(this,r,r.store,s)}addBarSeries(t){const{layers:e,...s}=t??{},n=e??1,r=new $r(n,{colors:a(this,Z).seriesColors.slice(0,n),barWidthRatio:.6,...B(this,q,Si).call(this,"bar"),...s,...B(this,q,Xe).call(this)});return B(this,q,Ue).call(this,r,r.store,s)}addPieSeries(t){const e=new yi(t);return B(this,q,Ue).call(this,e,null,t??{})}removeSeries(t){const e=a(this,Y).findIndex(s=>s.id===t);e>=0&&(a(this,Y)[e].renderer.dispose(),a(this,Y).splice(e,1),k(this,ee,null),this.updateViewportPadding(),a(this,K).markDirty(),this.emit("seriesChange"),B(this,q,ie).call(this))}setSeriesData(t,e,s){const n=a(this,Y).find(r=>r.id===t);n&&(k(this,Ge,!0),n.renderer.setData(e,s))}appendData(t,e,s){var n,r;const o=a(this,Y).find(l=>l.id===t);(r=o==null?void 0:(n=o.renderer).appendPoint)==null||r.call(n,e,s)}updateData(t,e,s){var n,r;const o=a(this,Y).find(l=>l.id===t);(r=o==null?void 0:(n=o.renderer).updateLastPoint)==null||r.call(n,e,s)}updateSeriesOptions(t,e){const s=a(this,Y).find(d=>d.id===t);if(!s)return;const n=s.label,r=s.renderer.getLayerColors().slice();s.renderer.updateOptions({...e,...B(this,q,Xe).call(this)}),"label"in e&&typeof e.label=="string"&&(s.label=e.label),a(this,K).markDirty();const o=s.renderer.getLayerColors(),l=r.length!==o.length||r.some((d,c)=>d!==o[c]),h=n!==s.label;(l||h)&&B(this,q,ie).call(this)}batch(t){Hi(this,_t)._++;try{t()}finally{--Hi(this,_t)._<=0&&(k(this,_t,0),a(this,He)?(k(this,He,!1),k(this,ue,!1),this.onDataChanged()):a(this,ue)&&(k(this,ue,!1),this.updateYRange(!0),a(this,K).markDirty()),a(this,ni)&&(k(this,ni,!1),this.emit("overlayChange")))}}setSeriesVisible(t,e){const s=a(this,Y).find(n=>n.id===t);if(!(!s||s.visible===e)){if(s.visible=e,B(this,q,ie).call(this),a(this,_t)>0){k(this,ue,!0);return}this.updateYRange(!0),a(this,K).markDirty()}}isSeriesVisible(t){var e;return((e=a(this,Y).find(s=>s.id===t))==null?void 0:e.visible)??!0}setLayerVisible(t,e,s){const n=a(this,Y).find(r=>r.id===t);if(n&&!(n.renderer.getLayerCount()<=1)&&n.renderer.isLayerVisible(e)!==s){if(n.renderer.setLayerVisible(e,s),B(this,q,ie).call(this),a(this,_t)>0){k(this,ue,!0);return}this.updateYRange(!0),a(this,K).markDirty()}}isLayerVisible(t,e){const s=a(this,Y).find(n=>n.id===t);return(s==null?void 0:s.renderer.isLayerVisible(e))??!0}fitContent(){const{first:t,last:e}=this.getDataBounds();if(t===void 0||e===void 0)return;const s=a(this,tt).size.media.width-this.yAxisWidth;a(this,O).fitToData(t,e,s,!0)}getVisibleRange(){return a(this,O).visibleRange}getDataRange(){const t=a(this,O).dataStart,e=a(this,O).dataEnd;return t===null||e===null?null:{from:t,to:e}}setVisibleRange(t){if(typeof t=="number"){if(!Number.isInteger(t)||t<2)return;const{first:e,last:s}=this.getDataBounds();if(e===void 0||s===void 0)return;const n=Math.max(e,s-(t-1)*a(this,ht)),r=a(this,tt).size.media.width-this.yAxisWidth;a(this,O).fitToData(n,s,r,!1);return}a(this,O).setRange(t)}getYRange(){return a(this,O).yRange}getCrosshairPosition(){return a(this,Vt)}getLastValue(t){const e=a(this,Y).find(h=>h.id===t);if(!(e!=null&&e.store))return null;const s=e.store.last();if(!s)return null;const n=h=>"close"in h?h.close:h.value,{from:r,to:o}=a(this,O).visibleRange;if(s.time>=r&&s.time<=o)return{value:n(s),isLive:!0};const l=e.store.getVisibleData(r,o);return l.length===0?null:{value:n(l[l.length-1]),isLive:!1}}getPreviousClose(t){const e=a(this,Y).find(r=>r.id===t);if(!(e!=null&&e.store))return null;const s=e.store.getAll();if(s.length<2)return null;const n=s[s.length-2];return"close"in n?n.close:n.value}getLastData(t){const e=a(this,Y).find(s=>s.id===t);return e!=null&&e.store?e.store.last()??null:null}getDataAtTime(t,e){var s,n;const r=a(this,Y).find(o=>o.id===t);return r?((n=(s=r.renderer).getDataAtTime)==null?void 0:n.call(s,e,a(this,ht)))??null:null}getLayerSnapshots(t,e){var s,n;const r=a(this,Y).find(o=>o.id===t);return r!=null&&r.visible?((n=(s=r.renderer).getLayerSnapshots)==null?void 0:n.call(s,e,a(this,ht)))??null:null}getSeriesIds(){return a(this,ee)||k(this,ee,a(this,Y).map(t=>t.id)),a(this,ee).slice()}getSeriesType(t){const e=a(this,Y).find(s=>s.id===t);return e?e.renderer instanceof yi?"pie":"time":null}getSeriesIdsByType(t,e){const s=(e==null?void 0:e.visibleOnly)===!0,n=(e==null?void 0:e.singleLayerOnly)===!0,r=[];for(const o of a(this,Y)){const l=o.renderer instanceof yi;if(t==="pie"&&!l||t==="time"&&l)continue;const h=o.renderer.getLayerCount();if(!(n&&h>1)){if(s){if(!o.visible)continue;if(h>1){let d=!1;for(let c=0;c<h;c++)if(o.renderer.isLayerVisible(c)){d=!0;break}if(!d)continue}}r.push(o.id)}}return r}getStackedLastValue(t){var e,s;const n=a(this,Y).find(o=>o.id===t);return n?((s=(e=n.renderer).getStackedLastValue)==null?void 0:s.call(e))||this.getLastValue(t):null}getLayerLastSnapshots(t){var e,s;const n=a(this,Y).find(r=>r.id===t);return((s=n==null?void 0:(e=n.renderer).getLayerLastSnapshots)==null?void 0:s.call(e))??null}listSeriesForTest(){return a(this,Y).map(t=>({id:t.id,renderer:t.renderer}))}getSeriesColor(t){const e=a(this,Y).find(s=>s.id===t);return e?e.renderer.getLayerColors()[0]??a(this,Z).line.color:null}getSeriesLabel(t){var e;return(e=a(this,Y).find(s=>s.id===t))==null?void 0:e.label}getSeriesLayers(t){const e=a(this,Y).find(r=>r.id===t);if(!e)return null;const s=e.renderer.getLayerCount();if(s<=1)return null;const n=e.renderer.getLayerColors();return Array.from({length:s},(r,o)=>({color:n[o%n.length]}))}getSliceInfo(t){var e,s;const n=a(this,Y).find(r=>r.id===t);return((s=n==null?void 0:(e=n.renderer).getSliceInfo)==null?void 0:s.call(e,a(this,Z)))??null}getHoverInfo(t){var e,s;const n=a(this,Y).find(r=>r.id===t);return((s=n==null?void 0:(e=n.renderer).getHoverInfo)==null?void 0:s.call(e,a(this,Z)))??null}setTheme(t){const e=a(this,Z);k(this,Z,t);for(const s of a(this,Y))s.renderer.applyTheme(t,e);a(this,K).markDirty(),B(this,q,ie).call(this)}getTheme(){return a(this,Z)}setAxis(t){var e,s;const n=this.yAxisWidth,r=this.xAxisHeight;k(this,Te,t),k(this,rt,{min:(e=t.y)==null?void 0:e.min,max:(s=t.y)==null?void 0:s.max}),k(this,Re,!1),this.updateYRange(!0),(this.yAxisWidth!==n||this.xAxisHeight!==r)&&this.updateScales(!0),a(this,K).markDirty()}setYAxisLabelDensity(t){let e=!1;"labelCount"in t&&(this.yScale.setLabelCount(t.labelCount??null),e=!0),"minLabelSpacing"in t&&(this.yScale.setMinSpacing(t.minLabelSpacing??null),e=!0),e&&(this.syncScales(),this.emit("viewportChange"),a(this,K).markDirty())}setTimeAxisLabelDensity(t){let e=!1;"labelCount"in t&&(this.timeScale.setLabelCount(t.labelCount??null),e=!0),"minLabelSpacing"in t&&(this.timeScale.setMinSpacing(t.minLabelSpacing??null),e=!0),e&&(this.syncScales(),this.emit("viewportChange"),a(this,K).markDirty())}getMediaSize(){return a(this,tt).size.media}getLayout(){const t=a(this,tt).size.media,e=this.yAxisWidth,s=this.xAxisHeight;return{chartArea:{x:0,y:0,width:t.width-e,height:t.height-s},yAxisWidth:e,xAxisHeight:s}}getDataInterval(){return a(this,ht)}setAnimations(t){var e,s,n;const r=Ps(t);k(this,At,r),a(this,O).setReboundMs(r.viewport.reboundMs),(e=a(this,Ce))==null||e.setInputResponseMs(r.viewport.inputResponseMs);const o={};if(r.points.enterMs===0&&(o.entryMs=0),r.points.smoothMs===0&&(o.smoothMs=0),r.points.pulseMs===0&&(o.pulseMs=0),Object.keys(o).length>0)for(const l of a(this,Y))(n=(s=l.renderer).updateOptions)==null||n.call(s,o);a(this,K).markDirty()}setPadding(t){const e=a(this,O).getPadding();a(this,O).setPadding(t);const s=a(this,O).getPadding(),n=!zs(e.left,s.left)||!zs(e.right,s.right),r=e.top!==s.top||e.bottom!==s.bottom;if(n){const{first:o,last:l}=this.getDataBounds();if(o!==void 0&&l!==void 0){const h=a(this,tt).size.media.width-this.yAxisWidth;a(this,O).fitToData(o,l,h,!1)}}r&&this.updateYRange(!0),this.syncScales(),a(this,K).markDirty(),r&&this.emit("viewportChange")}setGrid(t){k(this,Oe,t.visible),a(this,K).markDirty()}setEdgeState(t,e){a(this,Rt)[t]!==e&&(a(this,Rt)[t]=e,a(this,Et).markDirty())}getEdgeState(t){return a(this,Rt)[t]}setYLabel(t){k(this,Gi,t),this.updateViewportPadding()}updateViewportPadding(){}destroy(){var t,e,s;for(const n of a(this,Y))n.renderer.dispose();k(this,Y,[]),k(this,ee,null),a(this,O).destroy(),a(this,K).destroy(),a(this,Et).destroy(),(t=a(this,Ce))==null||t.destroy(),a(this,tt).destroy(),(e=a(this,$e))==null||e.destroy(),k(this,$e,null),a(this,Ne)&&((s=a(this,Yt))==null||s.destroy()),k(this,Yt,null),k(this,Ne,!1),this.removeAllListeners()}getPerfMonitor(){return a(this,Yt)}getDataBounds(){let t,e;for(const s of a(this,Y)){if(!s.visible||!s.store)continue;const n=s.store.first(),r=s.store.last();n&&(t===void 0||n.time<t)&&(t=n.time),r&&(e===void 0||r.time>e)&&(e=r.time)}return{first:t,last:e}}onDataChanged(){if(a(this,_t)>0){k(this,He,!0);return}this.updateDataInterval();const{first:t,last:e}=this.getDataBounds();t!==void 0&&a(this,O).setDataStart(t),e!==void 0&&a(this,O).setDataEnd(e);let s=0;for(const o of a(this,Y))o.renderer.getTotalLength?s+=o.renderer.getTotalLength():o.store&&(s+=o.store.length);const n=s-a(this,Mi)>5;if(k(this,Mi,s),t!==void 0&&e!==void 0){const{from:o,to:l}=a(this,O).logicalRange,h=o===0&&l===0,d=a(this,tt).size.media.width-this.yAxisWidth;h?a(this,O).fitToData(t,e,d,!1):n&&a(this,O).autoScroll?a(this,O).fitToData(t,e,d,!0):!n&&a(this,O).autoScroll&&(a(this,O).dataFitsCurrentViewport(d)?a(this,O).fitToData(t,e,d,!0,bi.streamTick):a(this,O).scrollToEnd(e,d))}const r=a(this,Ge);k(this,Ge,!1),this.updateYRange(n||r),this.syncScales(),a(this,K).markDirty(),this.emit("dataUpdate"),B(this,q,ie).call(this)}updateDataInterval(){for(const t of a(this,Y)){if(!t.store)continue;const e=t.store.getAll();if(e.length>=2){const s=e.slice(0,20).map(n=>n.time);k(this,ht,Qs(s)),a(this,O).setDataInterval(a(this,ht));break}}}computeTargetYRange(t,e){let s=1/0,n=-1/0;for(const r of a(this,Y)){if(!r.visible)continue;if(r.renderer.getValueRange){const l=r.renderer.getValueRange(t.from,t.to);if(l){l.max>n&&(n=l.max),l.min<s&&(s=l.min),e==null||e.push(l.min,l.max);continue}}if(!r.store)continue;const o=r.store.getVisibleData(t.from,t.to);for(const l of o)if("high"in l){const h=l;Number.isFinite(h.high)&&(h.high>n&&(n=h.high),e==null||e.push(h.high)),Number.isFinite(h.low)&&(h.low<s&&(s=h.low),e==null||e.push(h.low))}else{const h=l;Number.isFinite(h.value)&&(h.value>n&&(n=h.value),h.value<s&&(s=h.value),e==null||e.push(h.value))}}return s===1/0||n===-1/0?null:{min:s,max:n}}updateYRange(t=!1,e){const s=a(this,O).logicalRange,n=a(this,rt).min!==void 0&&a(this,rt).min!=="auto"&&typeof a(this,rt).min!="number"||a(this,rt).max!==void 0&&a(this,rt).max!=="auto"&&typeof a(this,rt).max!="number"?[]:null,r=this.computeTargetYRange(s,n);if(r===null){k(this,Re,!1);return}const o=this.resolveBound(a(this,rt).min,r.min,r.max,n??[],"min"),l=this.resolveBound(a(this,rt).max,r.max,r.min,n??[],"max"),h=a(this,At).viewport.yAxisMs,d=a(this,Ke);k(this,Ke,!1);const c=d&&h>ps?ps:h;if(!a(this,Re)||t||c<=0)a(this,Qt).snap(o),a(this,Zt).snap(l),k(this,Re,!0);else{const w=a(this,At).points.enterMs>0;o<a(this,Qt).current&&!w?a(this,Qt).snap(o):a(this,Qt).setTarget(o,{duration:c,now:e}),l>a(this,Zt).current&&!w?a(this,Zt).snap(l):a(this,Zt).setTarget(l,{duration:c,now:e})}const u=e??performance.now(),f=a(this,Qt).tick(u),m=a(this,Zt).tick(u);(f||m)&&a(this,K).markDirty();const g=a(this,rt).min!==void 0&&a(this,rt).min!=="auto",p=a(this,rt).max!==void 0&&a(this,rt).max!=="auto",v=a(this,tt).size.media.height-this.xAxisHeight;a(this,O).setYRange(a(this,Qt).current,a(this,Zt).current,v,g,p)}resolveBound(t,e,s,n,r){if(t===void 0||t==="auto")return e;if(typeof t=="number")return t;if(typeof t=="function")return t(n);const o=String(t).match(/^([+-]?)\s*(\d+(?:\.\d+)?)\s*%$/);if(o){const l=o[1]==="-"?-1:1,h=parseFloat(o[2])/100,d=Math.abs(s-e)||Math.abs(e)||1;return e+l*h*d*(r==="max"?1:-1)}return e}syncScales(){const t=a(this,tt).size;if(t.media.width===0||t.media.height===0)return;const e=t.media.width-this.yAxisWidth,s=t.media.height-this.xAxisHeight;this.timeScale.update(a(this,O).visibleRange,e,t.horizontalPixelRatio,a(this,ht)),this.yScale.update(a(this,O).yRange,s,t.verticalPixelRatio)}updateScales(t=!1,e){const s=a(this,tt).size;if(s.media.width===0||s.media.height===0)return;const n=s.media.width-this.yAxisWidth,r=s.media.height-this.xAxisHeight;this.timeScale.update(a(this,O).visibleRange,n,s.horizontalPixelRatio,a(this,ht)),this.yScale.update(a(this,O).yRange,r,s.verticalPixelRatio),this.updateYRange(t,e),this.yScale.update(a(this,O).yRange,r,s.verticalPixelRatio)}renderMain(t){const e=a(this,tt).size;if(e.media.width===0||e.media.height===0)return;const s=typeof t=="number"?t:performance.now();a(this,O).tick(s)&&a(this,K).markDirty(),this.updateScales(!1,s),a(this,tt).useMainLayer(n=>{const{context:r,bitmapSize:o}=n,l=(e.media.width-this.yAxisWidth)*e.horizontalPixelRatio,h=(e.media.height-this.xAxisHeight)*e.verticalPixelRatio;r.clearRect(0,0,o.width,o.height),r.save(),r.beginPath(),r.rect(0,0,l,h),r.clip(),a(this,Oe)&&lr(n,this.timeScale,this.yScale,a(this,Z),a(this,ht));const d=a(this,O).getPadding(),c={top:d.top,bottom:d.bottom},u=a(this,Yt);for(const f of a(this,Y)){if(!f.visible)continue;const m={scope:n,timeScale:this.timeScale,yScale:this.yScale,theme:a(this,Z),dataInterval:a(this,ht),padding:c};if(u){const g=performance.now();f.renderer.render(m),u.recordSeries(f.id,performance.now()-g,s)}else f.renderer.render(m)}r.restore()});for(const n of a(this,Y))if(n.renderer.needsAnimation){a(this,K).markDirty();break}this.renderOverlay()}renderOverlay(t){var e,s;const n=a(this,tt).size;if(n.media.width===0||n.media.height===0)return;let r=!1;for(const h of a(this,Y))if(h.visible&&h.renderer.overlayNeedsAnimation){r=!0;break}const o=a(this,Rt).left==="loading"||a(this,Rt).right==="loading",l=a(this,Rt).left!=="idle"||a(this,Rt).right!=="idle";if(a(this,tt).useOverlayLayer(h=>{var d,c;if(!a(this,Vt)&&!r&&!l)return;const u=(n.media.width-this.yAxisWidth)*n.horizontalPixelRatio,f=(n.media.height-this.xAxisHeight)*n.verticalPixelRatio;if(h.context.save(),h.context.beginPath(),h.context.rect(0,0,u,f),h.context.clip(),a(this,Vt)&&B(this,q,pn).call(this)){const p=a(this,Vt).mediaX*n.horizontalPixelRatio,v=a(this,Vt).mediaY*n.verticalPixelRatio;Qn(h,p,v,a(this,Z))}const m=a(this,O).getPadding(),g={top:m.top,bottom:m.bottom};for(const p of a(this,Y))p.visible&&((c=(d=p.renderer).drawOverlay)==null||c.call(d,{scope:h,timeScale:this.timeScale,yScale:this.yScale,theme:a(this,Z),dataInterval:a(this,ht),padding:g,crosshair:a(this,Vt)}));l&&this.drawEdgeIndicators(h,n.media.height-this.xAxisHeight),h.context.restore()}),r){const{from:h,to:d}=this.timeScale.getRange();let c=!1;for(const u of a(this,Y))if(!(!u.visible||!u.renderer.overlayNeedsAnimation)&&(((s=(e=u.renderer).hasOverlayContentInRange)==null?void 0:s.call(e,h,d))??!0)){c=!0;break}c&&a(this,Et).markDirty()}o&&a(this,Et).markDirty()}drawEdgeIndicators(t,e){const s=performance.now();for(const n of["left","right"]){const r=a(this,Rt)[n];if(r==="idle"||r==="has-more")continue;const o=this.resolveEdgeBoundary(n);o!==null&&rr({scope:t,timeScale:this.timeScale,theme:a(this,Z),chartMediaHeight:e,boundaryTime:o,side:n,state:r,now:s})}}resolveEdgeBoundary(t){const e=a(this,xi)[t];if(e!==null)return e;const{first:s,last:n}=this.getDataBounds();return t==="left"?s??null:n??null}}tt=new WeakMap,O=new WeakMap,K=new WeakMap,Et=new WeakMap,Ce=new WeakMap,Y=new WeakMap,Z=new WeakMap,Oe=new WeakMap,ht=new WeakMap,Vt=new WeakMap,rt=new WeakMap,ee=new WeakMap,Gi=new WeakMap,Te=new WeakMap,Rt=new WeakMap,xi=new WeakMap,wi=new WeakMap,_t=new WeakMap,He=new WeakMap,ue=new WeakMap,ni=new WeakMap,Ti=new WeakMap,At=new WeakMap,Yt=new WeakMap,Ne=new WeakMap,$e=new WeakMap,q=new WeakSet,ie=function(){if(Hi(this,Ti)._++,a(this,_t)>0){k(this,ni,!0);return}this.emit("overlayChange")},Bs=function(i){if(i&&!a(this,Y).some(e=>e.id===i))return i;let t;do t=`series_${++Ro}`;while(a(this,Y).some(e=>e.id===t));return t},Si=function(i){const{enterMs:t,smoothMs:e,pulseMs:s}=a(this,At).points;return i==="line"?{enterMs:t,smoothMs:e,pulseMs:s}:{enterMs:t,smoothMs:e}},Xe=function(){const{enterMs:i,smoothMs:t,pulseMs:e}=a(this,At).points,s={};return i===0&&(s.enterMs=0),t===0&&(s.smoothMs=0),e===0&&(s.pulseMs=0),s},Ue=function(i,t,e){var s;const n=B(this,q,Bs).call(this,e.id);return(s=i.onDataChanged)==null||s.call(i,()=>this.onDataChanged()),a(this,Y).push({id:n,label:e.label,renderer:i,store:t,visible:!0}),k(this,ee,null),this.updateViewportPadding(),this.emit("seriesChange"),B(this,q,ie).call(this),n},pn=function(){for(const i of a(this,Y))if(i.visible&&!(i.renderer instanceof yi))return!0;return!1},bn=function(i){const t=a(this,tt).size,e=a(this,O).getPadding(),s={top:e.top*t.verticalPixelRatio,bottom:e.bottom*t.verticalPixelRatio};let n=!1;for(const r of a(this,Y)){if(!r.renderer.hitTest||!r.renderer.setHoverIndex)continue;let o=-1;if(i){const l=i.mediaX*t.horizontalPixelRatio,h=i.mediaY*t.verticalPixelRatio;o=r.renderer.hitTest(l,h,t.bitmap.width,t.bitmap.height,s)}r.renderer.setHoverIndex(o)&&(n=!0)}n&&a(this,K).markDirty()},Mi=new WeakMap,Ge=new WeakMap,Qt=new WeakMap,Zt=new WeakMap,Re=new WeakMap,Ke=new WeakMap;function zs(i,t){return typeof i=="number"&&typeof t=="number"?i===t:typeof i=="object"&&typeof t=="object"?i.intervals===t.intervals:!1}function Lo(i,t){if(i.length<=t||t<=0)return i;const e=i[0].time,s=i[i.length-1].time,n=s-e;if(n<=0)return i;const r=n/t,o=[];let l=0;for(let h=0;h<t;h++){const d=h===t-1?s+1:e+(h+1)*r;let c=null,u=null;for(;l<i.length&&i[l].time<d;){const f=i[l];(c===null||f.value<c.value)&&(c=f),(u===null||f.value>u.value)&&(u=f),l++}if(!(c===null||u===null)){if(c===u){o.push(c);continue}c.time<u.time?o.push(c,u):o.push(u,c)}}return o}function Io(i,t){if(i.length<=t||t<=0)return i;const e=i[0].time,s=i[i.length-1].time,n=s-e;if(n<=0)return i;const r=n/t,o=[];let l=0;for(let h=0;h<t;h++){const d=h===t-1?s+1:e+(h+1)*r;let c=null;for(;l<i.length&&i[l].time<d;){const u=i[l];c===null?c={time:u.time,open:u.open,high:u.high,low:u.low,close:u.close}:(u.high>c.high&&(c.high=u.high),u.low<c.low&&(c.low=u.low),c.close=u.close),l++}c!==null&&o.push(c)}return o}const Es=8;function yn(i,t){return Math.abs(i-t.left)<=Es?{gesture:"resize-left",snapToCenter:!1}:Math.abs(i-t.right)<=Es?{gesture:"resize-right",snapToCenter:!1}:i>t.left&&i<t.right?{gesture:"pan",snapToCenter:!1}:{gesture:"pan",snapToCenter:!0}}function Ao(i){const{startVisible:t,deltaPx:e,pixelsPerTime:s,dataRange:n}=i,r=t.to-t.from,o=e/s;let l=t.from+o,h=t.to+o;return l<n.from&&(l=n.from,h=l+r),h>n.to&&(h=n.to,l=h-r),l<n.from&&(l=n.from),{from:l,to:h}}function Wo(i){const{edge:t,startVisible:e,deltaPx:s,pixelsPerTime:n,dataRange:r,minSpan:o}=i,l=s/n;if(t==="left"){let c=e.from+l,u=e.to;return c<r.from&&(c=r.from),u-c<o&&(c=u-o),c<r.from&&(c=r.from,u=Math.min(r.to,c+o)),{from:c,to:u}}let h=e.from,d=e.to+l;return d>r.to&&(d=r.to),d-h<o&&(d=h+o),d>r.to&&(d=r.to,h=Math.max(r.from,d-o)),{from:h,to:d}}function Do(i){const{time:t,startVisible:e,dataRange:s}=i,n=e.to-e.from;let r=t-n/2,o=r+n;return r<s.from&&(r=s.from,o=r+n),o>s.to&&(o=s.to,r=o-n),r<s.from&&(r=s.from),{from:r,to:o}}function Fo(i){const{ctx:t,theme:e,mediaWidth:s,mediaHeight:n}=i;t.fillStyle=e.background,t.fillRect(0,0,s,n)}function Po(i,t,e=!0,s=1){if(t.length<2)return;const{ctx:n,timeScale:r,yScale:o,mediaHeight:l,theme:h}=i,d=s<1&&t.length>=2,c=d?t.length-2:t.length-1;if(e){const u=n.createLinearGradient(0,0,0,l);u.addColorStop(0,h.line.areaTopColor),u.addColorStop(1,h.line.areaBottomColor),n.beginPath();for(let f=0;f<=c;f++){const m=t[f],g=r.timeToX(m.time),p=o.valueToY(m.value);f===0?n.moveTo(g,p):n.lineTo(g,p)}if(n.lineTo(r.timeToX(t[c].time),l),n.lineTo(r.timeToX(t[0].time),l),n.closePath(),n.fillStyle=u,n.fill(),d){n.save(),n.globalAlpha=s,n.beginPath();const f=t[c],m=t[t.length-1],g=r.timeToX(f.time),p=r.timeToX(m.time);n.moveTo(g,o.valueToY(f.value)),n.lineTo(p,o.valueToY(m.value)),n.lineTo(p,l),n.lineTo(g,l),n.closePath(),n.fillStyle=u,n.fill(),n.restore()}}n.beginPath();for(let u=0;u<=c;u++){const f=t[u],m=r.timeToX(f.time),g=o.valueToY(f.value);u===0?n.moveTo(m,g):n.lineTo(m,g)}if(n.strokeStyle=h.line.color,n.lineWidth=h.line.width,n.stroke(),d){n.save(),n.globalAlpha=s,n.beginPath();const u=t[c],f=t[t.length-1];n.moveTo(r.timeToX(u.time),o.valueToY(u.value)),n.lineTo(r.timeToX(f.time),o.valueToY(f.value)),n.strokeStyle=h.line.color,n.lineWidth=h.line.width,n.stroke(),n.restore()}}function Bo(i,t,e=1){if(t.length===0)return;const{ctx:s,timeScale:n,yScale:r,mediaHeight:o,theme:l}=i,h=Math.max(1,t.length>1?Math.abs(n.timeToX(t[1].time)-n.timeToX(t[0].time))*.8:2),d=e<1,c=t.length-1;s.fillStyle=l.line.color;for(let u=0;u<t.length;u++){const f=t[u],m=n.timeToX(f.time),g=r.valueToY(f.value),p=Math.max(1,o-g);d&&u===c?(s.save(),s.globalAlpha=e,s.fillRect(m-h/2,g,h,p),s.restore()):s.fillRect(m-h/2,g,h,p)}}function zo(i,t,e=1){if(t.length===0)return;const{ctx:s,timeScale:n,yScale:r,theme:o}=i,l=Math.max(1,t.length>1?Math.abs(n.timeToX(t[1].time)-n.timeToX(t[0].time))*.75:2),h=e<1,d=t.length-1;for(let c=0;c<t.length;c++){const u=t[c],f=u.close>=u.open?o.candlestick.up:o.candlestick.down,m=pt(f.body),g=n.timeToX(u.time),p=r.valueToY(u.open),v=r.valueToY(u.close),w=r.valueToY(u.high),x=r.valueToY(u.low),y=h&&c===d;y&&(s.save(),s.globalAlpha=e),s.strokeStyle=f.wick,s.lineWidth=1,s.beginPath(),s.moveTo(g,w),s.lineTo(g,x),s.stroke();const M=Math.min(p,v),S=Math.max(1,Math.abs(v-p));s.fillStyle=m,s.fillRect(g-l/2,M,l,S),y&&s.restore()}}function Eo(i,t,e){const s=Math.max(e.from,Math.min(e.to,t.from)),n=Math.max(e.from,Math.min(e.to,t.to)),r=i.timeToX(s),o=i.timeToX(n),l=Math.min(r,o),h=Math.max(r,o);return{left:l,right:h,width:Math.max(1,h-l)}}var Lt,N,Ri,et,Wt,re,Nt,$t,Ot,Ht,me,De,te,ki,Ci,de,jt,Xt,qe,Dt,Je,ri,Qe,ge,Ze,ti,ei,ii,fe,si,j,Ki,gt,xn,qi,ne,Ve,_i,pi,Vs,wn,Sn,Mn,Ys,js,xe,_s;class kn{constructor(t){W(this,j),W(this,Lt),W(this,N),W(this,Ri),W(this,et),W(this,Wt),W(this,re),W(this,Nt),W(this,$t),W(this,Ot),W(this,Ht),W(this,me),W(this,De),W(this,te,new tn),W(this,ki,new nn),W(this,Ci,0),W(this,de,0),W(this,jt,1),W(this,Xt,null),W(this,qe,!0),W(this,Dt,null),W(this,Je,null),W(this,ri,-1),W(this,Qe),W(this,ge,null),W(this,Ze),W(this,ti),W(this,ei),W(this,ii),W(this,fe),W(this,si),k(this,Lt,t.container),k(this,et,t.chart),k(this,me,t.data),k(this,De,t.options??{}),window.getComputedStyle(a(this,Lt)).position==="static"&&(a(this,Lt).style.position="relative"),k(this,N,document.createElement("canvas")),a(this,N).style.position="absolute",a(this,N).style.left="0",a(this,N).style.top="0",a(this,N).style.height="100%",a(this,N).style.touchAction="none",a(this,Lt).appendChild(a(this,N));const e=a(this,N).getContext("2d",{alpha:!0});if(!e)throw new Error("NavigatorController: failed to acquire 2D context");k(this,Ri,e),k(this,Wt,document.createElement("div")),a(this,Wt).dataset.chartNavigatorOverlay="",a(this,Wt).style.cssText="position:absolute;left:0;top:0;height:100%;pointer-events:none;",k(this,re,document.createElement("div")),a(this,re).style.cssText="position:absolute;left:0;top:0;bottom:0;",k(this,Nt,document.createElement("div")),a(this,Nt).style.cssText="position:absolute;top:0;bottom:0;",k(this,$t,document.createElement("div")),a(this,$t).style.cssText="position:absolute;top:0;bottom:0;box-sizing:border-box;",k(this,Ot,Hs()),k(this,Ht,Hs()),a(this,Wt).append(a(this,re),a(this,Nt),a(this,$t),a(this,Ot),a(this,Ht)),a(this,Lt).appendChild(a(this,Wt)),k(this,Ze,()=>B(this,j,ne).call(this)),k(this,ti,()=>B(this,j,ne).call(this)),a(this,et).on("viewportChange",a(this,Ze)),a(this,et).on("overlayChange",a(this,ti)),k(this,ei,n=>B(this,j,wn).call(this,n)),k(this,ii,n=>B(this,j,Sn).call(this,n)),k(this,fe,n=>B(this,j,Mn).call(this,n)),k(this,si,()=>{a(this,ge)===null&&(a(this,N).style.cursor="default")}),a(this,N).addEventListener("pointerdown",a(this,ei)),a(this,N).addEventListener("pointermove",a(this,ii)),a(this,N).addEventListener("pointerup",a(this,fe)),a(this,N).addEventListener("pointercancel",a(this,fe)),a(this,N).addEventListener("pointerleave",a(this,si)),k(this,Qe,new ResizeObserver(n=>B(this,j,xn).call(this,n[0]))),a(this,Qe).observe(a(this,Lt)),B(this,j,Ki).call(this);const s=a(this,Lt).getBoundingClientRect();s.width>0&&s.height>0&&B(this,j,qi).call(this,s.width,s.height),B(this,j,ne).call(this)}setData(t){var e;const s=Vo(t),n=(s==null?void 0:s.time)??null;if(n!==null&&a(this,Je)!==null&&n!==a(this,Je)){const r=((e=a(this,Dt))==null?void 0:e.current)??0;k(this,Dt,new Pe({initial:r,duration:be,easing:pe,lerp:(o,l,h)=>o+(l-o)*h})),a(this,Dt).setTarget(1)}k(this,Je,n),k(this,ri,(s==null?void 0:s.seriesIndex)??-1),k(this,me,t),B(this,j,ne).call(this)}setOptions(t){k(this,De,t),B(this,j,Ki).call(this),B(this,j,ne).call(this)}destroy(){a(this,et).off("viewportChange",a(this,Ze)),a(this,et).off("overlayChange",a(this,ti)),a(this,N).removeEventListener("pointerdown",a(this,ei)),a(this,N).removeEventListener("pointermove",a(this,ii)),a(this,N).removeEventListener("pointerup",a(this,fe)),a(this,N).removeEventListener("pointercancel",a(this,fe)),a(this,N).removeEventListener("pointerleave",a(this,si)),a(this,Qe).disconnect(),a(this,Xt)!==null&&(cancelAnimationFrame(a(this,Xt)),k(this,Xt,null)),a(this,N).remove(),a(this,Wt).remove()}get height(){return a(this,De).height??a(this,et).getTheme().navigator.height}}Lt=new WeakMap,N=new WeakMap,Ri=new WeakMap,et=new WeakMap,Wt=new WeakMap,re=new WeakMap,Nt=new WeakMap,$t=new WeakMap,Ot=new WeakMap,Ht=new WeakMap,me=new WeakMap,De=new WeakMap,te=new WeakMap,ki=new WeakMap,Ci=new WeakMap,de=new WeakMap,jt=new WeakMap,Xt=new WeakMap,qe=new WeakMap,Dt=new WeakMap,Je=new WeakMap,ri=new WeakMap,Qe=new WeakMap,ge=new WeakMap,Ze=new WeakMap,ti=new WeakMap,ei=new WeakMap,ii=new WeakMap,fe=new WeakMap,si=new WeakMap,j=new WeakSet,Ki=function(){const i=a(this,De).height;i!==void 0&&(a(this,Lt).style.height=`${i}px`)},gt=function(){return Math.max(0,a(this,Ci)-a(this,et).yAxisWidth)},xn=function(i){var t;if(!i)return;const e=(t=i.contentBoxSize)==null?void 0:t[0],s=(e==null?void 0:e.inlineSize)??i.contentRect.width,n=(e==null?void 0:e.blockSize)??i.contentRect.height;s<=0||n<=0||(B(this,j,qi).call(this,s,n),B(this,j,ne).call(this))},qi=function(i,t){const e=window.devicePixelRatio||1;k(this,Ci,i),k(this,de,t),k(this,jt,e);const s=a(this,j,gt);a(this,N).width=Math.round(s*e),a(this,N).height=Math.round(t*e),a(this,N).style.width=`${s}px`,a(this,Wt).style.width=`${s}px`},ne=function(){a(this,qe)&&a(this,Xt)!==null||(k(this,qe,!0),a(this,Xt)===null&&k(this,Xt,requestAnimationFrame(()=>{k(this,Xt,null),k(this,qe,!1),B(this,j,Ys).call(this)})))},Ve=function(i){const t=a(this,N).getBoundingClientRect();return i.clientX-t.left},_i=function(){const i=B(this,j,xe).call(this),t=B(this,j,_s).call(this);return a(this,te).update(i,a(this,j,gt),a(this,jt)),a(this,ki).update(t,a(this,de),a(this,jt)),{dataRange:i,yRange:t}},pi=function(){return B(this,j,_i).call(this),Eo(a(this,te),a(this,et).getVisibleRange(),B(this,j,xe).call(this))},Vs=function(){const i=B(this,j,xe).call(this),t=i.to-i.from;return t<=0||a(this,j,gt)<=0?0:a(this,j,gt)/t},wn=function(i){if(i.button!==void 0&&i.button!==0)return;const t=B(this,j,Ve).call(this,i),e=B(this,j,xe).call(this);if(e.to<=e.from)return;const s=B(this,j,pi).call(this),n=yn(t,s),r=B(this,j,Vs).call(this);if(r===0)return;let o=a(this,et).getVisibleRange();if(n.snapToCenter){const l=a(this,te).xToTime(t),h=Do({time:l,startVisible:o,dataRange:e});a(this,et).setVisibleRange(h),o=h}k(this,ge,{pointerId:i.pointerId,gesture:n.gesture,startX:t,startVisible:o,pixelsPerTime:r}),a(this,N).setPointerCapture(i.pointerId),a(this,N).style.cursor=Cn(n.gesture,!0),i.preventDefault()},Sn=function(i){const t=a(this,ge);if(t===null){a(this,N).style.cursor=Os(B(this,j,Ve).call(this,i),B(this,j,pi).call(this));return}if(i.pointerId!==t.pointerId)return;const e=B(this,j,Ve).call(this,i)-t.startX,s=B(this,j,xe).call(this);let n;if(t.gesture==="pan")n=Ao({startVisible:t.startVisible,deltaPx:e,pixelsPerTime:t.pixelsPerTime,dataRange:s});else{const r=t.gesture==="resize-left"?"left":"right";n=Wo({edge:r,startVisible:t.startVisible,deltaPx:e,pixelsPerTime:t.pixelsPerTime,dataRange:s,minSpan:2*a(this,et).getDataInterval()})}a(this,et).setVisibleRange(n)},Mn=function(i){const t=a(this,ge);t===null||i.pointerId!==t.pointerId||(k(this,ge,null),a(this,N).hasPointerCapture(i.pointerId)&&a(this,N).releasePointerCapture(i.pointerId),a(this,N).style.cursor=Os(B(this,j,Ve).call(this,i),B(this,j,pi).call(this)))},Ys=function(){if(a(this,j,gt)<=0||a(this,de)<=0)return;const i=a(this,et).getTheme().navigator,{dataRange:t}=B(this,j,_i).call(this);a(this,N).width=Math.round(a(this,j,gt)*a(this,jt)),a(this,N).height=Math.round(a(this,de)*a(this,jt)),a(this,N).style.width=`${a(this,j,gt)}px`,a(this,Wt).style.width=`${a(this,j,gt)}px`;const e=a(this,Ri),s=a(this,N).width,n=a(this,N).height;e.save(),e.clearRect(0,0,s,n),e.scale(a(this,jt),a(this,jt));const r={ctx:e,timeScale:a(this,te),yScale:a(this,ki),mediaWidth:a(this,j,gt),mediaHeight:a(this,de),theme:i};a(this,N).style.boxShadow=`inset 0 1px 0 ${i.borderColor}, inset 0 -1px 0 ${i.borderColor}`,Fo(r);let o=1;a(this,Dt)!==null&&(a(this,Dt).tick(performance.now()),o=a(this,Dt).current,a(this,Dt).animating?B(this,j,ne).call(this):k(this,Dt,null));const l=Math.max(1,Math.round(a(this,j,gt))),h=a(this,me);if(h.type==="candlestick")zo(r,Io(h.points,l),o);else{const d=Oi(h),c=d.length===1,u=a(this,ri)>=0?a(this,ri):d.length-1;for(let f=0;f<d.length;f++){const m=Lo(d[f],l),g=f===u?o:1;h.type==="bar"?Bo(r,m,g):Po(r,m,c,g)}}e.restore(),B(this,j,js).call(this,i,t)},js=function(i,t){if(t.to<=t.from)return;const e=a(this,et).getVisibleRange(),s=Math.max(t.from,Math.min(t.to,e.from)),n=Math.max(t.from,Math.min(t.to,e.to)),r=a(this,te).timeToX(s),o=a(this,te).timeToX(n),l=Math.min(r,o),h=Math.max(r,o),d=Math.max(1,h-l);a(this,re).style.width=`${l}px`,a(this,re).style.background=i.mask.fill,a(this,re).style.display=l>0?"block":"none";const c=Math.max(0,a(this,j,gt)-(l+d));a(this,Nt).style.left=`${l+d}px`,a(this,Nt).style.width=`${c}px`,a(this,Nt).style.background=i.mask.fill,a(this,Nt).style.display=c>0?"block":"none",a(this,$t).style.left=`${l}px`,a(this,$t).style.width=`${d}px`,a(this,$t).style.background=i.window.fill,a(this,$t).style.border=i.window.borderWidth>0?`${i.window.borderWidth}px solid ${i.window.border}`:"none";const u=i.handle.width,f=Math.max(1,u/2),m=a(this,et).getTheme().background;a(this,Ot).style.left=`${l-u/2}px`,a(this,Ot).style.width=`${u}px`,a(this,Ot).style.background=i.handle.color,a(this,Ot).style.borderRadius=`${f}px`,a(this,Ht).style.left=`${l+d-u/2}px`,a(this,Ht).style.width=`${u}px`,a(this,Ht).style.background=i.handle.color,a(this,Ht).style.borderRadius=`${f}px`;for(const g of a(this,Ot).children)g.style.background=m;for(const g of a(this,Ht).children)g.style.background=m},xe=function(){const i=a(this,me);let t=Number.POSITIVE_INFINITY,e=Number.NEGATIVE_INFINITY,s=0;if(i.type==="candlestick")s=i.points.length,s>0&&(t=i.points[0].time,e=i.points[s-1].time);else for(const r of Oi(i))r.length!==0&&(s+=r.length,r[0].time<t&&(t=r[0].time),r[r.length-1].time>e&&(e=r[r.length-1].time));if(s>=2&&e>t)return{from:t,to:e};if(s===1)return{...a(this,et).getVisibleRange()};const n=a(this,et).getDataRange();return n&&n.to>n.from?n:{...a(this,et).getVisibleRange()}},_s=function(){const i=a(this,me);let t=1/0,e=-1/0;if(i.type==="candlestick")for(const n of i.points)n.low<t&&(t=n.low),n.high>e&&(e=n.high);else for(const n of Oi(i))for(const r of n)r.value<t&&(t=r.value),r.value>e&&(e=r.value);if(!Number.isFinite(t)||!Number.isFinite(e))return{min:0,max:1};if(t===e){const n=Math.abs(t)*.05||1;return{min:t-n,max:e+n}}const s=(e-t)*.2;return{min:t-s,max:e+s}};function Oi(i){return"series"in i?i.series:[i.points]}function Vo(i){if(i.type==="candlestick"){const n=i.points.length;return n===0?null:{time:i.points[n-1].time,seriesIndex:-1}}const t="series"in i?i.series:[i.points];let e=null,s=-1;for(let n=0;n<t.length;n++){const r=t[n];if(r.length===0)continue;const o=r[r.length-1].time;(e===null||o>e)&&(e=o,s=n)}return e===null?null:{time:e,seriesIndex:s}}function Cn(i,t){return i==="resize-left"||i==="resize-right"?"ew-resize":t?"grabbing":"grab"}function Os(i,t){return Cn(Yo(i,t),!1)}function Yo(i,t){return yn(i,t).gesture}function Hs(){const i=document.createElement("div");i.style.cssText="position:absolute;top:0;bottom:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;";for(let t=0;t<3;t++){const e=document.createElement("div");e.style.cssText="width:2px;height:2px;border-radius:50%;flex-shrink:0;",i.appendChild(e)}return i}const Ji=new WeakMap;function Tn(i,t){var e;return(e=Ji.get(i))==null?void 0:e.get(t)}function Rn(i,t,e){let s=Ji.get(i);s||(s=new Map,Ji.set(i,s)),s.set(t,e)}function Ns(i){return"close"in i?i.close:i.value}function Ln(i,t){if(t==="none"||i.length<=1)return i;const e=[...i];return e.sort((s,n)=>{const r=Ns(s.data),o=Ns(n.data);return t==="asc"?r-o:o-r}),e}function Li(i){const t=Object.freeze({...i.data}),e={id:i.id,seriesId:i.seriesId,layerIndex:i.layerIndex,label:i.label,data:t,color:i.color};return Object.freeze(e)}function cs(i,t){const e=t.sort??"none",s=i.getOverlayVersion(),n=Tn(i,t.cacheKey);if(n&&n.version===s&&n.time===t.time&&n.sort===e)return n.data;const r=[];for(const l of i.getSeriesIds()){if(!i.isSeriesVisible(l))continue;const h=i.getSeriesLabel(l);if(i.getSeriesLayers(l)!==null){const c=i.getLayerSnapshots(l,t.time);if(!c)continue;for(const u of c)r.push(Li({id:`${l}_layer${u.layerIndex}`,seriesId:l,layerIndex:u.layerIndex,label:h,data:{time:u.time,value:u.value},color:u.color}));continue}const d=i.getDataAtTime(l,t.time);d&&r.push(Li({id:l,seriesId:l,label:h,data:d,color:i.getSeriesColor(l)??"#888"}))}const o=Object.freeze(Ln(r,e));return Rn(i,t.cacheKey,{version:s,time:t.time,sort:e,data:o}),o}function In(i,t){const e=t.sort??"none",s=i.getOverlayVersion(),n=Tn(i,t.cacheKey);if(n&&n.version===s&&n.time===null&&n.sort===e)return n.data;const r=[];for(const l of i.getSeriesIds()){if(!i.isSeriesVisible(l))continue;const h=i.getSeriesLabel(l),d=i.getLayerLastSnapshots(l);if(d){for(const u of d)r.push(Li({id:`${l}_layer${u.layerIndex}`,seriesId:l,layerIndex:u.layerIndex,label:h,data:{time:u.time,value:u.value},color:u.color}));continue}const c=i.getLastData(l);c&&r.push(Li({id:l,seriesId:l,label:h,data:c,color:i.getSeriesColor(l)??"#888"}))}const o=Object.freeze(Ln(r,e));return Rn(i,t.cacheKey,{version:s,time:null,sort:e,data:o}),o}const jo={background:"#131722",chartGradient:["#1a1f2e","#101318"],typography:{fontFamily:"'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif",fontSize:12},grid:{color:"rgba(42, 46, 57, 0.6)",style:"dashed"},candlestick:{up:{body:E("#26a69a"),wick:"#26a69a"},down:{body:E("#ef5350"),wick:"#ef5350"}},line:{color:"#2962FF",width:1,areaTopColor:"rgba(41, 98, 255, 0.08)",areaBottomColor:"rgba(41, 98, 255, 0.01)"},seriesColors:["#2962FF","#FF6D00","#26a69a","#AB47BC","#ef5350","#FFCA28","#66BB6A","#EC407A","#42A5F5","#B388FF"],bands:{upper:"#42A5F5",lower:"#EC407A"},crosshair:{color:"rgba(150, 150, 150, 0.5)",labelBackground:"#363a45",labelTextColor:"#d1d4dc"},axis:{fontSize:10,textColor:"#787b86"},yLabel:{fontSize:11,upBackground:"#26a69a",downBackground:"#ef5350",neutralBackground:"#363a45",textColor:"#ffffff"},tooltip:{fontSize:12,background:"rgba(19, 23, 34, 0.9)",textColor:"#d1d4dc",borderColor:"rgba(42, 46, 57, 0.8)"},navigator:{height:48,background:"transparent",borderColor:"rgba(120, 123, 134, 0.18)",line:{color:"#787b86",width:1,areaTopColor:"rgba(120, 123, 134, 0.22)",areaBottomColor:"rgba(120, 123, 134, 0)"},candlestick:{up:{body:E("#26a69a"),wick:"#26a69a"},down:{body:E("#ef5350"),wick:"#ef5350"}},window:{fill:"transparent",border:"transparent",borderWidth:0},handle:{color:"rgba(255, 255, 255, 0.30)",width:6},mask:{fill:"rgba(19, 23, 34, 0.78)"}}},_o={background:"#ffffff",chartGradient:["#ffffff","#f5f6f8"],typography:{fontFamily:"'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif",fontSize:12},grid:{color:"rgba(0, 0, 0, 0.06)",style:"solid"},candlestick:{up:{body:E("#089981"),wick:"#089981"},down:{body:E("#f23645"),wick:"#f23645"}},line:{color:"#2962FF",width:1,areaTopColor:"rgba(41, 98, 255, 0.08)",areaBottomColor:"rgba(41, 98, 255, 0.01)"},seriesColors:["#2962FF","#FF6D00","#089981","#AB47BC","#f23645","#E6A700","#43A047","#D81B60","#1E88E5","#7E57C2"],bands:{upper:"#1E88E5",lower:"#D81B60"},crosshair:{color:"rgba(0, 0, 0, 0.2)",labelBackground:"#4c525e",labelTextColor:"#ffffff"},axis:{fontSize:10,textColor:"#787b86"},yLabel:{fontSize:11,upBackground:"#089981",downBackground:"#f23645",neutralBackground:"#4c525e",textColor:"#ffffff"},tooltip:{fontSize:12,background:"rgba(255, 255, 255, 0.95)",textColor:"#131722",borderColor:"rgba(0, 0, 0, 0.1)"},navigator:{height:48,background:"transparent",borderColor:"rgba(139, 148, 158, 0.22)",line:{color:"#8b949e",width:1,areaTopColor:"rgba(139, 148, 158, 0.18)",areaBottomColor:"rgba(139, 148, 158, 0)"},candlestick:{up:{body:E("#089981"),wick:"#089981"},down:{body:E("#f23645"),wick:"#f23645"}},window:{fill:"transparent",border:"transparent",borderWidth:0},handle:{color:"rgba(0, 0, 0, 0.30)",width:6},mask:{fill:"rgba(255, 255, 255, 0.82)"}}},Oo=J({name:"Andromeda",description:"Deep space purples and cosmic blues",background:"#23262e",grid:{color:"rgba(50,48,56,0.8)"},candlestick:{up:{body:E("#96e072"),wick:"#96e072"},down:{body:E("#ee5d43"),wick:"#ee5d43"}},line:{color:"#00e8c6"},seriesColors:["#00e8c6","#f39c12","#96e072","#c74ded","#ee5d43","#ffe66d","#00e8c6","#ee5d43","#7cb7ff","#c74ded"],bands:{upper:"#7cb7ff",lower:"#c74ded"},crosshair:{color:"rgba(102,94,110,0.4)",labelBackground:"#2e3038"},axis:{textColor:"#665e6e"},tooltip:{background:"rgba(35,38,46,0.92)",textColor:"#d5ced9",borderColor:"rgba(50,48,56,0.6)"},typography:{fontFamily:un},fontUrl:dn}),Ho=J({name:"Ayu Mirage",description:"Warm dark with amber accents",background:"#1f2430",grid:{color:"rgba(42,48,60,0.8)"},candlestick:{up:{body:E("#bae67e"),wick:"#bae67e"},down:{body:E("#f27983"),wick:"#f27983"}},line:{color:"#73d0ff"},seriesColors:["#73d0ff","#ffad66","#bae67e","#d4bfff","#f27983","#ffd580","#95e6cb","#f28779","#5ccfe6","#d4bfff"],bands:{upper:"#5ccfe6",lower:"#f28779"},crosshair:{color:"rgba(92,103,115,0.4)",labelBackground:"#2a3040"},axis:{textColor:"#5c6773"},tooltip:{background:"rgba(31,36,48,0.92)",textColor:"#cbccc6",borderColor:"rgba(42,48,60,0.6)"},typography:{fontFamily:Di},fontUrl:rs}),No=J({name:"Dracula",description:"Classic dark with vibrant highlights",background:"#282a36",grid:{color:"rgba(68,71,90,0.8)"},candlestick:{up:{body:E("#50fa7b"),wick:"#50fa7b"},down:{body:E("#ff5555"),wick:"#ff5555"}},line:{color:"#bd93f9"},seriesColors:["#bd93f9","#8be9fd","#50fa7b","#ff79c6","#ffb86c","#f1fa8c","#ff5555","#6272a4","#ff5555","#ff79c6"],bands:{upper:"#8be9fd",lower:"#ff79c6"},crosshair:{color:"rgba(98,114,164,0.4)",labelBackground:"#44475a"},axis:{textColor:"#a0b0d0"},tooltip:{background:"rgba(40,42,54,0.92)",textColor:"#f8f8f2",borderColor:"rgba(68,71,90,0.6)"},typography:{fontFamily:os},fontUrl:as}),$o=J({name:"GitHub Light",description:"Clean and familiar, GitHub-inspired",background:"#fafbfc",chartGradient:["#ffffff","#fafbfc"],grid:{color:"rgba(208,215,222,0.4)"},candlestick:{up:{body:E("#2da44e"),wick:"#2da44e"},down:{body:E("#cf222e"),wick:"#cf222e"}},line:{color:"#0969da",areaTopColor:"rgba(9,105,218,0.05)",areaBottomColor:"rgba(9,105,218,0.005)"},seriesColors:["#0969da","#c4820e","#2da44e","#8250df","#cf222e","#c4820e","#0550ae","#cf222e","#2da44e","#8250df"],bands:{upper:"#0550ae",lower:"#cf222e"},crosshair:{color:"rgba(208,215,222,0.3)",labelBackground:"#f0f3f6"},axis:{textColor:"#8b949e"},tooltip:{background:"rgba(250,251,252,0.95)",textColor:"#24292f",borderColor:"rgba(216,222,228,0.5)"},typography:{fontFamily:ls},fontUrl:hs}),Xo=J({name:"Gruvbox",description:"Retro warm with earthy tones",background:"#282828",grid:{color:"rgba(60,56,54,0.8)"},candlestick:{up:{body:E("#b8bb26"),wick:"#b8bb26"},down:{body:E("#fb4934"),wick:"#fb4934"}},line:{color:"#83a598"},seriesColors:["#83a598","#fe8019","#b8bb26","#d3869b","#fb4934","#fabd2f","#8ec07c","#fb4934","#458588","#d3869b"],bands:{upper:"#83a598",lower:"#d3869b"},crosshair:{color:"rgba(146,131,116,0.4)",labelBackground:"#3c3836"},axis:{textColor:"#928374"},tooltip:{background:"rgba(40,40,40,0.92)",textColor:"#ebdbb2",borderColor:"rgba(60,56,54,0.6)"},typography:{fontFamily:Ai},fontUrl:Wi}),Uo={name:"Handwritten",description:"Sketch-style with a personal touch",fontUrl:bo,dark:!1,theme:{background:"#fdf5e6",chartGradient:["#fef6e3","#fdf5e6"],typography:{fontFamily:po,fontSize:15},grid:{color:"rgba(180,170,150,0.3)",style:"dashed"},candlestick:{up:{body:E("#7a9a5e"),wick:"#7a9a5e"},down:{body:E("#b07060"),wick:"#b07060"}},line:{color:"#6a8fa0",width:1,areaTopColor:"rgba(106,143,160,0.08)",areaBottomColor:"rgba(106,143,160,0.01)"},seriesColors:["#6a8fa0","#c09050","#7a9a5e","#8a7098","#b07060","#a09030","#508878","#a06878","#6888a0","#8870a0"],bands:{upper:"#6888a0",lower:"#a06878"},crosshair:{color:"rgba(160,152,128,0.3)",labelBackground:"#f5edd8",labelTextColor:"#5c5040"},axis:{fontSize:13,textColor:"#a09880"},yLabel:{fontSize:15,upBackground:"#7a9a5e",downBackground:"#b07060",neutralBackground:"#e8dcc8",textColor:"#fdf5e6"},tooltip:{fontSize:14,background:"rgba(253,245,230,0.95)",textColor:"#5c5040",borderColor:"rgba(180,170,150,0.4)"},navigator:{height:48,background:"transparent",borderColor:"rgba(106,143,160,0.22)",line:{color:"#92806c",width:1,areaTopColor:"rgba(146,128,108,0.18)",areaBottomColor:"rgba(146,128,108,0)"},candlestick:{up:{body:E("#7a9a5e"),wick:"#7a9a5e"},down:{body:E("#b07060"),wick:"#b07060"}},window:{fill:"transparent",border:"transparent",borderWidth:0},handle:{color:"rgba(0,0,0,0.30)",width:6},mask:{fill:"rgba(253,245,230,0.78)"}}}},Go="'Silkscreen', cursive",Ko="https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap",qo=J({name:"Matrix",background:"#000000",candlestick:{up:{body:E("#00ff41"),wick:"#00ff41"},down:{body:E("#00802a"),wick:"#00802a"}},line:{color:"#00ff41"},seriesColors:["#00ff41","#00cc33","#00992a","#33ff66","#66ff88","#00e639","#00b830","#4dff78","#00ff41","#00cc33"],bands:{upper:"#33ff66",lower:"#00802a"},grid:{color:"rgba(0,255,65,0.06)"},axis:{textColor:"#00cc33"},crosshair:{color:"rgba(0,255,65,0.3)",labelBackground:"#0a1a0a"},tooltip:{background:"rgba(0,10,0,0.95)",textColor:"#00ff41",borderColor:"rgba(0,255,65,0.2)"},typography:{fontFamily:Go},fontUrl:Ko,chartGradient:["#010a01","#000000"]}),Jo=J({name:"Lavender Mist",background:"#f5f0f4",candlestick:{up:{body:E("#6b8e5e"),wick:"#6b8e5e"},down:{body:E("#b85468"),wick:"#b85468"}},line:{color:"#7c6bc4"},seriesColors:["#7c6bc4","#d4885a","#6b8e5e","#c46b8e","#b85468","#8e7a4e","#4e8e8a","#b85468","#7c6bc4","#c46b8e"],bands:{upper:"#4e8e8a",lower:"#b85468"},grid:{color:"rgba(150,130,155,0.12)"},axis:{textColor:"#9a88a0"},crosshair:{color:"rgba(150,130,155,0.2)",labelBackground:"#ebe4e8"},tooltip:{background:"rgba(245,240,244,0.95)",textColor:"#3a3050",borderColor:"rgba(150,130,155,0.25)"},typography:{fontFamily:ls},fontUrl:hs,chartGradient:["#f8f4f7","#f5f0f4"]}),Qo=J({name:"Love",description:"Soft romantic pinks and roses",background:"#fef7f8",chartGradient:["#fffafb","#fef7f8"],grid:{color:"rgba(200,160,175,0.25)"},candlestick:{up:{body:E("#6a9a6e"),wick:"#6a9a6e"},down:{body:E("#c45070"),wick:"#c45070"}},line:{color:"#a05080"},seriesColors:["#a05080","#d08850","#6a9a6e","#7868a8","#c45070","#c89040","#508890","#c45070","#a05080","#7868a8"],bands:{upper:"#508890",lower:"#c45070"},crosshair:{color:"rgba(180,140,155,0.3)",labelBackground:"#f0dce2"},axis:{textColor:"#b08898"},tooltip:{background:"rgba(253,242,244,0.95)",textColor:"#4a3040",borderColor:"rgba(200,160,175,0.35)"},typography:{fontFamily:Di},fontUrl:rs}),Zo=J({name:"Material Palenight",description:"Material Design in moonlit hues",background:"#292d3e",grid:{color:"rgba(55,59,75,0.8)"},candlestick:{up:{body:E("#c3e88d"),wick:"#c3e88d"},down:{body:E("#f07178"),wick:"#f07178"}},line:{color:"#82aaff"},seriesColors:["#82aaff","#f78c6c","#c3e88d","#c792ea","#f07178","#ffcb6b","#89ddff","#ff5370","#82aaff","#c792ea"],bands:{upper:"#89ddff",lower:"#f07178"},crosshair:{color:"rgba(103,110,149,0.4)",labelBackground:"#34324a"},axis:{textColor:"#676e95"},tooltip:{background:"rgba(41,45,62,0.92)",textColor:"#a6accd",borderColor:"rgba(55,59,75,0.6)"},typography:{fontFamily:un},fontUrl:dn}),ta="'Silkscreen', cursive",ea="https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap",ia=J({name:"Monochrome",description:"Pure black and white, pixel font",background:"#ffffff",chartGradient:["#ffffff","#fafafa"],grid:{color:"rgba(0,0,0,0.06)",style:"solid"},candlestick:{up:{body:E("#111111"),wick:"#111111"},down:{body:E("#bbbbbb"),wick:"#bbbbbb"}},line:{color:"#111111"},seriesColors:["#111111","#888888","#bbbbbb","#555555","#999999","#333333","#aaaaaa","#666666","#cccccc","#444444"],bands:{upper:"#555555",lower:"#bbbbbb"},crosshair:{color:"rgba(0,0,0,0.08)",labelBackground:"#f0f0f0"},axis:{textColor:"#b0b0b0"},tooltip:{fontSize:9,background:"rgba(255,255,255,0.97)",textColor:"#222222",borderColor:"rgba(0,0,0,0.08)"},typography:{fontFamily:ta},fontUrl:ea}),sa=J({name:"Mint Breeze",background:"#f6f5ee",candlestick:{up:{body:E("#2e9070"),wick:"#2e9070"},down:{body:E("#d04848"),wick:"#d04848"}},line:{color:"#2a8a80"},seriesColors:["#2a8a80","#d0884a","#2e9070","#7a68b0","#d04848","#a09040","#3a7a9a","#d04848","#2a8a80","#7a68b0"],bands:{upper:"#3a7a9a",lower:"#d04848"},grid:{color:"rgba(100,150,140,0.1)"},axis:{textColor:"#80a098"},crosshair:{color:"rgba(120,140,120,0.18)",labelBackground:"#ece8de"},tooltip:{background:"rgba(246,245,238,0.95)",textColor:"#2a3530",borderColor:"rgba(130,140,115,0.2)"},typography:{fontFamily:go},fontUrl:mo,chartGradient:["#f8f7f0","#f6f5ee"]}),na=J({name:"Monokai Pro",description:"Bold syntax colors on dark gray",background:"#2d2a2e",grid:{color:"rgba(64,60,62,0.8)"},candlestick:{up:{body:E("#8ab862"),wick:"#8ab862"},down:{body:E("#d05470"),wick:"#d05470"}},line:{color:"#62b8c8"},seriesColors:["#62b8c8","#d08050","#8ab862","#9080c8","#d05470","#d0b850","#62b8c8","#d05470","#8ab862","#9080c8"],bands:{upper:"#62b8c8",lower:"#d05470"},crosshair:{color:"rgba(114,112,114,0.4)",labelBackground:"#403e42"},axis:{textColor:"#727072"},tooltip:{background:"rgba(45,42,46,0.92)",textColor:"#fcfcfa",borderColor:"rgba(64,60,62,0.6)"},typography:{fontFamily:os},fontUrl:as}),ra=J({name:"Night Owl",description:"Crafted for late-night coding",background:"#011627",grid:{color:"rgba(31,52,72,0.8)"},candlestick:{up:{body:E("#7ec699"),wick:"#7ec699"},down:{body:E("#e06c75"),wick:"#e06c75"}},line:{color:"#82aaff"},seriesColors:["#82aaff","#d49a6a","#7ec699","#b48ead","#e06c75","#d4b568","#5fb3a1","#d47084","#6bc5e0","#b48ead"],bands:{upper:"#6bc5e0",lower:"#d47084"},crosshair:{color:"rgba(99,119,119,0.4)",labelBackground:"#1d3b53"},axis:{textColor:"#4d5a6c"},tooltip:{background:"rgba(1,22,39,0.92)",textColor:"#d6deeb",borderColor:"rgba(31,52,72,0.6)"},typography:{fontFamily:Ai},fontUrl:Wi}),oa=J({name:"One Dark Pro",description:"Atom editor's iconic dark palette",background:"#282c34",grid:{color:"rgba(59,64,72,0.8)"},candlestick:{up:{body:E("#98c379"),wick:"#98c379"},down:{body:E("#e06c75"),wick:"#e06c75"}},line:{color:"#61afef"},seriesColors:["#61afef","#e5c07b","#98c379","#c678dd","#e06c75","#56b6c2","#d19a66","#be5046","#61afef","#c678dd"],bands:{upper:"#56b6c2",lower:"#c678dd"},crosshair:{color:"rgba(99,110,123,0.4)",labelBackground:"#3e4451"},axis:{textColor:"#5c6370"},tooltip:{background:"rgba(40,44,52,0.92)",textColor:"#abb2bf",borderColor:"rgba(59,64,72,0.6)"},typography:{fontFamily:Ai},fontUrl:Wi}),aa=J({name:"Panda",description:"Playful neons on charcoal",background:"#292a2b",grid:{color:"rgba(58,58,60,0.8)"},candlestick:{up:{body:E("#19f9d8"),wick:"#19f9d8"},down:{body:E("#ff75b5"),wick:"#ff75b5"}},line:{color:"#6fc1ff"},seriesColors:["#6fc1ff","#ffb86c","#19f9d8","#b084eb","#ff75b5","#ffcc95","#19f9d8","#ff4b82","#45a9f9","#b084eb"],bands:{upper:"#45a9f9",lower:"#ff75b5"},crosshair:{color:"rgba(117,117,117,0.4)",labelBackground:"#3a3a3c"},axis:{textColor:"#757575"},tooltip:{background:"rgba(41,42,43,0.92)",textColor:"#e6e6e6",borderColor:"rgba(58,58,60,0.6)"},typography:{fontFamily:os},fontUrl:as}),la=J({name:"Peach Cream",background:"#fef6f0",candlestick:{up:{body:E("#5a9a68"),wick:"#5a9a68"},down:{body:E("#d06848"),wick:"#d06848"}},line:{color:"#d07040"},seriesColors:["#d07040","#5a9a68","#8a6aaa","#c0884a","#d06848","#4a8a9a","#9a7a4a","#d06848","#d07040","#8a6aaa"],bands:{upper:"#4a8a9a",lower:"#d06848"},grid:{color:"rgba(180,140,120,0.12)"},axis:{textColor:"#b09080"},crosshair:{color:"rgba(180,140,120,0.2)",labelBackground:"#f0e4d8"},tooltip:{background:"rgba(254,246,240,0.95)",textColor:"#4a3028",borderColor:"rgba(180,140,120,0.25)"},typography:{fontFamily:ls},fontUrl:hs,chartGradient:["#fff8f2","#fef6f0"]}),ha=J({name:"Quiet Light",description:"Subdued and easy on the eyes",background:"#f5f5f5",chartGradient:["#fdfdfd","#f5f5f5"],grid:{color:"rgba(200,200,200,0.5)"},candlestick:{up:{body:E("#448c27"),wick:"#448c27"},down:{body:E("#aa3731"),wick:"#aa3731"}},line:{color:"#4b69c6"},seriesColors:["#4b69c6","#c47820","#448c27","#7a3e9d","#aa3731","#c47820","#2d8fa1","#aa3731","#448c27","#7a3e9d"],bands:{upper:"#2d8fa1",lower:"#aa3731"},crosshair:{color:"rgba(170,170,170,0.3)",labelBackground:"#e8e8e8"},axis:{textColor:"#aaaaaa"},tooltip:{background:"rgba(245,245,245,0.95)",textColor:"#333333",borderColor:"rgba(200,200,200,0.5)"},typography:{fontFamily:uo},fontUrl:fo}),ca=J({name:"Rosé Pine Dawn",description:"Dawn-inspired warm neutrals",background:"#faf4ed",grid:{color:"rgba(152,147,165,0.2)"},candlestick:{up:{body:E("#56949f"),wick:"#56949f"},down:{body:E("#b4637a"),wick:"#b4637a"}},line:{color:"#907aa9"},seriesColors:["#907aa9","#ea9d34","#56949f","#d7827e","#b4637a","#ea9d34","#286983","#b4637a","#907aa9","#d7827e"],bands:{upper:"#286983",lower:"#b4637a"},crosshair:{color:"rgba(152,147,165,0.3)",labelBackground:"#f2e9e1"},axis:{textColor:"#9893a5"},tooltip:{background:"rgba(250,244,237,0.95)",textColor:"#575279",borderColor:"rgba(152,147,165,0.3)"},typography:{fontFamily:fn},fontUrl:gn}),ua=J({name:"Sand Dune",background:"#f4f0e8",candlestick:{up:{body:E("#5a8a50"),wick:"#5a8a50"},down:{body:E("#b85040"),wick:"#b85040"}},line:{color:"#8a6a3a"},seriesColors:["#8a6a3a","#b87a40","#5a8a50","#7a5a70","#b85040","#a09030","#4a7a7a","#b85040","#8a6a3a","#7a5a70"],bands:{upper:"#4a7a7a",lower:"#b85040"},grid:{color:"rgba(150,130,100,0.15)"},axis:{textColor:"#9a8a70"},crosshair:{color:"rgba(150,130,100,0.2)",labelBackground:"#e8e0d0"},tooltip:{background:"rgba(244,240,232,0.95)",textColor:"#3a3020",borderColor:"rgba(150,130,100,0.3)"},typography:{fontFamily:fn},fontUrl:gn,chartGradient:["#f8f4ec","#f4f0e8"]}),da=J({name:"Solarized Light",description:"Ethan Schoonover's precision palette",background:"#fdf6e3",chartGradient:["#fef8e8","#fdf6e3"],grid:{color:"rgba(238,232,213,0.8)"},candlestick:{up:{body:E("#859900"),wick:"#859900"},down:{body:E("#dc322f"),wick:"#dc322f"}},line:{color:"#268bd2"},seriesColors:["#268bd2","#cb4b16","#859900","#6c71c4","#dc322f","#b58900","#2aa198","#d33682","#268bd2","#6c71c4"],bands:{upper:"#2aa198",lower:"#d33682"},crosshair:{color:"rgba(147,161,161,0.3)",labelBackground:"#eee8d5"},axis:{textColor:"#93a1a1"},tooltip:{background:"rgba(253,246,227,0.95)",textColor:"#586e75",borderColor:"rgba(238,232,213,0.6)"},typography:{fontFamily:Ai},fontUrl:Wi});function hi(i){const{x:t,y:e,chartWidth:s,chartHeight:n,tooltipWidth:r,tooltipHeight:o,offsetX:l=16,offsetY:h=16}=i,d=t+l+r>s?t-l-r:t+l,c=e+h+o>n?e-h-o:e+h,u=Math.max(0,s-r),f=Math.max(0,n-o);return{left:Math.max(0,Math.min(u,d)),top:Math.max(0,Math.min(f,c))}}const Le=A.createContext(null);function lt(){const i=A.useContext(Le);if(!i)throw new Error("useChartInstance must be used within <ChartContainer>");return i}const fa=20;function An({data:i,options:t,id:e}){var h;const s=lt(),n=A.useRef(null),r=A.useRef([]),o=A.useRef([]),l=A.useRef([]);return A.useLayoutEffect(()=>{const d=s.addBarSeries({...t,layers:i.length,id:e});return n.current=d,r.current=new Array(i.length).fill(0),o.current=new Array(i.length).fill(null),l.current=new Array(i.length).fill(null),()=>{s.removeSeries(d),n.current=null,r.current=[],o.current=[],l.current=[]}},[s,i.length,e]),A.useLayoutEffect(()=>{const d=n.current;d&&s.batch(()=>{for(let c=0;c<i.length;c++){const u=i[c],f=r.current[c]??0,m=o.current[c]??null;if(u.length===0){s.setSeriesData(d,[],c),r.current[c]=0,o.current[c]=null,l.current[c]=null;continue}const g=ct(u[0].time),p=ct(u[u.length-1].time),v=l.current[c]??null,w=m!==null&&m!==g,x=u.length-f;if(w&&x===0&&(v!==null&&v!==p))s.setSeriesData(d,u.slice(0,-1),c),s.appendData(d,u[u.length-1],c);else if(f===0||u.length<f||x>fa||w)s.setSeriesData(d,u,c);else if(u.length===f)s.updateData(d,u[u.length-1],c);else for(let M=f;M<u.length;M++)s.appendData(d,u[M],c);r.current[c]=u.length,o.current[c]=g,l.current[c]=p}})},[s,i]),A.useEffect(()=>{n.current&&t&&s.updateSeriesOptions(n.current,t)},[s,(h=t==null?void 0:t.colors)==null?void 0:h.join(","),t==null?void 0:t.barWidthRatio,t==null?void 0:t.stacking,t==null?void 0:t.entryAnimation,t==null?void 0:t.enterAnimation,t==null?void 0:t.entryMs,t==null?void 0:t.enterMs,t==null?void 0:t.smoothMs]),null}const ga=20;function ma({data:i,options:t,id:e}){var h,d,c,u,f,m;const s=lt(),n=A.useRef(null),r=A.useRef(0),o=A.useRef(null),l=A.useRef(null);return A.useLayoutEffect(()=>{const g=s.addCandlestickSeries({...t,id:e});return n.current=g,()=>{s.removeSeries(g),n.current=null,r.current=0,o.current=null,l.current=null}},[s,e]),A.useLayoutEffect(()=>{const g=n.current;if(!g)return;if(i.length===0){s.setSeriesData(g,[]),r.current=0,o.current=null,l.current=null;return}const p=r.current,v=o.current,w=l.current,x=ct(i[0].time),y=ct(i[i.length-1].time),M=v!==null&&v!==x,S=i.length-p;if(M&&S===0&&(w!==null&&w!==y))s.setSeriesData(g,i.slice(0,-1)),s.appendData(g,i[i.length-1]);else if(p===0||i.length<p||S>ga||M)s.setSeriesData(g,i);else if(i.length===p)s.updateData(g,i[i.length-1]);else for(let b=p;b<i.length;b++)s.appendData(g,i[b]);r.current=i.length,o.current=x,l.current=y},[s,i]),A.useEffect(()=>{n.current&&t&&s.updateSeriesOptions(n.current,t)},[s,Array.isArray((h=t==null?void 0:t.up)==null?void 0:h.body)?t.up.body.join(","):(d=t==null?void 0:t.up)==null?void 0:d.body,Array.isArray((c=t==null?void 0:t.down)==null?void 0:c.body)?t.down.body.join(","):(u=t==null?void 0:t.down)==null?void 0:u.body,(f=t==null?void 0:t.up)==null?void 0:f.wick,(m=t==null?void 0:t.down)==null?void 0:m.wick,t==null?void 0:t.bodyWidthRatio,t==null?void 0:t.entryAnimation,t==null?void 0:t.enterAnimation,t==null?void 0:t.entryMs,t==null?void 0:t.enterMs,t==null?void 0:t.smoothMs]),null}const us=A.createContext(null),Ie=us.Provider;function ci(){const i=A.useContext(us);if(!i)throw new Error("useTheme must be used within <ThemeProvider>");return i}function pa(){return A.useContext(us)}function Fi(i,t,e){const s=Array.isArray(t)?t:[t];return{subscribe:n=>{const r=n;for(const o of s)i.on(o,r);return()=>{for(const o of s)i.off(o,r)}},getSnapshot:e}}function Wn(i){const t=A.useMemo(()=>Fi(i,["viewportChange","dataUpdate","seriesChange"],()=>i.getVisibleRange()),[i]);return A.useSyncExternalStore(t.subscribe,t.getSnapshot)}function Dn(i){const t=A.useMemo(()=>Fi(i,["viewportChange","dataUpdate","seriesChange"],()=>i.getYRange()),[i]);return A.useSyncExternalStore(t.subscribe,t.getSnapshot)}function ba(i,t){const e=A.useMemo(()=>{let s=i.getLastValue(t),n=s?i.yScale.valueToY(s.value):null;const r=()=>s,o=()=>{const l=i.getLastValue(t),h=l?i.yScale.valueToY(l.value):null;return(s==null?void 0:s.value)===(l==null?void 0:l.value)&&(s==null?void 0:s.isLive)===(l==null?void 0:l.isLive)&&n===h?!1:(s=l,n=h,!0)};return{subscribe:l=>{o();const h=()=>{o()&&l()};return i.on("dataUpdate",h),i.on("viewportChange",h),()=>{i.off("dataUpdate",h),i.off("viewportChange",h)}},getSnapshot:r}},[i,t]);return A.useSyncExternalStore(e.subscribe,e.getSnapshot)}function va(i,t){const e=A.useMemo(()=>Fi(i,"dataUpdate",()=>i.getPreviousClose(t)),[i,t]);return A.useSyncExternalStore(e.subscribe,e.getSnapshot)}function ui(i){const t=A.useMemo(()=>Fi(i,"crosshairMove",()=>i.getCrosshairPosition()),[i]);return A.useSyncExternalStore(t.subscribe,t.getSnapshot)}const ya=(i,t)=>t==="volume"?ae(i):is(i);function Fn({sort:i="none",format:t=ya,children:e}){const s=lt(),n=ci(),r=ui(s),[,o]=A.useState(0);A.useLayoutEffect(()=>{const f=()=>o(m=>m+1);return s.on("overlayChange",f),s.getSeriesIds().length>0&&o(m=>m+1),()=>{s.off("overlayChange",f)}},[s]);const l=In(s,{sort:i,cacheKey:"infobar-last"});let h=l,d=l.length===0?0:Math.max(...l.map(f=>f.data.time)),c=!1;if(r!==null){const f=cs(s,{time:r.time,sort:i,cacheKey:"infobar-hover"});f.length>0&&(h=f,d=r.time,c=!0)}if(h.length===0)return null;if(e)return C.jsx("div",{"data-tooltip-legend":"",style:{display:"flex",alignItems:"center",flexShrink:0,fontFamily:n.typography.fontFamily,fontSize:n.typography.fontSize,fontVariantNumeric:"tabular-nums",opacity:c?1:.6,transition:"opacity 0.2s ease",pointerEvents:"none"},children:e({snapshots:h,time:d,isHover:c})});const u=s.getDataInterval();return C.jsxs("div",{"data-tooltip-legend":"",style:{display:"flex",alignItems:"center",gap:4,flexWrap:"wrap",padding:"4px 8px",flexShrink:0,fontSize:n.typography.fontSize,fontFamily:n.typography.fontFamily,fontVariantNumeric:"tabular-nums",opacity:c?1:.6,transition:"opacity 0.2s ease",pointerEvents:"none"},children:[C.jsx("span",{style:{color:n.axis.textColor,marginRight:2},children:li(d,u)}),h.map(f=>{if("open"in f.data){const p=f.data,v=p.close>=p.open,w=pt(v?n.candlestick.up.body:n.candlestick.down.body);return C.jsxs("span",{style:{display:"inline-flex",alignItems:"center",gap:4},children:[C.jsx(Ye,{label:"O",display:t(p.open,"open"),color:w,dim:n.axis.textColor}),C.jsx(Ye,{label:"H",display:t(p.high,"high"),color:w,dim:n.axis.textColor}),C.jsx(Ye,{label:"L",display:t(p.low,"low"),color:w,dim:n.axis.textColor}),C.jsx(Ye,{label:"C",display:t(p.close,"close"),color:w,dim:n.axis.textColor}),p.volume!=null&&C.jsx(Ye,{label:"V",display:t(p.volume,"volume"),color:n.axis.textColor,dim:n.axis.textColor})]},f.id)}const g=f.data;return C.jsxs("span",{style:{display:"inline-flex",alignItems:"center",gap:3},children:[C.jsx("span",{style:{width:6,height:6,borderRadius:"50%",background:f.color,flexShrink:0}}),C.jsx("span",{style:{color:f.color,fontWeight:500},children:t(g.value,"value")})]},f.id)})]})}function Ye({label:i,display:t,color:e,dim:s}){return C.jsxs(C.Fragment,{children:[C.jsx("span",{style:{color:s,opacity:.5,marginLeft:5},children:i}),C.jsx("span",{style:{color:e,fontWeight:500,marginLeft:2},children:t})]})}function xa({chart:i,isolatedIdRef:t,setIsolatedId:e}){const s=[],n=i.getSeriesIds();for(const r of n){const o=i.getSeriesLayers(r);if(o){const l=i.getSeriesLabel(r);for(let h=0;h<o.length;h++){const d=`${r}_layer${h}`,c=i.isSeriesVisible(r)&&i.isLayerVisible(r,h);s.push($s({id:d,seriesId:r,layerIndex:h,label:l?`${l} ${h+1}`:`Series ${h+1}`,color:o[h].color,isDisabled:!c,chart:i,isolatedIdRef:t,setIsolatedId:e}))}}else{const l=i.getSeriesColor(r);if(!l)continue;const h=i.getSeriesLabel(r),d=i.isSeriesVisible(r);s.push($s({id:r,seriesId:r,layerIndex:void 0,label:h??"Series",color:l,isDisabled:!d,chart:i,isolatedIdRef:t,setIsolatedId:e}))}}return s}function $s(i){const{id:t,seriesId:e,layerIndex:s,label:n,color:r,isDisabled:o,chart:l,isolatedIdRef:h,setIsolatedId:d}=i;return{id:t,seriesId:e,layerIndex:s,label:n,color:r,isDisabled:o,toggle:()=>{s!==void 0?l.setLayerVisible(e,s,!l.isLayerVisible(e,s)):l.setSeriesVisible(e,!l.isSeriesVisible(e))},isolate:()=>{if(h.current===t){l.batch(()=>{for(const f of l.getSeriesIds()){l.setSeriesVisible(f,!0);const m=l.getSeriesLayers(f);if(m)for(let g=0;g<m.length;g++)l.setLayerVisible(f,g,!0)}}),h.current=null,d(null);return}l.batch(()=>{for(const f of l.getSeriesIds()){const m=l.getSeriesLayers(f);if(m){l.setSeriesVisible(f,f===e);for(let g=0;g<m.length;g++)l.setLayerVisible(f,g,f===e&&g===s)}else l.setSeriesVisible(f,f===t)}}),h.current=t,d(t)}}}function Pn({items:i,position:t="bottom",mode:e="toggle",children:s}){const n=lt(),r=ci(),[o,l]=A.useState(null),[h,d]=A.useState(0),c=A.useRef(o);c.current=o,A.useLayoutEffect(()=>{const p=()=>d(w=>w+1),v=()=>l(null);return n.on("overlayChange",p),n.on("seriesChange",v),n.getSeriesIds().length>0&&d(w=>w+1),()=>{n.off("overlayChange",p),n.off("seriesChange",v)}},[n]);const u=A.useMemo(()=>xa({chart:n,isolatedIdRef:c,setIsolatedId:l}),[n,o,h]),f=t==="right",m={display:"flex",flexDirection:f?"column":"row",flexWrap:"wrap",gap:f?6:14,padding:f?"8px 6px":"6px 8px",alignItems:f?"flex-start":"center",justifyContent:f?"flex-start":"center",fontFamily:r.typography.fontFamily,fontSize:r.axis.fontSize,color:r.axis.textColor,pointerEvents:"auto",flexShrink:0};if(s)return u.length===0?null:C.jsx("div",{"data-legend":t,style:m,children:s({items:u})});if(i)return i.length===0?null:C.jsx("div",{"data-legend":t,style:m,children:i.map((p,v)=>C.jsxs("div",{style:{display:"flex",alignItems:"center",gap:4,userSelect:"none"},children:[C.jsx("span",{style:{width:8,height:8,borderRadius:2,background:p.color,flexShrink:0}}),C.jsx("span",{style:{whiteSpace:"nowrap"},children:p.label})]},v))});if(u.length===0)return null;const g=p=>{e==="isolate"||e==="solo"?p.isolate():p.toggle()};return C.jsx("div",{"data-legend":t,style:m,children:u.map(p=>C.jsxs("div",{onClick:()=>g(p),style:{display:"flex",alignItems:"center",gap:4,cursor:"pointer",opacity:p.isDisabled?.35:1,transition:"opacity 0.15s ease",userSelect:"none"},children:[C.jsx("span",{style:{width:8,height:8,borderRadius:2,background:p.color,flexShrink:0}}),C.jsx("span",{style:{whiteSpace:"nowrap"},children:p.label})]},p.id))})}function Bn({data:i,height:t,style:e,className:s}){const n=lt(),r=ci(),o=A.useRef(null),l=A.useRef(null);A.useLayoutEffect(()=>{if(!o.current)return;const d=new kn({container:o.current,chart:n,data:i,options:t!==void 0?{height:t}:void 0});return l.current=d,()=>{d.destroy(),l.current=null}},[n]),A.useEffect(()=>{var d;(d=l.current)==null||d.setData(i)},[i]),A.useEffect(()=>{var d;(d=l.current)==null||d.setOptions(t!==void 0?{height:t}:{})},[t]);const h=t??r.navigator.height;return C.jsx("div",{ref:o,className:s,"data-chart-navigator":"",style:{position:"relative",width:"100%",height:h,flexShrink:0,...e}})}function wa(i,t){if(t!==void 0)return t;const e=i.getSeriesIdsByType("pie",{visibleOnly:!0});return e.length>0?e[0]:null}function zn({seriesId:i,mode:t,format:e,position:s,children:n}){const r=t??"both",o=s??"bottom",l=e??ae,h=lt(),d=h.getTheme(),[,c]=A.useState(0);A.useLayoutEffect(()=>{const g=()=>c(p=>p+1);return h.on("overlayChange",g),h.getSeriesIds().length>0&&g(),()=>{h.off("overlayChange",g)}},[h]);const u=wa(h,i),f=u!==null?h.getSliceInfo(u):null;if(!f||f.length===0)return null;if(n)return C.jsx(C.Fragment,{children:n({slices:f,mode:r,format:l})});const m=o==="overlay";return C.jsx("div",{"data-chart-pie-legend":"","data-chart-pie-legend-position":o,style:{display:"flex",flexDirection:"column",gap:6,padding:m?"8px 12px":"6px 10px",fontFamily:d.typography.fontFamily,fontSize:d.typography.fontSize,color:d.tooltip.textColor,pointerEvents:"auto"},children:f.map((g,p)=>C.jsxs("div",{style:{display:"flex",alignItems:"center",gap:10},children:[C.jsx("span",{style:{width:10,height:10,borderRadius:"50%",background:g.color,flexShrink:0}}),C.jsx("span",{style:{flex:1,opacity:.8},children:g.label}),(r==="value"||r==="both")&&C.jsx("span",{style:{fontWeight:600,fontVariantNumeric:"tabular-nums",minWidth:r==="value"?40:void 0,textAlign:"right"},children:l(g.value)}),(r==="percent"||r==="both")&&C.jsxs("span",{style:{opacity:r==="percent"?1:.5,fontWeight:r==="percent"?600:400,fontSize:r==="percent"?d.typography.fontSize:d.axis.fontSize,fontVariantNumeric:"tabular-nums",minWidth:40,textAlign:"right"},children:[g.percent.toFixed(1),"%"]})]},p))})}function En({children:i,sub:t,style:e}){const s=ci();return C.jsxs("div",{"data-chart-title":"",style:{display:"flex",alignItems:"baseline",gap:6,padding:"6px 8px 4px",flexShrink:0,fontFamily:s.typography.fontFamily,fontSize:s.typography.fontSize,fontWeight:600,color:s.tooltip.textColor,pointerEvents:"none",...e},children:[i!=null&&i!==!1&&C.jsx("span",{children:i}),t!=null&&t!==!1&&C.jsx("span",{style:{fontWeight:400,color:s.axis.textColor,fontSize:s.axis.fontSize},children:t})]})}function Sa(i){let t=null,e=null,s=null,n=null,r=null;const o=[],l=h=>{if(A.isValidElement(h)&&h.type===A.Fragment){A.Children.forEach(h.props.children,l);return}if(A.isValidElement(h)){if(h.type===En){t=h;return}if(h.type===Pn){e=h;return}if(h.type===zn){const d=h;d.props.position==="overlay"?o.push(h):s=d;return}if(h.type===Fn){n=h;return}if(h.type===Bn){r=h;return}}o.push(h)};return A.Children.forEach(i,l),{titleEl:t,legendEl:e,pieLegendEl:s,tooltipLegendEl:n,navigatorEl:r,overlay:o}}function Vn({children:i,theme:t,axis:e,padding:s,gradient:n=!0,interactive:r,grid:o,headerLayout:l="overlay",perf:h,animations:d,style:c,className:u}){var Pt,Mt,Gt,Be,di,fi;const f=A.useRef(h),m=pa(),g=t??m??void 0,p=A.useRef(null),v=A.useRef(null),[w,x]=A.useState(0);A.useLayoutEffect(()=>{if(!p.current||v.current)return;const st={};return e&&(st.axis=e),g&&(st.theme=g),s&&(st.padding=s),r!==void 0&&(st.interactive=r),o!==void 0&&(st.grid=o),f.current!==void 0&&(st.perf=f.current),d!==void 0&&(st.animations=d),v.current=new vn(p.current,st),x(ft=>ft+1),()=>{var ft;(ft=v.current)==null||ft.destroy(),v.current=null}},[]),A.useEffect(()=>{v.current&&g&&v.current.setTheme(g)},[g]),A.useEffect(()=>{v.current&&e&&v.current.setAxis(e)},[(Pt=e==null?void 0:e.y)==null?void 0:Pt.width,(Mt=e==null?void 0:e.y)==null?void 0:Mt.min,(Gt=e==null?void 0:e.y)==null?void 0:Gt.max,(Be=e==null?void 0:e.y)==null?void 0:Be.visible,(di=e==null?void 0:e.x)==null?void 0:di.height,(fi=e==null?void 0:e.x)==null?void 0:fi.visible]),A.useEffect(()=>{v.current&&d!==void 0&&v.current.setAnimations(d)},[JSON.stringify(d)]);const y=A.useRef(null),[M,S]=A.useState(0),P=l==="overlay"?M:0;A.useEffect(()=>{const st=v.current;if(!st)return;const Kt={top:((s==null?void 0:s.top)??20)+P,...(s==null?void 0:s.bottom)!==void 0?{bottom:s.bottom}:{},...(s==null?void 0:s.right)!==void 0?{right:s.right}:{},...(s==null?void 0:s.left)!==void 0?{left:s.left}:{}};st.setPadding(Kt)},[s==null?void 0:s.top,s==null?void 0:s.bottom,typeof(s==null?void 0:s.right)=="object"?s.right.intervals:s==null?void 0:s.right,typeof(s==null?void 0:s.left)=="object"?s.left.intervals:s==null?void 0:s.left,P]),A.useEffect(()=>{v.current&&o!==void 0&&v.current.setGrid(o)},[o==null?void 0:o.visible]);const b=v.current,{titleEl:L,legendEl:I,pieLegendEl:T,tooltipLegendEl:D,navigatorEl:F,overlay:V}=Sa(i),z=(I==null?void 0:I.props.position)??"bottom",_=(T==null?void 0:T.props.position)??"bottom",$=z==="right"||_==="right",H=g??(b==null?void 0:b.getTheme()),[it,U]=(H==null?void 0:H.chartGradient)??["transparent","transparent"],bt=(H==null?void 0:H.background)??"transparent",vt=n?`linear-gradient(to bottom, ${it} 0%, ${bt} 70%, ${U} 100%)`:bt;A.useLayoutEffect(()=>{if(l!=="overlay"){S(0);return}const st=y.current;if(!st){S(0);return}const ft=()=>S(st.getBoundingClientRect().height);ft();const Kt=new ResizeObserver(ft);return Kt.observe(st),()=>Kt.disconnect()},[L!==null,D!==null,l,b!==null]);const St=(L||D)&&C.jsxs("div",{"data-chart-header":"","data-chart-top-overlay":l==="overlay"?"":void 0,ref:y,style:l==="overlay"?{position:"absolute",top:0,left:0,right:0,zIndex:2,pointerEvents:"none",display:"flex",flexDirection:"column"}:{flexShrink:0,display:"flex",flexDirection:"column",pointerEvents:"none"},children:[L,D]}),Q=C.jsx("div",{ref:p,style:{position:"relative",flex:1,minWidth:0,minHeight:0,overflow:"hidden"},children:b&&C.jsx(Le.Provider,{value:b,children:C.jsxs(Ie,{value:g??b.getTheme(),children:[l==="overlay"&&St,C.jsx("div",{"data-chart-series-overlay":"",style:{position:"absolute",inset:0,pointerEvents:"none",zIndex:3},children:V})]})})}),Ut=l==="inline"?C.jsxs("div",{"data-chart-canvas-block":"",style:{display:"flex",flexDirection:"column",flex:1,minWidth:0,minHeight:0},children:[b&&St&&C.jsx(Le.Provider,{value:b,children:C.jsx(Ie,{value:g??b.getTheme(),children:St})}),Q]}):Q,yt=b&&I&&C.jsx(Le.Provider,{value:b,children:C.jsx(Ie,{value:g??b.getTheme(),children:I})}),ut=b&&T&&C.jsx(Le.Provider,{value:b,children:C.jsx(Ie,{value:g??b.getTheme(),children:T})}),dt=b&&F&&C.jsx(Le.Provider,{value:b,children:C.jsx(Ie,{value:g??b.getTheme(),children:F})});return C.jsxs("div",{className:u,style:{display:"flex",flexDirection:"column",width:"100%",height:"100%",overflow:"hidden",background:vt,...c},children:[C.jsxs("div",{style:{display:"flex",flexDirection:$?"row":"column",flex:1,minHeight:0,minWidth:0},children:[Ut,yt,ut]}),dt]})}const Ma=20;function Yn({data:i,options:t,id:e}){var h,d;const s=lt(),n=A.useRef(null),r=A.useRef([]),o=A.useRef([]),l=A.useRef([]);return A.useLayoutEffect(()=>{const c=s.addLineSeries({...t,layers:i.length,id:e});return n.current=c,r.current=new Array(i.length).fill(0),o.current=new Array(i.length).fill(null),l.current=new Array(i.length).fill(null),()=>{s.removeSeries(c),n.current=null,r.current=[],o.current=[],l.current=[]}},[s,i.length,e]),A.useLayoutEffect(()=>{const c=n.current;c&&s.batch(()=>{for(let u=0;u<i.length;u++){const f=i[u],m=r.current[u]??0,g=o.current[u]??null;if(f.length===0){s.setSeriesData(c,[],u),r.current[u]=0,o.current[u]=null,l.current[u]=null;continue}const p=ct(f[0].time),v=ct(f[f.length-1].time),w=l.current[u]??null,x=g!==null&&g!==p,y=f.length-m;if(x&&y===0&&(w!==null&&w!==v))s.setSeriesData(c,f.slice(0,-1),u),s.appendData(c,f[f.length-1],u);else if(m===0||f.length<m||y>Ma||x)s.setSeriesData(c,f,u);else if(f.length===m)s.updateData(c,f[f.length-1],u);else for(let S=m;S<f.length;S++)s.appendData(c,f[S],u);r.current[u]=f.length,o.current[u]=p,l.current[u]=v}})},[s,i]),A.useEffect(()=>{n.current&&t&&s.updateSeriesOptions(n.current,t)},[s,(h=t==null?void 0:t.colors)==null?void 0:h.join(","),t==null?void 0:t.strokeWidth,(d=t==null?void 0:t.area)==null?void 0:d.visible,t==null?void 0:t.areaFill,t==null?void 0:t.pulse,t==null?void 0:t.stacking,t==null?void 0:t.entryAnimation,t==null?void 0:t.enterAnimation,t==null?void 0:t.entryMs,t==null?void 0:t.enterMs,t==null?void 0:t.smoothMs]),null}function ka({data:i,options:t,id:e}){var r,o,l,h,d,c,u,f,m,g;const s=lt(),n=A.useRef(null);return A.useLayoutEffect(()=>{const p=s.addPieSeries({...t,id:e});return n.current=p,()=>{s.removeSeries(p),n.current=null}},[s,e]),A.useEffect(()=>{n.current&&t&&s.updateSeriesOptions(n.current,t)},[s,t==null?void 0:t.innerRadiusRatio,t==null?void 0:t.padAngle,t==null?void 0:t.animate,t==null?void 0:t.shadow,t==null?void 0:t.innerShadow,t==null?void 0:t.colors,(r=t==null?void 0:t.sliceLabels)==null?void 0:r.mode,(o=t==null?void 0:t.sliceLabels)==null?void 0:o.content,(l=t==null?void 0:t.sliceLabels)==null?void 0:l.fontSize,(h=t==null?void 0:t.sliceLabels)==null?void 0:h.minSliceAngle,(d=t==null?void 0:t.sliceLabels)==null?void 0:d.elbowLen,(c=t==null?void 0:t.sliceLabels)==null?void 0:c.legPad,(u=t==null?void 0:t.sliceLabels)==null?void 0:u.labelGap,(f=t==null?void 0:t.sliceLabels)==null?void 0:f.distance,(m=t==null?void 0:t.sliceLabels)==null?void 0:m.railWidth,(g=t==null?void 0:t.sliceLabels)==null?void 0:g.balanceSides]),A.useLayoutEffect(()=>{n.current&&s.setSeriesData(n.current,i)},[s,i]),null}function Ca(){const i=lt(),t=ui(i);if(!t)return null;const e=i.getTheme(),s=i.getDataInterval(),n={background:`color-mix(in srgb, ${e.crosshair.labelBackground} 80%, transparent)`,color:e.crosshair.labelTextColor,fontSize:e.axis.fontSize,fontFamily:e.typography.fontFamily,fontVariantNumeric:"tabular-nums",padding:"2px 6px",borderRadius:2,whiteSpace:"nowrap",pointerEvents:"none",zIndex:2};return C.jsxs(C.Fragment,{children:[C.jsx("div",{style:{position:"absolute",right:0,top:t.mediaY,transform:"translateY(-50%)",...n},children:i.yScale.formatY(t.y)}),C.jsx("div",{style:{position:"absolute",bottom:0,left:t.mediaX,transform:"translateX(-50%)",...n},children:li(t.time,s)})]})}const Ta=["0","1","2","3","4","5","6","7","8","9"];function Ra(i){const t=[];for(const e of i)e>="0"&&e<="9"?t.push({type:"digit",value:e}):t.push({type:"symbol",value:e});return t}function jn({value:i,format:t,locale:e="en-US",spinDuration:s=350,className:n,style:r}){const l=A.useMemo(()=>{if(typeof t=="function")return t;const d=new Intl.NumberFormat(e,typeof t=="object"?t:void 0);return c=>d.format(c)},[t,e])(i),h=Ra(l);return C.jsx("span",{className:n,style:{display:"inline-flex",fontVariantNumeric:"tabular-nums",lineHeight:1.2,...r},children:h.map((d,c)=>d.type==="digit"?C.jsx(La,{digit:parseInt(d.value,10),duration:s},`d${c}`):C.jsx("span",{style:{display:"inline-block"},children:d.value},`s${c}`))})}function La({digit:i,duration:t}){const e=A.useRef(!1);return A.useEffect(()=>{e.current=!0},[]),C.jsx("span",{style:{display:"inline-block",height:"1.2em",overflow:"hidden",position:"relative"},children:C.jsx("span",{style:{display:"flex",flexDirection:"column",transform:`translateY(${-i*1.2}em)`,transition:e.current?`transform ${t}ms cubic-bezier(0.16, 1, 0.3, 1)`:"none"},children:Ta.map(s=>C.jsx("span",{style:{display:"flex",alignItems:"center",justifyContent:"center",height:"1.2em"},children:s},s))})})}function Ia(i,t){if(t!==void 0)return t;const e=i.getSeriesIdsByType("pie",{visibleOnly:!0});return e.length>0?e[0]:null}const Aa=160,Wa=70;function Da({seriesId:i,format:t=ae,children:e}){const s=lt(),n=ui(s),[,r]=A.useState(0);A.useLayoutEffect(()=>{const f=()=>r(m=>m+1);return s.on("overlayChange",f),()=>{s.off("overlayChange",f)}},[s]);const o=Ia(s,i),l=o!==null?s.getHoverInfo(o):null;if(!l||!n)return null;const h=s.getTheme(),d=s.getMediaSize();if(e)return C.jsx(Fa,{x:n.mediaX,y:n.mediaY,chartWidth:d.width,chartHeight:d.height,children:e({info:l,format:t})});const{left:c,top:u}=hi({x:n.mediaX,y:n.mediaY,chartWidth:d.width,chartHeight:d.height,tooltipWidth:Aa,tooltipHeight:Wa,offsetX:16,offsetY:16});return C.jsxs("div",{style:{position:"absolute",left:c,top:u,pointerEvents:"none",zIndex:10,background:h.tooltip.background,backdropFilter:"blur(12px)",WebkitBackdropFilter:"blur(12px)",border:`1px solid ${h.tooltip.borderColor}`,borderRadius:8,padding:"10px 14px",boxShadow:"0 4px 16px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06)",fontSize:h.typography.fontSize,fontFamily:h.typography.fontFamily,color:h.tooltip.textColor,display:"flex",flexDirection:"column",gap:6},children:[C.jsxs("div",{style:{display:"flex",alignItems:"center",gap:8},children:[C.jsx("span",{style:{width:10,height:10,borderRadius:"50%",background:l.color,flexShrink:0}}),C.jsx("span",{style:{fontWeight:600},children:l.label})]}),C.jsxs("div",{style:{display:"flex",justifyContent:"space-between",gap:16},children:[C.jsx("span",{style:{opacity:.6},children:t(l.value)}),C.jsxs("span",{style:{fontWeight:600},children:[l.percent.toFixed(1),"%"]})]})]})}function Fa({x:i,y:t,chartWidth:e,chartHeight:s,children:n}){const r=A.useRef(null),[o,l]=A.useState(null);A.useEffect(()=>{const d=r.current;if(!d||typeof ResizeObserver>"u")return;const c=new ResizeObserver(u=>{var m;const f=(m=u[0])==null?void 0:m.contentRect;f&&l(g=>g&&g.width===f.width&&g.height===f.height?g:{width:f.width,height:f.height})});return c.observe(d),()=>c.disconnect()},[]);const h=o?hi({x:i,y:t,chartWidth:e,chartHeight:s,tooltipWidth:o.width,tooltipHeight:o.height,offsetX:16,offsetY:16}):{left:0,top:0};return C.jsx("div",{ref:r,"data-measured":o?"true":"false",style:{position:"absolute",left:h.left,top:h.top,pointerEvents:"none",zIndex:10,width:"max-content",maxWidth:e,boxSizing:"border-box",visibility:o?"visible":"hidden"},children:n})}function Pa(i,t){if(i.startsWith("rgba")||!i.startsWith("#"))return i;const e=parseInt(i.slice(1,3),16),s=parseInt(i.slice(3,5),16),n=parseInt(i.slice(5,7),16);return`rgba(${e}, ${s}, ${n}, ${t})`}function Ba(i){if(i.length<2)return{value:0,pct:0,positive:!0};const t=i[0].value,s=i[i.length-1].value-t,n=t!==0?s/t*100:0;return{value:s,pct:n,positive:s>=0}}function za({data:i,theme:t,variant:e="line",valuePosition:s="right",formatValue:n=ae,label:r,sublabel:o,color:l,negativeColor:h,area:d,areaFill:c,width:u=140,height:f=48,strokeWidth:m=1.5,gradient:g=!0,style:p}){const v=(d==null?void 0:d.visible)??c??!0,w=i.length>0?i[i.length-1].value:0,x=A.useMemo(()=>Ba(i),[i]),y=l??t.seriesColors[0],M=h??pt(t.candlestick.down.body),S=pt(x.positive?t.candlestick.up.body:t.candlestick.down.body),P=s!=="none"&&C.jsxs("div",{style:{display:"flex",flexDirection:"column",justifyContent:"center",gap:1,minWidth:0,flexShrink:0},children:[r&&C.jsx("div",{style:{fontSize:t.axis.fontSize,color:t.axis.textColor,lineHeight:1.2,whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"},children:r}),C.jsx("div",{style:{fontSize:t.typography.fontSize+3,fontWeight:700,color:t.tooltip.textColor,lineHeight:1.1,whiteSpace:"nowrap",fontVariantNumeric:"tabular-nums"},children:n(w)}),o!==void 0?C.jsx("div",{style:{fontSize:t.axis.fontSize-1,color:t.axis.textColor,lineHeight:1.2,whiteSpace:"nowrap"},children:o}):C.jsxs("div",{style:{fontSize:t.axis.fontSize-1,fontWeight:500,color:S,lineHeight:1.2,whiteSpace:"nowrap",fontVariantNumeric:"tabular-nums"},children:[x.positive?"+":"",x.pct.toFixed(1),"%"]})]}),b=C.jsx("div",{style:{width:u,height:f,flexShrink:0,borderRadius:4,overflow:"hidden"},children:C.jsx(Vn,{theme:t,axis:{y:{visible:!1,width:0},x:{visible:!1,height:0}},padding:{top:5,right:0,bottom:0,left:0},gradient:g,interactive:!1,grid:{visible:!1},children:e==="line"?C.jsx(Yn,{data:[i],options:{colors:[y],strokeWidth:m,area:{visible:v},pulse:!1,stacking:"off"}}):C.jsx(An,{data:[i],options:{colors:[y,M],barWidthRatio:.7,stacking:"off"}})})});return C.jsxs("div",{style:{display:"inline-flex",alignItems:"center",gap:12,padding:"8px 12px",borderRadius:8,background:Pa(t.tooltip.background,.7),border:`1px solid ${t.tooltip.borderColor}`,fontFamily:t.typography.fontFamily,...p},children:[s==="left"&&P,b,s==="right"&&P]})}const _n=250,On=`opacity ${_n/1e3}s ease`,Hn=_n*2;function Nn({labelCount:i,minLabelSpacing:t}={}){const e=lt();Wn(e),A.useLayoutEffect(()=>(e.setTimeAxisLabelDensity({labelCount:i??null,minLabelSpacing:t??null}),()=>{e.setTimeAxisLabelDensity({labelCount:null,minLabelSpacing:null})}),[e,i,t]);const s=e.getTheme(),n=e.getDataInterval(),{ticks:r,tickInterval:o}=e.timeScale.niceTickValues(n),l=new Set(r),d=A.useRef(new Map).current,c=performance.now();for(const f of r)d.has(f)?d.get(f).opacity=1:d.set(f,{opacity:1,addedAt:c});for(const[f,m]of d)l.has(f)||m.opacity!==0&&(m.opacity=0,m.fadedAt=c);for(const[f,m]of d)m.opacity===0&&m.fadedAt!==void 0&&c-m.fadedAt>Hn&&d.delete(f);const u=Array.from(d.entries());return C.jsx("div",{style:{position:"absolute",left:0,bottom:0,right:e.yAxisWidth,height:e.xAxisHeight,pointerEvents:"none",display:"flex",alignItems:"center"},children:u.map(([f,m])=>{const g=e.timeScale.timeToX(f);return C.jsx("span",{style:{position:"absolute",left:g,transform:"translateX(-50%)",color:ns(s,"x"),fontSize:ss(s,"x"),fontFamily:s.typography.fontFamily,userSelect:"none",whiteSpace:"nowrap",opacity:m.opacity,transition:On,willChange:"opacity"},children:li(f,o)},f)})})}const Ea=(i,t)=>t==="volume"?ae(i):is(i);function Va({sort:i="none",format:t=Ea,children:e}){const s=lt(),n=ui(s),[,r]=A.useState(0);if(A.useLayoutEffect(()=>{const f=()=>r(m=>m+1);return s.on("overlayChange",f),s.getSeriesIds().length>0&&r(m=>m+1),()=>{s.off("overlayChange",f)}},[s]),!n)return null;const o=cs(s,{time:n.time,sort:i,cacheKey:"tooltip"});if(o.length===0)return null;const l=s.getTheme(),h=s.getDataInterval(),d=s.getMediaSize(),c=d.width-s.yAxisWidth,u=d.height-s.xAxisHeight;return e?C.jsx(Ya,{x:n.mediaX,y:n.mediaY,chartWidth:c,chartHeight:u,theme:l,children:e({snapshots:o,time:n.time})}):C.jsx(ja,{snapshots:o,displayTime:n.time,x:n.mediaX,y:n.mediaY,chartWidth:c,chartHeight:u,theme:l,dataInterval:h,format:t})}function Ya({x:i,y:t,chartWidth:e,chartHeight:s,theme:n,children:r}){const o=A.useRef(null),[l,h]=A.useState(null);A.useEffect(()=>{const c=o.current;if(!c||typeof ResizeObserver>"u")return;const u=new ResizeObserver(f=>{var g;const m=(g=f[0])==null?void 0:g.contentRect;m&&h(p=>p&&p.width===m.width&&p.height===m.height?p:{width:m.width,height:m.height})});return u.observe(c),()=>u.disconnect()},[]);const d=l?hi({x:i,y:t,chartWidth:e,chartHeight:s,tooltipWidth:l.width,tooltipHeight:l.height}):{left:0,top:0};return C.jsx("div",{ref:o,"data-measured":l?"true":"false",style:{position:"absolute",left:d.left,top:d.top,pointerEvents:"none",background:n.tooltip.background,backdropFilter:"blur(12px)",WebkitBackdropFilter:"blur(12px)",border:`1px solid ${n.tooltip.borderColor}`,borderRadius:8,padding:"10px 14px",boxShadow:"0 4px 16px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06)",fontFamily:n.typography.fontFamily,fontSize:n.tooltip.fontSize,fontVariantNumeric:"tabular-nums",color:n.tooltip.textColor,width:"max-content",maxWidth:e,boxSizing:"border-box",zIndex:10,visibility:l?"visible":"hidden"},children:r})}function ja({snapshots:i,displayTime:t,x:e,y:s,chartWidth:n,chartHeight:r,theme:o,dataInterval:l,format:h}){const d=i.some(x=>"open"in x.data),c=i.filter(x=>!("open"in x.data)).length,u=160,f=d?140:40+c*22,{left:m,top:g}=hi({x:e,y:s,chartWidth:n,chartHeight:r,tooltipWidth:u,tooltipHeight:f}),p=o.tooltip.background,v=o.tooltip.borderColor;return C.jsxs("div",{style:{position:"absolute",left:m,top:g,pointerEvents:"none",background:p,backdropFilter:"blur(12px)",WebkitBackdropFilter:"blur(12px)",border:`1px solid ${v}`,borderRadius:8,padding:"10px 14px",boxShadow:"0 4px 16px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06)",fontSize:o.tooltip.fontSize,fontFamily:o.typography.fontFamily,fontVariantNumeric:"tabular-nums",color:o.tooltip.textColor,width:u,boxSizing:"border-box",zIndex:10,transition:"opacity 0.15s ease"},children:[C.jsxs("div",{style:{fontSize:o.axis.fontSize,color:o.axis.textColor,marginBottom:8,paddingBottom:6,borderBottom:`1px solid ${v}`,letterSpacing:"0.02em"},children:[Zs(t)," ",li(t,l)]}),i.map(x=>{if("open"in x.data){const S=x.data,P=S.close>=S.open,b=pt(P?o.candlestick.up.body:o.candlestick.down.body);return C.jsxs("div",{style:{display:"grid",gridTemplateColumns:"auto 1fr",gap:"4px 12px"},children:[C.jsx(je,{label:"Open",color:b,display:h(S.open,"open")}),C.jsx(je,{label:"High",color:b,display:h(S.high,"high")}),C.jsx(je,{label:"Low",color:b,display:h(S.low,"low")}),C.jsx(je,{label:"Close",color:b,display:h(S.close,"close")}),S.volume!=null&&C.jsx(je,{label:"Volume",color:o.tooltip.textColor,display:h(S.volume,"volume")})]},x.id)}const M=x.data;return C.jsxs("div",{style:{display:"flex",alignItems:"center",gap:8,padding:"2px 0"},children:[C.jsx("span",{style:{width:8,height:8,borderRadius:"50%",background:x.color,flexShrink:0}}),C.jsx("span",{style:{opacity:.6,flex:1},children:x.label??"Value"}),C.jsx("span",{style:{fontWeight:600,color:x.color},children:h(M.value,"value")})]},x.id)})]})}function je({label:i,color:t,display:e}){return C.jsxs(C.Fragment,{children:[C.jsx("span",{style:{opacity:.5},children:i}),C.jsx("span",{style:{fontWeight:600,color:t,textAlign:"right"},children:e})]})}function _a({format:i,labelCount:t,minLabelSpacing:e}={}){const s=lt();Dn(s),A.useLayoutEffect(()=>(s.yScale.setFormat(i??null),()=>s.yScale.setFormat(null)),[s,i]),A.useLayoutEffect(()=>(s.setYAxisLabelDensity({labelCount:t??null,minLabelSpacing:e??null}),()=>{s.setYAxisLabelDensity({labelCount:null,minLabelSpacing:null})}),[s,t,e]);const n=s.getTheme(),r=s.yScale.niceTickValues(),o=new Set(r),h=A.useRef(new Map).current,d=performance.now();for(const u of r)h.has(u)?h.get(u).opacity=1:h.set(u,{opacity:1,addedAt:d});for(const[u,f]of h)o.has(u)||f.opacity!==0&&(f.opacity=0,f.fadedAt=d);for(const[u,f]of h)f.opacity===0&&f.fadedAt!==void 0&&d-f.fadedAt>Hn&&h.delete(u);const c=Array.from(h.entries());return C.jsx("div",{style:{position:"absolute",right:0,top:0,bottom:s.xAxisHeight,width:s.yAxisWidth,pointerEvents:"none"},children:c.map(([u,f])=>{const m=s.yScale.valueToY(u);return C.jsx("span",{style:{position:"absolute",right:8,top:m,transform:"translateY(-50%)",color:ns(n,"y"),fontSize:ss(n,"y"),fontFamily:n.typography.fontFamily,fontVariantNumeric:"tabular-nums",userSelect:"none",opacity:f.opacity,transition:On,willChange:"opacity"},children:s.yScale.formatY(u)},u)})})}function Oa(i,t){if(t!==void 0)return t;const e=i.getSeriesIdsByType("time",{visibleOnly:!0,singleLayerOnly:!0});if(e.length>0)return e[0];const s=i.getSeriesIdsByType("time",{visibleOnly:!0});return s.length>0?s[0]:null}function Ha({seriesId:i,color:t,format:e,children:s}){const n=lt();A.useEffect(()=>(n.setYLabel(!0),()=>n.setYLabel(!1)),[n]);const[,r]=A.useState(0);A.useLayoutEffect(()=>{const y=()=>r(M=>M+1);return n.on("overlayChange",y),n.on("viewportChange",y),n.getSeriesIds().length>0&&r(M=>M+1),()=>{n.off("overlayChange",y),n.off("viewportChange",y)}},[n]);const o=Oa(n,i),l=o!==null?n.getStackedLastValue(o):null,h=o!==null?n.getPreviousClose(o):null,d=n.yScale.getRange(),c=d.max-d.min,u=c<.1?6:c<10?4:c<1e3?2:0,f=A.useMemo(()=>{if(e)return e;const y=new Intl.NumberFormat("en-US",{minimumFractionDigits:u,maximumFractionDigits:u,useGrouping:!1});return M=>y.format(M)},[e,u]);if(!l||o===null)return null;const{value:m,isLive:g}=l,p=n.getTheme(),v=n.yScale.valueToY(m),w=h===null?"neutral":m>h?"up":m<h?"down":"neutral";let x;return g?t?x=t:x=w==="up"?p.yLabel.upBackground:w==="down"?p.yLabel.downBackground:p.yLabel.neutralBackground:x=p.axis.textColor,s?C.jsx(C.Fragment,{children:s({value:m,y:v,bgColor:x,isLive:g,direction:w,format:f})}):C.jsxs(C.Fragment,{children:[C.jsx("div",{style:{position:"absolute",left:0,right:n.yAxisWidth,top:v,height:0,borderTop:`1px dashed ${x}`,opacity:.5,pointerEvents:"none",zIndex:2}}),C.jsx("div",{style:{position:"absolute",right:4,top:v,transform:"translateY(-50%)",pointerEvents:"auto",zIndex:3,background:x,color:p.yLabel.textColor,fontSize:p.yLabel.fontSize,fontFamily:p.typography.fontFamily,padding:"3px 8px",borderRadius:3,whiteSpace:"nowrap",transition:"background-color 0.3s ease"},children:C.jsx(jn,{value:m,format:f,spinDuration:350})})]})}exports.BarSeries=An;exports.CandlestickSeries=ma;exports.ChartContainer=Vn;exports.ChartInstance=vn;exports.Crosshair=Ca;exports.InfoBar=Fn;exports.Legend=Pn;exports.LineSeries=Yn;exports.Navigator=Bn;exports.NavigatorController=kn;exports.NumberFlow=jn;exports.PieLegend=zn;exports.PieSeries=ka;exports.PieTooltip=Da;exports.Sparkline=za;exports.ThemeProvider=Ie;exports.TimeAxis=Nn;exports.Title=En;exports.Tooltip=Va;exports.XAxis=Nn;exports.YAxis=_a;exports.YLabel=Ha;exports.andromeda=Oo;exports.autoGradient=E;exports.ayuMirage=Ho;exports.buildHoverSnapshots=cs;exports.buildLastSnapshots=In;exports.catppuccin=mn;exports.computeTooltipPosition=hi;exports.createTheme=J;exports.darkTheme=jo;exports.detectInterval=Qs;exports.dracula=No;exports.formatCompact=ae;exports.formatDate=Zs;exports.formatPriceAdaptive=is;exports.formatTime=li;exports.githubLight=$o;exports.gruvbox=Xo;exports.handwritten=Uo;exports.highContrast=qo;exports.lavenderMist=Jo;exports.lightPink=Qo;exports.lightTheme=_o;exports.materialPalenight=Zo;exports.minimalLight=ia;exports.mintBreeze=sa;exports.monokaiPro=na;exports.nightOwl=ra;exports.normalizeTime=ct;exports.oneDarkPro=oa;exports.panda=aa;exports.peachCream=la;exports.quietLight=ha;exports.resolveAxisFontSize=ss;exports.resolveAxisTextColor=ns;exports.resolveCandlestickBodyColor=pt;exports.rosePineDawn=ca;exports.sandDune=ua;exports.solarizedLight=da;exports.useChartInstance=lt;exports.useCrosshairPosition=ui;exports.useLastYValue=ba;exports.usePreviousClose=va;exports.useTheme=ci;exports.useVisibleRange=Wn;exports.useYRange=Dn;
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const W=require("react"),I=require("react/jsx-runtime");var Xa=Object.defineProperty,Pr=i=>{throw TypeError(i)},Na=(i,t,e)=>t in i?Xa(i,t,{enumerable:!0,configurable:!0,writable:!0,value:e}):i[t]=e,P=(i,t,e)=>Na(i,typeof t!="symbol"?t+"":t,e),Rn=(i,t,e)=>t.has(i)||Pr("Cannot "+e),r=(i,t,e)=>(Rn(i,t,"read from private field"),e?e.call(i):t.get(i)),w=(i,t,e)=>t.has(i)?Pr("Cannot add the same private member more than once"):t instanceof WeakSet?t.add(i):t.set(i,e),u=(i,t,e,s)=>(Rn(i,t,"write to private field"),t.set(i,e),e),C=(i,t,e)=>(Rn(i,t,"access private method"),e),fn=(i,t,e,s)=>({set _(n){u(i,t,n)},get _(){return r(i,t,s)}});const Ua=22.999999999999996;var ze,Je,Qe,ot,Wt,qt,Xt,di,mn,gn;class _a{constructor(t){w(this,di),w(this,ze),w(this,Je,0),w(this,Qe,0),w(this,ot),w(this,Wt,Ua),w(this,qt,-1),w(this,Xt),u(this,ze,{from:t.initial.from,to:t.initial.to}),u(this,ot,{from:t.initial.from,to:t.initial.to}),u(this,Xt,{from:t.initial.from,to:t.initial.to})}get current(){return r(this,Xt)}get target(){return r(this,ot)}get animating(){const t=C(this,di,gn).call(this);return Math.abs(r(this,Xt).from-r(this,ot).from)>t||Math.abs(r(this,Xt).to-r(this,ot).to)>t||Math.abs(r(this,Je))>t*r(this,Wt)||Math.abs(r(this,Qe))>t*r(this,Wt)}retarget(t,e={}){const s=e.expandMs??200;if(s<=0){this.snap(t,e);return}const n=e.now??performance.now(),a=4.6/(s/1e3);if(r(this,qt)<0){u(this,ot,{from:t.from,to:t.to}),u(this,Wt,a),u(this,qt,n);return}const{x:o,vFrom:l,vTo:h}=C(this,di,mn).call(this,n);u(this,ze,o),u(this,Je,l),u(this,Qe,h),u(this,Wt,a),u(this,ot,{from:t.from,to:t.to}),u(this,qt,n),u(this,Xt,o)}snap(t,e={}){const s=e.now??performance.now();u(this,ze,{from:t.from,to:t.to}),u(this,ot,{from:t.from,to:t.to}),u(this,Je,0),u(this,Qe,0),u(this,qt,s),u(this,Xt,{from:t.from,to:t.to})}tick(t){if(r(this,qt)<0)return u(this,qt,t),!1;const{x:e,vFrom:s,vTo:n}=C(this,di,mn).call(this,t);u(this,Xt,e);const a=C(this,di,gn).call(this);return Math.abs(e.from-r(this,ot).from)<a&&Math.abs(e.to-r(this,ot).to)<a&&Math.abs(s)<a*r(this,Wt)&&Math.abs(n)<a*r(this,Wt)?(u(this,Xt,{from:r(this,ot).from,to:r(this,ot).to}),u(this,ze,{from:r(this,ot).from,to:r(this,ot).to}),u(this,Je,0),u(this,Qe,0),u(this,qt,t),!1):!0}}ze=new WeakMap,Je=new WeakMap,Qe=new WeakMap,ot=new WeakMap,Wt=new WeakMap,qt=new WeakMap,Xt=new WeakMap,di=new WeakSet,mn=function(i){const t=Math.max(0,(i-r(this,qt))/1e3),e=Math.exp(-r(this,Wt)*t),s=r(this,ze).from-r(this,ot).from,n=r(this,Je)+r(this,Wt)*s,a=r(this,ot).from+(s+n*t)*e,o=(n-r(this,Wt)*(s+n*t))*e,l=r(this,ze).to-r(this,ot).to,h=r(this,Qe)+r(this,Wt)*l,c=r(this,ot).to+(l+h*t)*e,d=(h-r(this,Wt)*(l+h*t))*e;return{x:{from:a,to:c},vFrom:o,vTo:d}},gn=function(){return Math.max(r(this,ot).to-r(this,ot).from,1)*1e-4};const pn=250,qn=4.6/(pn/1e3);var Ee,ti,ei,lt,ve,ye,Jt,Nt,fi,bn,vn;class Ga{constructor(t){w(this,fi),w(this,Ee),w(this,ti,0),w(this,ei,0),w(this,lt),w(this,ve,qn),w(this,ye,qn),w(this,Jt,-1),w(this,Nt),u(this,Ee,{min:t.initial.min,max:t.initial.max}),u(this,lt,{min:t.initial.min,max:t.initial.max}),u(this,Nt,{min:t.initial.min,max:t.initial.max})}get current(){return r(this,Nt)}get target(){return r(this,lt)}get animating(){const t=C(this,fi,vn).call(this),e=Math.min(r(this,ve),r(this,ye));return Math.abs(r(this,Nt).min-r(this,lt).min)>t||Math.abs(r(this,Nt).max-r(this,lt).max)>t||Math.abs(r(this,ti))>t*e||Math.abs(r(this,ei))>t*e}retarget(t,e={}){const s=e.now??performance.now(),n=e.expandMs??pn,a=e.contractMs??pn,o=4.6/(n/1e3),l=4.6/(a/1e3);if(r(this,Jt)<0){u(this,lt,{min:t.min,max:t.max}),u(this,ve,o),u(this,ye,o),u(this,Jt,s);return}const{x:h,vMin:c,vMax:d}=C(this,fi,bn).call(this,s);u(this,Ee,h),u(this,ti,c),u(this,ei,d),u(this,ve,t.min<h.min?o:l),u(this,ye,t.max>h.max?o:l),u(this,lt,{min:t.min,max:t.max}),u(this,Jt,s),u(this,Nt,h)}snap(t,e={}){const s=e.now??performance.now();u(this,Ee,{min:t.min,max:t.max}),u(this,lt,{min:t.min,max:t.max}),u(this,ti,0),u(this,ei,0),u(this,Jt,s),u(this,Nt,{min:t.min,max:t.max})}tick(t){if(r(this,Jt)<0)return u(this,Jt,t),!1;const{x:e,vMin:s,vMax:n}=C(this,fi,bn).call(this,t);u(this,Nt,e);const a=C(this,fi,vn).call(this),o=Math.min(r(this,ve),r(this,ye));return Math.abs(e.min-r(this,lt).min)<a&&Math.abs(e.max-r(this,lt).max)<a&&Math.abs(s)<a*o&&Math.abs(n)<a*o?(u(this,Nt,{min:r(this,lt).min,max:r(this,lt).max}),u(this,Ee,{min:r(this,lt).min,max:r(this,lt).max}),u(this,ti,0),u(this,ei,0),u(this,Jt,t),!1):!0}}Ee=new WeakMap,ti=new WeakMap,ei=new WeakMap,lt=new WeakMap,ve=new WeakMap,ye=new WeakMap,Jt=new WeakMap,Nt=new WeakMap,fi=new WeakSet,bn=function(i){const t=Math.max(0,(i-r(this,Jt))/1e3),e=Math.exp(-r(this,ve)*t),s=Math.exp(-r(this,ye)*t),n=r(this,Ee).min-r(this,lt).min,a=r(this,ti)+r(this,ve)*n,o=r(this,lt).min+(n+a*t)*e,l=(a-r(this,ve)*(n+a*t))*e,h=r(this,Ee).max-r(this,lt).max,c=r(this,ei)+r(this,ye)*h,d=r(this,lt).max+(h+c*t)*s,f=(c-r(this,ye)*(h+c*t))*s;return{x:{min:o,max:d},vMin:l,vMax:f}},vn=function(){return Math.max(r(this,lt).max-r(this,lt).min,1)*1e-4};function Fr(){return({initial:i})=>Ka(i)?new Ga({initial:i}):new _a({initial:i})}function Ka(i){return"min"in i&&"max"in i}const Za=/^(\d+(?:\.\d+)?)(ms|s)$/;function Br(i){if(i===!1)return 0;if(typeof i=="number")return i;if(typeof i=="string"){const t=Za.exec(i);if(!t)throw new Error(`Invalid AnimationTime: ${JSON.stringify(i)}`);const e=Number.parseFloat(t[1]);return t[2]==="s"?e*1e3:e}throw new Error(`Invalid AnimationTime: ${String(i)}`)}function vt(i,t){return i===void 0?t:Br(i)}const qa=100;var N,Z,Vi,ae,Hs,Ut,pt,Rs,Ws,oe,As;class Ja{constructor(t){w(this,pt),w(this,N),w(this,Z),w(this,Vi),w(this,ae),w(this,Hs),w(this,Ut,!1),u(this,N,{transition:t.y.curve({initial:t.initial.yRange}),settleMs:t.y.settleMs,stickyMs:t.y.stickyMs,stickyFloorMs:t.y.stickyFloorMs,gestureMs:t.y.gestureMs,toggleMs:t.y.toggleMs,toggleUntil:0}),u(this,Z,{transition:t.x.curve({initial:t.initial.xRange}),settleMs:t.x.settleMs,gestureMs:t.x.gestureMs,threshold:null,lastTarget:null,gestureUntil:0}),u(this,Vi,t.computeXTarget),u(this,ae,t.computeYTarget),u(this,Hs,t.onWake)}onPointAppended(t){const e=t??performance.now();if(e<r(this,Z).gestureUntil)return;const s=r(this,Vi).call(this),n=s??r(this,Z).transition.target,a=r(this,ae).call(this,{xTarget:n});if(s===null&&a===null)return;const o=!r(this,Ut),l=e<r(this,N).toggleUntil;s!==null&&C(this,pt,Rs).call(this,s,e,r(this,Z).settleMs),a!==null&&!l&&r(this,N).transition.retarget(a,{now:e,expandMs:r(this,N).settleMs,contractMs:C(this,pt,As).call(this,r(this,N).transition.current,a)}),C(this,pt,oe).call(this,o)}onSeriesVisibilityChanged(t){const e=r(this,ae).call(this,{xTarget:r(this,Z).transition.target});if(e===null)return;const s=t??performance.now(),n=!r(this,Ut);r(this,N).toggleMs>0?(r(this,N).transition.snap(r(this,N).transition.current,{now:s}),r(this,N).transition.retarget(e,{now:s,expandMs:r(this,N).toggleMs,contractMs:r(this,N).toggleMs}),r(this,N).toggleUntil=s+r(this,N).toggleMs):(r(this,N).transition.snap(e,{now:s}),r(this,N).toggleUntil=0),C(this,pt,oe).call(this,n)}onPanZoom(t,e){const s=e??performance.now(),n=!r(this,Ut);if(C(this,pt,Rs).call(this,t.xTarget,s,r(this,Z).gestureMs),r(this,Z).gestureUntil=s+qa,t.yAuto){const a=r(this,ae).call(this,{xTarget:t.xTarget});a!==null&&r(this,N).transition.retarget(a,{now:s,expandMs:r(this,N).gestureMs,contractMs:r(this,N).gestureMs})}C(this,pt,oe).call(this,n)}onAxisReconfig(t){const e=r(this,ae).call(this,{xTarget:r(this,Z).transition.target});if(e===null)return;const s=t??performance.now(),n=!r(this,Ut);r(this,N).transition.snap(e,{now:s}),C(this,pt,oe).call(this,n)}onProgrammaticZoom(t,e){r(this,Z).gestureUntil=0;const s=r(this,ae).call(this,{xTarget:t.xTarget}),n=e??performance.now(),a=!r(this,Ut);if(t.xEase===!0){C(this,pt,Rs).call(this,t.xTarget,n,r(this,Z).gestureMs),s!==null&&r(this,N).transition.retarget(s,{now:n,expandMs:r(this,N).settleMs,contractMs:C(this,pt,As).call(this,r(this,N).transition.current,s)}),C(this,pt,oe).call(this,a);return}C(this,pt,Ws).call(this,t.xTarget,n),s!==null&&r(this,N).transition.retarget(s,{now:n,expandMs:r(this,N).settleMs,contractMs:C(this,pt,As).call(this,r(this,N).transition.current,s)}),C(this,pt,oe).call(this,a)}onDataReplaced(t){const e=r(this,Vi).call(this),s=r(this,ae).call(this,{xTarget:e??r(this,Z).transition.target});if(e===null&&s===null)return;const n=t??performance.now(),a=!r(this,Ut);e!==null&&C(this,pt,Ws).call(this,e,n),s!==null&&r(this,N).transition.snap(s,{now:n}),C(this,pt,oe).call(this,a)}snap(t,e){r(this,Z).gestureUntil=0;const s=e??performance.now(),n=!r(this,Ut);t.x!==void 0&&C(this,pt,Ws).call(this,t.x,s),t.y!==void 0&&r(this,N).transition.snap(t.y,{now:s}),C(this,pt,oe).call(this,n)}tick(t){r(this,Z).transition.tick(t),r(this,N).transition.tick(t);const e=r(this,Z).transition.animating||r(this,N).transition.animating;return u(this,Ut,e),{xRange:r(this,Z).transition.current,yRange:r(this,N).transition.current,animating:e}}getAnimationState(){return{xRange:r(this,Z).transition.current,yRange:r(this,N).transition.current,animating:r(this,Z).transition.animating||r(this,N).transition.animating}}getTarget(){return{x:r(this,Z).transition.target,y:r(this,N).transition.target}}get animating(){return r(this,Z).transition.animating||r(this,N).transition.animating}get lastXTarget(){return r(this,Z).lastTarget}setXThreshold(t){r(this,Z).threshold=t}setXSettleMs(t){r(this,Z).settleMs=t}}N=new WeakMap,Z=new WeakMap,Vi=new WeakMap,ae=new WeakMap,Hs=new WeakMap,Ut=new WeakMap,pt=new WeakSet,Rs=function(i,t,e){r(this,Z).threshold!==null&&r(this,Z).threshold>0&&r(this,Z).lastTarget!==null&&Math.abs(i.to-r(this,Z).lastTarget.to)<r(this,Z).threshold||(r(this,Z).transition.retarget(i,{now:t,expandMs:e}),r(this,Z).lastTarget={from:i.from,to:i.to})},Ws=function(i,t){r(this,Z).transition.snap({from:i.from,to:i.to},{now:t}),r(this,Z).lastTarget={from:i.from,to:i.to}},oe=function(i){var t;i&&((t=r(this,Hs))==null||t.call(this))},As=function(i,t){const e=r(this,N).stickyMs;if(e<=0)return e;const s=Math.max(i.max-i.min,Number.EPSILON),n=Math.max(0,t.min-i.min),a=Math.max(0,i.max-t.max),o=Math.min(1,Math.max(n,a)/s),l=Math.min(r(this,N).stickyFloorMs,e);return Math.max(l,e*o)};function Qa(i){return new Ja(i)}const Ss=250;var Bt,Ve,Ye,ht,Ht,xe,we,Pt,Me,yn,tn,en,Dr;class to{constructor(t){w(this,Me),w(this,Bt),w(this,Ve,0),w(this,Ye,0),w(this,ht),w(this,Ht,-1),w(this,xe,Ss/1e3),w(this,we,Ss/1e3),w(this,Pt),u(this,Bt,{min:t.initial.min,max:t.initial.max}),u(this,ht,{min:t.initial.min,max:t.initial.max}),u(this,Pt,{min:t.initial.min,max:t.initial.max})}get current(){return r(this,Pt)}get target(){return r(this,ht)}get animating(){if(r(this,Ht)<0)return!1;const t=C(this,Me,Dr).call(this);return Math.abs(r(this,Pt).min-r(this,ht).min)>t||Math.abs(r(this,Pt).max-r(this,ht).max)>t}retarget(t,e={}){const s=e.now??performance.now(),n=e.expandMs??Ss,a=e.contractMs??Ss;if(r(this,Ht)<0){u(this,ht,{min:t.min,max:t.max}),u(this,xe,(t.min<r(this,Pt).min?n:a)/1e3),u(this,we,(t.max>r(this,Pt).max?n:a)/1e3),u(this,Ht,s);return}const{x:o,vMin:l,vMax:h}=C(this,Me,yn).call(this,s);u(this,Bt,o),u(this,Ve,Math.sign(l)===Math.sign(t.min-o.min)?l:0),u(this,Ye,Math.sign(h)===Math.sign(t.max-o.max)?h:0),u(this,xe,(t.min<o.min?n:a)/1e3),u(this,we,(t.max>o.max?n:a)/1e3),u(this,ht,{min:t.min,max:t.max}),u(this,Ht,s),u(this,Pt,o)}snap(t,e={}){const s=e.now??performance.now();u(this,Bt,{min:t.min,max:t.max}),u(this,ht,{min:t.min,max:t.max}),u(this,Ve,0),u(this,Ye,0),u(this,Ht,s),u(this,Pt,{min:t.min,max:t.max})}tick(t){if(r(this,Ht)<0)return u(this,Ht,t),!1;if(r(this,Bt).min===r(this,ht).min&&r(this,Bt).max===r(this,ht).max&&r(this,Ve)===0&&r(this,Ye)===0)return!1;const{x:e}=C(this,Me,yn).call(this,t);u(this,Pt,e);const s=(t-r(this,Ht))/1e3;return s>=r(this,xe)&&s>=r(this,we)?(u(this,Pt,{min:r(this,ht).min,max:r(this,ht).max}),u(this,Bt,{min:r(this,ht).min,max:r(this,ht).max}),u(this,Ve,0),u(this,Ye,0),!1):!0}}Bt=new WeakMap,Ve=new WeakMap,Ye=new WeakMap,ht=new WeakMap,Ht=new WeakMap,xe=new WeakMap,we=new WeakMap,Pt=new WeakMap,Me=new WeakSet,yn=function(i){const t=Math.max(0,(i-r(this,Ht))/1e3),e=r(this,xe)>0?Math.min(1,t/r(this,xe)):1,s=r(this,we)>0?Math.min(1,t/r(this,we)):1,n=C(this,Me,tn).call(this,r(this,Bt).min,r(this,Ve),r(this,ht).min,e,r(this,xe)),a=e>=1?0:C(this,Me,en).call(this,r(this,Bt).min,r(this,Ve),r(this,ht).min,e,r(this,xe)),o=C(this,Me,tn).call(this,r(this,Bt).max,r(this,Ye),r(this,ht).max,s,r(this,we)),l=s>=1?0:C(this,Me,en).call(this,r(this,Bt).max,r(this,Ye),r(this,ht).max,s,r(this,we));return{x:{min:n,max:o},vMin:a,vMax:l}},tn=function(i,t,e,s,n){if(s>=1)return e;const a=s*s,o=a*s,l=2*o-3*a+1,h=o-2*a+s,c=-2*o+3*a;return l*i+h*n*t+c*e},en=function(i,t,e,s,n){if(n<=0)return 0;const a=s*s,o=6*a-6*s,l=3*a-4*s+1,h=-6*a+6*s;return(o*i+l*n*t+h*e)/n},Dr=function(){return Math.max(r(this,ht).max-r(this,ht).min,1)*1e-4};function zr(){return({initial:i})=>new to({initial:i})}var Ue;class eo{constructor(t){w(this,Ue),u(this,Ue,{...t.initial})}get current(){return r(this,Ue)}get target(){return r(this,Ue)}get animating(){return!1}retarget(t){u(this,Ue,{...t})}snap(t){u(this,Ue,{...t})}tick(){return!1}}Ue=new WeakMap;function Yi(){return({initial:i})=>new eo({initial:i})}function Er(i,t){var e,s;return t==="x"&&((e=i.axis.x)==null?void 0:e.fontSize)!==void 0?i.axis.x.fontSize:t==="y"&&((s=i.axis.y)==null?void 0:s.fontSize)!==void 0?i.axis.y.fontSize:i.axis.fontSize}function Vr(i,t){var e,s;return t==="x"&&((e=i.axis.x)==null?void 0:e.textColor)!==void 0?i.axis.x.textColor:t==="y"&&((s=i.axis.y)==null?void 0:s.textColor)!==void 0?i.axis.y.textColor:i.axis.textColor}function Dt(i){return Array.isArray(i)?i.source??i[0]:i}const ci=6e4,_e=36e5,je=864e5,le=365*je;function zt(i){return i instanceof Date?i.getTime():i}function io(i){return i.length===0||!i.some(t=>t.time instanceof Date)?i:i.map(t=>({...t,time:zt(t.time)}))}function so(i){return i.length===0||!i.some(t=>t.time instanceof Date)?i:i.map(t=>({...t,time:zt(t.time)}))}function Yr(i){if(i.length<2)return je;const t=[];for(let e=1;e<Math.min(i.length,20);e++)t.push(i[e]-i[e-1]);return t.sort((e,s)=>e-s),t[Math.floor(t.length/2)]}function gs(i,t){const e=new Date(i);return t>=le?e.toLocaleDateString("en-US",{year:"numeric"}):t>=je?e.toLocaleDateString("en-US",{month:"short",day:"numeric"}):t>=_e?e.toLocaleTimeString("en-US",{hour:"2-digit",minute:"2-digit",hour12:!1}):e.toLocaleTimeString("en-US",{hour:"2-digit",minute:"2-digit",second:"2-digit",hour12:!1})}function jr(i){return new Date(i).toLocaleDateString("en-US",{month:"short",day:"numeric",year:"numeric"})}function no(i){const t=[1e3,5e3,1e4,15e3,3e4],e=[ci,5*ci,10*ci,15*ci,30*ci],s=[_e,2*_e,4*_e,6*_e,12*_e],n=[je,7*je,30*je,90*je],a=[le,2*le,5*le,10*le,25*le,50*le,100*le];return i<ci?[...t,...e,...s,...n,...a]:i<_e?[...e,...s,...n,...a]:i<je?[...s,...n,...a]:i<le?[...n,...a]:a}const ro=.01;function Hr(i){const{chart:t,container:e,axis:s}=i,n=new Map;let a=null;const o=s==="x"?t.timeScale.tickTracker:t.yScale.tickTracker;function l(){return s==="x"?t.timeScale.niceTickValues(t.getDataInterval()):{ticks:t.yScale.niceTickValues(),tickInterval:0}}function h(g,p){return s==="x"?gs(g,p):t.yScale.formatY(g)}function c(g,p){if(s==="x"){g.style.left=`${t.timeScale.timeToX(p)}px`;return}g.style.top=`${t.yScale.valueToY(p)}px`}function d(g,p){g.style.color=Vr(p,s),g.style.fontSize=`${Er(p,s)}px`,g.style.fontFamily=p.typography.fontFamily}function f(g,p,b){const v=document.createElement("span");return v.textContent=h(g,p),v.style.position="absolute",v.style.userSelect="none",d(v,b),v.style.willChange="opacity",s==="x"?(v.style.transform="translateX(-50%)",v.style.whiteSpace="nowrap"):(v.style.right="8px",v.style.transform="translateY(-50%)",v.style.fontVariantNumeric="tabular-nums"),e.appendChild(v),v}function m(){const g=t.getTheme(),p=g!==a;a=g;const{ticks:b,tickInterval:v}=l();o.setCurrentTicks(b);const{entries:S}=o.snapshot(),L=new Set;for(const{value:y,opacity:M}of S){if(M<=ro)continue;L.add(y);let k=n.get(y);if(k===void 0)k=f(y,v,g),n.set(y,k);else{const F=h(y,v);k.textContent!==F&&(k.textContent=F),p&&d(k,g)}c(k,y),k.style.opacity=String(M)}for(const[y,M]of n)L.has(y)||(M.remove(),n.delete(y))}return m(),t.on("tickFrame",m),t.on("viewportChange",m),t.on("overlayChange",m),()=>{t.off("tickFrame",m),t.off("viewportChange",m),t.off("overlayChange",m);for(const g of n.values())g.remove();n.clear()}}const Wn=250,An=250,Gs=Wn,Pn=An,Fn=600,Bn=Wn,Dn=An,zn=Wn,En=An,ao=250,oo=250,lo=200,ho=150,co=250,sn=2500,Jn=500,uo=100,fo=250,$r=250,Or={line:{entryMs:0,smoothMs:0,pulseMs:0},candlestick:{entryMs:0,smoothMs:0},bar:{entryMs:0,smoothMs:0},pie:{entryMs:0,updateMs:0}};function mo(i){if(i!==null&&typeof i=="object")return{stickyMs:vt(i.max,sn),stickyFloorMs:vt(i.min,Jn)};if(i===void 0)return{stickyMs:sn,stickyFloorMs:Jn};const t=vt(i,sn);return{stickyMs:t,stickyFloorMs:t}}class $s{constructor(t,e,s){P(this,"axis"),P(this,"toggleMs"),P(this,"series"),this.axis=t,this.toggleMs=e,this.series=s}static resolve(t){if(t===!1)return new $s({y:{curve:Yi(),settleMs:0,stickyMs:0,stickyFloorMs:0,gestureMs:0},x:{curve:Yi(),settleMs:0,gestureMs:0},ticksMs:0},0,Or);const e=t===!0||t===void 0?void 0:t,s=e==null?void 0:e.axis,n=s===!1?!1:s==null?void 0:s.y,a=s===!1?!1:s==null?void 0:s.x,o=s===!1?!1:s==null?void 0:s.ticks,l=e==null?void 0:e.toggle,h=e==null?void 0:e.series,c=n===!1?{curve:Yi(),settleMs:0,stickyMs:0,stickyFloorMs:0,gestureMs:0}:{curve:(n==null?void 0:n.curve)??zr(),settleMs:vt(n==null?void 0:n.settle,co),...mo(n==null?void 0:n.sticky),gestureMs:vt(n==null?void 0:n.gesture,uo)},d=a===!1?{curve:Yi(),settleMs:0,gestureMs:0}:{curve:(a==null?void 0:a.curve)??Fr(),settleMs:vt(a==null?void 0:a.settle,lo),gestureMs:vt(a==null?void 0:a.gesture,ho)},f=o===!1?0:vt(o,$r),m=vt(l,fo),g=go(h);return new $s({y:c,x:d,ticksMs:f},m,g)}defaults(t){if(t==="line"){const{entryMs:n,smoothMs:a,pulseMs:o}=this.series.line;return{entryMs:n,smoothMs:a,pulseMs:o}}if(t==="candlestick"){const{entryMs:n,smoothMs:a}=this.series.candlestick;return{entryMs:n,smoothMs:a}}if(t==="pie"){const{entryMs:n,updateMs:a}=this.series.pie;return{entryMs:n,updateMs:a}}const{entryMs:e,smoothMs:s}=this.series.bar;return{entryMs:e,smoothMs:s}}overrides(t){const e={};if(t==="line"){const{entryMs:a,smoothMs:o,pulseMs:l}=this.series.line;return a===0&&(e.entryMs=0),o===0&&(e.smoothMs=0),l===0&&(e.pulseMs=0),e}if(t==="pie")return e;const{entryMs:s,smoothMs:n}=t==="candlestick"?this.series.candlestick:this.series.bar;return s===0&&(e.entryMs=0),n===0&&(e.smoothMs=0),e}}function go(i){if(i===!1)return Or;const t=i==null?void 0:i.line,e=i==null?void 0:i.candlestick,s=i==null?void 0:i.bar,n=i==null?void 0:i.pie,a=t===!1?{entryMs:0,smoothMs:0,pulseMs:0}:{entryMs:vt(t==null?void 0:t.entry,Gs),smoothMs:vt(t==null?void 0:t.smooth,Pn),pulseMs:vt(t==null?void 0:t.pulse,Fn)},o=e===!1?{entryMs:0,smoothMs:0}:{entryMs:vt(e==null?void 0:e.entry,Bn),smoothMs:vt(e==null?void 0:e.smooth,Dn)},l=s===!1?{entryMs:0,smoothMs:0}:{entryMs:vt(s==null?void 0:s.entry,zn),smoothMs:vt(s==null?void 0:s.smooth,En)},h=n===!1?{entryMs:0,updateMs:0}:{entryMs:vt(n==null?void 0:n.entry,ao),updateMs:vt(n==null?void 0:n.update,oo)};return{line:a,candlestick:o,bar:l,pie:h}}class Ks{constructor(){P(this,"listeners",new Map)}on(t,e){let s=this.listeners.get(t);s||(s=new Set,this.listeners.set(t,s)),s.add(e)}off(t,e){var s;(s=this.listeners.get(t))==null||s.delete(e)}emit(t,...e){var s;(s=this.listeners.get(t))==null||s.forEach(n=>n(...e))}removeAllListeners(){this.listeners.clear()}}function Qn(i,t){const e=new Map;return new Proxy(i,{get(s,n){const a=Reflect.get(s,n,s);if(typeof a!="function")return a;const o=e.get(n);if(o)return o;const l=typeof n=="string"?n:String(n),h=a,c=(...d)=>(t.set(l,(t.get(l)??0)+1),h.apply(s,d));return e.set(n,c),c},set(s,n,a){return Reflect.set(s,n,a,s)}})}function tr(i,t,e){const s=document.createElement("canvas");return s.style.position="absolute",s.style.inset="0",s.style.width="100%",s.style.height="100%",s.style.display="block",s.style.zIndex=String(t),i.appendChild(s),s}class po extends Ks{constructor(t,e){super(),P(this,"mainCanvas"),P(this,"mainCtx"),P(this,"overlayCanvas"),P(this,"overlayCtx"),P(this,"resizeObserver"),P(this,"_size"),P(this,"supportsDevicePixelContentBox",!1),this.mainCanvas=tr(t,0),this.overlayCanvas=tr(t,1);const s=this.mainCanvas.getContext("2d",{alpha:!0}),n=this.overlayCanvas.getContext("2d",{alpha:!0});if(!s||!n)throw new Error("CanvasManager: failed to acquire 2D rendering context");this.mainCtx=e?Qn(s,e.drawCallsMain):s,this.overlayCtx=e?Qn(n,e.drawCallsOverlay):n;const a=window.devicePixelRatio||1;this._size={media:{width:0,height:0},bitmap:{width:0,height:0},horizontalPixelRatio:a,verticalPixelRatio:a},this.resizeObserver=new ResizeObserver(l=>{this.handleResize(l[0])});try{this.resizeObserver.observe(t,{box:"device-pixel-content-box"}),this.supportsDevicePixelContentBox=!0}catch{this.resizeObserver.observe(t,{box:"content-box"})}const o=t.getBoundingClientRect();if(o.width>0&&o.height>0){const l=window.devicePixelRatio||1,h=l,c=Math.round(o.width*l),d=Math.round(o.height*h);this.mainCanvas.width=c,this.mainCanvas.height=d,this.overlayCanvas.width=c,this.overlayCanvas.height=d,this._size={media:{width:o.width,height:o.height},bitmap:{width:c,height:d},horizontalPixelRatio:c/o.width,verticalPixelRatio:d/o.height}}}handleResize(t){var e,s;let n,a,o,l;if(this.supportsDevicePixelContentBox&&(e=t.devicePixelContentBoxSize)!=null&&e[0]){const d=t.devicePixelContentBoxSize[0];n=d.inlineSize,a=d.blockSize;const f=t.contentBoxSize[0];o=f.inlineSize,l=f.blockSize}else{const d=(s=t.contentBoxSize)==null?void 0:s[0];if(d)o=d.inlineSize,l=d.blockSize;else{const m=t.contentRect;o=m.width,l=m.height}const f=window.devicePixelRatio||1;n=Math.round(o*f),a=Math.round(l*f)}if(n===0||a===0)return;this.mainCanvas.width=n,this.mainCanvas.height=a,this.overlayCanvas.width=n,this.overlayCanvas.height=a;const h=n/o,c=a/l;this._size={media:{width:o,height:l},bitmap:{width:n,height:a},horizontalPixelRatio:h,verticalPixelRatio:c},this.emit("resize",this._size)}get size(){return this._size}useMainLayer(t){this.mainCtx.save(),t({context:this.mainCtx,bitmapSize:this._size.bitmap,mediaSize:this._size.media,horizontalPixelRatio:this._size.horizontalPixelRatio,verticalPixelRatio:this._size.verticalPixelRatio}),this.mainCtx.restore()}useOverlayLayer(t){const{width:e,height:s}=this._size.bitmap;this.overlayCtx.clearRect(0,0,e,s),this.overlayCtx.save(),t({context:this.overlayCtx,bitmapSize:this._size.bitmap,mediaSize:this._size.media,horizontalPixelRatio:this._size.horizontalPixelRatio,verticalPixelRatio:this._size.verticalPixelRatio}),this.overlayCtx.restore()}get canvas(){return this.overlayCanvas}destroy(){this.resizeObserver.disconnect(),this.mainCanvas.remove(),this.overlayCanvas.remove(),this.removeAllListeners()}}const bo=3,vo=8,er=900,yo=24,xo=11,wo=10,Mo=18;function ko(i){const{state:t}=i;if(t==="idle"||t==="has-more")return;const e=i.timeScale.timeToX(i.boundaryTime);if(Number.isFinite(e)){if(t==="loading"){So(i,e);return}t==="no-data"&&Co(i,e)}}function So({scope:i,theme:t,chartMediaHeight:e,side:s,now:n},a){const{context:o,horizontalPixelRatio:l,verticalPixelRatio:h}=i,c=bo*l,d=vo*l,f=yo*l,m=a*l,g=s==="right"?m+f:m-f,p=e/2*h,b=n%er/er,v=Math.floor(b*3),S=Xr(t.axis.textColor??"#787b86",.3),L=t.axis.textColor??"#787b86";o.save();for(let y=0;y<3;y++){const M=(y-1)*d,k=g+M;o.beginPath(),o.arc(k,p,c,0,Math.PI*2),o.fillStyle=y===v?L:S,o.fill()}o.restore()}function Co({scope:i,theme:t,chartMediaHeight:e,side:s},n){const{context:a,horizontalPixelRatio:o,verticalPixelRatio:l}=i,h=Math.round(n*o)+.5;a.save(),a.strokeStyle=Xr(t.axis.textColor??"#787b86",.6),a.lineWidth=1,a.setLineDash([4*o,4*o]),a.beginPath(),a.moveTo(h,0),a.lineTo(h,e*l),a.stroke(),a.setLineDash([]);const c=wo*o,d=s==="right"?h-c:h+c,f=Mo*l;a.fillStyle=t.axis.textColor??"#787b86",a.font=`${xo*o}px ${t.typography.fontFamily}`,a.textAlign=s==="right"?"right":"left",a.textBaseline="top",a.fillText("No more data",d,f),a.restore()}function Xr(i,t){const e=/^#([0-9a-f]{6})$/i.exec(i.trim());if(!e)return i;const s=parseInt(e[1].slice(0,2),16),n=parseInt(e[1].slice(2,4),16),a=parseInt(e[1].slice(4,6),16);return`rgba(${s}, ${n}, ${a}, ${t})`}function To(i){const t=performance.now();for(const e of["left","right"]){const s=i.edgeStates[e];if(s==="idle"||s==="has-more")continue;const n=i.resolveBoundary(e);n!==null&&ko({scope:i.scope,timeScale:i.timeScale,theme:i.theme,chartMediaHeight:i.chartMediaHeight,boundaryTime:n,side:e,state:s,now:t})}}function Lo(i,t,e){return t!==null?t:i==="left"?e.first??null:e.last??null}function Oe(i,t,e,s){return typeof i=="object"?i.intervals*e:s<=0?0:i/s*t}function Io(i){const{firstTime:t,lastTime:e,dataInterval:s,maxVisibleBars:n,chartWidth:a,padding:o}=i,l=n*s,h=e-t,c=h>0?h:s*10,d=Oe(o.right,c,s,a),f=Oe(o.left,c,s,a);let m=e+d,g=t-f;return m-g>l&&(m=e+d,g=m-l),{from:g,to:m}}const ir=i=>"close"in i?i.close:i.value;function Nr(i,t,e){const s=t.find(c=>c.id===i);if(!s)return null;const n=s.renderer;if(n.kind==="pie")return null;const a=n.getLastDataPoint();if(!a)return null;const{from:o,to:l}=e;if(a.time>=o&&a.time<=l)return{value:ir(a),isLive:!0};const h=n.getVisibleDataPoints(o,l);return h.length===0?null:{value:ir(h[h.length-1]),isLive:!1}}function Ro(i,t,e){var s,n;const a=t.find(l=>l.id===i);return a?((n=(s=a.renderer).getStackedLastValue)==null?void 0:n.call(s))||Nr(i,t,e):null}function Wo(i,t){const e=t.find(a=>a.id===i);if(!e)return null;const s=e.renderer;if(s.kind==="pie")return null;const n=s.getSecondLastDataPoint();return n?"close"in n?n.close:n.value:null}const Ao=5e3,Po=2e3,Fo=30;function nn(i,t,e){let s=0;for(;s<t.length&&t[s]<e;)s++;s>0&&(i.splice(0,s),t.splice(0,s))}function rn(i,t,e){const s=i.length-e;s>0&&(i.splice(0,s),t.splice(0,s))}function an(i){if(i.length===0)return{last:0,p50:0,p95:0};const t=[...i].sort((e,s)=>e-s);return{last:i[i.length-1],p50:t[Math.floor(t.length*.5)]??0,p95:t[Math.floor(t.length*.95)]??0}}function sr(i){if(i.length<2)return 0;const t=i[i.length-1]-i[0];return t<=0?0:(i.length-1)*1e3/t}function nr(i){const t={};for(const[e,s]of i)t[e]=s;return t}class on{constructor(t={}){P(this,"drawCallsMain",new Map),P(this,"drawCallsOverlay",new Map),P(this,"mainMs",[]),P(this,"overlayMs",[]),P(this,"mainStamps",[]),P(this,"overlayStamps",[]),P(this,"perSeriesMs",new Map),P(this,"perSeriesStamps",new Map),P(this,"listeners",new Set),P(this,"windowMs"),P(this,"maxSamples"),P(this,"heapInterval"),P(this,"heapCounter",0),P(this,"heapMb",null),P(this,"mainFrameCount",0),P(this,"overlayFrameCount",0),P(this,"lastStamp",0),this.windowMs=t.windowMs??Ao,this.maxSamples=t.maxSamples??Po,this.heapInterval=t.heapSampleEveryNFrames??Fo}resetDrawCalls(t){(t==="main"?this.drawCallsMain:this.drawCallsOverlay).clear()}recordFrame(t,e,s){if(this.lastStamp=s,t==="main"?(this.mainMs.push(e),this.mainStamps.push(s),this.mainFrameCount++,this.sampleHeap()):(this.overlayMs.push(e),this.overlayStamps.push(s),this.overlayFrameCount++),this.trimAll(s),this.listeners.size>0){const n=this.getStats();for(const a of this.listeners)a(n)}}recordSeries(t,e,s=this.lastStamp){let n=this.perSeriesMs.get(t),a=this.perSeriesStamps.get(t);(!n||!a)&&(n=[],a=[],this.perSeriesMs.set(t,n),this.perSeriesStamps.set(t,a)),n.push(e),a.push(s)}trimAll(t){const e=t-this.windowMs;nn(this.mainMs,this.mainStamps,e),nn(this.overlayMs,this.overlayStamps,e),rn(this.mainMs,this.mainStamps,this.maxSamples),rn(this.overlayMs,this.overlayStamps,this.maxSamples);for(const s of this.perSeriesMs.keys()){const n=this.perSeriesMs.get(s),a=this.perSeriesStamps.get(s);!n||!a||(nn(n,a,e),rn(n,a,this.maxSamples))}}onFrame(t){return this.listeners.add(t),()=>{this.listeners.delete(t)}}getStats(){const t={};for(const[e,s]of this.perSeriesMs)t[e]=an(s);return{mainRendersPerSec:sr(this.mainStamps),overlayRendersPerSec:sr(this.overlayStamps),mainFrameMs:an(this.mainMs),overlayFrameMs:an(this.overlayMs),frameCount:{main:this.mainFrameCount,overlay:this.overlayFrameCount},drawCalls:{main:nr(this.drawCallsMain),overlay:nr(this.drawCallsOverlay)},perSeries:t,heapMb:this.heapMb}}destroy(){this.listeners.clear(),this.mainMs.length=0,this.overlayMs.length=0,this.mainStamps.length=0,this.overlayStamps.length=0,this.perSeriesMs.clear(),this.perSeriesStamps.clear(),this.drawCallsMain.clear(),this.drawCallsOverlay.clear(),this.mainFrameCount=0,this.overlayFrameCount=0,this.lastStamp=0,this.heapCounter=0,this.heapMb=null}sampleHeap(){if(this.heapCounter++,this.heapCounter<this.heapInterval)return;this.heapCounter=0;const t=performance.memory;this.heapMb=t?t.usedJSHeapSize/(1024*1024):null}}const Bo=200,Do=2;function zo(i){const{range:t,chartWidth:e,dataInterval:s,padding:n,dataStart:a,dataEnd:o}=i,l=d=>typeof d=="object"||d===0||e>0,h=a!==null&&l(n.left)?a-Oe(n.left,t,s,e):null,c=o!==null&&l(n.right)?o+Oe(n.right,t,s,e):null;return{left:h,right:c}}function Eo(i){return 10*i}function Vo(i){const{dataInterval:t,padding:e,dataStart:s,dataEnd:n}=i;if(s===null||n===null)return null;const a=n-s;if(a<=0)return null;const o=typeof e.left=="object"?e.left.intervals*t:null,l=typeof e.right=="object"?e.right.intervals*t:null;return o!==null||l!==null?a+(o??0)+(l??0):a+t*5}function Yo(i){return i*.5}function jo(i){const{currentLogical:t,timeDelta:e,chartWidth:s,dataInterval:n,padding:a,dataStart:o,dataEnd:l}=i,{from:h,to:c}=t;if(c-h<=0)return{newLogical:null,autoScrollOff:!1,edgeReached:null};let d=h+e,f=c+e,m=null;if(l!==null&&d>l){const v=d-l;d-=v,f-=v,m={side:"right",overshoot:v,boundaryTime:l}}if(o!==null&&f<o){const v=o-f;d+=v,f+=v,m={side:"left",overshoot:v,boundaryTime:o}}const g=l!==null&&(typeof a.right=="object"||a.right===0||s>0)?Oe(a.right,f-d,n,s):0,p=Yo(n),b=l!==null&&Math.abs(f-(l+g))<p;return{newLogical:{from:d,to:f},autoScrollOff:!b,edgeReached:m}}function Ho(i){const{currentLogical:t,centerTime:e,factor:s,chartWidth:n,dataInterval:a,padding:o,dataStart:l,dataEnd:h}=i,{from:c,to:d}=t,f=d-c;if(f<=0)return{newLogical:null};const m=Eo(a),{left:g,right:p}=zo({range:f,chartWidth:n,dataInterval:a,padding:o,dataStart:l,dataEnd:h}),b=g!==null&&p!==null?p-g:Vo({dataInterval:a,padding:o,dataStart:l,dataEnd:h});let v=f*s;v<m&&(v=m),s>1&&b!==null&&v>b&&(v=b);const S=(e-c)/f,L=e-S*v,y=L+v;return{newLogical:{from:L,to:y}}}function $o(i){if(!i)return{monitor:null,ownsMonitor:!1,showHud:!1};if(i===!0)return{monitor:new on,ownsMonitor:!0,showHud:!0};if(i instanceof on)return{monitor:i,ownsMonitor:!1,showHud:!1};const{hud:t,monitor:e,...s}=i,n=e!==void 0;return{monitor:e??new on(s),ownsMonitor:!n,showHud:t??!n}}const Cs={top:20,bottom:20,right:{intervals:3},left:{intervals:0}};function rr(i){return{top:(i==null?void 0:i.top)??Cs.top,bottom:(i==null?void 0:i.bottom)??Cs.bottom,right:(i==null?void 0:i.right)??Cs.right,left:(i==null?void 0:i.left)??Cs.left}}function ar(i,t){return typeof i=="number"&&typeof t=="number"?i===t:typeof i=="object"&&typeof t=="object"?i.intervals===t.intervals:!1}function Oo(i){return i===void 0||!Number.isFinite(i)?Bo:Math.max(Do,Math.floor(i))}const Xo=5e3,No=5,or=.3,Uo=5e3;var mi,Re;class _o{constructor(){w(this,mi,0),w(this,Re,0)}observe(t){if(r(this,mi)>0){const e=t-r(this,mi);e>=No&&e<Xo&&u(this,Re,r(this,Re)===0?e:or*e+(1-or)*r(this,Re))}u(this,mi,t)}pause(){u(this,mi,0)}pickSettleMs(t,e=3){return r(this,Re)===0?t:Math.min(Uo,Math.max(t,r(this,Re)*e))}get emaMs(){return r(this,Re)}}mi=new WeakMap,Re=new WeakMap;const Go=.5,Ko=4;function Zo(i){const{currentLogical:t,lastTime:e,prevDataEnd:s,dataInterval:n,paddingRight:a,chartWidth:o,holdUntilFilled:l}=i,{from:h,to:c}=t,d=c-h;if(d<=0)return{newLogical:null,releaseHold:!1,reengageAutoScroll:!1};const f=Oe(a,d,n,o);if(l){const y=n*.01;if(e+f<=c+y)return{newLogical:null,releaseHold:!1,reengageAutoScroll:!0}}const m=s!==null?c-s:f,g=Math.max(0,Math.min(f,m)),p=e+g,b=p-d,v=Go*n,S=o>0?Ko/o*d:v,L=Math.min(v,S);return Math.abs(p-c)<L?{newLogical:null,releaseHold:l,reengageAutoScroll:!0}:{newLogical:{from:b,to:p},releaseHold:l,reengageAutoScroll:!0}}function qo(i,t,e){let s=1/0,n=-1/0;for(const a of t){if(!a.visible||a.renderer.kind==="pie")continue;const o=a.renderer.getValueRange(i.from,i.to);o&&(o.max>n&&(n=o.max),o.min<s&&(s=o.min),e==null||e.push(o.min,o.max))}return s===1/0||n===-1/0?null:{min:s,max:n}}function lr(i,t,e,s,n){if(i===void 0||i==="auto")return t;if(typeof i=="number")return i;if(typeof i=="function")return i(s);const a=String(i).match(/^([+-]?)\s*(\d+(?:\.\d+)?)\s*%$/);if(a){const o=a[1]==="-"?-1:1,l=parseFloat(a[2])/100,h=Math.abs(e-t)||Math.abs(t)||1;return t+o*l*h*(n==="max"?1:-1)}return t}function Jo(i,t,e,s){const{context:n,bitmapSize:a,horizontalPixelRatio:o,verticalPixelRatio:l}=i,h=Math.max(1,Math.round(l)),c=Math.max(1,Math.round(o));n.strokeStyle=s.crosshair.color,n.lineWidth=Math.max(h,c),n.setLineDash([4*o,4*o]);const d=Math.round(t)+(c%2===1?.5:0),f=Math.round(e)+(h%2===1?.5:0);n.beginPath(),n.moveTo(d,0),n.lineTo(d,a.height),n.moveTo(0,f),n.lineTo(a.width,f),n.stroke(),n.setLineDash([])}function Qo({scope:i,timeScale:t,yScale:e,theme:s,yTicks:n,timeTicks:a}){const{context:o,bitmapSize:l,horizontalPixelRatio:h,verticalPixelRatio:c}=i;o.save(),o.strokeStyle=s.grid.color,s.grid.style==="dashed"?o.setLineDash([4*h,4*h]):s.grid.style==="dotted"&&o.setLineDash([1*h,3*h]);const d=Math.max(1,Math.round(c)),f=d%2===1?.5:0;o.lineWidth=d;for(const{value:p,opacity:b}of n.entries){if(b<=.01)continue;const v=Math.round(e.valueToBitmapY(p))+f;o.globalAlpha=b,o.beginPath(),o.moveTo(0,v),o.lineTo(l.width,v),o.stroke()}const m=Math.max(1,Math.round(h)),g=m%2===1?.5:0;o.lineWidth=m;for(const{value:p,opacity:b}of a.entries){if(b<=.01)continue;const v=Math.round(t.timeToBitmapX(p))+g;o.globalAlpha=b,o.beginPath(),o.moveTo(v,0),o.lineTo(v,l.height),o.stroke()}o.restore()}function hs(i,t,e){return Math.max(t,Math.min(e,i))}function ee(i,t,e){return i+(t-i)*e}function hr(i,t,e,s){const n=Math.exp(-e*s);return t+(i-t)*n}function ji(i){return 1-(1-i)**3}function ln(i,t,e){let s=0,n=i.length-1;for(;s<=n;){const a=s+n>>>1,o=e(i[a]);if(o<t)s=a+1;else if(o>t)n=a-1;else return a}return s}class Ur extends Ks{constructor(){super(...arguments),P(this,"data",[]),P(this,"_visible",!0),P(this,"cachedRange",null),P(this,"cachedResult",[])}setVisible(t){this._visible=t}isVisible(){return this._visible}setData(t){let e=!0;for(let s=1;s<t.length;s++)if(t[s].time<t[s-1].time){e=!1;break}this.data=e?t.slice():[...t].sort((s,n)=>s.time-n.time),this.cachedRange=null,this.emit("update")}append(t){if(this.data.length>0&&t.time<=this.data[this.data.length-1].time){this.updateLast(t);return}this.data.push(t),this.cachedRange=null,this.emit("update")}updateLast(t){this.data.length!==0&&(this.data[this.data.length-1]=t,this.cachedRange=null,this.emit("update"))}trimStart(t){if(!(t<=0||this.data.length===0)){if(t>=this.data.length){this.data=[],this.cachedRange=null,this.emit("update");return}this.data=this.data.slice(t),this.cachedRange=null,this.emit("update")}}getAll(){return this.data}getVisibleData(t,e){if(this.data.length===0)return[];if(this.cachedRange&&this.cachedRange.from===t&&this.cachedRange.to===e)return this.cachedResult;const s=Math.max(0,ln(this.data,t,a=>a.time)-1),n=Math.min(this.data.length,ln(this.data,e,a=>a.time)+1);return this.cachedResult=this.data.slice(s,n),this.cachedRange={from:t,to:e},this.cachedResult}first(){return this.data[0]}last(){return this.data[this.data.length-1]}get length(){return this.data.length}isEmpty(){return this.data.length===0}findNearest(t,e){if(this.data.length===0)return null;const s=ln(this.data,t,o=>o.time);let n=null,a=e;for(let o=Math.max(0,s-1);o<=Math.min(this.data.length-1,s+1);o++){const l=Math.abs(this.data[o].time-t);l<=a&&(a=l,n=this.data[o])}return n}}class tl{constructor(t,e,s){P(this,"dragging",!1),P(this,"lastX",0),this.target=t,this.timeScale=e,this.canvas=s}handleMouseDown(t){t.button===0&&(this.dragging=!0,this.lastX=t.clientX,this.canvas.style.cursor="grabbing")}handleMouseMove(t){if(!this.dragging)return;const e=t.clientX-this.lastX;this.lastX=t.clientX;const s=this.timeScale.pixelDeltaToTimeDelta(-e);this.target.pan(s,this.timeScale.getMediaWidth())}handleMouseUp(){this.dragging&&(this.dragging=!1,this.canvas.style.cursor="crosshair")}isDragging(){return this.dragging}}class el{constructor(t,e){this.target=t,this.timeScale=e}handleWheel(t){t.preventDefault();const e=il(t.deltaY,t.deltaMode),s=Math.exp(e*.005),n=this.timeScale.getMediaWidth(),a=Math.min(t.offsetX,n),o=this.timeScale.xToTime(a);this.target.zoomAt(o,s,n)}cancelPendingRebound(){}}function il(i,t){return t===WheelEvent.DOM_DELTA_LINE?i*8:t===WheelEvent.DOM_DELTA_PAGE?i*24:i}function cr(i,t){const e=i.clientX-t.clientX,s=i.clientY-t.clientY;return Math.hypot(e,s)}class sl extends Ks{constructor(t,e,s,n){super(),P(this,"zoom"),P(this,"pan"),P(this,"canvas"),P(this,"timeScale"),P(this,"yScale"),P(this,"target"),P(this,"onWheel",a=>{this.zoom.handleWheel(a)}),P(this,"onMouseDown",a=>{this.zoom.cancelPendingRebound(),this.pan.handleMouseDown(a)}),P(this,"onMouseMove",a=>{this.pan.isDragging()&&this.pan.handleMouseMove(a),this.emitCrosshair(a.offsetX,a.offsetY)}),P(this,"onMouseUp",()=>{this.pan.handleMouseUp()}),P(this,"onMouseLeave",()=>{this.pan.handleMouseUp(),this.emit("crosshairMove",null)}),P(this,"onDblClick",()=>{}),P(this,"lastTouchDist",0),P(this,"touchCount",0),P(this,"onTouchStart",a=>{a.preventDefault(),this.zoom.cancelPendingRebound(),this.touchCount=a.touches.length,a.touches.length===1?this.pan.handleMouseDown({button:0,clientX:a.touches[0].clientX}):a.touches.length===2&&(this.lastTouchDist=cr(a.touches[0],a.touches[1]))}),P(this,"onTouchMove",a=>{if(a.preventDefault(),a.touches.length===1&&this.touchCount===1)this.pan.handleMouseMove({clientX:a.touches[0].clientX});else if(a.touches.length===2){const o=cr(a.touches[0],a.touches[1]),l=(a.touches[0].clientX+a.touches[1].clientX)/2,h=this.canvas.getBoundingClientRect();if(o>0&&this.lastTouchDist>0){const c=hs(this.lastTouchDist/o,.1,10),d=this.timeScale.xToTime(l-h.left);this.target.zoomAt(d,c,this.timeScale.getMediaWidth())}this.lastTouchDist=o}}),P(this,"onTouchEnd",a=>{if(a.touches.length===0){this.pan.handleMouseUp(),this.touchCount=0,this.lastTouchDist=0,this.emit("crosshairMove",null);return}a.touches.length===1&&(this.touchCount=1,this.lastTouchDist=0,this.pan.handleMouseDown({button:0,clientX:a.touches[0].clientX}))}),P(this,"onTouchCancel",()=>{this.pan.handleMouseUp(),this.touchCount=0,this.lastTouchDist=0,this.emit("crosshairMove",null)}),this.canvas=t,this.target=e,this.timeScale=s,this.yScale=n,this.zoom=new el(e,s),this.pan=new tl(e,s,t),t.style.cursor="crosshair",t.style.touchAction="none",t.addEventListener("wheel",this.onWheel,{passive:!1}),t.addEventListener("mousedown",this.onMouseDown),t.addEventListener("mousemove",this.onMouseMove),t.addEventListener("mouseup",this.onMouseUp),t.addEventListener("mouseleave",this.onMouseLeave),t.addEventListener("dblclick",this.onDblClick),t.addEventListener("touchstart",this.onTouchStart,{passive:!1}),t.addEventListener("touchmove",this.onTouchMove,{passive:!1}),t.addEventListener("touchend",this.onTouchEnd),t.addEventListener("touchcancel",this.onTouchCancel)}emitCrosshair(t,e){const s=this.timeScale.xToTime(t),n=this.yScale.yToValue(e);this.emit("crosshairMove",{mediaX:t,mediaY:e,time:s,y:n})}destroy(){this.zoom.cancelPendingRebound(),this.canvas.removeEventListener("wheel",this.onWheel),this.canvas.removeEventListener("mousedown",this.onMouseDown),this.canvas.removeEventListener("mousemove",this.onMouseMove),this.canvas.removeEventListener("mouseup",this.onMouseUp),this.canvas.removeEventListener("mouseleave",this.onMouseLeave),this.canvas.removeEventListener("dblclick",this.onDblClick),this.canvas.removeEventListener("touchstart",this.onTouchStart),this.canvas.removeEventListener("touchmove",this.onTouchMove),this.canvas.removeEventListener("touchend",this.onTouchEnd),this.canvas.removeEventListener("touchcancel",this.onTouchCancel),this.removeAllListeners()}}const nl=100,rl={position:"absolute",top:"4px",right:"4px",padding:"4px 6px",background:"rgba(0, 0, 0, 0.6)",color:"#e0e0e0",font:"11px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace",borderRadius:"3px",pointerEvents:"none",zIndex:"20",whiteSpace:"pre",letterSpacing:"0.01em"};function ur(i){let t=0;for(const e of Object.values(i))t+=e;return t}const ms=9,Vn=7,ne=6,Yn=9;function al(i,t){return Math.round(i*t).toLocaleString("en-US")}function dr(i,t,e,s,n){return[i.padEnd(ms),t.toFixed(1).padStart(Vn),e.toFixed(2).padStart(ne),s.toFixed(2).padStart(ne),al(n,t).padStart(Yn)].join(" ")}function fr(i){return[i.padEnd(ms),"—".padStart(Vn),"—".padStart(ne),"—".padStart(ne),"idle".padStart(Yn)].join(" ")}function ol(){return["".padEnd(ms),"FPS".padStart(Vn),"ms".padStart(ne),"worst".padStart(ne),"calls/s".padStart(Yn)].join(" ")}function ll(i){const t=ur(i.drawCalls.main),e=ur(i.drawCalls.overlay),s=i.frameCount.main===0?fr("Main"):dr("Main",i.mainRendersPerSec,i.mainFrameMs.last,i.mainFrameMs.p95,t),n=i.frameCount.overlay===0?fr("Overlay"):dr("Overlay",i.overlayRendersPerSec,i.overlayFrameMs.last,i.overlayFrameMs.p95,e),a=[ol(),s,n],o=Object.keys(i.perSeries);if(o.length>1){a.push(""),a.push("Per series (main pass)"),a.push(["".padEnd(ms),"ms".padStart(ne),"worst".padStart(ne)].join(" "));for(const l of o){const h=i.perSeries[l];a.push([` ${l}`.padEnd(ms),h.last.toFixed(2).padStart(ne),h.p95.toFixed(2).padStart(ne)].join(" "))}}return a.join(`
|
|
2
|
+
`)}class hl{constructor(t,e,s=nl){P(this,"element"),P(this,"unsubscribe"),P(this,"updateIntervalMs"),P(this,"lastUpdate",0),this.updateIntervalMs=s;for(const n of t.querySelectorAll("[data-chart-perf-hud]"))n.remove();this.element=document.createElement("div"),this.element.setAttribute("data-chart-perf-hud",""),Object.assign(this.element.style,rl),this.element.textContent="perf: waiting for first frame…",t.appendChild(this.element),this.unsubscribe=e.onFrame(n=>this.onFrame(n))}destroy(){this.unsubscribe(),this.element.remove()}onFrame(t){const e=performance.now();e-this.lastUpdate<this.updateIntervalMs||(this.lastUpdate=e,this.element.textContent=ll(t))}}class Ts{constructor(t){P(this,"dirty",!1),P(this,"rafId",null),P(this,"callback"),P(this,"render",e=>{this.dirty=!1,this.rafId=null,this.callback(e)}),this.callback=t}markDirty(){this.dirty||(this.dirty=!0,this.rafId=requestAnimationFrame(this.render))}destroy(){this.rafId!==null&&(cancelAnimationFrame(this.rafId),this.rafId=null),this.dirty=!1}}const _r=i=>1-(1-i)**3;var he,gi,ce,Ps,pi,Hi,Fs,$i,Bs,Oi,We;class Pi{constructor(t){w(this,he),w(this,gi),w(this,ce),w(this,Ps,0),w(this,pi),w(this,Hi),w(this,Fs),w(this,$i),w(this,Bs),w(this,Oi),w(this,We,!1),u(this,he,t.initial),u(this,gi,t.initial),u(this,ce,t.initial),u(this,Fs,t.duration),u(this,pi,t.duration),u(this,$i,t.easing??_r),u(this,Hi,r(this,$i)),u(this,Bs,t.lerp),u(this,Oi,t.equals??Object.is)}get current(){return r(this,he)}get target(){return r(this,ce)}get animating(){return r(this,We)}snap(t){u(this,he,t),u(this,gi,t),u(this,ce,t),u(this,We,!1)}setTarget(t,e={}){const s=e.now??performance.now();if(r(this,We)){if(r(this,Oi).call(this,t,r(this,ce)))return;this.tick(s)}else if(r(this,Oi).call(this,t,r(this,he)))return;const n=e.duration??r(this,Fs);if(n<=0){this.snap(t);return}u(this,gi,r(this,he)),u(this,ce,t),u(this,pi,n),u(this,Hi,e.easing??r(this,$i)),u(this,Ps,s),u(this,We,!0)}tick(t){if(!r(this,We))return!1;const e=t-r(this,Ps);if(e>=r(this,pi))return u(this,he,r(this,ce)),u(this,We,!1),!1;const s=e<=0?0:e/r(this,pi);return u(this,he,r(this,Bs).call(this,r(this,gi),r(this,ce),r(this,Hi).call(this,s))),!0}}he=new WeakMap,gi=new WeakMap,ce=new WeakMap,Ps=new WeakMap,pi=new WeakMap,Hi=new WeakMap,Fs=new WeakMap,$i=new WeakMap,Bs=new WeakMap,Oi=new WeakMap,We=new WeakMap;const cl={entries:[],isAnimating:!1},ul=(i,t,e)=>i+(t-i)*e;function dl(i,t){if(i===t)return!0;if(i.length!==t.length)return!1;for(let e=0;e<i.length;e++)if(i[e]!==t[e])return!1;return!0}var ue,Xi,_t,bi,vi;class Gr{constructor(t={}){w(this,ue,[]),w(this,Xi,[]),w(this,_t,new Map),w(this,bi),w(this,vi,!1),u(this,bi,t.fadeMs??$r)}setCurrentTicks(t){if(dl(t,r(this,ue)))return;const e=r(this,vi)?r(this,bi):0,s=new Set(t),n=new Set(r(this,ue));for(const a of t){if(n.has(a))continue;let o=r(this,_t).get(a);o===void 0&&(o=new Pi({initial:0,duration:r(this,bi),lerp:ul}),r(this,_t).set(a,o)),o.setTarget(1,{duration:e})}for(const a of r(this,ue)){if(s.has(a))continue;const o=r(this,_t).get(a);o!==void 0&&o.setTarget(0,{duration:e})}u(this,Xi,r(this,ue)),u(this,ue,t.slice())}tick(t){let e=!1;for(const[s,n]of r(this,_t)){if(n.tick(t)){e=!0;continue}n.current===0&&r(this,_t).delete(s)}return e}snapshot(){if(r(this,_t).size===0)return cl;const t=[];let e=!1;for(const[s,n]of r(this,_t)){const a=n.current;a<=0||(t.push({value:s,opacity:a}),n.animating&&(e=!0))}return{entries:t,isAnimating:e}}getCurrentTicks(){return r(this,ue)}getPreviousTicks(){return r(this,Xi)}setFadeMs(t){u(this,bi,t)}markArmed(){u(this,vi,!0)}get isArmed(){return r(this,vi)}reset(){u(this,ue,[]),u(this,Xi,[]),r(this,_t).clear(),u(this,vi,!1)}}ue=new WeakMap,Xi=new WeakMap,_t=new WeakMap,bi=new WeakMap,vi=new WeakMap;const fl=50,ml=80;class Kr{constructor(){P(this,"tickTracker",new Gr),P(this,"from",0),P(this,"to",0),P(this,"width",1),P(this,"pixelRatio",1),P(this,"dataInterval",null),P(this,"labelCountHintValue",null),P(this,"minSpacingValue",null),P(this,"resolvedInterval",null),P(this,"lastInterval",null),P(this,"lastWant",null),P(this,"lastBucketKey",null)}get labelCountHint(){return this.labelCountHintValue}get minLabelSpacing(){return this.minSpacingValue??ml}update(t,e,s,n){if(this.from=t.from,this.to=t.to,this.width=e,this.pixelRatio=s,n!==void 0&&n>0){const a=mr(n);this.lastBucketKey!==null&&this.lastBucketKey!==a&&this.resetHysteresis(),this.lastBucketKey=a,this.dataInterval=n}this.resolveInterval()}setLabelCount(t){this.labelCountHintValue=gl(t),this.resetHysteresis(),this.resolveInterval()}setMinSpacing(t){this.minSpacingValue=pl(t),this.resetHysteresis(),this.resolveInterval()}resetHysteresis(){this.lastInterval=null,this.lastWant=null}timeToX(t){return this.to<=this.from?0:(t-this.from)/(this.to-this.from)*this.width}timeToBitmapX(t){return Math.round(this.timeToX(t)*this.pixelRatio)}xToTime(t){return this.to<=this.from?this.from:this.from+t/this.width*(this.to-this.from)}pixelDeltaToTimeDelta(t){return this.to<=this.from?0:t/this.width*(this.to-this.from)}barWidthMedia(t){return this.to<=this.from?0:t/(this.to-this.from)*this.width}barWidthBitmap(t){return Math.max(1,Math.round(this.barWidthMedia(t)*this.pixelRatio))}niceTickValues(t){if(this.to<=this.from)return{ticks:[],tickInterval:0};if(this.dataInterval!==t){const o=mr(t);this.lastBucketKey!==null&&this.lastBucketKey!==o&&this.resetHysteresis(),this.lastBucketKey=o,this.dataInterval=t,this.resolveInterval()}if(this.resolvedInterval==null)return{ticks:[],tickInterval:0};const e=this.resolvedInterval,s=Math.ceil(this.from/e)*e,n=Math.max(0,Math.min(fl,Math.floor((this.to-s)/e)+1)),a=[];for(let o=0;o<n;o++)a.push(s+o*e);return{ticks:a,tickInterval:e}}getRange(){return{from:this.from,to:this.to}}getMediaWidth(){return this.width}resolveInterval(){if(this.to<=this.from||this.width<=0||this.dataInterval==null||this.dataInterval<=0){this.resolvedInterval=null;return}const t=no(this.dataInterval),e=this.to-this.from,s=e/this.width*this.minLabelSpacing;let n;if(this.labelCountHint!=null){const l=Math.max(1,this.labelCountHint);n=Math.max(e/l,s)}else n=s;if(this.lastInterval!=null&&this.lastWant!=null&&t.includes(this.lastInterval)){const l=n>=this.lastWant*.8&&n<=this.lastWant*1.25,h=this.lastInterval>=s;if(l&&h){this.resolvedInterval=this.lastInterval;return}}let a=t[t.length-1],o=t.length-1;for(let l=0;l<t.length;l++)if(t[l]>=n){a=t[l],o=l;break}if(this.labelCountHint!=null&&o>0&&this.countTicks(a)<this.labelCountHint){const l=t[o-1];l>=s&&(a=l)}this.resolvedInterval=a,this.lastInterval=a,this.lastWant=n}countTicks(t){if(!(t>0))return 0;const e=Math.ceil(this.from/t)*t;return Math.max(0,Math.floor((this.to-e)/t)+1)}}function mr(i){return i<6e4?0:i<36e5?1:i<864e5?2:3}function gl(i){return typeof i=="number"&&Number.isFinite(i)&&i>=2?Math.floor(i):null}function pl(i){return typeof i=="number"&&Number.isFinite(i)&&i>0?i:null}function Zr(i){const t=Math.abs(i);if(t===0)return"0";if(t<1e-12)return i.toExponential(2);const e=Math.max(0,Math.ceil(-Math.log10(t))-1),s=Math.min(12,e+4),n=i.toFixed(s);return n.includes(".")?n.replace(/\.?0+$/,""):n}function qr(i){return Number.isNaN(i)?"—":i===1/0?"∞":i===-1/0?"−∞":null}function Xe(i,t){const e=qr(i);if(e!==null)return e;const s=Math.abs(i),n=(t==null?void 0:t.decimals)??2,a=(o,l,h)=>{const c=o/l,d=Number.parseFloat(c.toFixed(n));return Math.abs(d)>=1e3?null:`${c.toFixed(n)}${h}`};return s>=1e15?i.toExponential(2):s>=1e12?a(i,1e12,"T")??i.toExponential(2):s>=1e9?a(i,1e9,"B")??`${(i/1e12).toFixed(n)}T`:s>=1e6?a(i,1e6,"M")??`${(i/1e9).toFixed(n)}B`:s>=1e3?a(i,1e3,"K")??`${(i/1e6).toFixed(n)}M`:s<1?Zr(i):s<100?i.toFixed(2):i.toFixed(0)}function jn(i){const t=qr(i);if(t!==null)return t;const e=Math.abs(i);return e===0?"0":e<1?Zr(i):e<100?i.toFixed(4):e>=1e7?Xe(i):e<1e4?i.toFixed(2):i.toFixed(0)}function bl(i){if(!Number.isFinite(i)||i<=0)return 1;const t=10**Math.floor(Math.log10(i)),e=i/t;return(e<=1?1:e<=2?2:e<=5?5:10)*t}function vl(i){if(!Number.isFinite(i)||i<=0)return 1;const t=10**Math.floor(Math.log10(i)),e=i/t;return(e>=5?5:e>=2?2:1)*t}const yl=50,xl=50;class Jr{constructor(){P(this,"tickTracker",new Gr),P(this,"min",0),P(this,"max",0),P(this,"height",1),P(this,"pixelRatio",1),P(this,"labelCountHintValue",null),P(this,"minSpacingValue",null),P(this,"resolvedInterval",null),P(this,"lastInterval",null),P(this,"lastRawInterval",null),P(this,"customFormat",null)}get labelCountHint(){return this.labelCountHintValue}get minLabelSpacing(){return this.minSpacingValue??xl}update(t,e,s){this.min=t.min,this.max=t.max,this.height=e,this.pixelRatio=s,this.resolveInterval()}setLabelCount(t){this.labelCountHintValue=wl(t),this.resetHysteresis(),this.resolveInterval()}setMinSpacing(t){this.minSpacingValue=Ml(t),this.resetHysteresis(),this.resolveInterval()}resetHysteresis(){this.lastInterval=null,this.lastRawInterval=null}setFormat(t){this.customFormat=t}getFormat(){return this.customFormat}valueToY(t){const e=this.max-this.min;return e===0?this.height/2:(1-(t-this.min)/e)*this.height}valueToBitmapY(t){return Math.round(this.valueToY(t)*this.pixelRatio)}yToValue(t){const e=this.max-this.min;return e===0?this.min:this.max-t/this.height*e}niceTickValues(){if(this.resolvedInterval==null)return[];const t=this.resolvedInterval,e=Math.ceil(this.min/t)*t,s=Math.max(0,Math.min(yl,Math.floor((this.max-e)/t)+1)),n=[];for(let a=0;a<s;a++)n.push(e+a*t);return n}getRange(){return{min:this.min,max:this.max}}getMediaHeight(){return this.height}formatY(t){if(this.customFormat)return this.customFormat(t);if(this.max-this.min>=1e6)return Xe(t);const e=this.resolvedInterval,s=e!=null&&e>0?Math.max(0,-Math.floor(Math.log10(e))):1;return t.toFixed(s)}resolveInterval(){if(this.max<=this.min||this.height<=0){this.resolvedInterval=null;return}const t=this.max-this.min,e=t*this.minLabelSpacing/this.height,s=this.labelCountHint!=null?Math.max(1,this.labelCountHint):Math.max(1,Math.floor(this.height/this.minLabelSpacing));let n=t/s;if(n<e&&(n=e),this.lastInterval!=null&&this.lastRawInterval!=null){const o=n>=this.lastRawInterval*.8&&n<=this.lastRawInterval*1.25,l=this.lastInterval>=e;if(o&&l){this.resolvedInterval=this.lastInterval;return}}let a=bl(n);if(this.labelCountHint!=null&&this.countTicks(a)<this.labelCountHint){const o=vl(n);o>=e&&o>0&&(a=o)}this.resolvedInterval=a,this.lastInterval=a,this.lastRawInterval=n}countTicks(t){if(!(t>0))return 0;const e=Math.ceil(this.min/t)*t;return Math.max(0,Math.floor((this.max-e)/t)+1)}}function wl(i){return typeof i=="number"&&Number.isFinite(i)&&i>=2?Math.floor(i):null}function Ml(i){return typeof i=="number"&&Number.isFinite(i)&&i>0?i:null}function kl(i){let t=0,e=0;for(const s of i)s>0?t+=s:s<0&&(e+=s);return{positive:t,negative:e}}function Sl(i){return i.positive>0?i.positive:i.negative<0?i.negative:0}function Cl(i){return i.positive>0?100:i.negative<0?-100:0}const gr=(i,t,e)=>i+(t-i)*e;var Vt,de;class Qr{constructor(t){P(this,"stores"),P(this,"entries"),P(this,"displayedLastValues"),w(this,Vt),w(this,de),this.stores=Array.from({length:t},()=>new Ur),this.entries=Array.from({length:t},()=>new Map),this.displayedLastValues=new Array(t).fill(null),u(this,Vt,new Array(t).fill(null)),u(this,de,Array.from({length:t},()=>new Pi({initial:1,duration:0,lerp:gr})))}getColor(){return this.options.colors[0]}getColors(){return this.options.colors}setData(t,e=0){const s=this.stores[e];if(!s)return;const n=so(t??[]);s.setData(n);const a=s.last();this.displayedLastValues[e]=a?a.value:null,r(this,Vt)[e]=null,this.entries[e].clear()}appendPoint(t,e=0){const s=this.stores[e];if(!s)return;const n=t,a=zt(n.time);s.append({...n,time:a}),this.displayedLastValues[e]=n.value,r(this,Vt)[e]=null;const o=this.options.entryMs;this.isEntryEnabled()&&o>0&&this.entries[e].set(a,{startTime:performance.now()})}updateLastPoint(t,e=0){const s=this.stores[e];if(!s)return;const n=t;s.updateLast({...n,time:zt(n.time)});const a=n.value,o=this.options.smoothMs;if(o<=0){this.displayedLastValues[e]=a,r(this,Vt)[e]=null;return}let l=r(this,Vt)[e];if(l===null){const h=this.displayedLastValues[e]??a;l=new Pi({initial:h,duration:o,lerp:gr}),r(this,Vt)[e]=l}l.setTarget(a)}keepLast(t,e=0){const s=this.stores[e];if(!s||t<0)return;const n=s.length-t;n<=0||s.trimStart(n)}getLayerCount(){return this.stores.length}setLayerVisible(t,e){var s;(s=this.stores[t])==null||s.setVisible(e)}isLayerVisible(t){var e;return((e=this.stores[t])==null?void 0:e.isVisible())??!0}getLayerColors(){return this.getColors()}onDataChanged(t){for(const e of this.stores)e.on("update",t);return()=>{for(const e of this.stores)e.off("update",t)}}dispose(){for(const t of this.stores)t.removeAllListeners()}entranceProgress(t,e,s){var n;const a=(n=this.entries[e])==null?void 0:n.get(s);if(a===void 0)return 1;const o=this.options.entryMs;if(o<=0)return 1;const l=performance.now()-a.startTime;return l<=0?0:l>=o?1:l/o}effectiveValue(t,e,s,n){var a,o;const l=(o=(a=this.stores[e])==null?void 0:a.last())==null?void 0:o.time;return l===void 0||s!==l?n:this.displayedLastValues[e]??n}tickAnimations(t){for(const e of r(this,de))e.tick(t);for(let e=0;e<this.stores.length;e++){const s=r(this,Vt)[e];if(s!==null){const o=s.tick(t);this.displayedLastValues[e]=s.current,o||(r(this,Vt)[e]=null)}const n=this.options.entryMs;if(n<=0){this.entries[e].clear();continue}const a=this.entries[e];for(const[o,l]of a)t-l.startTime>=n&&a.delete(o)}}get needsAnimation(){for(const t of r(this,de))if(t.animating)return!0;for(const t of r(this,Vt))if(t!==null)return!0;for(const t of this.entries)if(t.size>0)return!0;return!1}cancelEntranceAnimations(){for(const t of this.entries)t.clear()}setAlpha(t,e){for(const s of r(this,de))s.setTarget(t,{duration:e})}getAlpha(){for(const t of r(this,de))if(t.current>0||t.animating)return 1;return 0}setLayerAlpha(t,e,s){var n;(n=r(this,de)[t])==null||n.setTarget(e,{duration:s})}getLayerAlpha(t){var e;return((e=r(this,de)[t])==null?void 0:e.current)??1}getLastValue(){for(let t=this.stores.length-1;t>=0;t--){const e=this.stores[t].last();if(e)return e.value}return null}getDataAtTime(t,e){var s;return((s=this.stores[0])==null?void 0:s.findNearest(t,e))??null}getLayerSnapshots(t,e){if(this.stores.length<=1)return null;const s=this.getColors(),n=[];for(let a=0;a<this.stores.length;a++){if(!this.stores[a].isVisible())continue;const o=this.stores[a].getVisibleData(t-e,t+e);if(o.length===0)continue;let l=o[0],h=Math.abs(o[0].time-t);for(let c=1;c<o.length;c++){const d=Math.abs(o[c].time-t);d<=h&&(h=d,l=o[c])}n.push({layerIndex:a,time:l.time,value:l.value,color:s[a%s.length]})}return n.length>0?n:null}getStackedLastValue(){var t;if(this.stores.length<=1){const o=(t=this.stores[0])==null?void 0:t.last();return o?{value:o.value,isLive:!0}:null}let e=-1/0;for(const o of this.stores){if(!o.isVisible())continue;const l=o.last();l&&l.time>e&&(e=l.time)}if(e===-1/0)return null;const s=this.options.stacking;if(s==="off"){for(let o=this.stores.length-1;o>=0;o--){if(!this.stores[o].isVisible())continue;const l=this.stores[o].last();if(l)return{value:l.value,isLive:!0}}return null}const n=[];for(const o of this.stores){if(!o.isVisible())continue;const l=o.last();n.push(l&&l.time===e?l.value:0)}const a=kl(n);return{value:s==="percent"?Cl(a):Sl(a),isLive:!0}}getLayerLastSnapshots(){if(this.stores.length<=1)return null;const t=this.getColors(),e=[];for(let s=0;s<this.stores.length;s++){if(!this.stores[s].isVisible())continue;const n=this.stores[s].last();n&&e.push({layerIndex:s,time:n.time,value:n.value,color:t[s%t.length]})}return e.length>0?e:null}getTotalLength(){let t=0;for(const e of this.stores)t+=e.length;return t}getTimeBounds(){let t=1/0,e=-1/0;for(const s of this.stores){const n=s.first();if(!n)continue;const a=s.last()??n;n.time<t&&(t=n.time),a.time>e&&(e=a.time)}return t===1/0?null:{first:t,last:e}}getLastDataPoint(){var t;return((t=this.stores[0])==null?void 0:t.last())??null}getSecondLastDataPoint(){var t;const e=(t=this.stores[0])==null?void 0:t.getAll();return!e||e.length<2?null:e[e.length-2]}sampleTimes(t){for(const e of this.stores){const s=e.getAll();if(s.length!==0)return s.slice(0,t).map(n=>n.time)}return[]}getVisibleDataPoints(t,e){var s;return((s=this.stores[0])==null?void 0:s.getVisibleData(t,e))??[]}getValueRange(t,e){const s=this.options.stacking;if(s==="percent")return{min:0,max:100};const n=this.stores.map(h=>h.isVisible()?h.getVisibleData(t,e):[]);if(s==="off"){let h=1/0,c=-1/0;for(const d of n)for(const f of d)Number.isFinite(f.value)&&(f.value<h&&(h=f.value),f.value>c&&(c=f.value));return h<1/0?{min:h,max:c}:null}const a=new Map;for(let h=0;h<n.length;h++)for(const c of n[h]){let d=a.get(c.time);d||(d=new Array(n.length).fill(0),a.set(c.time,d)),d[h]=Number.isFinite(c.value)?c.value:0}let o=0,l=0;for(const h of a.values()){let c=0,d=0;for(const f of h)f>0?c+=f:d+=f;c>l&&(l=c),d<o&&(o=d)}return l>o?{min:o,max:l}:null}}Vt=new WeakMap,de=new WeakMap;const Tl={colors:["#26a69a","#ef5350"],barWidthRatio:.6,stacking:"off",anchor:"center",entryMs:zn,smoothMs:En};function pr(i){return{...i,entryMs:i.entryMs===!1?0:i.entryMs??zn,smoothMs:i.smoothMs===!1?0:i.smoothMs??En}}class Ll extends Qr{constructor(t,e){super(t),P(this,"kind","bar"),this.options=pr({...Tl,...e})}updateOptions(t){this.options=pr({...this.options,...t})}isEntryEnabled(){return(this.options.entryAnimation??"fade-grow")!=="none"}applyTheme(t,e){const s=e.seriesColors,n=this.options.colors.map((a,o)=>a===s[o]?t.seriesColors[o]??a:a);this.updateOptions({colors:n})}applyBarTransform(t,e,s,n,a,o){const l=this.options.entryAnimation??"fade-grow";if(t>=1||l==="none")return{topY:s,barHeight:n,x:a,barWidth:o,alpha:1};let h=s,c=n,d=a,f=1;if((l==="fade"||l==="fade-grow")&&(f=t),l==="grow"||l==="fade-grow"){const m=n*t;s<e?h=e-m:h=e,c=Math.max(1,m)}return l==="slide"&&(d=a+(1-t)*o,f=t),{topY:h,barHeight:c,x:d,barWidth:o,alpha:f}}render(t){switch(this.tickAnimations(performance.now()),this.options.stacking){case"normal":this.renderStacked(t,!1);break;case"percent":this.renderStacked(t,!0);break;default:this.renderOff(t);break}}renderOff(t){const{scope:e,timeScale:s,yScale:n,dataInterval:a}=t,{context:o,horizontalPixelRatio:l}=e,h=s.getRange();let c=0;for(const L of this.stores){if(!L.isVisible())continue;const y=L.getVisibleData(h.from,h.to).length;if(y>c&&(c=y),c>2)break}const d=s.barWidthBitmap(a),f=Math.round(30*l),m=c<=2?Math.min(f,d):d,g=Math.max(1,Math.round(m*this.options.barWidthRatio)-2),p=Math.floor(g/2),b=this.options.anchor==="right"?g:p,v=n.getRange().min<0,S=v?n.valueToBitmapY(0):e.bitmapSize.height;if(this.stores.length===1){if(!this.stores[0].isVisible())return;const L=this.options.colors[0],y=this.options.colors.length>1?this.options.colors[1]:L,M=this.stores[0].getVisibleData(h.from,h.to);for(const k of M){if(!Number.isFinite(k.value))continue;const F=this.effectiveValue(t,0,k.time,k.value),T=this.entranceProgress(t,0,k.time),D=s.timeToBitmapX(k.time);if(F>=0){const B=n.valueToBitmapY(F),x=Math.max(1,S-B);this.drawAnimatedBar({context:o,progress:T,baselineY:S,topY:B,barHeight:x,x:D-b,barWidth:g,color:L})}else{const B=n.valueToBitmapY(F),x=Math.max(1,B-S);this.drawAnimatedBar({context:o,progress:T,baselineY:S,topY:S,barHeight:x,x:D-b,barWidth:g,color:y})}}}else{const L=this.stores.map((M,k)=>this.getLayerAlpha(k)>0?M.getVisibleData(h.from,h.to):[]),y=new Map;for(let M=0;M<L.length;M++){const k=this.getLayerAlpha(M);for(const F of L[M]){if(!Number.isFinite(F.value))continue;let T=y.get(F.time);T||(T=[],y.set(F.time,T)),T.push({layer:M,value:this.effectiveValue(t,M,F.time,F.value)*k})}}for(const[M,k]of y){k.sort((T,D)=>Math.abs(D.value)-Math.abs(T.value));const F=s.timeToBitmapX(M);for(const{layer:T,value:D}of k){const B=this.options.colors[T%this.options.colors.length],x=this.entranceProgress(t,T,M);if(D>=0){const R=n.valueToBitmapY(D),A=Math.max(1,S-R);this.drawAnimatedBar({context:o,progress:x,baselineY:S,topY:R,barHeight:A,x:F-b,barWidth:g,color:B})}else{const R=n.valueToBitmapY(D),A=Math.max(1,R-S);this.drawAnimatedBar({context:o,progress:x,baselineY:S,topY:S,barHeight:A,x:F-b,barWidth:g,color:B})}}}}if(v){o.strokeStyle=t.theme.grid.color,o.lineWidth=1;const L=Math.round(S)+.5;o.beginPath(),o.moveTo(0,L),o.lineTo(e.bitmapSize.width,L),o.stroke()}}renderStacked(t,e){const{scope:s,timeScale:n,yScale:a,dataInterval:o}=t,{context:l,horizontalPixelRatio:h}=s,c=n.getRange();let d=0;for(const y of this.stores){if(!y.isVisible())continue;const M=y.getVisibleData(c.from,c.to).length;if(M>d&&(d=M),d>2)break}const f=n.barWidthBitmap(o),m=Math.round(30*h),g=d<=2?Math.min(m,f):f,p=Math.max(1,Math.round(g*this.options.barWidthRatio)-2),b=Math.floor(p/2),v=this.options.anchor==="right"?p:b,S=this.stores.map((y,M)=>this.getLayerAlpha(M)>0?y.getVisibleData(c.from,c.to):[]);if(S.every(y=>y.length===0))return;const L=new Map;for(let y=0;y<S.length;y++){const M=this.getLayerAlpha(y);for(const k of S[y]){let F=L.get(k.time);F||(F=new Array(S.length).fill(0),L.set(k.time,F));const T=Number.isFinite(k.value)?k.value:0;F[y]=this.effectiveValue(t,y,k.time,T)*M}}for(let y=0;y<S.length;y++){const M=this.options.colors[y%this.options.colors.length];for(const[k,F]of L){const T=F[y];if(T===0)continue;const D=n.timeToBitmapX(k);let B=0,x=0;for(let A=0;A<y;A++){const z=F[A];z>0?B+=z:x+=z}const R=this.entranceProgress(t,y,k);if(e){let A=0,z=0;for(const E of F)E>0?A+=E:z+=E;if(T>0&&A>0){const E=B/A*100,V=(B+T)/A*100,X=a.valueToBitmapY(V),$=a.valueToBitmapY(E),G=Math.max(1,$-X);this.drawAnimatedBar({context:l,progress:R,baselineY:$,topY:X,barHeight:G,x:D-v,barWidth:p,color:M})}else if(T<0&&z<0){const E=x/z*-100,V=(x+T)/z*-100,X=a.valueToBitmapY(E),$=a.valueToBitmapY(V),G=Math.max(1,$-X);this.drawAnimatedBar({context:l,progress:R,baselineY:X,topY:X,barHeight:G,x:D-v,barWidth:p,color:M})}}else if(T>0){const A=a.valueToBitmapY(B+T),z=a.valueToBitmapY(B),E=Math.max(1,z-A);this.drawAnimatedBar({context:l,progress:R,baselineY:z,topY:A,barHeight:E,x:D-v,barWidth:p,color:M})}else{const A=a.valueToBitmapY(x),z=a.valueToBitmapY(x+T),E=Math.max(1,z-A);this.drawAnimatedBar({context:l,progress:R,baselineY:A,topY:A,barHeight:E,x:D-v,barWidth:p,color:M})}}}}fillBar(t,e,s,n,a,o){t.fillStyle=o,t.fillRect(e,s,n,a)}drawAnimatedBar(t){const{context:e,progress:s,baselineY:n,topY:a,barHeight:o,x:l,barWidth:h,color:c}=t,d=this.options.entryAnimation??"fade-grow";if(s>=1||d==="none"){this.fillBar(e,l,a,h,o,c);return}const f=this.applyBarTransform(s,n,a,o,l,h);e.save(),e.globalAlpha=f.alpha,e.fillStyle=c,e.fillRect(f.x,f.topY,f.barWidth,f.barHeight),e.restore()}}function br(i,t){return i.length<=t?i:Rl(i,t,e=>e.time,e=>e.value)}function Il(i,t){if(i.length<=t)return i;const e=Math.ceil(i.length/t),s=[];for(let n=0;n<i.length;n+=e){const a=Math.min(n+e,i.length);let o=-1/0,l=1/0,h=0;for(let c=n;c<a;c++)i[c].high>o&&(o=i[c].high),i[c].low<l&&(l=i[c].low),h+=i[c].volume??0;s.push({time:i[n].time,open:i[n].open,high:o,low:l,close:i[a-1].close,volume:h})}return s}function Rl(i,t,e,s){if(t>=i.length||t<3)return i;const n=[i[0]],a=(i.length-2)/(t-2);let o=0;for(let l=0;l<t-2;l++){const h=Math.floor((l+1)*a)+1,c=Math.min(Math.floor((l+2)*a)+1,i.length-1);let d=0,f=0;const m=c,g=Math.min(Math.floor((l+3)*a)+1,i.length),p=g-m;if(p>0){for(let y=m;y<g;y++)d+=e(i[y]),f+=s(i[y]);d/=p,f/=p}let b=-1,v=h;const S=e(i[o]),L=s(i[o]);for(let y=h;y<c;y++){const M=Math.abs((S-d)*(s(i[y])-L)-(S-e(i[y]))*(f-L));M>b&&(b=M,v=y)}n.push(i[v]),o=v}return n.push(i[i.length-1]),n}const vr=new Map;function Wl(i){return[parseInt(i.slice(1,3),16),parseInt(i.slice(3,5),16),parseInt(i.slice(5,7),16)]}function De(i,t){if(i.startsWith("rgba"))return i.replace(/[\d.]+\)\s*$/,`${t})`);if(i.startsWith("rgb("))return i.replace(/^rgb\((.*)\)$/i,`rgba($1, ${t})`);const e=i+t;let s=vr.get(e);if(s)return s;const[n,a,o]=Wl(i);return s=`rgba(${n}, ${a}, ${o}, ${t})`,vr.set(e,s),s}function Ls(i){return typeof i=="number"&&!Number.isFinite(i)}const Al=(()=>{const i=new WeakSet;return(t,e,s,n)=>{s.length===0||i.has(t)||(i.add(t),console.warn(`[wick-charts] ${e}: skipping ${s.length} row${s.length===1?"":"s"} with NaN / Infinity values (indices ${s.join(", ")}; first offending row: ${n}). Filter upstream data; the renderer drops poisoned rows to keep the rest of the chart alive.`))}})(),Pl=.15,Fl=.005;function Bl(i,t,e){const s={time:t.time,open:i.open+(t.open-i.open)*e,high:i.high+(t.high-i.high)*e,low:i.low+(t.low-i.low)*e,close:i.close+(t.close-i.close)*e};if(i.volume!==void 0||t.volume!==void 0){const n=i.volume??0,a=t.volume??0;s.volume=n+(a-n)*e}return s}function Dl(i,t){return i.time===t.time&&i.open===t.open&&i.high===t.high&&i.low===t.low&&i.close===t.close&&(i.volume??0)===(t.volume??0)}const zl={up:{body:"#26a69a",wick:"#26a69a"},down:{body:"#ef5350",wick:"#ef5350"},bodyWidthRatio:.6,entryMs:Bn,smoothMs:Dn};function yr(i){return{...i,entryMs:i.entryMs===!1?0:i.entryMs??Bn,smoothMs:i.smoothMs===!1?0:i.smoothMs??Dn}}var Gt,Yt,Ni,Ds,yi;class El{constructor(t,e){P(this,"kind","candlestick"),P(this,"store"),P(this,"options"),P(this,"displayedLast",null),P(this,"entries",new Map),w(this,Gt,null),w(this,Yt,null),w(this,Ni,!0),w(this,Ds,!1),w(this,yi,new Pi({initial:1,duration:0,lerp:(s,n,a)=>s+(n-s)*a})),this.store=t,this.options=yr({...zl,...e}),this.displayedLast=t.last()??null}isEntryEnabled(){return(this.options.entryAnimation??"unfold")!=="none"}updateOptions(t){this.options=yr({...this.options,...t})}getColor(){return Dt(this.options.up.body)}setData(t){this.store.setData(io(t??[]));const e=this.store.last();this.displayedLast=e??null,u(this,Gt,null),this.entries.clear(),u(this,Yt,null)}appendPoint(t){const e=t,s=zt(e.time),n={...e,time:s};this.store.append(n),this.displayedLast=n,u(this,Gt,null);const a=this.options.entryMs;this.isEntryEnabled()&&a>0&&this.entries.set(s,{startTime:performance.now()})}updateLastPoint(t){const e=t,s=zt(e.time),n={...e,time:s};this.store.updateLast(n);const a=this.options.smoothMs;if(a<=0){this.displayedLast=n,u(this,Gt,null);return}let o=r(this,Gt);if(o===null){const l=this.displayedLast??n;o=new Pi({initial:l,duration:a,lerp:Bl,equals:Dl}),u(this,Gt,o)}o.setTarget(n)}keepLast(t){if(t<0)return;const e=this.store.length-t;e<=0||this.store.trimStart(e)}getLayerCount(){return 1}setLayerVisible(t,e){}isLayerVisible(t){return!0}getLayerColors(){return[Dt(this.options.up.body)]}applyTheme(t,e){this.updateOptions({up:{...t.candlestick.up},down:{...t.candlestick.down}})}onDataChanged(t){return this.store.on("update",t),()=>this.store.off("update",t)}dispose(){this.store.removeAllListeners()}tickAnimations(t){r(this,yi).tick(t);const e=r(this,Gt);if(e!==null){const n=e.tick(t);this.displayedLast=e.current,n||u(this,Gt,null)}const s=this.options.entryMs;if(s<=0){this.entries.clear();return}for(const[n,a]of this.entries)t-a.startTime>=s&&this.entries.delete(n)}get needsAnimation(){return r(this,yi).animating||r(this,Gt)!==null||this.entries.size>0||!r(this,Ni)}cancelEntranceAnimations(){this.entries.clear()}setAlpha(t,e){r(this,yi).setTarget(t,{duration:e})}getAlpha(){return r(this,yi).current}getLastValue(){const t=this.store.last();return t?t.close:null}getDataAtTime(t,e){return this.store.findNearest(t,e)}getTimeBounds(){const t=this.store.first(),e=this.store.last();return!t||!e?null:{first:t.time,last:e.time}}getLastDataPoint(){return this.store.last()??null}getSecondLastDataPoint(){const t=this.store.getAll();return t.length>=2?t[t.length-2]:null}sampleTimes(t){return this.store.getAll().slice(0,t).map(e=>e.time)}getVisibleDataPoints(t,e){return this.store.getVisibleData(t,e)}getValueRange(t,e){const s=this.store.getVisibleData(t,e);let n=1/0,a=-1/0;for(const o of s)Number.isFinite(o.low)&&o.low<n&&(n=o.low),Number.isFinite(o.high)&&o.high>a&&(a=o.high);return n===1/0||a===-1/0?null:{min:n,max:a}}render(t){this.tickAnimations(performance.now());const{scope:e,timeScale:s,yScale:n,dataInterval:a}=t,{context:o,horizontalPixelRatio:l}=e,h=s.getRange();let c=this.store.getVisibleData(h.from,h.to);const d=e.mediaSize.width,f=c.length>d*2;if(f&&(c=Il(c,Math.round(d*1.5))),c.length===0)return;const m=this.displayedLast;if(!f&&m!==null){const R=c.length-1;c[R].time===m.time&&(c=[...c.slice(0,R),m])}let g=null;if(this.entries.size>0){const R=this.options.entryMs,A=performance.now();for(const z of c){const E=this.entries.get(z.time);if(E===void 0)continue;const V=A-E.startTime,X=R<=0?1:Math.min(1,Math.max(0,V/R));if(X>=1)continue;const $=ji(X);g===null&&(g=new Map),g.set(z.time,$)}}const p=s.barWidthBitmap(a),b=Math.round(30*l),v=c.length<=2?Math.min(b,p):p,S=Math.max(1,Math.round(l));let L=Math.max(1,Math.round(v*this.options.bodyWidthRatio)-2);(L&1)!==(S&1)&&(L=L>1?L-1:2);const y=Math.floor(L/2),M=f!==r(this,Ds);u(this,Ds,f);const k=Math.round(n.getMediaHeight()*e.verticalPixelRatio);this.drawVolume({ctx:o,data:c,timeScale:s,chartHeight:k,barWidth:v,wickWidth:S,entranceByTime:g,snapVolScale:M});const F=[],T=[],D=[];let B=null;for(let R=0;R<c.length;R++){const A=c[R];if(Ls(A.open)||Ls(A.close)||Ls(A.high)||Ls(A.low)){D.push(R),B===null&&(B=A);continue}A.close>=A.open?F.push(A):T.push(A)}B!==null&&Al(this,"candlestick",D,`time ${B.time}`);const x={ctx:o,timeScale:s,yScale:n,halfBody:y,bodyWidth:L,wickWidth:S,entranceByTime:g};this.drawCandles({...x,candles:F,body:this.options.up.body,wickColor:this.options.up.wick}),this.drawCandles({...x,candles:T,body:this.options.down.body,wickColor:this.options.down.wick})}drawVolume({ctx:t,data:e,timeScale:s,chartHeight:n,barWidth:a,wickWidth:o,entranceByTime:l,snapVolScale:h}){let c=0;for(const S of e)Number.isFinite(S.volume)&&S.volume>c&&(c=S.volume);if(c===0){u(this,Yt,null),u(this,Ni,!0);return}r(this,Yt)===null||h?u(this,Yt,c):u(this,Yt,r(this,Yt)+(c-r(this,Yt))*Pl),u(this,Ni,Math.abs(c-r(this,Yt))<=c*Fl);const d=r(this,Yt),f=n*.2;let m=Math.max(1,a-2);(m&1)!==(o&1)&&(m=m>1?m-1:2);const g=Math.floor(m/2),p=De(Dt(this.options.up.body),.2),b=De(Dt(this.options.down.body),.2),v=this.options.entryAnimation??"unfold";for(const S of e){if(!Number.isFinite(S.volume)||S.volume<=0)continue;const L=S.volume,y=s.timeToBitmapX(S.time),M=Math.min(f,Math.max(1,L/d*f)),k=S.close>=S.open;t.fillStyle=k?p:b;const F=(l==null?void 0:l.get(S.time))??1;if(F>=1||v==="none"){t.fillRect(y-g,n-M,m,M);continue}const T=hn(F,v,{x:y-g,barWidth:m,anchorY:n,topY:n-M,bottomY:n});t.save(),t.globalAlpha=T.alpha,t.fillRect(T.x,T.topY,m,Math.max(1,T.bottomY-T.topY)),t.restore()}}drawCandles({ctx:t,candles:e,timeScale:s,yScale:n,halfBody:a,bodyWidth:o,wickWidth:l,body:h,wickColor:c,entranceByTime:d}){if(e.length===0)return;const f=this.options.entryAnimation??"unfold",m=o+2;t.fillStyle=c;for(const p of e){const b=(d==null?void 0:d.get(p.time))??1,v=s.timeToBitmapX(p.time),S=n.valueToBitmapY(p.open),L=n.valueToBitmapY(p.high),y=n.valueToBitmapY(p.low),M=v-Math.floor(l/2);if(b>=1||f==="none"){t.fillRect(M,L,l,y-L);continue}const k=hn(b,f,{x:M,barWidth:m,anchorY:S,topY:L,bottomY:y});t.save(),t.globalAlpha=k.alpha,t.fillRect(k.x,k.topY,l,Math.max(1,k.bottomY-k.topY)),t.restore()}const g=Array.isArray(h);for(const p of e){const b=(d==null?void 0:d.get(p.time))??1,v=s.timeToBitmapX(p.time),S=n.valueToBitmapY(p.open),L=n.valueToBitmapY(p.close),y=Math.min(S,L),M=Math.max(S,L),k=Math.max(1,M-y),F=b<1&&f!=="none";let T=v-a,D=y,B=k,x=1;if(F){const R=hn(b,f,{x:v-a,barWidth:m,anchorY:S,topY:y,bottomY:M});T=R.x,D=R.topY,B=Math.max(1,R.bottomY-R.topY),x=R.alpha}if(F&&t.save(),g&&B>2){const R=t.createLinearGradient(0,D,0,D+B);R.addColorStop(0,h[0]),R.addColorStop(1,h[1]),t.fillStyle=R}else t.fillStyle=g?h[0]:h;F&&(t.globalAlpha=x),t.fillRect(T,D,o,B),F&&t.restore()}}}Gt=new WeakMap,Yt=new WeakMap,Ni=new WeakMap,Ds=new WeakMap,yi=new WeakMap;function hn(i,t,e){switch(t){case"none":return{x:e.x,topY:e.topY,bottomY:e.bottomY,alpha:1};case"fade":return{x:e.x,topY:e.topY,bottomY:e.bottomY,alpha:i};case"unfold":return{x:e.x,topY:ee(e.anchorY,e.topY,i),bottomY:ee(e.anchorY,e.bottomY,i),alpha:1};case"slide":return{x:e.x+(1-i)*e.barWidth,topY:e.topY,bottomY:e.bottomY,alpha:i};case"fade-unfold":return{x:e.x,topY:ee(e.anchorY,e.topY,i),bottomY:ee(e.anchorY,e.bottomY,i),alpha:i}}}const Vl={colors:["#2962FF"],strokeWidth:1,area:{visible:!0},pulse:!0,stacking:"off",entryMs:Gs,smoothMs:Pn,pulseMs:Fn};function xr(i){const t=i.areaFill,e=t!==void 0&&i.area===void 0?{visible:!!t}:i.area;return{...i,area:e,entryMs:i.entryMs===!1?0:i.entryMs??Gs,smoothMs:i.smoothMs===!1?0:i.smoothMs??Pn,pulseMs:i.pulseMs===!1?0:i.pulseMs??Fn}}class Yl extends Qr{constructor(t,e){super(t),P(this,"kind","line"),P(this,"areaGradientCache",new Map),this.options=xr({...Vl,...e})}updateOptions(t){this.options=xr({...this.options,...t})}getStacking(){return this.options.stacking}applyTheme(t,e){this.stores.length===1?this.getColor()===e.line.color&&this.updateOptions({colors:[t.line.color]}):this.updateOptions({colors:t.seriesColors.slice(0,this.stores.length)}),this.options.strokeWidth===e.line.width&&this.updateOptions({strokeWidth:t.line.width})}isEntryEnabled(){return(this.options.entryAnimation??"grow")!=="none"}get hasPulse(){return this.options.pulse&&this.options.pulseMs>0&&this.stores.some(t=>t.isVisible()&&t.length>0)}get overlayNeedsAnimation(){return this.hasPulse}hasOverlayContentInRange(t,e){for(let s=0;s<this.stores.length;s++){if(this.getLayerAlpha(s)<=0)continue;const n=this.stores[s].last();if(n&&n.time>=t)return!0}return!1}render(t){this.tickAnimations(performance.now()),this.options.stacking==="off"?this.renderOff(t):this.renderStacked(t,this.options.stacking==="percent")}trailingEndpoint(t,e){const s=this.stores[e],n=s.last();if(!n)return null;const{timeScale:a,yScale:o}=t,l=a.timeToBitmapX(n.time),h=o.valueToBitmapY(this.effectiveValue(t,e,n.time,n.value));if((this.options.entryAnimation??"grow")!=="grow")return{x:l,y:h};const c=this.entranceProgress(t,e,n.time);if(c>=1)return{x:l,y:h};const d=s.getAll();if(d.length<2)return{x:l,y:h};const f=d[d.length-2];if(!Number.isFinite(f.value))return{x:l,y:h};const m=a.timeToBitmapX(f.time),g=o.valueToBitmapY(f.value),p=ji(c);return{x:ee(m,l,p),y:ee(g,h,p)}}renderOff(t){var e;const{scope:s,timeScale:n,yScale:a}=t,{context:o}=s,l=n.getRange(),{verticalPixelRatio:h}=s,c=this.options.strokeWidth>0,d=Math.max(1,Math.round(this.options.strokeWidth*h)),f=this.options.entryAnimation??"grow";for(let m=0;m<this.stores.length;m++){const g=this.getLayerAlpha(m);if(g<=0)continue;let p=this.stores[m].getVisibleData(l.from,l.to);const b=s.mediaSize.width;if(p.length>b*2&&(p=br(p,Math.round(b*1.5))),p.length<2)continue;const v=this.options.colors[m%this.options.colors.length],S=p[p.length-1],L=this.entranceProgress(t,m,S.time),y=f==="fade"&&L<1,M=this.trailingEndpoint(t,m)??{x:n.timeToBitmapX(S.time),y:a.valueToBitmapY(this.effectiveValue(t,m,S.time,S.value))},k=M.x,F=M.y,T=g<1;(T||y)&&(o.save(),T&&(o.globalAlpha*=g),y&&(o.globalAlpha*=L));const D=p.length-1,B=[];let x=null;for(let A=0;A<D;A++){const z=p[A].value;if(!Number.isFinite(z)){x=null;continue}x||(x=[],B.push(x)),x.push({x:n.timeToBitmapX(p[A].time),y:a.valueToBitmapY(z)})}const R=(e=p[D])==null?void 0:e.value;if(Number.isFinite(k)&&Number.isFinite(F)&&Number.isFinite(R)&&(x?x.push({x:k,y:F}):B.push([{x:k,y:F}])),c&&B.some(A=>A.length>=2)){o.beginPath();for(const A of B)if(!(A.length<2)){o.moveTo(A[0].x,A[0].y);for(let z=1;z<A.length;z++)o.lineTo(A[z].x,A[z].y)}o.strokeStyle=v,o.lineWidth=d,o.lineJoin="round",o.lineCap="round",o.stroke()}if(c){const A=Math.max(1,d/2);let z=!1;for(const E of B)E.length===1&&(z||(o.beginPath(),z=!0),o.moveTo(E[0].x+A,E[0].y),o.arc(E[0].x,E[0].y,A,0,Math.PI*2));z&&(o.fillStyle=v,o.fill())}if(this.options.area.visible){const A=s.bitmapSize.height,z=String(m),E=this.areaGradientCache.get(z);let V;E&&E.bottomY===A&&E.color===v?V=E.gradient:(V=o.createLinearGradient(0,0,0,A),V.addColorStop(0,De(v,.12)),V.addColorStop(1,De(v,.01)),this.areaGradientCache.set(z,{gradient:V,bottomY:A,color:v})),o.fillStyle=V;for(const X of B)if(!(X.length<2)){o.beginPath(),o.moveTo(X[0].x,X[0].y);for(let $=1;$<X.length;$++)o.lineTo(X[$].x,X[$].y);o.lineTo(X[X.length-1].x,A),o.lineTo(X[0].x,A),o.closePath(),o.fill()}}(y||T)&&o.restore()}}renderStacked(t,e){const{scope:s,timeScale:n,yScale:a}=t,{context:o}=s,l=n.getRange(),{verticalPixelRatio:h}=s,c=this.options.strokeWidth>0,d=Math.max(1,Math.round(this.options.strokeWidth*h)),f=s.mediaSize.width,m=this.stores.map((x,R)=>{if(this.getLayerAlpha(R)<=0)return[];let A=x.getVisibleData(l.from,l.to);return A.length>f*2&&(A=br(A,Math.round(f*1.5))),A}),g=new Set;for(const x of m)for(const R of x)g.add(R.time);const p=Array.from(g).sort((x,R)=>x-R);if(p.length<2)return;const b=m.map((x,R)=>{const A=new Map,z=this.getLayerAlpha(R);for(const E of x)A.set(E.time,this.effectiveValue(t,R,E.time,E.value)*z);return A}),v=Array.from({length:this.stores.length},()=>new Array(p.length).fill(0));for(let x=0;x<p.length;x++){const R=p[x];let A=0;if(e)for(let E=0;E<this.stores.length;E++){const V=b[E].get(R);Number.isFinite(V)&&(A+=V)}let z=0;for(let E=0;E<this.stores.length;E++){const V=b[E].get(R),X=Number.isFinite(V)?V:0;z+=e&&A>0?X/A*100:X,v[E][x]=z}}const S=this.options.entryAnimation??"grow",L=new Map;for(let x=0;x<p.length;x++)L.set(p[x],x);const y=p.length-1,M=new Array(this.stores.length).fill(1);for(let x=0;x<this.stores.length;x++){if(this.getLayerAlpha(x)<=0)continue;const R=this.stores[x].last();if(!R)continue;const A=this.entranceProgress(t,x,R.time);if(A>=1)continue;const z=L.get(R.time);if(z!==y)continue;const E=this.stores[x].getAll();if(E.length<2)continue;const V=E[E.length-2].time;L.get(V)===z-1&&(M[x]=A)}const k=(x,R)=>{if(R>=1||x.length<2)return;const A=x.length-1,z=x[A-1],E=x[A];x[A]=[ee(z[0],E[0],R),ee(z[1],E[1],R)]},F=s.bitmapSize.height;let T=-1,D=-1;for(let x=0;x<this.stores.length;x++)if(!(this.getLayerAlpha(x)<=0))if(T<0)T=x;else{D=x;break}const B=T>=0?this.getLayerAlpha(T):1;for(let x=this.stores.length-1;x>=0;x--){const R=this.getLayerAlpha(x);if(R<=0)continue;const A=this.options.colors[x%this.options.colors.length],z=M[x],E=x>0&&this.getLayerAlpha(x-1)>0?M[x-1]:1,V=x===T,X=D>=0&&x===D&&B<1,$=[];for(let _=0;_<p.length;_++){const q=x>0?a.valueToBitmapY(v[x-1][_]):F;let J=q;V?J=F:X&&(J=q+(F-q)*(1-B)),$.push([n.timeToBitmapX(p[_]),J])}S==="grow"&&k($,ji(E));const G=[];for(let _=0;_<p.length;_++){let q=a.valueToBitmapY(v[x][_]);V&&R<1&&(q=F+(q-F)*R),G.push([n.timeToBitmapX(p[_]),q])}S==="grow"&&k(G,ji(z));const xt=S==="fade"&&z<1;if(xt&&(o.save(),o.globalAlpha=z),this.options.area.visible){let _=G[0][1],q=$[0][1];for(let K=1;K<G.length;K++)G[K][1]<_&&(_=G[K][1]);for(let K=1;K<$.length;K++)$[K][1]>q&&(q=$[K][1]);let J=De(A,.25);if(q>_+.5){const K=o.createLinearGradient(0,_,0,q);K.addColorStop(0,De(A,.25)),K.addColorStop(1,De(A,.05)),J=K}o.beginPath(),o.moveTo(G[0][0],G[0][1]);for(let K=1;K<G.length;K++)o.lineTo(G[K][0],G[K][1]);for(let K=$.length-1;K>=0;K--)o.lineTo($[K][0],$[K][1]);o.closePath(),o.fillStyle=J,o.fill()}const Tt=c&&R<1;if(Tt&&(o.save(),o.globalAlpha*=R),c){o.beginPath(),o.moveTo(G[0][0],G[0][1]);for(let _=1;_<G.length;_++)o.lineTo(G[_][0],G[_][1]);o.strokeStyle=A,o.lineWidth=d,o.lineJoin="round",o.lineCap="round",o.stroke()}Tt&&o.restore(),xt&&o.restore()}}drawOverlay(t){this.tickAnimations(performance.now());const{scope:e,timeScale:s,yScale:n,crosshair:a,dataInterval:o}=t,l=e,h=this.options.pulseMs,c=h>0?performance.now()/(h*2*Math.PI)%1:0;if(a){const d=this.options.colors,f=this.options.stacking,m=4*l.horizontalPixelRatio,g=[],p=[];for(let v=0;v<this.stores.length;v++){const S=this.stores[v].findNearest(a.time,o);S?(g.push(S.value),p.push(S.time)):(g.push(0),p.push(null))}const b=[];if(f==="off")for(const v of g)b.push(v);else{let v=0;if(f==="percent")for(let L=0;L<g.length;L++)v+=g[L]*this.getLayerAlpha(L);let S=0;for(let L=0;L<g.length;L++){const y=g[L]*this.getLayerAlpha(L);S+=f==="percent"&&v>0?y/v*100:y,b.push(S)}}for(let v=0;v<this.stores.length;v++){const S=p[v];if(S===null)continue;const L=this.getLayerAlpha(v);if(L<=0)continue;const y=d[v%d.length],M=s.timeToBitmapX(S),k=n.valueToBitmapY(b[v]),F=L<1;F&&(e.context.save(),e.context.globalAlpha*=L),e.context.save(),e.context.globalAlpha*=.25,e.context.beginPath(),e.context.arc(M,k,m+3*l.horizontalPixelRatio,0,Math.PI*2),e.context.fillStyle=y,e.context.fill(),e.context.restore(),e.context.beginPath(),e.context.arc(M,k,m,0,Math.PI*2),e.context.fillStyle=y,e.context.fill(),F&&e.context.restore()}}if(this.hasPulse&&h>0){const d=this.options.stacking;for(let f=0;f<this.stores.length;f++){const m=this.getLayerAlpha(f);if(m<=0)continue;const g=this.options.colors[f%this.options.colors.length];if(d==="off"){const M=this.trailingEndpoint(t,f);if(!M)continue;this.drawPulse({ctx:e.context,x:M.x,y:M.y,color:g,pixelRatio:l.horizontalPixelRatio,phase:c,alpha:m});continue}const p=this.stores[f].last();if(!p)continue;const b=p.time,v=d==="percent",S=M=>{const k=D=>{const B=this.getLayerAlpha(D);if(B<=0)return 0;const x=D===f&&M===b?p:this.stores[D].findNearest(M,0);return!x||x.time!==M?0:this.effectiveValue(t,D,M,x.value)*B};let F=0;if(v)for(let D=0;D<this.stores.length;D++)F+=k(D);let T=0;for(let D=0;D<=f;D++){const B=k(D);T+=v&&F>0?B/F*100:B}return T};let L=s.timeToBitmapX(b),y=n.valueToBitmapY(S(b));if((this.options.entryAnimation??"grow")==="grow"){const M=this.entranceProgress(t,f,b);if(M<1){const k=this.stores[f].getAll(),F=k.length>=2?k[k.length-2]:null;if(F!==null&&F.time!==b){const T=ji(M),D=s.timeToBitmapX(F.time),B=n.valueToBitmapY(S(F.time));L=ee(D,L,T),y=ee(B,y,T)}}}this.drawPulse({ctx:e.context,x:L,y,color:g,pixelRatio:l.horizontalPixelRatio,phase:c,alpha:m})}}}drawPulse({ctx:t,x:e,y:s,color:n,pixelRatio:a,phase:o,alpha:l=1}){const h=3*a,c=.4+.6*Math.abs(Math.sin(o*2*Math.PI)),d=h+4*a*c,f=l<1;f&&(t.save(),t.globalAlpha*=l),t.beginPath(),t.arc(e,s,d,0,Math.PI*2),t.fillStyle=De(n,c*.3),t.fill(),t.beginPath(),t.arc(e,s,h,0,Math.PI*2),t.fillStyle=n,t.fill(),f&&t.restore()}}const ta={mode:"outside",content:"both",fontSize:11,minSliceAngle:2.5,elbowLen:12,legPad:6,distance:14,railWidth:16,labelGap:1.8},jl={innerRadiusRatio:0,padAngle:1.15,sliceLabels:{...ta},animate:!1},xn=Math.PI/180;function Hl(i,t){return{...i??{},...t}}function $l(i){return{...ta,...i??{}}}function Ol(i){const t={color:"rgba(0, 0, 0, 0.22)",blur:24,offsetX:0,offsetY:10};return i===!0||i===!1?t:{...t,...i}}function Xl(i){const t={color:"rgba(0, 0, 0, 0.1)",depth:.3};return i===!0||i===!1?t:{...t,...i}}const Ti=Math.PI*2,ea=.85;function wr(i){const{bitmapWidth:t,bitmapHeight:e,padTop:s,padBottom:n}=i,a=Math.max(0,i.labelReserve??0),o=Math.min(Math.max(0,s),e),l=Math.min(Math.max(0,n),e-o),h=e-o-l,c=Math.max(0,t-2*a),d=t/2,f=o+h/2,m=Math.max(0,Math.min(c,h)/2*ea);return{cx:d,cy:f,maxR:m}}function Nl(i){if(!i.startsWith("#"))return!1;const t=parseInt(i.slice(1,3),16),e=parseInt(i.slice(3,5),16),s=parseInt(i.slice(5,7),16);return t*.299+e*.587+s*.114>150}function Ul(i,t){if(!i.startsWith("#"))return i;const e=Math.min(255,parseInt(i.slice(1,3),16)+Math.round(255*t)),s=Math.min(255,parseInt(i.slice(3,5),16)+Math.round(255*t)),n=Math.min(255,parseInt(i.slice(5,7),16)+Math.round(255*t));return`#${e.toString(16).padStart(2,"0")}${s.toString(16).padStart(2,"0")}${n.toString(16).padStart(2,"0")}`}function Mr(i){if(i.startsWith("#"))return{r:parseInt(i.slice(1,3),16)||0,g:parseInt(i.slice(3,5),16)||0,b:parseInt(i.slice(5,7),16)||0,a:1};const t=i.match(/^rgba?\s*\(([^)]+)\)$/i);if(t){const e=t[1].split(",").map(s=>s.trim());return{r:Number.parseFloat(e[0])||0,g:Number.parseFloat(e[1])||0,b:Number.parseFloat(e[2])||0,a:e[3]===void 0?1:Number.parseFloat(e[3])}}return{r:0,g:0,b:0,a:1}}function _l(i,t){const e=Mr(i),s=Mr(t),n=s.a,a=Math.round(s.r*n+e.r*(1-n)),o=Math.round(s.g*n+e.g*(1-n)),l=Math.round(s.b*n+e.b*(1-n));return`#${a.toString(16).padStart(2,"0")}${o.toString(16).padStart(2,"0")}${l.toString(16).padStart(2,"0")}`}var tt,it,Kt,Mt,xi,Ae,$t,Ge,rt,wn,ke,Ui,zs,ia,sa,na;class Gl{constructor(t){w(this,rt),P(this,"kind","pie"),w(this,tt,[]),w(this,it),w(this,Kt,-1),w(this,Mt,[]),w(this,xi,0),w(this,Ae,1),w(this,$t,null),w(this,Ge,[]),u(this,it,C(this,rt,wn).call(this,jl,t??{}))}getData(){return r(this,tt)}setData(t){const e=t??[];u(this,tt,e),u(this,Mt,new Array(e.length).fill(0)),u(this,Ae,r(this,it).animate?0:1),u(this,$t,null);for(const s of r(this,Ge))s()}onDataChanged(t){return r(this,Ge).push(t),()=>{const e=r(this,Ge).indexOf(t);e>=0&&r(this,Ge).splice(e,1)}}updateOptions(t){var e,s;const n=(e=r(this,it).sliceLabels)==null?void 0:e.mode;u(this,it,C(this,rt,wn).call(this,r(this,it),t??{})),((s=r(this,it).sliceLabels)==null?void 0:s.mode)==="outside"&&n!=="outside"&&u(this,Ae,r(this,it).animate?0:1),u(this,$t,null)}getColor(){var t,e;return((t=r(this,tt)[0])==null?void 0:t.color)??((e=r(this,it).colors)==null?void 0:e[0])??"#888"}getLayerCount(){return 1}setLayerVisible(t,e){}isLayerVisible(t){return!0}getLayerColors(){return[this.getColor()]}applyTheme(t,e){t.typography.fontFamily!==e.typography.fontFamily&&u(this,$t,null)}hitTest(t,e,s,n,a){var o;if(r(this,tt).length===0)return-1;const l=C(this,rt,Ui).call(this);if(l<=0)return-1;const h=((o=r(this,$t))==null?void 0:o.reserve)??0,{cx:c,cy:d,maxR:f}=wr({bitmapWidth:s,bitmapHeight:n,padTop:(a==null?void 0:a.top)??0,padBottom:(a==null?void 0:a.bottom)??0,labelReserve:h}),m=f,g=m*r(this,it).innerRadiusRatio,p=t-c,b=e-d,v=Math.sqrt(p*p+b*b);if(v>m||v<g)return-1;let S=Math.atan2(b,p)+Math.PI/2;S<0&&(S+=Ti);let L=0;for(let y=0;y<r(this,tt).length;y++){const M=C(this,rt,ke).call(this,r(this,tt)[y].value)/l*Ti;if(S>=L&&S<L+M)return y;L+=M}return-1}setHoverIndex(t){return r(this,Kt)===t?!1:(u(this,Kt,t),!0)}getHoverIndex(){return r(this,Kt)}getHoverInfo(t){if(r(this,Kt)<0)return null;const e=r(this,tt)[r(this,Kt)];if(!e)return null;const s=C(this,rt,Ui).call(this),n=r(this,it).colors??t.seriesColors;return{label:e.label,value:e.value,percent:s>0?C(this,rt,ke).call(this,e.value)/s*100:0,color:e.color??n[r(this,Kt)%n.length]}}getSliceInfo(t){if(r(this,tt).length===0)return null;const e=C(this,rt,Ui).call(this),s=r(this,it).colors??t.seriesColors;return r(this,tt).map((n,a)=>({label:n.label,value:n.value,percent:e>0?C(this,rt,ke).call(this,n.value)/e*100:0,color:n.color??s[a%s.length]}))}get needsAnimation(){var t;if(!r(this,it).animate)return!1;for(let e=0;e<r(this,Mt).length;e++){const s=e===r(this,Kt)?1:0;if(Math.abs(r(this,Mt)[e]-s)>.01)return!0}return((t=r(this,it).sliceLabels)==null?void 0:t.mode)==="outside"&&r(this,Ae)<.99}dispose(){u(this,Ge,[]),u(this,tt,[]),u(this,Mt,[]),u(this,xi,0)}_inspectSliceOffsets(){return r(this,Mt)}render(t){if(r(this,tt).length===0)return;const{scope:e,theme:s,padding:n}=t,{context:a,bitmapSize:o,horizontalPixelRatio:l,verticalPixelRatio:h}=e,c=performance.now(),d=r(this,xi)?Math.min(.05,(c-r(this,xi))/1e3):0;u(this,xi,c);const f=C(this,rt,Ui).call(this);if(f<=0)return;const m=12;for(;r(this,Mt).length<r(this,tt).length;)r(this,Mt).push(0);if(r(this,it).animate)for(let V=0;V<r(this,tt).length;V++){const X=V===r(this,Kt)?1:0;r(this,Mt)[V]=hr(r(this,Mt)[V],X,m,d)}const g=$l(r(this,it).sliceLabels);a.font=`${g.fontSize*l}px ${s.typography.fontFamily}`,g.mode==="outside"&&r(this,it).animate&&u(this,Ae,hr(r(this,Ae),1,6,d));const p=r(this,it).colors??s.seriesColors,b=g.mode==="outside"?C(this,rt,ia).call(this,a,g,f,l):0,{cx:v,cy:S,maxR:L}=wr({bitmapWidth:o.width,bitmapHeight:o.height,padTop:n.top*h,padBottom:n.bottom*h,labelReserve:b}),y=L,M=y*r(this,it).innerRadiusRatio,k=r(this,it).padAngle*xn,F=8*l,T=r(this,it).shadow??!1,D=Ol(T),B=r(this,it).innerShadow??!1,x=Xl(B);let R=-Math.PI/2;for(let V=0;V<r(this,tt).length;V++){const X=r(this,tt)[V],$=C(this,rt,ke).call(this,X.value)/f*Ti,G=R+k/2,xt=R+$-k/2,Tt=R+$/2,_=X.color??p[V%p.length];if(xt<=G){R+=$;continue}const q=r(this,Mt)[V]*F,J=Math.cos(Tt)*q,K=Math.sin(Tt)*q,Et=v+J,kt=S+K;a.beginPath(),a.arc(Et,kt,y,G,xt),M>0?a.arc(Et,kt,M,xt,G,!0):a.lineTo(Et,kt),a.closePath();const Lt=a.createRadialGradient(Et,kt,M||0,Et,kt,y);if(Lt.addColorStop(0,Ul(_,.15)),B){const re=Math.max(0,Math.min(.999,1-x.depth));Lt.addColorStop(re,_),Lt.addColorStop(1,_l(_,x.color))}else Lt.addColorStop(1,_);a.fillStyle=Lt;const Ie=r(this,Mt)[V];if(T||Ie>.01){const re=T?1:0,Ne=Ie;a.shadowColor=T?D.color:"rgba(0,0,0,0.25)",a.shadowBlur=(D.blur*re+12*Ne)*l,a.shadowOffsetX=D.offsetX*re*l+J*.3*Ne,a.shadowOffsetY=D.offsetY*re*h+K*.3*Ne}a.fill(),a.shadowColor="transparent",a.shadowBlur=0,a.shadowOffsetX=0,a.shadowOffsetY=0,R+=$}if(g.mode==="none")return;R=-Math.PI/2;const A=s.tooltip.textColor;if(g.mode==="outside"){const V=C(this,rt,na).call(this,{cx:v,cy:S,outerR:y,total:f,palette:p,labels:g,hpr:l,bitmapHeight:o.height}),X=V.length>1?Math.min(.06,.9/(V.length-1)):0;for(let $=0;$<V.length;$++){const G=V[$];if(G===null)continue;const xt=$*X,Tt=hs((r(this,Ae)-xt)/(1-xt),0,1);C(this,rt,sa).call(this,{context:a,entry:G,textColor:A,labels:g,hpr:l,progress:Tt})}return}const z=M>0?(y+M)/2:y*.65;a.textAlign="center",a.textBaseline="middle";const E=g.minSliceAngle*xn;for(let V=0;V<r(this,tt).length;V++){const X=r(this,tt)[V],$=C(this,rt,ke).call(this,X.value)/f*Ti;if($>=E){const G=R+$/2,xt=r(this,Mt)[V]*F,Tt=X.color??p[V%p.length],_=C(this,rt,zs).call(this,X,f,g.content),q=a.measureText(_).width,J=g.fontSize*1.2*l,K=$<Math.PI?2*z*Math.sin($/2):2*z,Et=q>K-4*l,kt=M>0&&z-M<J;if(!Et&&!kt){const Lt=v+Math.cos(G)*(z+xt),Ie=S+Math.sin(G)*(z+xt);a.fillStyle=Nl(Tt)?"#000000":"#ffffff",a.fillText(_,Lt,Ie)}}R+=$}}}tt=new WeakMap,it=new WeakMap,Kt=new WeakMap,Mt=new WeakMap,xi=new WeakMap,Ae=new WeakMap,$t=new WeakMap,Ge=new WeakMap,rt=new WeakSet,wn=function(i,t){const e={...i,...t};return t.sliceLabels!==void 0&&(e.sliceLabels=Hl(i.sliceLabels,t.sliceLabels)),e},ke=function(i){return Number.isFinite(i)&&i>0?i:0},Ui=function(){let i=0;for(const t of r(this,tt))i+=C(this,rt,ke).call(this,t.value);return i},zs=function(i,t,e){const s=t>0?C(this,rt,ke).call(this,i.value)/t*100:0,n=`${s.toFixed(s>=10?0:1)}%`;return e==="percent"?n:e==="label"?i.label:`${i.label} ${n}`},ia=function(i,t,e,s){const n=i.font;if(r(this,$t)&&r(this,$t).fontScale===s&&r(this,$t).font===n)return r(this,$t).reserve;let a=0;for(const h of r(this,tt)){const c=C(this,rt,zs).call(this,h,e,t.content),d=i.measureText(c).width;d>a&&(a=d)}const o=Math.max(t.distance,t.elbowLen),l=(a+(o+Math.max(0,t.railWidth)+t.legPad+4)*s)/ea;return u(this,$t,{fontScale:s,font:n,reserve:l}),l},sa=function(i){const{context:t,entry:e,textColor:s,labels:n,hpr:a,progress:o}=i;if(o<=0)return;const{anchorX:l,anchorY:h,elbowX:c,elbowY:d,side:f,text:m,color:g,labelX:p,labelY:b}=e,v=p+f*n.legPad*a,S=hs(o/.15,0,1),L=hs((o-.15)/.45,0,1),y=hs((o-.6)/.4,0,1);if(t.save(),t.globalAlpha=S,t.fillStyle=g,t.beginPath(),t.arc(l,h,2.5*a,0,Ti),t.fill(),t.restore(),L>0){t.save(),t.globalAlpha=L,t.strokeStyle=g,t.lineWidth=1*a,t.lineCap="round",t.beginPath(),t.moveTo(l,h);const M=l+(c-l)*L,k=h+(d-h)*L;if(t.lineTo(M,k),y>0){const F=c+(p-c)*y,T=d+(b-d)*y;t.lineTo(F,T)}t.stroke(),t.restore()}y>0&&(t.save(),t.globalAlpha=y,t.fillStyle=s,t.textAlign=f>=0?"left":"right",t.textBaseline="middle",t.fillText(m,v,b),t.restore())},na=function(i){const{cx:t,cy:e,outerR:s,total:n,palette:a,labels:o,hpr:l,bitmapHeight:h}=i,c=new Array(r(this,tt).length).fill(null),d=o.elbowLen*l,f=Math.max(o.distance,o.elbowLen)*l,m=Math.max(0,o.railWidth)*l,g=[];let p=-Math.PI/2;const b=o.minSliceAngle*xn;for(let y=0;y<r(this,tt).length;y++){const M=r(this,tt)[y],k=C(this,rt,ke).call(this,M.value)/n*Ti;if(k>=b){const F=p+k/2,T=r(this,Mt)[y]*(8*l),D=Math.cos(F),B=Math.sin(F),x=D>=0?1:-1,R=t+D*(s+T),A=e+B*(s+T),z=t+D*(s+T+d),E=e+B*(s+T+d),V=t+D*(s+T+f)+x*m,X=e+B*(s+T+f),$={anchorX:R,anchorY:A,elbowX:z,elbowY:E,side:x,labelX:V,labelY:X,text:C(this,rt,zs).call(this,M,n,o.content),color:M.color??a[y%a.length]};c[y]=$,g.push({entry:$})}p+=k}const v=Math.max(1,o.fontSize*o.labelGap)*l,S=o.fontSize*l,L=h-o.fontSize*l;for(const y of[1,-1]){const M=[];for(const T of g)T.entry.side===y&&M.push(T.entry);if(M.length===0)continue;M.sort((T,D)=>T.labelY-D.labelY);const k=[];for(let T=0;T<M.length;T++)for(k.push({count:1,sumIdeal:M[T].labelY,startIdx:T});k.length>=2;){const D=k[k.length-2],B=k[k.length-1],x=D.sumIdeal/D.count,R=B.sumIdeal/B.count,A=x+(D.count-1)*v/2;if(R-(B.count-1)*v/2>=A+v)break;D.count+=B.count,D.sumIdeal+=B.sumIdeal,k.pop()}if(k.length>0){const T=k[0],D=T.sumIdeal/T.count-(T.count-1)*v/2;if(D<S)for(T.sumIdeal+=(S-D)*T.count;k.length>=2;){const B=k[0],x=k[1],R=B.sumIdeal/B.count,A=x.sumIdeal/x.count,z=R+(B.count-1)*v/2;if(A-(x.count-1)*v/2>=z+v)break;B.count+=x.count,B.sumIdeal+=x.sumIdeal,k.splice(1,1)}}if(k.length>0){const T=k[k.length-1],D=T.sumIdeal/T.count+(T.count-1)*v/2;if(D>L)for(T.sumIdeal-=(D-L)*T.count;k.length>=2;){const B=k[k.length-2],x=k[k.length-1],R=B.sumIdeal/B.count,A=x.sumIdeal/x.count,z=R+(B.count-1)*v/2;if(A-(x.count-1)*v/2>=z+v)break;B.count+=x.count,B.sumIdeal+=x.sumIdeal,k.pop()}}const F=(S+L)/2;for(const T of k){const D=(T.count-1)*v,B=T.sumIdeal/T.count;D>L-S&&B-D/2<S&&(T.sumIdeal=F*T.count)}for(const T of k){const D=T.sumIdeal/T.count;for(let B=0;B<T.count;B++)M[T.startIdx+B].labelY=D+(B-(T.count-1)/2)*v}}for(const y of g){const M=y.entry,k=M.labelY-M.anchorY;let F;if(Math.abs(k)<=d){const B=M.side*Math.sqrt(Math.max(0,d*d-k*k));F=M.anchorX+B}else F=(M.anchorX+M.labelX)/2;const T=Math.min(M.anchorX,M.labelX),D=Math.max(M.anchorX,M.labelX);M.elbowX=Math.max(T,Math.min(D,F)),M.elbowY=M.labelY}return c};function ps(i){if(!i.startsWith("#")||i.length!==4)return i;const t=i[1],e=i[2],s=i[3];return`#${t}${t}${e}${e}${s}${s}`}function ra(i){const t=ps(i);return!t.startsWith("#")||t.length<7?!1:parseInt(t.slice(1,3),16)*.299+parseInt(t.slice(3,5),16)*.587+parseInt(t.slice(5,7),16)*.114<128}function at(i){var t,e,s,n,a,o,l,h,c,d,f,m,g,p,b,v,S,L,y,M,k,F,T,D,B,x,R,A,z,E,V,X,$,G;const{name:xt="Custom",description:Tt,fontUrl:_=null}=i,q=ps(i.background),J=ra(q),K=J?"#d1d4dc":"#24292f",Et=J?"#787b86":"#8b949e",kt=J?"#26a69a":"#2da44e",Lt=J?"#ef5350":"#cf222e",Ie=J?"#2962ff":"#0969da",re=J?"rgba(42,46,57,0.6)":"rgba(200,200,200,0.5)",Ne=J?"rgba(150,150,150,0.5)":"rgba(170,170,170,0.3)",xs=J?_i(q,.1):Mn(q,.05),ws=J?wi(q,.92):wi(q,.95),Ms=J?wi(_i(q,.15),.6):"rgba(200,200,200,0.5)",ks=Js,oi=((e=(t=i.candlestick)==null?void 0:t.up)==null?void 0:e.body)??kt,li=((n=(s=i.candlestick)==null?void 0:s.down)==null?void 0:n.body)??Lt,hi=Dt(oi),st=Dt(li),yt=((a=i.line)==null?void 0:a.color)??Ie,It=((o=i.tooltip)==null?void 0:o.textColor)??K,Kn=((l=i.axis)==null?void 0:l.textColor)??Et,Ha=((h=i.typography)==null?void 0:h.fontFamily)??ks,Zn=((c=i.typography)==null?void 0:c.fontSize)??12,$a=i.chartGradient??(J?[_i(q,.04),Mn(q,.06)]:[_i(q,.06),q]),Oa={background:q,chartGradient:$a,typography:{fontFamily:Ha,fontSize:Zn},grid:{color:((d=i.grid)==null?void 0:d.color)??re,style:((f=i.grid)==null?void 0:f.style)??"solid"},candlestick:{up:{body:oi,wick:((g=(m=i.candlestick)==null?void 0:m.up)==null?void 0:g.wick)??hi},down:{body:li,wick:((b=(p=i.candlestick)==null?void 0:p.down)==null?void 0:b.wick)??st}},line:{color:yt,width:((v=i.line)==null?void 0:v.width)??1,areaTopColor:((S=i.line)==null?void 0:S.areaTopColor)??wi(yt,.08),areaBottomColor:((L=i.line)==null?void 0:L.areaBottomColor)??wi(yt,.01)},seriesColors:i.seriesColors??[yt,kt,Lt],bands:{upper:((y=i.bands)==null?void 0:y.upper)??yt,lower:((M=i.bands)==null?void 0:M.lower)??st},crosshair:{color:((k=i.crosshair)==null?void 0:k.color)??Ne,labelBackground:((F=i.crosshair)==null?void 0:F.labelBackground)??xs,labelTextColor:((T=i.crosshair)==null?void 0:T.labelTextColor)??It},axis:{fontSize:((D=i.axis)==null?void 0:D.fontSize)??10,textColor:Kn,...(B=i.axis)!=null&&B.x?{x:{...i.axis.x}}:{},...(x=i.axis)!=null&&x.y?{y:{...i.axis.y}}:{}},yLabel:{fontSize:((R=i.yLabel)==null?void 0:R.fontSize)??11,upBackground:((A=i.yLabel)==null?void 0:A.upBackground)??hi,downBackground:((z=i.yLabel)==null?void 0:z.downBackground)??st,neutralBackground:((E=i.yLabel)==null?void 0:E.neutralBackground)??xs,textColor:((V=i.yLabel)==null?void 0:V.textColor)??"#ffffff"},tooltip:{fontSize:((X=i.tooltip)==null?void 0:X.fontSize)??Zn,background:(($=i.tooltip)==null?void 0:$.background)??ws,textColor:It,borderColor:((G=i.tooltip)==null?void 0:G.borderColor)??Ms},navigator:Kl({dark:J,bg:q,neutralFg:Kn,upBody:oi,downBody:li,upBase:hi,downBase:st,config:i.navigator})};return{name:xt,description:Tt,fontUrl:_,dark:J,theme:Oa}}function Kl(i){var t,e,s,n,a,o,l,h,c,d,f,m,g,p,b,v,S,L;const{dark:y,bg:M,neutralFg:k,upBody:F,downBody:T,upBase:D,downBase:B,config:x}=i,R=(x==null?void 0:x.background)??"transparent",A=y?"rgba(255,255,255,1)":"rgba(0,0,0,1)",z=((t=x==null?void 0:x.handle)==null?void 0:t.color)??Bi(A,.3),E=((e=x==null?void 0:x.mask)==null?void 0:e.fill)??Bi(M,y?.78:.82);return{height:(x==null?void 0:x.height)??48,background:R,borderColor:(x==null?void 0:x.borderColor)??Bi(k,y?.18:.22),line:{color:((s=x==null?void 0:x.line)==null?void 0:s.color)??k,width:((n=x==null?void 0:x.line)==null?void 0:n.width)??1,areaTopColor:((a=x==null?void 0:x.line)==null?void 0:a.areaTopColor)??Bi(k,y?.22:.18),areaBottomColor:((o=x==null?void 0:x.line)==null?void 0:o.areaBottomColor)??Bi(k,0)},candlestick:{up:{body:((h=(l=x==null?void 0:x.candlestick)==null?void 0:l.up)==null?void 0:h.body)??F,wick:((d=(c=x==null?void 0:x.candlestick)==null?void 0:c.up)==null?void 0:d.wick)??D},down:{body:((m=(f=x==null?void 0:x.candlestick)==null?void 0:f.down)==null?void 0:m.body)??T,wick:((p=(g=x==null?void 0:x.candlestick)==null?void 0:g.down)==null?void 0:p.wick)??B}},window:{fill:((b=x==null?void 0:x.window)==null?void 0:b.fill)??"transparent",border:((v=x==null?void 0:x.window)==null?void 0:v.border)??"transparent",borderWidth:((S=x==null?void 0:x.window)==null?void 0:S.borderWidth)??0},handle:{color:z,width:((L=x==null?void 0:x.handle)==null?void 0:L.width)??6},mask:{fill:E}}}function Bi(i,t){if(i.startsWith("#")&&i.length===7)return wi(i,t);const e=i.match(/^rgba?\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)/);return e?`rgba(${e[1]},${e[2]},${e[3]},${t})`:i}function wi(i,t){const e=ps(i),s=parseInt(e.slice(1,3),16),n=parseInt(e.slice(3,5),16),a=parseInt(e.slice(5,7),16);return`rgba(${s}, ${n}, ${a}, ${t})`}function _i(i,t){if(!i.startsWith("#"))return i;const e=ps(i),s=Math.min(255,Math.round(parseInt(e.slice(1,3),16)+255*t)),n=Math.min(255,Math.round(parseInt(e.slice(3,5),16)+255*t)),a=Math.min(255,Math.round(parseInt(e.slice(5,7),16)+255*t));return`#${s.toString(16).padStart(2,"0")}${n.toString(16).padStart(2,"0")}${a.toString(16).padStart(2,"0")}`}function Mn(i,t){if(!i.startsWith("#"))return i;const e=ps(i),s=Math.max(0,Math.round(parseInt(e.slice(1,3),16)*(1-t))),n=Math.max(0,Math.round(parseInt(e.slice(3,5),16)*(1-t))),a=Math.max(0,Math.round(parseInt(e.slice(5,7),16)*(1-t)));return`#${s.toString(16).padStart(2,"0")}${n.toString(16).padStart(2,"0")}${a.toString(16).padStart(2,"0")}`}function j(i){const t=i.startsWith("#")&&i.length===7?[_i(i,.2),Mn(i,.15)]:[i,i];return Object.defineProperty(t,"source",{value:i,enumerable:!1}),t}const Zs="'JetBrains Mono', 'Fira Code', monospace",qs="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap",Js="'Outfit', -apple-system, BlinkMacSystemFont, sans-serif",Hn="https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600&display=swap",aa="'Roboto Mono', monospace",oa="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;600&display=swap",Zl="'IBM Plex Mono', monospace",ql="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&display=swap",$n="'Fira Code', monospace",On="https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600&display=swap",la="'Source Code Pro', monospace",ha="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;500;600&display=swap",Jl="'Space Mono', monospace",Ql="https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap",Xn="'Plus Jakarta Sans', sans-serif",Nn="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap",th="'Caveat', 'Comic Sans MS', cursive",eh="https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap",ca=at({name:"Catppuccin",description:"Pastel tones on a mocha base",background:"#1e1e2e",grid:{color:"rgba(90,92,116,0.2)"},candlestick:{up:{body:j("#a6e3a1"),wick:"#a6e3a1"},down:{body:j("#f38ba8"),wick:"#f38ba8"}},line:{color:"#89b4fa"},seriesColors:["#89b4fa","#fab387","#a6e3a1","#cba6f7","#f38ba8","#f9e2af","#94e2d5","#eba0ac","#74c7ec","#cba6f7"],bands:{upper:"#74c7ec",lower:"#f38ba8"},crosshair:{color:"rgba(108,112,134,0.7)",labelBackground:"#313244"},axis:{textColor:"#6c7086"},tooltip:{background:"rgba(30,30,46,0.92)",textColor:"#cdd6f4",borderColor:"rgba(49,50,68,0.6)"},typography:{fontFamily:Js},fontUrl:Hn});let ih=0;var ct,nt,jt,Gi,O,dt,Ki,ut,St,ft,Pe,Mi,Zt,Es,Vs,ge,Zi,Ke,cs,Os,Rt,Q,ni,Xs,ie,et,Wi,Se,Ns,mt,Li,Ft,bt,ki,fe,qi,Ji,Y,Fe,ua,da,fa,ma,Qi,Ct,ii,Ii,us,ds,kn,ga,Ai,ts,pa,cn,ri,Sn,Cn,Ot;class ba extends Ks{constructor(t,e){var s,n,a,o,l,h;super(),w(this,Y),w(this,ct),w(this,nt),w(this,jt),P(this,"timeScale"),P(this,"yScale"),w(this,Gi),w(this,O,[]),w(this,dt),w(this,Ki),w(this,ut,6e4),w(this,St,null),w(this,ft,{}),w(this,Pe,null),w(this,Mi,{}),w(this,Zt,{left:"idle",right:"idle"}),w(this,Es,{left:null,right:null}),w(this,Vs),w(this,ge,0),w(this,Zi,!1),w(this,Ke,!1),w(this,cs,!1),w(this,Os,0),w(this,Rt),w(this,Q),w(this,ni),w(this,Xs,!1),w(this,ie,null),w(this,et,null),w(this,Wi,null),w(this,Se,!1),w(this,Ns),w(this,mt,{from:0,to:0}),w(this,Li,{min:0,max:0}),w(this,Ft,!0),w(this,bt),w(this,ki,0),w(this,fe),w(this,qi,!1),w(this,Ji,null),w(this,Qi,!1),w(this,Ct,!1),w(this,ii,!1),w(this,Ii),w(this,us,Number.NaN),w(this,ds,Number.NaN),e!=null&&e.axis&&(u(this,Mi,e.axis),u(this,ft,{min:(s=e.axis.y)==null?void 0:s.min,max:(n=e.axis.y)==null?void 0:n.max})),u(this,dt,(e==null?void 0:e.theme)??ca.theme),u(this,Ki,((a=e==null?void 0:e.grid)==null?void 0:a.visible)!==!1),u(this,Rt,$s.resolve(e==null?void 0:e.animations)),u(this,Ns,Oo((o=e==null?void 0:e.viewport)==null?void 0:o.maxVisibleBars)),u(this,bt,rr(e==null?void 0:e.padding)),u(this,ni,new _o);const c=r(this,Rt).axis.y,d=r(this,Rt).axis.x;u(this,Q,Qa({initial:{yRange:{min:0,max:0},xRange:{from:0,to:0}},y:{curve:c.curve,settleMs:c.settleMs,stickyMs:c.stickyMs,stickyFloorMs:c.stickyFloorMs,gestureMs:c.gestureMs,toggleMs:r(this,Rt).toggleMs},x:{curve:d.curve,settleMs:d.settleMs,gestureMs:d.gestureMs},computeXTarget:()=>C(this,Y,ga).call(this),computeYTarget:({xTarget:b})=>C(this,Y,kn).call(this,b),onWake:()=>{var b;return(b=r(this,nt))==null?void 0:b.markDirty()}})),u(this,Vs,e==null?void 0:e.onEdgeReached),u(this,Ii,(l=e==null?void 0:e.viewport)==null?void 0:l.initialRange);const f=$o(e==null?void 0:e.perf);u(this,fe,f.monitor),u(this,qi,f.ownsMonitor),u(this,ct,new po(t,r(this,fe)??void 0)),this.timeScale=new Kr,this.yScale=new Jr;const m=r(this,Rt).axis.ticksMs;this.timeScale.tickTracker.setFadeMs(m),this.yScale.tickTracker.setFadeMs(m);const g=r(this,fe);g?(u(this,nt,new Ts(b=>{g.resetDrawCalls("main");const v=performance.now();this.renderMain(b),g.recordFrame("main",performance.now()-v,b)})),u(this,jt,new Ts(b=>{g.resetDrawCalls("overlay");const v=performance.now();this.renderOverlay(b),g.recordFrame("overlay",performance.now()-v,b)})),f.showHud&&u(this,Ji,new hl(t,g))):(u(this,nt,new Ts(b=>this.renderMain(b))),u(this,jt,new Ts(b=>this.renderOverlay(b))));const p=(e==null?void 0:e.interactive)!==!1;u(this,Gi,p?new sl(r(this,ct).canvas,this,this.timeScale,this.yScale):null),r(this,ct).on("resize",()=>{this.syncScales(),this.renderMain(),this.emit("viewportChange")}),this.syncScales(),(h=r(this,Gi))==null||h.on("crosshairMove",b=>{u(this,St,b),r(this,jt).markDirty(),this.emit("crosshairMove",b),C(this,Y,ma).call(this,b)})}get yAxisWidth(){const t=r(this,Mi).y;return(t==null?void 0:t.visible)===!1?0:(t==null?void 0:t.width)??55}get xAxisHeight(){const t=r(this,Mi).x;return(t==null?void 0:t.visible)===!1?0:(t==null?void 0:t.height)??30}getOverlayVersion(){return r(this,Os)}addSeries(t,e={}){var s;const{layers:n,id:a,...o}=e,l=n??1,h={...r(this,Rt).defaults(t),...o,...r(this,Rt).overrides(t)},c=C(this,Y,da).call(this,t,l,h),d=C(this,Y,ua).call(this,a);return(s=c.onDataChanged)==null||s.call(c,()=>this.onDataChanged()),r(this,O).push({id:d,label:o.label,renderer:c,visible:!0}),u(this,Pe,null),this.emit("seriesChange"),C(this,Y,Fe).call(this),d}removeSeries(t){const e=r(this,O).findIndex(s=>s.id===t);e>=0&&(r(this,O)[e].renderer.dispose(),r(this,O).splice(e,1),u(this,Pe,null),r(this,nt).markDirty(),this.emit("seriesChange"),C(this,Y,Fe).call(this))}getAnimationState(){return r(this,Q).getAnimationState()}setSeriesData(t,e,s){const n=r(this,O).find(a=>a.id===t);n&&(u(this,Qi,!0),n.renderer.setData(e,s))}appendData(t,e,s){const n=r(this,O).find(a=>a.id===t);n===void 0||n.renderer.appendPoint===void 0||n.renderer.appendPoint(e,s)}updateData(t,e,s){var n,a;const o=r(this,O).find(l=>l.id===t);(a=o==null?void 0:(n=o.renderer).updateLastPoint)==null||a.call(n,e,s)}keepLast(t,e,s){var n,a;const o=r(this,O).find(l=>l.id===t);(a=o==null?void 0:(n=o.renderer).keepLast)==null||a.call(n,e,s)}updateSeriesOptions(t,e){const s=r(this,O).find(d=>d.id===t);if(!s)return;const n=s.label,a=s.renderer.getLayerColors().slice(),o=r(this,Rt).overrides(s.renderer.kind);s.renderer.updateOptions({...e,...o}),"label"in e&&typeof e.label=="string"&&(s.label=e.label),r(this,nt).markDirty();const l=s.renderer.getLayerColors(),h=a.length!==l.length||a.some((d,f)=>d!==l[f]),c=n!==s.label;(h||c)&&C(this,Y,Fe).call(this)}batch(t){fn(this,ge)._++;try{t()}finally{if(--fn(this,ge)._<=0){if(u(this,ge,0),r(this,Zi))u(this,Zi,!1),u(this,Ke,!1),this.onDataChanged();else if(r(this,Ke)){u(this,Ke,!1),u(this,Ct,!0);const e=performance.now();r(this,Q).onAxisReconfig(e),C(this,Y,Ot).call(this,e),r(this,nt).markDirty()}r(this,cs)&&(u(this,cs,!1),this.emit("overlayChange"))}}}setSeriesVisible(t,e){var s,n;const a=r(this,O).find(h=>h.id===t);if(!a||a.visible===e)return;a.visible=e,C(this,Y,Fe).call(this);const o=r(this,Rt).toggleMs;if((n=(s=a.renderer).setAlpha)==null||n.call(s,e?1:0,o),r(this,nt).markDirty(),r(this,ge)>0){u(this,Ke,!0);return}u(this,Ct,!0);const l=performance.now();r(this,Q).onSeriesVisibilityChanged(l),C(this,Y,Ot).call(this,l)}getAutoScroll(){return r(this,Ft)}isSeriesVisible(t){var e;return((e=r(this,O).find(s=>s.id===t))==null?void 0:e.visible)??!0}setLayerVisible(t,e,s){var n,a;const o=r(this,O).find(c=>c.id===t);if(!o||o.renderer.getLayerCount()<=1||o.renderer.isLayerVisible(e)===s)return;o.renderer.setLayerVisible(e,s),C(this,Y,Fe).call(this);const l=r(this,Rt).toggleMs;if((a=(n=o.renderer).setLayerAlpha)==null||a.call(n,e,s?1:0,l),r(this,nt).markDirty(),r(this,ge)>0){u(this,Ke,!0);return}u(this,Ct,!0);const h=performance.now();r(this,Q).onSeriesVisibilityChanged(h),C(this,Y,Ot).call(this,h)}isLayerVisible(t,e){const s=r(this,O).find(n=>n.id===t);return(s==null?void 0:s.renderer.isLayerVisible(e))??!0}fitContent(){const{first:t,last:e}=this.getDataBounds();if(t===void 0||e===void 0)return;const s=r(this,ct).size.media.width-this.yAxisWidth;C(this,Y,Ai).call(this,t,e,s),C(this,Y,ts).call(this,{xEase:!0})}getVisibleRange(){return r(this,mt).from===0&&r(this,mt).to===0?r(this,Q).getAnimationState().xRange:r(this,mt)}getDataRange(){return r(this,ie)===null||r(this,et)===null?null:{from:r(this,ie),to:r(this,et)}}setVisibleRange(t,e){if(typeof t=="number"){if(!Number.isInteger(t)||t<2)return;const{first:o,last:l}=this.getDataBounds();if(o===void 0||l===void 0)return;const h=Math.max(o,l-(t-1)*r(this,ut)),c=r(this,ct).size.media.width-this.yAxisWidth;C(this,Y,Ai).call(this,h,l,c),C(this,Y,ts).call(this);return}if("bars"in t){if(!Number.isInteger(t.bars)||t.bars<2)return;const o=zt(t.from),l=o+t.bars*r(this,ut);u(this,Ft,r(this,et)!==null&&r(this,et)>=o&&r(this,et)<=l),C(this,Y,ri).call(this,{from:o,to:l},{emitChange:!0}),u(this,Se,!0),C(this,Y,ts).call(this);return}const s=zt(t.from),n=zt(t.to);u(this,Ft,r(this,et)!==null&&r(this,et)>=s&&r(this,et)<=n),u(this,Se,!1);const a=C(this,Y,ri).call(this,{from:s,to:n},{emitChange:!0});if(e!=null&&e.gesture){a&&C(this,Y,pa).call(this);return}C(this,Y,ts).call(this)}getYRange(){return r(this,Li)}getCrosshairPosition(){return r(this,St)}setCrosshair(t){if(t===null){if(r(this,St)===null)return;u(this,St,null),r(this,jt).markDirty(),this.emit("crosshairMove",null);return}const{time:e}=t;if(!Number.isFinite(e))return;const s=r(this,St);let n;if(t.y!==void 0)n=t.y;else if(s!==null)n=s.y;else{const l=r(this,Li);n=(l.min+l.max)/2}if(!Number.isFinite(n)||s!==null&&s.time===e&&s.y===n)return;const a=this.timeScale.timeToX(e),o=this.yScale.valueToY(n);u(this,St,{mediaX:a,mediaY:o,time:e,y:n}),r(this,jt).markDirty(),this.emit("crosshairMove",r(this,St))}getLastValue(t){return Nr(t,r(this,O),r(this,Q).getAnimationState().xRange)}getPreviousClose(t){return Wo(t,r(this,O))}getLastData(t){const e=r(this,O).find(s=>s.id===t);return!e||e.renderer.kind==="pie"?null:e.renderer.getLastDataPoint()}getDataAtTime(t,e){var s,n;const a=r(this,O).find(o=>o.id===t);return a?((n=(s=a.renderer).getDataAtTime)==null?void 0:n.call(s,e,r(this,ut)))??null:null}getLayerSnapshots(t,e){var s,n;const a=r(this,O).find(o=>o.id===t);return a!=null&&a.visible?((n=(s=a.renderer).getLayerSnapshots)==null?void 0:n.call(s,e,r(this,ut)))??null:null}getSeriesIds(){return r(this,Pe)||u(this,Pe,r(this,O).map(t=>t.id)),r(this,Pe).slice()}getSeriesIdsByType(t,e){const s=(e==null?void 0:e.visibleOnly)===!0,n=(e==null?void 0:e.singleLayerOnly)===!0,a=[];for(const o of r(this,O)){const l=o.renderer.kind==="pie";if(t==="pie"&&!l||t==="time"&&l)continue;const h=o.renderer.getLayerCount();if(!(n&&h>1)){if(s){if(!o.visible)continue;if(h>1){let c=!1;for(let d=0;d<h;d++)if(o.renderer.isLayerVisible(d)){c=!0;break}if(!c)continue}}a.push(o.id)}}return a}getStackedLastValue(t){return Ro(t,r(this,O),r(this,Q).getAnimationState().xRange)}getLayerLastSnapshots(t){var e,s;const n=r(this,O).find(a=>a.id===t);return((s=n==null?void 0:(e=n.renderer).getLayerLastSnapshots)==null?void 0:s.call(e))??null}listSeriesForTest(){return r(this,O).map(t=>({id:t.id,renderer:t.renderer}))}getSeriesColor(t){const e=r(this,O).find(s=>s.id===t);return e?e.renderer.getLayerColors()[0]??r(this,dt).line.color:null}getSeriesLabel(t){var e;return(e=r(this,O).find(s=>s.id===t))==null?void 0:e.label}getSeriesLayers(t){const e=r(this,O).find(a=>a.id===t);if(!e)return null;const s=e.renderer.getLayerCount();if(s<=1)return null;const n=e.renderer.getLayerColors();return Array.from({length:s},(a,o)=>({color:n[o%n.length]}))}getSliceInfo(t){var e,s;const n=r(this,O).find(a=>a.id===t);return((s=n==null?void 0:(e=n.renderer).getSliceInfo)==null?void 0:s.call(e,r(this,dt)))??null}getHoverInfo(t){var e,s;const n=r(this,O).find(a=>a.id===t);return((s=n==null?void 0:(e=n.renderer).getHoverInfo)==null?void 0:s.call(e,r(this,dt)))??null}setTheme(t){const e=r(this,dt);u(this,dt,t);for(const s of r(this,O))s.renderer.applyTheme(t,e);r(this,nt).markDirty(),C(this,Y,Fe).call(this)}getTheme(){return r(this,dt)}setAxis(t){var e,s;const n=this.yAxisWidth,a=this.xAxisHeight;u(this,Mi,t),u(this,ft,{min:(e=t.y)==null?void 0:e.min,max:(s=t.y)==null?void 0:s.max}),u(this,Ct,!0);const o=performance.now();r(this,Q).onAxisReconfig(o),C(this,Y,Ot).call(this,o),(this.yAxisWidth!==n||this.xAxisHeight!==a)&&this.syncScales(),r(this,nt).markDirty()}setYAxisLabelDensity(t){let e=!1;"labelCount"in t&&(this.yScale.setLabelCount(t.labelCount??null),e=!0),"minLabelSpacing"in t&&(this.yScale.setMinSpacing(t.minLabelSpacing??null),e=!0),e&&(this.syncScales(),this.emit("viewportChange"),r(this,nt).markDirty())}setTimeAxisLabelDensity(t){let e=!1;"labelCount"in t&&(this.timeScale.setLabelCount(t.labelCount??null),e=!0),"minLabelSpacing"in t&&(this.timeScale.setMinSpacing(t.minLabelSpacing??null),e=!0),e&&(this.syncScales(),this.emit("viewportChange"),r(this,nt).markDirty())}getMediaSize(){return r(this,ct).size.media}getLayout(){const t=r(this,ct).size.media,e=this.yAxisWidth,s=this.xAxisHeight;return{chartArea:{x:0,y:0,width:t.width-e,height:t.height-s},yAxisWidth:e,xAxisHeight:s}}getDataInterval(){return r(this,ut)}setPadding(t){const e=r(this,bt);u(this,bt,rr(t));const s=r(this,bt),n=!ar(e.left,s.left)||!ar(e.right,s.right),a=e.top!==s.top||e.bottom!==s.bottom;if(n){const{first:o,last:l}=this.getDataBounds();if(o!==void 0&&l!==void 0){const h=r(this,ct).size.media.width-this.yAxisWidth;C(this,Y,Ai).call(this,o,l,h)}}if(n||a){u(this,Ct,!0);const o=performance.now();r(this,Q).onAxisReconfig(o),C(this,Y,Ot).call(this,o)}this.syncScales(),r(this,nt).markDirty(),a&&this.emit("viewportChange")}setGrid(t){u(this,Ki,t.visible),r(this,nt).markDirty()}setEdgeState(t,e){r(this,Zt)[t]!==e&&(r(this,Zt)[t]=e,r(this,jt).markDirty())}getEdgeState(t){return r(this,Zt)[t]}setYLabel(t){}destroy(){var t,e,s;for(const n of r(this,O))n.renderer.dispose();u(this,O,[]),u(this,Pe,null),r(this,nt).destroy(),r(this,jt).destroy(),(t=r(this,Gi))==null||t.destroy(),r(this,ct).destroy(),(e=r(this,Ji))==null||e.destroy(),u(this,Ji,null),r(this,qi)&&((s=r(this,fe))==null||s.destroy()),u(this,fe,null),u(this,qi,!1),this.removeAllListeners()}getPerfMonitor(){return r(this,fe)}getDataBounds(){let t,e;for(const s of r(this,O)){if(!s.visible||s.renderer.kind==="pie")continue;const n=s.renderer.getTimeBounds();n!==null&&((t===void 0||n.first<t)&&(t=n.first),(e===void 0||n.last>e)&&(e=n.last))}return{first:t,last:e}}onDataChanged(){if(r(this,ge)>0){u(this,Zi,!0);return}this.updateDataInterval();const{first:t,last:e}=this.getDataBounds();t!==void 0&&u(this,ie,t),e!==void 0&&(u(this,Wi,r(this,et)),u(this,et,e));const s=r(this,Qi);u(this,Qi,!1);const n=!r(this,Ct)&&t!==void 0;s&&(this.yScale.tickTracker.reset(),this.timeScale.tickTracker.reset()),u(this,Xs,s);const a=performance.now();s||n?r(this,Q).onDataReplaced(a):r(this,Q).onPointAppended(a),r(this,Q).lastXTarget!==null&&u(this,ii,!0),t!==void 0&&u(this,Ct,!0),C(this,Y,Ot).call(this,a),this.syncScales(),n?this.renderMain():r(this,nt).markDirty(),this.emit("dataUpdate"),C(this,Y,Fe).call(this)}updateDataInterval(){for(const t of r(this,O)){if(t.renderer.kind==="pie")continue;const e=t.renderer.sampleTimes(20);if(e.length>=2){u(this,ut,Yr(e));break}}}pan(t,e=r(this,ki)){var s;e>0&&u(this,ki,e),u(this,Se,!1);const n=jo({currentLogical:r(this,mt),timeDelta:t,chartWidth:e,dataInterval:r(this,ut),padding:{left:r(this,bt).left,right:r(this,bt).right},dataStart:r(this,ie),dataEnd:r(this,et)});n.newLogical!==null&&(u(this,Ft,!n.autoScrollOff),C(this,Y,ri).call(this,n.newLogical,{emitChange:!0}),n.edgeReached!==null&&(r(this,Es)[n.edgeReached.side]=n.edgeReached.boundaryTime,(s=r(this,Vs))==null||s.call(this,n.edgeReached)),r(this,ni).pause(),C(this,Y,Cn).call(this))}zoomAt(t,e,s=r(this,ki)){s>0&&u(this,ki,s),u(this,Se,!1);const n=Ho({currentLogical:r(this,mt),centerTime:t,factor:e,chartWidth:s,dataInterval:r(this,ut),padding:{left:r(this,bt).left,right:r(this,bt).right},dataStart:r(this,ie),dataEnd:r(this,et)});if(n.newLogical===null)return;let a=n.newLogical;if(r(this,Ft)&&r(this,et)!==null){const o=a.to-a.from,l=Oe(r(this,bt).right,o,r(this,ut),s),h=r(this,et)+l;a={from:h-o,to:h},u(this,Wi,r(this,et))}C(this,Y,ri).call(this,a,{emitChange:!0}),r(this,ni).pause(),C(this,Y,Cn).call(this)}syncScales(){const t=r(this,ct).size;if(t.media.width===0||t.media.height===0)return;const e=t.media.width-this.yAxisWidth,s=t.media.height-this.xAxisHeight;this.timeScale.update(r(this,Q).getAnimationState().xRange,e,t.horizontalPixelRatio,r(this,ut)),this.yScale.update(r(this,Li),s,t.verticalPixelRatio)}renderMain(t){const e=r(this,ct).size;if(e.media.width===0||e.media.height===0)return;const s=typeof t=="number"?t:performance.now(),n=r(this,Q).tick(s);n.animating&&r(this,nt).markDirty();const a=n.yRange.min,o=n.yRange.max,l=a!==r(this,us)||o!==r(this,ds);if(l){const m=r(this,ft).min!==void 0&&r(this,ft).min!=="auto",g=r(this,ft).max!==void 0&&r(this,ft).max!=="auto",p=e.media.height-this.xAxisHeight;C(this,Y,Sn).call(this,a,o,p,m,g),u(this,us,a),u(this,ds,o)}if(this.syncScales(),r(this,et)!==null&&!r(this,Ft)){const m=r(this,Q).lastXTarget??r(this,mt),g=m.to-m.from;if(g>0){const p=r(this,ct).size.media.width-this.yAxisWidth,b=Oe(r(this,bt).right,g,r(this,ut),p),v=r(this,ut)*.5;Math.abs(m.to-(r(this,et)+b))<v&&u(this,Ft,!0)}}l&&this.emit("viewportChange");let h=!1,c=!1;r(this,ct).useMainLayer(m=>{var g,p;const{context:b,bitmapSize:v}=m,S=(e.media.width-this.yAxisWidth)*e.horizontalPixelRatio,L=(e.media.height-this.xAxisHeight)*e.verticalPixelRatio;b.clearRect(0,0,v.width,v.height),b.save(),b.beginPath(),b.rect(0,0,S,L),b.clip(),this.yScale.tickTracker.setCurrentTicks(this.yScale.niceTickValues()),this.timeScale.tickTracker.setCurrentTicks(this.timeScale.niceTickValues(r(this,ut)).ticks),this.yScale.tickTracker.tick(s),this.timeScale.tickTracker.tick(s);const y=this.yScale.tickTracker.snapshot(),M=this.timeScale.tickTracker.snapshot();h=y.isAnimating,c=M.isAnimating,(y.isAnimating||M.isAnimating||n.animating)&&this.emit("tickFrame"),r(this,Ki)&&Qo({scope:m,timeScale:this.timeScale,yScale:this.yScale,theme:r(this,dt),yTicks:y,timeTicks:M});const k=r(this,bt),F={top:k.top,bottom:k.bottom},T=r(this,fe);for(const D of r(this,O)){const B=((p=(g=D.renderer).getAlpha)==null?void 0:p.call(g))??(D.visible?1:0);if(B<=0)continue;const x={scope:m,timeScale:this.timeScale,yScale:this.yScale,theme:r(this,dt),dataInterval:r(this,ut),padding:F,state:n,seriesId:D.id},R=b.globalAlpha;if(B<1&&(b.globalAlpha=R*B),T){const A=performance.now();D.renderer.render(x),T.recordSeries(D.id,performance.now()-A,s)}else D.renderer.render(x);B<1&&(b.globalAlpha=R)}b.restore()});let d=!1;for(const m of r(this,O))if(m.renderer.needsAnimation){d=!0,r(this,nt).markDirty();break}const f=h||c;!n.animating&&!d&&!f&&(this.yScale.tickTracker.markArmed(),this.timeScale.tickTracker.markArmed()),this.renderOverlay()}renderOverlay(t){var e,s;const n=r(this,ct).size;if(n.media.width===0||n.media.height===0)return;let a=!1;for(const h of r(this,O))if(h.visible&&h.renderer.overlayNeedsAnimation){a=!0;break}const o=r(this,Zt).left==="loading"||r(this,Zt).right==="loading",l=r(this,Zt).left!=="idle"||r(this,Zt).right!=="idle";if(r(this,ct).useOverlayLayer(h=>{var c,d;if(!r(this,St)&&!a&&!l)return;const f=(n.media.width-this.yAxisWidth)*n.horizontalPixelRatio,m=(n.media.height-this.xAxisHeight)*n.verticalPixelRatio;if(h.context.save(),h.context.beginPath(),h.context.rect(0,0,f,m),h.context.clip(),r(this,St)&&C(this,Y,fa).call(this)){const v=r(this,St).mediaX*n.horizontalPixelRatio,S=r(this,St).mediaY*n.verticalPixelRatio;Jo(h,v,S,r(this,dt))}const g=r(this,bt),p={top:g.top,bottom:g.bottom},b=r(this,Q).getAnimationState();for(const v of r(this,O))v.visible&&((d=(c=v.renderer).drawOverlay)==null||d.call(c,{scope:h,timeScale:this.timeScale,yScale:this.yScale,theme:r(this,dt),dataInterval:r(this,ut),padding:p,crosshair:r(this,St),state:b,seriesId:v.id}));l&&To({scope:h,chartMediaHeight:n.media.height-this.xAxisHeight,timeScale:this.timeScale,theme:r(this,dt),edgeStates:r(this,Zt),resolveBoundary:v=>Lo(v,r(this,Es)[v],this.getDataBounds())}),h.context.restore()}),a){const{from:h,to:c}=this.timeScale.getRange();let d=!1;for(const f of r(this,O))if(!(!f.visible||!f.renderer.overlayNeedsAnimation)&&(((s=(e=f.renderer).hasOverlayContentInRange)==null?void 0:s.call(e,h,c))??!0)){d=!0;break}d&&r(this,jt).markDirty()}o&&r(this,jt).markDirty()}}ct=new WeakMap,nt=new WeakMap,jt=new WeakMap,Gi=new WeakMap,O=new WeakMap,dt=new WeakMap,Ki=new WeakMap,ut=new WeakMap,St=new WeakMap,ft=new WeakMap,Pe=new WeakMap,Mi=new WeakMap,Zt=new WeakMap,Es=new WeakMap,Vs=new WeakMap,ge=new WeakMap,Zi=new WeakMap,Ke=new WeakMap,cs=new WeakMap,Os=new WeakMap,Rt=new WeakMap,Q=new WeakMap,ni=new WeakMap,Xs=new WeakMap,ie=new WeakMap,et=new WeakMap,Wi=new WeakMap,Se=new WeakMap,Ns=new WeakMap,mt=new WeakMap,Li=new WeakMap,Ft=new WeakMap,bt=new WeakMap,ki=new WeakMap,fe=new WeakMap,qi=new WeakMap,Ji=new WeakMap,Y=new WeakSet,Fe=function(){if(fn(this,Os)._++,r(this,ge)>0){u(this,cs,!0);return}this.emit("overlayChange")},ua=function(i){if(i&&!r(this,O).some(e=>e.id===i))return i;let t;do t=`series_${++ih}`;while(r(this,O).some(e=>e.id===t));return t},da=function(i,t,e){switch(i){case"candlestick":return new El(new Ur,{up:{...r(this,dt).candlestick.up},down:{...r(this,dt).candlestick.down},...e});case"line":return new Yl(t,{colors:t===1?[r(this,dt).line.color]:r(this,dt).seriesColors.slice(0,t),strokeWidth:r(this,dt).line.width,...e});case"bar":return new Ll(t,{colors:r(this,dt).seriesColors.slice(0,t),...e});case"pie":return new Gl({...e})}},fa=function(){for(const i of r(this,O))if(i.visible&&i.renderer.kind!=="pie")return!0;return!1},ma=function(i){const t=r(this,ct).size,e=r(this,bt),s={top:e.top*t.verticalPixelRatio,bottom:e.bottom*t.verticalPixelRatio};let n=!1;for(const a of r(this,O)){if(!a.renderer.hitTest||!a.renderer.setHoverIndex)continue;let o=-1;if(i){const l=i.mediaX*t.horizontalPixelRatio,h=i.mediaY*t.verticalPixelRatio;o=a.renderer.hitTest(l,h,t.bitmap.width,t.bitmap.height,s)}a.renderer.setHoverIndex(o)&&(n=!0)}n&&r(this,nt).markDirty()},Qi=new WeakMap,Ct=new WeakMap,ii=new WeakMap,Ii=new WeakMap,us=new WeakMap,ds=new WeakMap,kn=function(i){const t=i??r(this,mt),e=r(this,ft).min!==void 0&&r(this,ft).min!=="auto"&&typeof r(this,ft).min!="number"||r(this,ft).max!==void 0&&r(this,ft).max!=="auto"&&typeof r(this,ft).max!="number"?[]:null,s=qo(t,r(this,O),e);if(s===null)return u(this,Ct,!1),null;const n=lr(r(this,ft).min,s.min,s.max,e??[],"min"),a=lr(r(this,ft).max,s.max,s.min,e??[],"max");return{min:n,max:a}},ga=function(){if(r(this,ie)===null||r(this,et)===null)return null;const{from:i,to:t}=r(this,mt),e=i===0&&t===0,s=r(this,ct).size.media.width-this.yAxisWidth;if(e)return C(this,Y,Ai).call(this,r(this,ie),r(this,et),s),r(this,Ii)!==void 0&&(this.setVisibleRange(r(this,Ii)),u(this,Ii,void 0)),r(this,mt);if(!r(this,Ft))return null;if(r(this,Xs))return C(this,Y,Ai).call(this,r(this,ie),r(this,et),s),r(this,mt);const n=Zo({currentLogical:r(this,mt),lastTime:r(this,et),prevDataEnd:r(this,Wi),dataInterval:r(this,ut),paddingRight:r(this,bt).right,chartWidth:s,holdUntilFilled:r(this,Se)});return n.releaseHold&&u(this,Se,!1),n.reengageAutoScroll&&u(this,Ft,!0),n.newLogical===null?null:(r(this,ni).observe(performance.now()),r(this,Q).setXSettleMs(r(this,ni).pickSettleMs(r(this,Rt).axis.x.settleMs)),C(this,Y,ri).call(this,n.newLogical,{emitChange:!1,skipValidation:!0}),u(this,Wi,r(this,et)),n.newLogical)},Ai=function(i,t,e){const s=r(this,bt),n=Io({firstTime:i,lastTime:t,dataInterval:r(this,ut),maxVisibleBars:r(this,Ns),chartWidth:e,padding:{left:s.left,right:s.right}});u(this,Se,!1),u(this,Ft,!0),C(this,Y,ri).call(this,n,{emitChange:!0})},ts=function(i){const t=r(this,mt);if(t.to<=t.from)return;const e=performance.now();if(!r(this,ii)||!r(this,Ct)){C(this,Y,cn).call(this,e);return}r(this,Q).onProgrammaticZoom({xTarget:t,xEase:i==null?void 0:i.xEase},e),C(this,Y,Ot).call(this,e)},pa=function(){const i=r(this,mt);if(i.to<=i.from)return;const t=performance.now();if(!r(this,ii)||!r(this,Ct)){C(this,Y,cn).call(this,t);return}r(this,Q).onPanZoom({xTarget:i,yAuto:!0},t),C(this,Y,Ot).call(this,t)},cn=function(i){const t=r(this,mt),e=C(this,Y,kn).call(this,t);u(this,ii,!0),e!==null&&u(this,Ct,!0),r(this,Q).snap({x:t,y:e??void 0},i),C(this,Y,Ot).call(this,i)},ri=function(i,t){var e;const{from:s,to:n}=i;return!Number.isFinite(s)||!Number.isFinite(n)||n<=s||!t.skipValidation&&(n-s)/r(this,ut)<2||r(this,mt).from===s&&r(this,mt).to===n?!1:(u(this,mt,{from:s,to:n}),t.emitChange&&(this.syncScales(),(e=r(this,nt))==null||e.markDirty(),this.emit("viewportChange")),!0)},Sn=function(i,t,e,s,n){const a=t-i,o=e>0?r(this,bt).top/e*a:0,l=e>0?r(this,bt).bottom/e*a:0;u(this,Li,{min:s?i:i-l,max:n?t:t+o})},Cn=function(){const i=r(this,mt);if(i.to<=i.from)return;u(this,ii,!0),u(this,Ct,!0);const t=performance.now();r(this,Q).onPanZoom({xTarget:i,yAuto:!0},t),C(this,Y,Ot).call(this,t)},Ot=function(i){const t=r(this,Q).tick(i),e=r(this,ct).size;if(e.media.width===0||e.media.height===0)return;const s=r(this,ft).min!==void 0&&r(this,ft).min!=="auto",n=r(this,ft).max!==void 0&&r(this,ft).max!=="auto",a=e.media.height-this.xAxisHeight;C(this,Y,Sn).call(this,t.yRange.min,t.yRange.max,a,s,n),u(this,us,t.yRange.min),u(this,ds,t.yRange.max),this.syncScales()};const Fi={len:0,firstTime:null,lastTime:null},sh=20;function Un(i){const{chart:t,id:e,data:s,prev:n,layerIndex:a}=i;if(s.length===0)return t.setSeriesData(e,[],a),{len:0,firstTime:null,lastTime:null};const o=zt(s[0].time),l=zt(s[s.length-1].time),h=n.firstTime!==null&&n.firstTime!==o,c=s.length-n.len,d=n.lastTime!==null&&n.lastTime!==l;if(h&&c===0&&d)t.appendData(e,s[s.length-1],a),t.keepLast(e,s.length,a);else if(n.len===0||s.length<n.len||c>sh||h)t.setSeriesData(e,s,a);else if(s.length===n.len)t.updateData(e,s[s.length-1],a);else for(let f=n.len;f<s.length;f++)t.appendData(e,s[f],a);return{len:s.length,firstTime:o,lastTime:l}}function nh(i,t){if(i.length<=t||t<=0)return i;const e=i[0].time,s=i[i.length-1].time,n=s-e;if(n<=0)return i;const a=n/t,o=[];let l=0;for(let h=0;h<t;h++){const c=h===t-1?s+1:e+(h+1)*a;let d=null,f=null;for(;l<i.length&&i[l].time<c;){const m=i[l];(d===null||m.value<d.value)&&(d=m),(f===null||m.value>f.value)&&(f=m),l++}if(!(d===null||f===null)){if(d===f){o.push(d);continue}d.time<f.time?o.push(d,f):o.push(f,d)}}return o}function rh(i,t){if(i.length<=t||t<=0)return i;const e=i[0].time,s=i[i.length-1].time,n=s-e;if(n<=0)return i;const a=n/t,o=[];let l=0;for(let h=0;h<t;h++){const c=h===t-1?s+1:e+(h+1)*a;let d=null;for(;l<i.length&&i[l].time<c;){const f=i[l];d===null?d={time:f.time,open:f.open,high:f.high,low:f.low,close:f.close}:(f.high>d.high&&(d.high=f.high),f.low<d.low&&(d.low=f.low),d.close=f.close),l++}d!==null&&o.push(d)}return o}const kr=8;function va(i,t){return Math.abs(i-t.left)<=kr?{gesture:"resize-left",snapToCenter:!1}:Math.abs(i-t.right)<=kr?{gesture:"resize-right",snapToCenter:!1}:i>t.left&&i<t.right?{gesture:"pan",snapToCenter:!1}:{gesture:"pan",snapToCenter:!0}}function ah(i){const{startVisible:t,deltaPx:e,pixelsPerTime:s,dataRange:n}=i,a=t.to-t.from,o=e/s;let l=t.from+o,h=t.to+o;return l<n.from&&(l=n.from,h=l+a),h>n.to&&(h=n.to,l=h-a),l<n.from&&(l=n.from),{from:l,to:h}}function oh(i){const{edge:t,startVisible:e,deltaPx:s,pixelsPerTime:n,dataRange:a,minSpan:o}=i,l=s/n;if(t==="left"){let d=e.from+l,f=e.to;return d<a.from&&(d=a.from),f-d<o&&(d=f-o),d<a.from&&(d=a.from,f=Math.min(a.to,d+o)),{from:d,to:f}}let h=e.from,c=e.to+l;return c>a.to&&(c=a.to),c-h<o&&(c=h+o),c>a.to&&(c=a.to,h=Math.max(a.from,c-o)),{from:h,to:c}}function lh(i){const{time:t,startVisible:e,xRange:s}=i,n=e.to-e.from;let a=t-n/2,o=a+n;return a<s.from&&(a=s.from,o=a+n),o>s.to&&(o=s.to,a=o-n),a<s.from&&(a=s.from),{from:a,to:o}}function hh(i){const{ctx:t,theme:e,mediaWidth:s,mediaHeight:n}=i;t.fillStyle=e.background,t.fillRect(0,0,s,n)}function ch(i,t,e=!0,s=1){if(t.length<2)return;const{ctx:n,timeScale:a,yScale:o,mediaHeight:l,theme:h}=i,c=s<1&&t.length>=2,d=c?t.length-2:t.length-1;if(e){const f=n.createLinearGradient(0,0,0,l);f.addColorStop(0,h.line.areaTopColor),f.addColorStop(1,h.line.areaBottomColor),n.beginPath();for(let m=0;m<=d;m++){const g=t[m],p=a.timeToX(g.time),b=o.valueToY(g.value);m===0?n.moveTo(p,b):n.lineTo(p,b)}if(n.lineTo(a.timeToX(t[d].time),l),n.lineTo(a.timeToX(t[0].time),l),n.closePath(),n.fillStyle=f,n.fill(),c){n.save(),n.globalAlpha=s,n.beginPath();const m=t[d],g=t[t.length-1],p=a.timeToX(m.time),b=a.timeToX(g.time);n.moveTo(p,o.valueToY(m.value)),n.lineTo(b,o.valueToY(g.value)),n.lineTo(b,l),n.lineTo(p,l),n.closePath(),n.fillStyle=f,n.fill(),n.restore()}}n.beginPath();for(let f=0;f<=d;f++){const m=t[f],g=a.timeToX(m.time),p=o.valueToY(m.value);f===0?n.moveTo(g,p):n.lineTo(g,p)}if(n.strokeStyle=h.line.color,n.lineWidth=h.line.width,n.stroke(),c){n.save(),n.globalAlpha=s,n.beginPath();const f=t[d],m=t[t.length-1];n.moveTo(a.timeToX(f.time),o.valueToY(f.value)),n.lineTo(a.timeToX(m.time),o.valueToY(m.value)),n.strokeStyle=h.line.color,n.lineWidth=h.line.width,n.stroke(),n.restore()}}function uh(i,t,e=1){if(t.length===0)return;const{ctx:s,timeScale:n,yScale:a,mediaHeight:o,theme:l}=i,h=Math.max(1,t.length>1?Math.abs(n.timeToX(t[1].time)-n.timeToX(t[0].time))*.8:2),c=e<1,d=t.length-1;s.fillStyle=l.line.color;for(let f=0;f<t.length;f++){const m=t[f],g=n.timeToX(m.time),p=a.valueToY(m.value),b=Math.max(1,o-p);c&&f===d?(s.save(),s.globalAlpha=e,s.fillRect(g-h/2,p,h,b),s.restore()):s.fillRect(g-h/2,p,h,b)}}function dh(i,t,e=1){if(t.length===0)return;const{ctx:s,timeScale:n,yScale:a,theme:o}=i,l=Math.max(1,t.length>1?Math.abs(n.timeToX(t[1].time)-n.timeToX(t[0].time))*.75:2),h=e<1,c=t.length-1;for(let d=0;d<t.length;d++){const f=t[d],m=f.close>=f.open?o.candlestick.up:o.candlestick.down,g=Dt(m.body),p=n.timeToX(f.time),b=a.valueToY(f.open),v=a.valueToY(f.close),S=a.valueToY(f.high),L=a.valueToY(f.low),y=h&&d===c;y&&(s.save(),s.globalAlpha=e),s.strokeStyle=m.wick,s.lineWidth=1,s.beginPath(),s.moveTo(p,S),s.lineTo(p,L),s.stroke();const M=Math.min(b,v),k=Math.max(1,Math.abs(v-b));s.fillStyle=g,s.fillRect(p-l/2,M,l,k),y&&s.restore()}}function fh(i,t,e){const s=Math.max(e.from,Math.min(e.to,t.from)),n=Math.max(e.from,Math.min(e.to,t.to)),a=i.timeToX(s),o=i.timeToX(n),l=Math.min(a,o),h=Math.max(a,o);return{left:l,right:h,width:Math.max(1,h-l)}}var Qt,U,Us,gt,te,$e,Ce,Te,pe,be,ai,Ri,Be,Ys,js,Ze,me,Le,es,se,is,fs,ss,si,ns,rs,as,os,qe,ls,H,Tn,At,ya,Ln,He,Di,un,Is,Sr,xa,wa,Ma,Cr,Tr,ui,Lr;class ka{constructor(t){w(this,H),w(this,Qt),w(this,U),w(this,Us),w(this,gt),w(this,te),w(this,$e),w(this,Ce),w(this,Te),w(this,pe),w(this,be),w(this,ai),w(this,Ri),w(this,Be,new Kr),w(this,Ys,new Jr),w(this,js,0),w(this,Ze,0),w(this,me,1),w(this,Le,null),w(this,es,!0),w(this,se,null),w(this,is,null),w(this,fs,-1),w(this,ss),w(this,si,null),w(this,ns),w(this,rs),w(this,as),w(this,os),w(this,qe),w(this,ls),u(this,Qt,t.container),u(this,gt,t.chart),u(this,ai,t.data),u(this,Ri,t.options??{}),window.getComputedStyle(r(this,Qt)).position==="static"&&(r(this,Qt).style.position="relative"),u(this,U,document.createElement("canvas")),r(this,U).style.position="absolute",r(this,U).style.left="0",r(this,U).style.top="0",r(this,U).style.height="100%",r(this,U).style.touchAction="none",r(this,Qt).appendChild(r(this,U));const e=r(this,U).getContext("2d",{alpha:!0});if(!e)throw new Error("NavigatorController: failed to acquire 2D context");u(this,Us,e),u(this,te,document.createElement("div")),r(this,te).dataset.chartNavigatorOverlay="",r(this,te).style.cssText="position:absolute;left:0;top:0;height:100%;pointer-events:none;",u(this,$e,document.createElement("div")),r(this,$e).style.cssText="position:absolute;left:0;top:0;bottom:0;",u(this,Ce,document.createElement("div")),r(this,Ce).style.cssText="position:absolute;top:0;bottom:0;",u(this,Te,document.createElement("div")),r(this,Te).style.cssText="position:absolute;top:0;bottom:0;box-sizing:border-box;",u(this,pe,Rr()),u(this,be,Rr()),r(this,te).append(r(this,$e),r(this,Ce),r(this,Te),r(this,pe),r(this,be)),r(this,Qt).appendChild(r(this,te)),u(this,ns,()=>C(this,H,He).call(this)),u(this,rs,()=>C(this,H,He).call(this)),r(this,gt).on("viewportChange",r(this,ns)),r(this,gt).on("overlayChange",r(this,rs)),u(this,as,n=>C(this,H,xa).call(this,n)),u(this,os,n=>C(this,H,wa).call(this,n)),u(this,qe,n=>C(this,H,Ma).call(this,n)),u(this,ls,()=>{r(this,si)===null&&(r(this,U).style.cursor="default")}),r(this,U).addEventListener("pointerdown",r(this,as)),r(this,U).addEventListener("pointermove",r(this,os)),r(this,U).addEventListener("pointerup",r(this,qe)),r(this,U).addEventListener("pointercancel",r(this,qe)),r(this,U).addEventListener("pointerleave",r(this,ls)),u(this,ss,new ResizeObserver(n=>C(this,H,ya).call(this,n[0]))),r(this,ss).observe(r(this,Qt)),C(this,H,Tn).call(this);const s=r(this,Qt).getBoundingClientRect();s.width>0&&s.height>0&&C(this,H,Ln).call(this,s.width,s.height),C(this,H,He).call(this)}setData(t){var e;const s=mh(t),n=(s==null?void 0:s.time)??null;if(n!==null&&r(this,is)!==null&&n!==r(this,is)){const a=((e=r(this,se))==null?void 0:e.current)??0;u(this,se,new Pi({initial:a,duration:Gs,easing:_r,lerp:(o,l,h)=>o+(l-o)*h})),r(this,se).setTarget(1)}u(this,is,n),u(this,fs,(s==null?void 0:s.seriesIndex)??-1),u(this,ai,t),C(this,H,He).call(this)}setOptions(t){u(this,Ri,t),C(this,H,Tn).call(this),C(this,H,He).call(this)}destroy(){r(this,gt).off("viewportChange",r(this,ns)),r(this,gt).off("overlayChange",r(this,rs)),r(this,U).removeEventListener("pointerdown",r(this,as)),r(this,U).removeEventListener("pointermove",r(this,os)),r(this,U).removeEventListener("pointerup",r(this,qe)),r(this,U).removeEventListener("pointercancel",r(this,qe)),r(this,U).removeEventListener("pointerleave",r(this,ls)),r(this,ss).disconnect(),r(this,Le)!==null&&(cancelAnimationFrame(r(this,Le)),u(this,Le,null)),r(this,U).remove(),r(this,te).remove()}get height(){return r(this,Ri).height??r(this,gt).getTheme().navigator.height}}Qt=new WeakMap,U=new WeakMap,Us=new WeakMap,gt=new WeakMap,te=new WeakMap,$e=new WeakMap,Ce=new WeakMap,Te=new WeakMap,pe=new WeakMap,be=new WeakMap,ai=new WeakMap,Ri=new WeakMap,Be=new WeakMap,Ys=new WeakMap,js=new WeakMap,Ze=new WeakMap,me=new WeakMap,Le=new WeakMap,es=new WeakMap,se=new WeakMap,is=new WeakMap,fs=new WeakMap,ss=new WeakMap,si=new WeakMap,ns=new WeakMap,rs=new WeakMap,as=new WeakMap,os=new WeakMap,qe=new WeakMap,ls=new WeakMap,H=new WeakSet,Tn=function(){const i=r(this,Ri).height;i!==void 0&&(r(this,Qt).style.height=`${i}px`)},At=function(){return Math.max(0,r(this,js)-r(this,gt).yAxisWidth)},ya=function(i){var t;if(!i)return;const e=(t=i.contentBoxSize)==null?void 0:t[0],s=(e==null?void 0:e.inlineSize)??i.contentRect.width,n=(e==null?void 0:e.blockSize)??i.contentRect.height;s<=0||n<=0||(C(this,H,Ln).call(this,s,n),C(this,H,He).call(this))},Ln=function(i,t){const e=window.devicePixelRatio||1;u(this,js,i),u(this,Ze,t),u(this,me,e);const s=r(this,H,At);r(this,U).width=Math.round(s*e),r(this,U).height=Math.round(t*e),r(this,U).style.width=`${s}px`,r(this,te).style.width=`${s}px`},He=function(){r(this,es)&&r(this,Le)!==null||(u(this,es,!0),r(this,Le)===null&&u(this,Le,requestAnimationFrame(()=>{u(this,Le,null),u(this,es,!1),C(this,H,Cr).call(this)})))},Di=function(i){const t=r(this,U).getBoundingClientRect();return i.clientX-t.left},un=function(){const i=C(this,H,ui).call(this),t=C(this,H,Lr).call(this);return r(this,Be).update(i,r(this,H,At),r(this,me)),r(this,Ys).update(t,r(this,Ze),r(this,me)),{xRange:i,yRange:t}},Is=function(){return C(this,H,un).call(this),fh(r(this,Be),r(this,gt).getVisibleRange(),C(this,H,ui).call(this))},Sr=function(){const i=C(this,H,ui).call(this),t=i.to-i.from;return t<=0||r(this,H,At)<=0?0:r(this,H,At)/t},xa=function(i){if(i.button!==void 0&&i.button!==0)return;const t=C(this,H,Di).call(this,i),e=C(this,H,ui).call(this);if(e.to<=e.from)return;const s=C(this,H,Is).call(this),n=va(t,s),a=C(this,H,Sr).call(this);if(a===0)return;let o=r(this,gt).getVisibleRange();if(n.snapToCenter){const l=r(this,Be).xToTime(t),h=lh({time:l,startVisible:o,xRange:e});r(this,gt).setVisibleRange(h),o=h}u(this,si,{pointerId:i.pointerId,gesture:n.gesture,startX:t,startVisible:o,pixelsPerTime:a}),r(this,U).setPointerCapture(i.pointerId),r(this,U).style.cursor=Sa(n.gesture,!0),i.preventDefault()},wa=function(i){const t=r(this,si);if(t===null){r(this,U).style.cursor=Ir(C(this,H,Di).call(this,i),C(this,H,Is).call(this));return}if(i.pointerId!==t.pointerId)return;const e=C(this,H,Di).call(this,i)-t.startX,s=C(this,H,ui).call(this);let n;if(t.gesture==="pan")n=ah({startVisible:t.startVisible,deltaPx:e,pixelsPerTime:t.pixelsPerTime,dataRange:s});else{const a=t.gesture==="resize-left"?"left":"right";n=oh({edge:a,startVisible:t.startVisible,deltaPx:e,pixelsPerTime:t.pixelsPerTime,dataRange:s,minSpan:2*r(this,gt).getDataInterval()})}r(this,gt).setVisibleRange(n)},Ma=function(i){const t=r(this,si);t===null||i.pointerId!==t.pointerId||(u(this,si,null),r(this,U).hasPointerCapture(i.pointerId)&&r(this,U).releasePointerCapture(i.pointerId),r(this,U).style.cursor=Ir(C(this,H,Di).call(this,i),C(this,H,Is).call(this)))},Cr=function(){if(r(this,H,At)<=0||r(this,Ze)<=0)return;const i=r(this,gt).getTheme().navigator,{xRange:t}=C(this,H,un).call(this);r(this,U).width=Math.round(r(this,H,At)*r(this,me)),r(this,U).height=Math.round(r(this,Ze)*r(this,me)),r(this,U).style.width=`${r(this,H,At)}px`,r(this,te).style.width=`${r(this,H,At)}px`;const e=r(this,Us),s=r(this,U).width,n=r(this,U).height;e.save(),e.clearRect(0,0,s,n),e.scale(r(this,me),r(this,me));const a={ctx:e,timeScale:r(this,Be),yScale:r(this,Ys),mediaWidth:r(this,H,At),mediaHeight:r(this,Ze),theme:i};r(this,U).style.boxShadow=`inset 0 1px 0 ${i.borderColor}, inset 0 -1px 0 ${i.borderColor}`,hh(a);let o=1;r(this,se)!==null&&(r(this,se).tick(performance.now()),o=r(this,se).current,r(this,se).animating?C(this,H,He).call(this):u(this,se,null));const l=Math.max(1,Math.round(r(this,H,At))),h=r(this,ai);if(h.type==="candlestick")dh(a,rh(h.points,l),o);else{const c=dn(h),d=c.length===1,f=r(this,fs)>=0?r(this,fs):c.length-1;for(let m=0;m<c.length;m++){const g=nh(c[m],l),p=m===f?o:1;h.type==="bar"?uh(a,g,p):ch(a,g,d,p)}}e.restore(),C(this,H,Tr).call(this,i,t)},Tr=function(i,t){if(t.to<=t.from)return;const e=r(this,gt).getVisibleRange(),s=Math.max(t.from,Math.min(t.to,e.from)),n=Math.max(t.from,Math.min(t.to,e.to)),a=r(this,Be).timeToX(s),o=r(this,Be).timeToX(n),l=Math.min(a,o),h=Math.max(a,o),c=Math.max(1,h-l);r(this,$e).style.width=`${l}px`,r(this,$e).style.background=i.mask.fill,r(this,$e).style.display=l>0?"block":"none";const d=Math.max(0,r(this,H,At)-(l+c));r(this,Ce).style.left=`${l+c}px`,r(this,Ce).style.width=`${d}px`,r(this,Ce).style.background=i.mask.fill,r(this,Ce).style.display=d>0?"block":"none",r(this,Te).style.left=`${l}px`,r(this,Te).style.width=`${c}px`,r(this,Te).style.background=i.window.fill,r(this,Te).style.border=i.window.borderWidth>0?`${i.window.borderWidth}px solid ${i.window.border}`:"none";const f=i.handle.width,m=Math.max(1,f/2),g=r(this,gt).getTheme().background;r(this,pe).style.left=`${l-f/2}px`,r(this,pe).style.width=`${f}px`,r(this,pe).style.background=i.handle.color,r(this,pe).style.borderRadius=`${m}px`,r(this,be).style.left=`${l+c-f/2}px`,r(this,be).style.width=`${f}px`,r(this,be).style.background=i.handle.color,r(this,be).style.borderRadius=`${m}px`;for(const p of r(this,pe).children)p.style.background=g;for(const p of r(this,be).children)p.style.background=g},ui=function(){const i=r(this,ai);let t=Number.POSITIVE_INFINITY,e=Number.NEGATIVE_INFINITY,s=0;if(i.type==="candlestick")s=i.points.length,s>0&&(t=i.points[0].time,e=i.points[s-1].time);else for(const a of dn(i))a.length!==0&&(s+=a.length,a[0].time<t&&(t=a[0].time),a[a.length-1].time>e&&(e=a[a.length-1].time));if(s>=2&&e>t)return{from:t,to:e};if(s===1)return{...r(this,gt).getVisibleRange()};const n=r(this,gt).getDataRange();return n&&n.to>n.from?n:{...r(this,gt).getVisibleRange()}},Lr=function(){const i=r(this,ai);let t=1/0,e=-1/0;if(i.type==="candlestick")for(const n of i.points)n.low<t&&(t=n.low),n.high>e&&(e=n.high);else for(const n of dn(i))for(const a of n)a.value<t&&(t=a.value),a.value>e&&(e=a.value);if(!Number.isFinite(t)||!Number.isFinite(e))return{min:0,max:1};if(t===e){const n=Math.abs(t)*.05||1;return{min:t-n,max:e+n}}const s=(e-t)*.2;return{min:t-s,max:e+s}};function dn(i){return"series"in i?i.series:[i.points]}function mh(i){if(i.type==="candlestick"){const n=i.points.length;return n===0?null:{time:i.points[n-1].time,seriesIndex:-1}}const t="series"in i?i.series:[i.points];let e=null,s=-1;for(let n=0;n<t.length;n++){const a=t[n];if(a.length===0)continue;const o=a[a.length-1].time;(e===null||o>e)&&(e=o,s=n)}return e===null?null:{time:e,seriesIndex:s}}function Sa(i,t){return i==="resize-left"||i==="resize-right"?"ew-resize":t?"grabbing":"grab"}function Ir(i,t){return Sa(gh(i,t),!1)}function gh(i,t){return va(i,t).gesture}function Rr(){const i=document.createElement("div");i.style.cssText="position:absolute;top:0;bottom:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;";for(let t=0;t<3;t++){const e=document.createElement("div");e.style.cssText="width:2px;height:2px;border-radius:50%;flex-shrink:0;",i.appendChild(e)}return i}const In=new WeakMap;function Ca(i,t){var e;return(e=In.get(i))==null?void 0:e.get(t)}function Ta(i,t,e){let s=In.get(i);s||(s=new Map,In.set(i,s)),s.set(t,e)}function Wr(i){return"close"in i?i.close:i.value}function La(i,t){if(t==="none"||i.length<=1)return i;const e=[...i];return e.sort((s,n)=>{const a=Wr(s.data),o=Wr(n.data);return t==="asc"?a-o:o-a}),e}function _s(i){const t=Object.freeze({...i.data}),e={id:i.id,seriesId:i.seriesId,layerIndex:i.layerIndex,label:i.label,data:t,color:i.color};return Object.freeze(e)}function _n(i,t){const e=t.sort??"none",s=i.getOverlayVersion(),n=Ca(i,t.cacheKey);if(n&&n.version===s&&n.time===t.time&&n.sort===e)return n.data;const a=[];for(const l of i.getSeriesIds()){if(!i.isSeriesVisible(l))continue;const h=i.getSeriesLabel(l);if(i.getSeriesLayers(l)!==null){const d=i.getLayerSnapshots(l,t.time);if(!d)continue;for(const f of d)a.push(_s({id:`${l}_layer${f.layerIndex}`,seriesId:l,layerIndex:f.layerIndex,label:h,data:{time:f.time,value:f.value},color:f.color}));continue}const c=i.getDataAtTime(l,t.time);c&&a.push(_s({id:l,seriesId:l,label:h,data:c,color:i.getSeriesColor(l)??"#888"}))}const o=Object.freeze(La(a,e));return Ta(i,t.cacheKey,{version:s,time:t.time,sort:e,data:o}),o}function Ia(i,t){const e=t.sort??"none",s=i.getOverlayVersion(),n=Ca(i,t.cacheKey);if(n&&n.version===s&&n.time===null&&n.sort===e)return n.data;const a=[];for(const l of i.getSeriesIds()){if(!i.isSeriesVisible(l))continue;const h=i.getSeriesLabel(l),c=i.getLayerLastSnapshots(l);if(c){for(const f of c)a.push(_s({id:`${l}_layer${f.layerIndex}`,seriesId:l,layerIndex:f.layerIndex,label:h,data:{time:f.time,value:f.value},color:f.color}));continue}const d=i.getLastData(l);d&&a.push(_s({id:l,seriesId:l,label:h,data:d,color:i.getSeriesColor(l)??"#888"}))}const o=Object.freeze(La(a,e));return Ta(i,t.cacheKey,{version:s,time:null,sort:e,data:o}),o}const ph=at({name:"Andromeda",description:"Deep space purples and cosmic blues",background:"#23262e",grid:{color:"rgba(90,88,100,0.2)"},candlestick:{up:{body:j("#96e072"),wick:"#96e072"},down:{body:j("#ee5d43"),wick:"#ee5d43"}},line:{color:"#00e8c6"},seriesColors:["#00e8c6","#f39c12","#96e072","#c74ded","#ee5d43","#ffe66d","#00e8c6","#ee5d43","#7cb7ff","#c74ded"],bands:{upper:"#7cb7ff",lower:"#c74ded"},crosshair:{color:"rgba(102,94,110,0.7)",labelBackground:"#2e3038"},axis:{textColor:"#665e6e"},tooltip:{background:"rgba(35,38,46,0.92)",textColor:"#d5ced9",borderColor:"rgba(50,48,56,0.6)"},typography:{fontFamily:aa},fontUrl:oa}),bh=at({name:"Ayu Mirage",description:"Warm dark with amber accents",background:"#1f2430",grid:{color:"rgba(82,90,108,0.2)"},candlestick:{up:{body:j("#bae67e"),wick:"#bae67e"},down:{body:j("#f27983"),wick:"#f27983"}},line:{color:"#73d0ff"},seriesColors:["#73d0ff","#ffad66","#bae67e","#d4bfff","#f27983","#ffd580","#95e6cb","#f28779","#5ccfe6","#d4bfff"],bands:{upper:"#5ccfe6",lower:"#f28779"},crosshair:{color:"rgba(92,103,115,0.7)",labelBackground:"#2a3040"},axis:{textColor:"#5c6773"},tooltip:{background:"rgba(31,36,48,0.92)",textColor:"#cbccc6",borderColor:"rgba(42,48,60,0.6)"},typography:{fontFamily:Js},fontUrl:Hn}),vh=at({name:"Dracula",description:"Classic dark with vibrant highlights",background:"#282a36",grid:{color:"rgba(108,113,140,0.2)"},candlestick:{up:{body:j("#50fa7b"),wick:"#50fa7b"},down:{body:j("#ff5555"),wick:"#ff5555"}},line:{color:"#bd93f9"},seriesColors:["#bd93f9","#8be9fd","#50fa7b","#ff79c6","#ffb86c","#f1fa8c","#ff5555","#6272a4","#ff5555","#ff79c6"],bands:{upper:"#8be9fd",lower:"#ff79c6"},crosshair:{color:"rgba(98,114,164,0.7)",labelBackground:"#44475a"},axis:{textColor:"#a0b0d0"},tooltip:{background:"rgba(40,42,54,0.92)",textColor:"#f8f8f2",borderColor:"rgba(68,71,90,0.6)"},typography:{fontFamily:$n},fontUrl:On}),yh=at({name:"GitHub Light",description:"Clean and familiar, GitHub-inspired",background:"#fafbfc",chartGradient:["#ffffff","#fafbfc"],grid:{color:"rgba(208,215,222,0.4)"},candlestick:{up:{body:j("#2da44e"),wick:"#2da44e"},down:{body:j("#cf222e"),wick:"#cf222e"}},line:{color:"#0969da",areaTopColor:"rgba(9,105,218,0.05)",areaBottomColor:"rgba(9,105,218,0.005)"},seriesColors:["#0969da","#c4820e","#2da44e","#8250df","#cf222e","#c4820e","#0550ae","#cf222e","#2da44e","#8250df"],bands:{upper:"#0550ae",lower:"#cf222e"},crosshair:{color:"rgba(80,90,100,0.5)",labelBackground:"#f0f3f6"},axis:{textColor:"#8b949e"},tooltip:{background:"rgba(250,251,252,0.95)",textColor:"#24292f",borderColor:"rgba(216,222,228,0.5)"},typography:{fontFamily:Xn},fontUrl:Nn}),xh=at({name:"Gruvbox",description:"Retro warm with earthy tones",background:"#282828",grid:{color:"rgba(100,94,90,0.2)"},candlestick:{up:{body:j("#b8bb26"),wick:"#b8bb26"},down:{body:j("#fb4934"),wick:"#fb4934"}},line:{color:"#83a598"},seriesColors:["#83a598","#fe8019","#b8bb26","#d3869b","#fb4934","#fabd2f","#8ec07c","#fb4934","#458588","#d3869b"],bands:{upper:"#83a598",lower:"#d3869b"},crosshair:{color:"rgba(146,131,116,0.7)",labelBackground:"#3c3836"},axis:{textColor:"#928374"},tooltip:{background:"rgba(40,40,40,0.92)",textColor:"#ebdbb2",borderColor:"rgba(60,56,54,0.6)"},typography:{fontFamily:Zs},fontUrl:qs}),wh={name:"Handwritten",description:"Sketch-style with a personal touch",fontUrl:eh,dark:!1,theme:{background:"#fdf5e6",chartGradient:["#fef6e3","#fdf5e6"],typography:{fontFamily:th,fontSize:15},grid:{color:"rgba(180,170,150,0.2)",style:"solid"},candlestick:{up:{body:j("#7a9a5e"),wick:"#7a9a5e"},down:{body:j("#b07060"),wick:"#b07060"}},line:{color:"#6a8fa0",width:1,areaTopColor:"rgba(106,143,160,0.08)",areaBottomColor:"rgba(106,143,160,0.01)"},seriesColors:["#6a8fa0","#c09050","#7a9a5e","#8a7098","#b07060","#a09030","#508878","#a06878","#6888a0","#8870a0"],bands:{upper:"#6888a0",lower:"#a06878"},crosshair:{color:"rgba(160,152,128,0.3)",labelBackground:"#f5edd8",labelTextColor:"#5c5040"},axis:{fontSize:13,textColor:"#a09880"},yLabel:{fontSize:15,upBackground:"#7a9a5e",downBackground:"#b07060",neutralBackground:"#e8dcc8",textColor:"#fdf5e6"},tooltip:{fontSize:14,background:"rgba(253,245,230,0.95)",textColor:"#5c5040",borderColor:"rgba(180,170,150,0.3)"},navigator:{height:48,background:"transparent",borderColor:"rgba(106,143,160,0.22)",line:{color:"#92806c",width:1,areaTopColor:"rgba(146,128,108,0.18)",areaBottomColor:"rgba(146,128,108,0)"},candlestick:{up:{body:j("#7a9a5e"),wick:"#7a9a5e"},down:{body:j("#b07060"),wick:"#b07060"}},window:{fill:"transparent",border:"transparent",borderWidth:0},handle:{color:"rgba(0,0,0,0.30)",width:6},mask:{fill:"rgba(253,245,230,0.78)"}}}},Mh="'Silkscreen', cursive",kh="https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap",Sh=at({name:"Matrix",background:"#000000",candlestick:{up:{body:j("#00ff41"),wick:"#00ff41"},down:{body:j("#00802a"),wick:"#00802a"}},line:{color:"#00ff41"},seriesColors:["#00ff41","#00cc33","#00992a","#33ff66","#66ff88","#00e639","#00b830","#4dff78","#00ff41","#00cc33"],bands:{upper:"#33ff66",lower:"#00802a"},grid:{color:"rgba(0,255,65,0.08)"},axis:{textColor:"#00cc33"},crosshair:{color:"rgba(0,255,65,0.3)",labelBackground:"#0a1a0a"},tooltip:{background:"rgba(0,10,0,0.95)",textColor:"#00ff41",borderColor:"rgba(0,255,65,0.2)"},typography:{fontFamily:Mh},fontUrl:kh,chartGradient:["#010a01","#000000"]}),Ch=at({name:"Lavender Mist",background:"#f5f0f4",candlestick:{up:{body:j("#6b8e5e"),wick:"#6b8e5e"},down:{body:j("#b85468"),wick:"#b85468"}},line:{color:"#7c6bc4"},seriesColors:["#7c6bc4","#d4885a","#6b8e5e","#c46b8e","#b85468","#8e7a4e","#4e8e8a","#b85468","#7c6bc4","#c46b8e"],bands:{upper:"#4e8e8a",lower:"#b85468"},grid:{color:"rgba(150,130,155,0.3)",style:"dashed"},axis:{textColor:"#9a88a0"},crosshair:{color:"rgba(80,60,90,0.45)",labelBackground:"#ebe4e8"},tooltip:{background:"rgba(245,240,244,0.95)",textColor:"#3a3050",borderColor:"rgba(150,130,155,0.25)"},typography:{fontFamily:Xn},fontUrl:Nn,chartGradient:["#f8f4f7","#f5f0f4"]}),Th=at({name:"Love",description:"Soft romantic pinks and roses",background:"#fef7f8",chartGradient:["#fffafb","#fef7f8"],grid:{color:"rgba(200,160,175,0.25)",style:"dotted"},candlestick:{up:{body:j("#6a9a6e"),wick:"#6a9a6e"},down:{body:j("#c45070"),wick:"#c45070"}},line:{color:"#a05080"},seriesColors:["#a05080","#d08850","#6a9a6e","#7868a8","#c45070","#c89040","#508890","#c45070","#a05080","#7868a8"],bands:{upper:"#508890",lower:"#c45070"},crosshair:{color:"rgba(120,70,90,0.5)",labelBackground:"#f0dce2"},axis:{textColor:"#b08898"},tooltip:{background:"rgba(253,242,244,0.95)",textColor:"#4a3040",borderColor:"rgba(200,160,175,0.25)"},typography:{fontFamily:Js},fontUrl:Hn}),Lh=at({name:"Material Palenight",description:"Material Design in moonlit hues",background:"#292d3e",grid:{color:"rgba(95,99,120,0.2)"},candlestick:{up:{body:j("#c3e88d"),wick:"#c3e88d"},down:{body:j("#f07178"),wick:"#f07178"}},line:{color:"#82aaff"},seriesColors:["#82aaff","#f78c6c","#c3e88d","#c792ea","#f07178","#ffcb6b","#89ddff","#ff5370","#82aaff","#c792ea"],bands:{upper:"#89ddff",lower:"#f07178"},crosshair:{color:"rgba(103,110,149,0.7)",labelBackground:"#34324a"},axis:{textColor:"#676e95"},tooltip:{background:"rgba(41,45,62,0.92)",textColor:"#a6accd",borderColor:"rgba(55,59,75,0.6)"},typography:{fontFamily:aa},fontUrl:oa}),Ih="'Silkscreen', cursive",Rh="https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap",Wh=at({name:"Monochrome",description:"Pure black and white, pixel font",background:"#ffffff",chartGradient:["#ffffff","#fafafa"],grid:{color:"rgba(0,0,0,0.04)",style:"solid"},candlestick:{up:{body:j("#111111"),wick:"#111111"},down:{body:j("#bbbbbb"),wick:"#bbbbbb"}},line:{color:"#111111"},seriesColors:["#111111","#888888","#bbbbbb","#555555","#999999","#333333","#aaaaaa","#666666","#cccccc","#444444"],bands:{upper:"#555555",lower:"#bbbbbb"},crosshair:{color:"rgba(0,0,0,0.35)",labelBackground:"#f0f0f0"},axis:{textColor:"#b0b0b0"},tooltip:{fontSize:9,background:"rgba(255,255,255,0.97)",textColor:"#222222",borderColor:"rgba(0,0,0,0.04)"},typography:{fontFamily:Ih},fontUrl:Rh}),Ah=at({name:"Mint Breeze",background:"#f6f5ee",candlestick:{up:{body:j("#2e9070"),wick:"#2e9070"},down:{body:j("#d04848"),wick:"#d04848"}},line:{color:"#2a8a80"},seriesColors:["#2a8a80","#d0884a","#2e9070","#7a68b0","#d04848","#a09040","#3a7a9a","#d04848","#2a8a80","#7a68b0"],bands:{upper:"#3a7a9a",lower:"#d04848"},grid:{color:"rgba(100,150,140,0.1)"},axis:{textColor:"#80a098"},crosshair:{color:"rgba(55,80,70,0.45)",labelBackground:"#ece8de"},tooltip:{background:"rgba(246,245,238,0.95)",textColor:"#2a3530",borderColor:"rgba(130,140,115,0.2)"},typography:{fontFamily:Jl},fontUrl:Ql,chartGradient:["#f8f7f0","#f6f5ee"]}),Ph=at({name:"Monokai Pro",description:"Bold syntax colors on dark gray",background:"#2d2a2e",grid:{color:"rgba(104,100,102,0.2)"},candlestick:{up:{body:j("#8ab862"),wick:"#8ab862"},down:{body:j("#d05470"),wick:"#d05470"}},line:{color:"#62b8c8"},seriesColors:["#62b8c8","#d08050","#8ab862","#9080c8","#d05470","#d0b850","#62b8c8","#d05470","#8ab862","#9080c8"],bands:{upper:"#62b8c8",lower:"#d05470"},crosshair:{color:"rgba(114,112,114,0.7)",labelBackground:"#403e42"},axis:{textColor:"#727072"},tooltip:{background:"rgba(45,42,46,0.92)",textColor:"#fcfcfa",borderColor:"rgba(64,60,62,0.6)"},typography:{fontFamily:$n},fontUrl:On}),Fh=at({name:"Night Owl",description:"Crafted for late-night coding",background:"#011627",grid:{color:"rgba(71,92,118,0.2)"},candlestick:{up:{body:j("#7ec699"),wick:"#7ec699"},down:{body:j("#e06c75"),wick:"#e06c75"}},line:{color:"#82aaff"},seriesColors:["#82aaff","#d49a6a","#7ec699","#b48ead","#e06c75","#d4b568","#5fb3a1","#d47084","#6bc5e0","#b48ead"],bands:{upper:"#6bc5e0",lower:"#d47084"},crosshair:{color:"rgba(99,119,119,0.7)",labelBackground:"#1d3b53"},axis:{textColor:"#4d5a6c"},tooltip:{background:"rgba(1,22,39,0.92)",textColor:"#d6deeb",borderColor:"rgba(31,52,72,0.6)"},typography:{fontFamily:Zs},fontUrl:qs}),Bh=at({name:"One Dark Pro",description:"Atom editor's iconic dark palette",background:"#282c34",grid:{color:"rgba(99,104,116,0.2)"},candlestick:{up:{body:j("#98c379"),wick:"#98c379"},down:{body:j("#e06c75"),wick:"#e06c75"}},line:{color:"#61afef"},seriesColors:["#61afef","#e5c07b","#98c379","#c678dd","#e06c75","#56b6c2","#d19a66","#be5046","#61afef","#c678dd"],bands:{upper:"#56b6c2",lower:"#c678dd"},crosshair:{color:"rgba(99,110,123,0.7)",labelBackground:"#3e4451"},axis:{textColor:"#5c6370"},tooltip:{background:"rgba(40,44,52,0.92)",textColor:"#abb2bf",borderColor:"rgba(59,64,72,0.6)"},typography:{fontFamily:Zs},fontUrl:qs}),Dh=at({name:"Panda",description:"Playful neons on charcoal",background:"#292a2b",grid:{color:"rgba(98,98,100,0.2)"},candlestick:{up:{body:j("#19f9d8"),wick:"#19f9d8"},down:{body:j("#ff75b5"),wick:"#ff75b5"}},line:{color:"#6fc1ff"},seriesColors:["#6fc1ff","#ffb86c","#19f9d8","#b084eb","#ff75b5","#ffcc95","#19f9d8","#ff4b82","#45a9f9","#b084eb"],bands:{upper:"#45a9f9",lower:"#ff75b5"},crosshair:{color:"rgba(117,117,117,0.7)",labelBackground:"#3a3a3c"},axis:{textColor:"#757575"},tooltip:{background:"rgba(41,42,43,0.92)",textColor:"#e6e6e6",borderColor:"rgba(58,58,60,0.6)"},typography:{fontFamily:$n},fontUrl:On}),zh=at({name:"Peach Cream",background:"#fef6f0",candlestick:{up:{body:j("#5a9a68"),wick:"#5a9a68"},down:{body:j("#d06848"),wick:"#d06848"}},line:{color:"#d07040"},seriesColors:["#d07040","#5a9a68","#8a6aaa","#c0884a","#d06848","#4a8a9a","#9a7a4a","#d06848","#d07040","#8a6aaa"],bands:{upper:"#4a8a9a",lower:"#d06848"},grid:{color:"rgba(180,140,120,0.12)"},axis:{textColor:"#b09080"},crosshair:{color:"rgba(100,70,55,0.45)",labelBackground:"#f0e4d8"},tooltip:{background:"rgba(254,246,240,0.95)",textColor:"#4a3028",borderColor:"rgba(180,140,120,0.25)"},typography:{fontFamily:Xn},fontUrl:Nn,chartGradient:["#fff8f2","#fef6f0"]}),Eh=at({name:"Quiet Light",description:"Subdued and easy on the eyes",background:"#f5f5f5",chartGradient:["#fdfdfd","#f5f5f5"],grid:{color:"rgba(200,200,200,0.4)"},candlestick:{up:{body:j("#448c27"),wick:"#448c27"},down:{body:j("#aa3731"),wick:"#aa3731"}},line:{color:"#4b69c6"},seriesColors:["#4b69c6","#c47820","#448c27","#7a3e9d","#aa3731","#c47820","#2d8fa1","#aa3731","#448c27","#7a3e9d"],bands:{upper:"#2d8fa1",lower:"#aa3731"},crosshair:{color:"rgba(80,80,80,0.5)",labelBackground:"#e8e8e8"},axis:{textColor:"#aaaaaa"},tooltip:{background:"rgba(245,245,245,0.95)",textColor:"#333333",borderColor:"rgba(200,200,200,0.5)"},typography:{fontFamily:Zl},fontUrl:ql}),Vh=at({name:"Rosé Pine Dawn",description:"Dawn-inspired warm neutrals",background:"#faf4ed",grid:{color:"rgba(152,147,165,0.2)"},candlestick:{up:{body:j("#56949f"),wick:"#56949f"},down:{body:j("#b4637a"),wick:"#b4637a"}},line:{color:"#907aa9"},seriesColors:["#907aa9","#ea9d34","#56949f","#d7827e","#b4637a","#ea9d34","#286983","#b4637a","#907aa9","#d7827e"],bands:{upper:"#286983",lower:"#b4637a"},crosshair:{color:"rgba(80,72,98,0.5)",labelBackground:"#f2e9e1"},axis:{textColor:"#9893a5"},tooltip:{background:"rgba(250,244,237,0.95)",textColor:"#575279",borderColor:"rgba(152,147,165,0.2)"},typography:{fontFamily:la},fontUrl:ha}),Yh=at({name:"Sand Dune",background:"#f4f0e8",candlestick:{up:{body:j("#5a8a50"),wick:"#5a8a50"},down:{body:j("#b85040"),wick:"#b85040"}},line:{color:"#8a6a3a"},seriesColors:["#8a6a3a","#b87a40","#5a8a50","#7a5a70","#b85040","#a09030","#4a7a7a","#b85040","#8a6a3a","#7a5a70"],bands:{upper:"#4a7a7a",lower:"#b85040"},grid:{color:"rgba(150,130,100,0.15)"},axis:{textColor:"#9a8a70"},crosshair:{color:"rgba(85,65,45,0.45)",labelBackground:"#e8e0d0"},tooltip:{background:"rgba(244,240,232,0.95)",textColor:"#3a3020",borderColor:"rgba(150,130,100,0.3)"},typography:{fontFamily:la},fontUrl:ha,chartGradient:["#f8f4ec","#f4f0e8"]}),jh=at({name:"Solarized Light",description:"Ethan Schoonover's precision palette",background:"#fdf6e3",chartGradient:["#fef8e8","#fdf6e3"],grid:{color:"rgba(200,193,170,0.4)"},candlestick:{up:{body:j("#859900"),wick:"#859900"},down:{body:j("#dc322f"),wick:"#dc322f"}},line:{color:"#268bd2"},seriesColors:["#268bd2","#cb4b16","#859900","#6c71c4","#dc322f","#b58900","#2aa198","#d33682","#268bd2","#6c71c4"],bands:{upper:"#2aa198",lower:"#d33682"},crosshair:{color:"rgba(80,100,100,0.55)",labelBackground:"#eee8d5"},axis:{textColor:"#93a1a1"},tooltip:{background:"rgba(253,246,227,0.95)",textColor:"#586e75",borderColor:"rgba(238,232,213,0.6)"},typography:{fontFamily:Zs},fontUrl:qs});function bs(i){const{x:t,y:e,chartWidth:s,chartHeight:n,tooltipWidth:a,tooltipHeight:o,offsetX:l=16,offsetY:h=16}=i,c=t+l+a>s?t-l-a:t+l,d=e+h+o>n?e-h-o:e+h,f=Math.max(0,s-a),m=Math.max(0,n-o);return{left:Math.max(0,Math.min(f,c)),top:Math.max(0,Math.min(m,d))}}const Si=W.createContext(null);function wt(){const i=W.useContext(Si);if(!i)throw new Error("useChartInstance must be used within <ChartContainer>");return i}function Ra({data:i,options:t,id:e}){var o;const s=wt(),n=W.useRef(null),a=W.useRef([]);return W.useLayoutEffect(()=>{const l=s.addSeries("bar",{...t,layers:i.length,id:e});return n.current=l,a.current=new Array(i.length).fill(Fi),()=>{s.removeSeries(l),n.current=null,a.current=[]}},[s,i.length,e]),W.useLayoutEffect(()=>{const l=n.current;l&&s.batch(()=>{for(let h=0;h<i.length;h++)a.current[h]=Un({chart:s,id:l,data:i[h],prev:a.current[h]??Fi,layerIndex:h})})},[s,i]),W.useEffect(()=>{n.current&&t&&s.updateSeriesOptions(n.current,t)},[s,(o=t==null?void 0:t.colors)==null?void 0:o.join(","),t==null?void 0:t.barWidthRatio,t==null?void 0:t.stacking,t==null?void 0:t.entryAnimation,t==null?void 0:t.entryMs,t==null?void 0:t.smoothMs]),null}function Hh({data:i,options:t,id:e}){var o,l,h,c,d,f;const s=wt(),n=W.useRef(null),a=W.useRef(Fi);return W.useLayoutEffect(()=>{const m=s.addSeries("candlestick",{...t,id:e});return n.current=m,()=>{s.removeSeries(m),n.current=null,a.current=Fi}},[s,e]),W.useLayoutEffect(()=>{const m=n.current;m&&(a.current=Un({chart:s,id:m,data:i,prev:a.current}))},[s,i]),W.useEffect(()=>{n.current&&t&&s.updateSeriesOptions(n.current,t)},[s,Array.isArray((o=t==null?void 0:t.up)==null?void 0:o.body)?t.up.body.join(","):(l=t==null?void 0:t.up)==null?void 0:l.body,Array.isArray((h=t==null?void 0:t.down)==null?void 0:h.body)?t.down.body.join(","):(c=t==null?void 0:t.down)==null?void 0:c.body,(d=t==null?void 0:t.up)==null?void 0:d.wick,(f=t==null?void 0:t.down)==null?void 0:f.wick,t==null?void 0:t.bodyWidthRatio,t==null?void 0:t.entryAnimation,t==null?void 0:t.entryMs,t==null?void 0:t.smoothMs]),null}const Gn=W.createContext(null),Ci=Gn.Provider;function vs(){const i=W.useContext(Gn);if(!i)throw new Error("useTheme must be used within <ThemeProvider>");return i}function $h(){return W.useContext(Gn)}function Qs(i,t,e){const s=Array.isArray(t)?t:[t];return{subscribe:n=>{const a=n;for(const o of s)i.on(o,a);return()=>{for(const o of s)i.off(o,a)}},getSnapshot:e}}function Wa(i){const t=W.useMemo(()=>Qs(i,["viewportChange","dataUpdate","seriesChange"],()=>i.getVisibleRange()),[i]);return W.useSyncExternalStore(t.subscribe,t.getSnapshot)}function Aa(i){const t=W.useMemo(()=>Qs(i,["viewportChange","dataUpdate","seriesChange"],()=>i.getYRange()),[i]);return W.useSyncExternalStore(t.subscribe,t.getSnapshot)}function Oh(i,t){const e=W.useMemo(()=>{let s=i.getLastValue(t),n=s?i.yScale.valueToY(s.value):null;const a=()=>s,o=()=>{const l=i.getLastValue(t),h=l?i.yScale.valueToY(l.value):null;return(s==null?void 0:s.value)===(l==null?void 0:l.value)&&(s==null?void 0:s.isLive)===(l==null?void 0:l.isLive)&&n===h?!1:(s=l,n=h,!0)};return{subscribe:l=>{o();const h=()=>{o()&&l()};return i.on("dataUpdate",h),i.on("viewportChange",h),()=>{i.off("dataUpdate",h),i.off("viewportChange",h)}},getSnapshot:a}},[i,t]);return W.useSyncExternalStore(e.subscribe,e.getSnapshot)}function Xh(i,t){const e=W.useMemo(()=>Qs(i,"dataUpdate",()=>i.getPreviousClose(t)),[i,t]);return W.useSyncExternalStore(e.subscribe,e.getSnapshot)}function ys(i){const t=W.useMemo(()=>Qs(i,"crosshairMove",()=>i.getCrosshairPosition()),[i]);return W.useSyncExternalStore(t.subscribe,t.getSnapshot)}const Nh=(i,t)=>t==="volume"?Xe(i):jn(i);function Pa({sort:i="none",format:t=Nh,children:e}){const s=wt(),n=vs(),a=ys(s),[,o]=W.useState(0);W.useLayoutEffect(()=>{const m=()=>o(g=>g+1);return s.on("overlayChange",m),s.getSeriesIds().length>0&&o(g=>g+1),()=>{s.off("overlayChange",m)}},[s]);const l=Ia(s,{sort:i,cacheKey:"infobar-last"});let h=l,c=l.length===0?0:Math.max(...l.map(m=>m.data.time)),d=!1;if(a!==null){const m=_n(s,{time:a.time,sort:i,cacheKey:"infobar-hover"});m.length>0&&(h=m,c=a.time,d=!0)}if(h.length===0)return e?null:I.jsx("div",{"data-tooltip-legend":"","aria-hidden":"true",style:{display:"flex",alignItems:"center",gap:4,padding:"4px 8px",flexShrink:0,fontSize:n.typography.fontSize,fontFamily:n.typography.fontFamily,fontVariantNumeric:"tabular-nums",visibility:"hidden",pointerEvents:"none"},children:I.jsx("span",{children:" "})});if(e)return I.jsx("div",{"data-tooltip-legend":"",style:{display:"flex",alignItems:"center",flexShrink:0,fontFamily:n.typography.fontFamily,fontSize:n.typography.fontSize,fontVariantNumeric:"tabular-nums",opacity:d?1:.6,transition:"opacity 0.2s ease",pointerEvents:"none"},children:e({snapshots:h,time:c,isHover:d})});const f=s.getDataInterval();return I.jsxs("div",{"data-tooltip-legend":"",style:{display:"flex",alignItems:"center",gap:4,flexWrap:"wrap",padding:"4px 8px",flexShrink:0,fontSize:n.typography.fontSize,fontFamily:n.typography.fontFamily,fontVariantNumeric:"tabular-nums",opacity:d?1:.6,transition:"opacity 0.2s ease",pointerEvents:"none"},children:[I.jsx("span",{style:{color:n.axis.textColor,marginRight:2},children:gs(c,f)}),h.map(m=>{if("open"in m.data){const b=m.data,v=b.close>=b.open,S=Dt(v?n.candlestick.up.body:n.candlestick.down.body);return I.jsxs("span",{style:{display:"inline-flex",alignItems:"center",gap:4},children:[I.jsx(zi,{label:"O",display:t(b.open,"open"),color:S,dim:n.axis.textColor}),I.jsx(zi,{label:"H",display:t(b.high,"high"),color:S,dim:n.axis.textColor}),I.jsx(zi,{label:"L",display:t(b.low,"low"),color:S,dim:n.axis.textColor}),I.jsx(zi,{label:"C",display:t(b.close,"close"),color:S,dim:n.axis.textColor}),b.volume!=null&&I.jsx(zi,{label:"V",display:t(b.volume,"volume"),color:n.axis.textColor,dim:n.axis.textColor})]},m.id)}const p=m.data;return I.jsxs("span",{style:{display:"inline-flex",alignItems:"center",gap:3},children:[I.jsx("span",{style:{width:6,height:6,borderRadius:"50%",background:m.color,flexShrink:0}}),I.jsx("span",{style:{color:m.color,fontWeight:500},children:t(p.value,"value")})]},m.id)})]})}function zi({label:i,display:t,color:e,dim:s}){return I.jsxs(I.Fragment,{children:[I.jsx("span",{style:{color:s,opacity:.5,marginLeft:5},children:i}),I.jsx("span",{style:{color:e,fontWeight:500,marginLeft:2},children:t})]})}function Uh({chart:i,isolatedIdRef:t,setIsolatedId:e}){const s=[],n=i.getSeriesIds();for(const a of n){const o=i.getSeriesLayers(a);if(o){const l=i.getSeriesLabel(a);for(let h=0;h<o.length;h++){const c=`${a}_layer${h}`,d=i.isSeriesVisible(a)&&i.isLayerVisible(a,h);s.push(Ar({id:c,seriesId:a,layerIndex:h,label:l?`${l} ${h+1}`:`Series ${h+1}`,color:o[h].color,isDisabled:!d,chart:i,isolatedIdRef:t,setIsolatedId:e}))}}else{const l=i.getSeriesColor(a);if(!l)continue;const h=i.getSeriesLabel(a),c=i.isSeriesVisible(a);s.push(Ar({id:a,seriesId:a,layerIndex:void 0,label:h??"Series",color:l,isDisabled:!c,chart:i,isolatedIdRef:t,setIsolatedId:e}))}}return s}function Ar(i){const{id:t,seriesId:e,layerIndex:s,label:n,color:a,isDisabled:o,chart:l,isolatedIdRef:h,setIsolatedId:c}=i;return{id:t,seriesId:e,layerIndex:s,label:n,color:a,isDisabled:o,toggle:()=>{s!==void 0?l.setLayerVisible(e,s,!l.isLayerVisible(e,s)):l.setSeriesVisible(e,!l.isSeriesVisible(e))},isolate:()=>{if(h.current===t){l.batch(()=>{for(const m of l.getSeriesIds()){l.setSeriesVisible(m,!0);const g=l.getSeriesLayers(m);if(g)for(let p=0;p<g.length;p++)l.setLayerVisible(m,p,!0)}}),h.current=null,c(null);return}l.batch(()=>{for(const m of l.getSeriesIds()){const g=l.getSeriesLayers(m);if(g){l.setSeriesVisible(m,m===e);for(let p=0;p<g.length;p++)l.setLayerVisible(m,p,m===e&&p===s)}else l.setSeriesVisible(m,m===t)}}),h.current=t,c(t)}}}function Fa({items:i,position:t="bottom",mode:e="toggle",children:s}){const n=wt(),a=vs(),[o,l]=W.useState(null),[h,c]=W.useState(0),d=W.useRef(o);d.current=o,W.useLayoutEffect(()=>{const b=()=>c(S=>S+1),v=()=>l(null);return n.on("overlayChange",b),n.on("seriesChange",v),n.getSeriesIds().length>0&&c(S=>S+1),()=>{n.off("overlayChange",b),n.off("seriesChange",v)}},[n]);const f=W.useMemo(()=>Uh({chart:n,isolatedIdRef:d,setIsolatedId:l}),[n,o,h]),m=t==="right",g={display:"flex",flexDirection:m?"column":"row",flexWrap:"wrap",gap:m?6:14,padding:m?"8px 6px":"6px 8px",alignItems:m?"flex-start":"center",justifyContent:m?"flex-start":"center",fontFamily:a.typography.fontFamily,fontSize:a.axis.fontSize,color:a.axis.textColor,pointerEvents:"auto",flexShrink:0};if(s)return f.length===0?null:I.jsx("div",{"data-legend":t,style:g,children:s({items:f})});if(i)return i.length===0?null:I.jsx("div",{"data-legend":t,style:g,children:i.map((b,v)=>I.jsxs("div",{style:{display:"flex",alignItems:"center",gap:4,userSelect:"none"},children:[I.jsx("span",{style:{width:8,height:8,borderRadius:2,background:b.color,flexShrink:0}}),I.jsx("span",{style:{whiteSpace:"nowrap"},children:b.label})]},v))});if(f.length===0)return null;const p=b=>{e==="isolate"||e==="solo"?b.isolate():b.toggle()};return I.jsx("div",{"data-legend":t,style:g,children:f.map(b=>I.jsxs("div",{onClick:()=>p(b),style:{display:"flex",alignItems:"center",gap:4,cursor:"pointer",opacity:b.isDisabled?.35:1,transition:"opacity 0.15s ease",userSelect:"none"},children:[I.jsx("span",{style:{width:8,height:8,borderRadius:2,background:b.color,flexShrink:0}}),I.jsx("span",{style:{whiteSpace:"nowrap"},children:b.label})]},b.id))})}function Ba({data:i,height:t,style:e,className:s}){const n=wt(),a=vs(),o=W.useRef(null),l=W.useRef(null);W.useLayoutEffect(()=>{if(!o.current)return;const c=new ka({container:o.current,chart:n,data:i,options:t!==void 0?{height:t}:void 0});return l.current=c,()=>{c.destroy(),l.current=null}},[n]),W.useEffect(()=>{var c;(c=l.current)==null||c.setData(i)},[i]),W.useEffect(()=>{var c;(c=l.current)==null||c.setOptions(t!==void 0?{height:t}:{})},[t]);const h=t??a.navigator.height;return I.jsx("div",{ref:o,className:s,"data-chart-navigator":"",style:{position:"relative",width:"100%",height:h,flexShrink:0,...e}})}function _h(i,t){if(t!==void 0)return t;const e=i.getSeriesIdsByType("pie",{visibleOnly:!0});return e.length>0?e[0]:null}function Da({seriesId:i,mode:t,format:e,position:s,children:n}){const a=t??"both",o=s??"bottom",l=e??Xe,h=wt(),c=h.getTheme(),[,d]=W.useState(0);W.useLayoutEffect(()=>{const p=()=>d(b=>b+1);return h.on("overlayChange",p),h.getSeriesIds().length>0&&p(),()=>{h.off("overlayChange",p)}},[h]);const f=_h(h,i),m=f!==null?h.getSliceInfo(f):null;if(!m||m.length===0)return null;if(n)return I.jsx(I.Fragment,{children:n({slices:m,mode:a,format:l})});const g=o==="overlay";return I.jsx("div",{"data-chart-pie-legend":"","data-chart-pie-legend-position":o,style:{display:"flex",flexDirection:"column",gap:6,padding:g?"8px 12px":"6px 10px",fontFamily:c.typography.fontFamily,fontSize:c.typography.fontSize,color:c.tooltip.textColor,pointerEvents:"auto"},children:m.map((p,b)=>I.jsxs("div",{style:{display:"flex",alignItems:"center",gap:10},children:[I.jsx("span",{style:{width:10,height:10,borderRadius:"50%",background:p.color,flexShrink:0}}),I.jsx("span",{style:{flex:1,opacity:.8},children:p.label}),(a==="value"||a==="both")&&I.jsx("span",{style:{fontWeight:600,fontVariantNumeric:"tabular-nums",minWidth:a==="value"?40:void 0,textAlign:"right"},children:l(p.value)}),(a==="percent"||a==="both")&&I.jsxs("span",{style:{opacity:a==="percent"?1:.5,fontWeight:a==="percent"?600:400,fontSize:a==="percent"?c.typography.fontSize:c.axis.fontSize,fontVariantNumeric:"tabular-nums",minWidth:40,textAlign:"right"},children:[p.percent.toFixed(1),"%"]})]},b))})}const za=W.memo(function({children:t,sub:e,style:s}){const n=vs();return I.jsxs("div",{"data-chart-title":"",style:{display:"flex",alignItems:"baseline",gap:6,padding:"6px 8px 0",flexShrink:0,fontFamily:n.typography.fontFamily,fontSize:n.typography.fontSize,fontWeight:600,color:n.tooltip.textColor,pointerEvents:"none",...s},children:[t!=null&&t!==!1&&I.jsx("span",{children:t}),e!=null&&e!==!1&&I.jsx("span",{style:{fontWeight:400,color:n.axis.textColor,fontSize:n.axis.fontSize},children:e})]})},(i,t)=>i.children===t.children&&i.sub===t.sub&&i.style===t.style);function Gh(i){let t=null,e=null,s=null,n=null,a=null;const o=[],l=h=>{if(W.isValidElement(h)&&h.type===W.Fragment){W.Children.forEach(h.props.children,l);return}if(W.isValidElement(h)){if(h.type===za){t=h;return}if(h.type===Fa){e=h;return}if(h.type===Da){const c=h;c.props.position==="overlay"?o.push(h):s=c;return}if(h.type===Pa){n=h;return}if(h.type===Ba){a=h;return}}o.push(h)};return W.Children.forEach(i,l),{titleEl:t,legendEl:e,pieLegendEl:s,tooltipLegendEl:n,navigatorEl:a,overlay:o}}function Ea({children:i,theme:t,axis:e,padding:s,viewport:n,gradient:a=!0,interactive:o,grid:l,headerLayout:h="overlay",perf:c,animations:d,onEdgeReached:f,style:m,className:g}){var ws,Ms,ks,oi,li,hi;const p=W.useRef(c),b=W.useRef(f),v=$h(),S=t??v??void 0,L=W.useRef(null),y=W.useRef(null),[M,k]=W.useState(0),F=W.useRef([]);W.useLayoutEffect(()=>{if(!L.current)return;const st={};if(e&&(st.axis=e),S&&(st.theme=S),s&&(st.padding=s),n&&(st.viewport=n),o!==void 0&&(st.interactive=o),l!==void 0&&(st.grid=l),p.current!==void 0&&(st.perf=p.current),d!==void 0&&(st.animations=d),b.current&&(st.onEdgeReached=b.current),y.current=new ba(L.current,st),process.env.NODE_ENV!=="production"){const yt=performance.now(),It=F.current;for(It.push(yt);It.length>0&&yt-It[0]>1e3;)It.shift();It.length>3&&console.warn("[wick-charts] <ChartContainer> recreated the chart >3 times in the last second. The `animations` prop is init-only — wrap it in useMemo(() => ({...}), [deps]) so a stable reference identity prevents tear-down on every render.")}return k(yt=>yt+1),()=>{var yt;(yt=y.current)==null||yt.destroy(),y.current=null}},[d]),W.useEffect(()=>{y.current&&S&&y.current.setTheme(S)},[S]),W.useEffect(()=>{y.current&&e&&y.current.setAxis(e)},[(ws=e==null?void 0:e.y)==null?void 0:ws.width,(Ms=e==null?void 0:e.y)==null?void 0:Ms.min,(ks=e==null?void 0:e.y)==null?void 0:ks.max,(oi=e==null?void 0:e.y)==null?void 0:oi.visible,(li=e==null?void 0:e.x)==null?void 0:li.height,(hi=e==null?void 0:e.x)==null?void 0:hi.visible]);const T=W.useRef(null),[D,B]=W.useState(0),x=h==="overlay"?D:0;W.useLayoutEffect(()=>{const st=y.current;if(!st)return;const It={top:((s==null?void 0:s.top)??20)+x,...(s==null?void 0:s.bottom)!==void 0?{bottom:s.bottom}:{},...(s==null?void 0:s.right)!==void 0?{right:s.right}:{},...(s==null?void 0:s.left)!==void 0?{left:s.left}:{}};st.setPadding(It)},[s==null?void 0:s.top,s==null?void 0:s.bottom,typeof(s==null?void 0:s.right)=="object"?s.right.intervals:s==null?void 0:s.right,typeof(s==null?void 0:s.left)=="object"?s.left.intervals:s==null?void 0:s.left,x]),W.useEffect(()=>{y.current&&l!==void 0&&y.current.setGrid(l)},[l==null?void 0:l.visible]);const R=y.current,{titleEl:A,legendEl:z,pieLegendEl:E,tooltipLegendEl:V,navigatorEl:X,overlay:$}=Gh(i),G=(z==null?void 0:z.props.position)??"bottom",xt=(E==null?void 0:E.props.position)??"bottom",Tt=G==="right"||xt==="right",_=S??(R==null?void 0:R.getTheme()),[q,J]=(_==null?void 0:_.chartGradient)??["transparent","transparent"],K=(_==null?void 0:_.background)??"transparent",Et=a?`linear-gradient(to bottom, ${q} 0%, ${K} 70%, ${J} 100%)`:K;W.useLayoutEffect(()=>{if(h!=="overlay"){B(0);return}const st=T.current;if(!st){B(0);return}const yt=()=>B(st.getBoundingClientRect().height);yt();const It=new ResizeObserver(yt);return It.observe(st),()=>It.disconnect()},[A!==null,V!==null,h,R!==null]);const kt=(A||V)&&I.jsxs("div",{"data-chart-header":"","data-chart-top-overlay":h==="overlay"?"":void 0,ref:T,style:h==="overlay"?{position:"absolute",top:0,left:0,right:0,zIndex:2,pointerEvents:"none",display:"flex",flexDirection:"column"}:{flexShrink:0,display:"flex",flexDirection:"column",pointerEvents:"none"},children:[A,V]}),Lt=I.jsx("div",{ref:L,style:{position:"relative",flex:1,minWidth:0,minHeight:0,overflow:"hidden"},children:R&&I.jsx(Si.Provider,{value:R,children:I.jsxs(Ci,{value:S??R.getTheme(),children:[h==="overlay"&&kt,I.jsx("div",{"data-chart-series-overlay":"",style:{position:"absolute",inset:0,pointerEvents:"none",zIndex:3},children:$})]})})}),Ie=h==="inline"?I.jsxs("div",{"data-chart-canvas-block":"",style:{display:"flex",flexDirection:"column",flex:1,minWidth:0,minHeight:0},children:[R&&kt&&I.jsx(Si.Provider,{value:R,children:I.jsx(Ci,{value:S??R.getTheme(),children:kt})}),Lt]}):Lt,re=R&&z&&I.jsx(Si.Provider,{value:R,children:I.jsx(Ci,{value:S??R.getTheme(),children:z})}),Ne=R&&E&&I.jsx(Si.Provider,{value:R,children:I.jsx(Ci,{value:S??R.getTheme(),children:E})}),xs=R&&X&&I.jsx(Si.Provider,{value:R,children:I.jsx(Ci,{value:S??R.getTheme(),children:X})});return I.jsxs("div",{className:g,style:{display:"flex",flexDirection:"column",width:"100%",height:"100%",overflow:"hidden",background:Et,...m},children:[I.jsxs("div",{style:{display:"flex",flexDirection:Tt?"row":"column",flex:1,minHeight:0,minWidth:0},children:[Ie,re,Ne]}),xs]})}function Kh({side:i,threshold:t=5,onTrigger:e,indicator:s="canvas",children:n}){const a=wt(),[o,l]=W.useState(!1),[h,c]=W.useState(!0),[,d]=W.useState(0),f=W.useRef(e);f.current=e;const m=W.useRef(n!==void 0);m.current=n!==void 0;const g=W.useRef(!1),p=W.useRef(!1);if(W.useEffect(()=>{if(!h)return;const L=()=>{const k=a.getVisibleRange(),F=a.getDataRange();return F?i==="left"?k.from-F.from:F.to-k.to:null},y=()=>{if(g.current||!h)return;g.current=!0,l(!0),s==="canvas"&&a.setEdgeState(i,"loading");let k;try{k=f.current()}catch(T){throw g.current=!1,l(!1),s==="canvas"&&a.setEdgeState(i,"idle"),T}const F=T=>{g.current=!1,l(!1),T===!1?(c(!1),s==="canvas"&&a.setEdgeState(i,"no-data")):s==="canvas"&&a.setEdgeState(i,"idle")};k&&typeof k.then=="function"?k.then(F,()=>F(void 0)):F(void 0)},M=()=>{const k=a.getDataInterval(),F=L();if(F!==null){if(!p.current){F>t*k&&(p.current=!0);return}F<=t*k&&y(),m.current&&d(T=>T+1)}};return a.on("viewportChange",M),a.on("overlayChange",M),M(),()=>{a.off("viewportChange",M),a.off("overlayChange",M)}},[a,i,t,s,h]),W.useEffect(()=>()=>{s==="canvas"&&a.setEdgeState(i,"idle")},[a,i,s]),!n)return null;const b=a.getDataRange();if(!b)return null;const v=i==="left"?b.from:b.to,S=a.timeScale.timeToX(v);return I.jsx(I.Fragment,{children:n({x:S,side:i,isLoading:o,boundaryTime:v,hasMore:h})})}function Va({data:i,options:t,id:e}){var o,l;const s=wt(),n=W.useRef(null),a=W.useRef([]);return W.useLayoutEffect(()=>{const h=s.addSeries("line",{...t,layers:i.length,id:e});return n.current=h,a.current=new Array(i.length).fill(Fi),()=>{s.removeSeries(h),n.current=null,a.current=[]}},[s,i.length,e]),W.useLayoutEffect(()=>{const h=n.current;h&&s.batch(()=>{for(let c=0;c<i.length;c++)a.current[c]=Un({chart:s,id:h,data:i[c],prev:a.current[c]??Fi,layerIndex:c})})},[s,i]),W.useEffect(()=>{n.current&&t&&s.updateSeriesOptions(n.current,t)},[s,(o=t==null?void 0:t.colors)==null?void 0:o.join(","),t==null?void 0:t.strokeWidth,(l=t==null?void 0:t.area)==null?void 0:l.visible,t==null?void 0:t.areaFill,t==null?void 0:t.pulse,t==null?void 0:t.stacking,t==null?void 0:t.entryAnimation,t==null?void 0:t.entryMs,t==null?void 0:t.smoothMs]),null}function Zh({data:i,options:t,id:e}){var a,o,l,h,c,d,f,m,g;const s=wt(),n=W.useRef(null);return W.useLayoutEffect(()=>{const p=s.addSeries("pie",{...t,id:e});return n.current=p,()=>{s.removeSeries(p),n.current=null}},[s,e]),W.useEffect(()=>{n.current&&t&&s.updateSeriesOptions(n.current,t)},[s,t==null?void 0:t.innerRadiusRatio,t==null?void 0:t.padAngle,t==null?void 0:t.animate,t==null?void 0:t.shadow,t==null?void 0:t.innerShadow,t==null?void 0:t.colors,(a=t==null?void 0:t.sliceLabels)==null?void 0:a.mode,(o=t==null?void 0:t.sliceLabels)==null?void 0:o.content,(l=t==null?void 0:t.sliceLabels)==null?void 0:l.fontSize,(h=t==null?void 0:t.sliceLabels)==null?void 0:h.minSliceAngle,(c=t==null?void 0:t.sliceLabels)==null?void 0:c.elbowLen,(d=t==null?void 0:t.sliceLabels)==null?void 0:d.legPad,(f=t==null?void 0:t.sliceLabels)==null?void 0:f.labelGap,(m=t==null?void 0:t.sliceLabels)==null?void 0:m.distance,(g=t==null?void 0:t.sliceLabels)==null?void 0:g.railWidth]),W.useLayoutEffect(()=>{n.current&&s.setSeriesData(n.current,i)},[s,i]),null}function qh(){const i=wt(),t=ys(i);if(!t)return null;const e=i.getTheme(),s=i.getDataInterval(),n=i.timeScale.niceTickValues(s).tickInterval||s,a={background:`color-mix(in srgb, ${e.crosshair.labelBackground} 80%, transparent)`,color:e.crosshair.labelTextColor,fontSize:e.axis.fontSize,fontFamily:e.typography.fontFamily,fontVariantNumeric:"tabular-nums",padding:"2px 6px",borderRadius:2,whiteSpace:"nowrap",pointerEvents:"none",zIndex:2};return I.jsxs(I.Fragment,{children:[I.jsx("div",{style:{position:"absolute",right:0,top:t.mediaY,transform:"translateY(-50%)",...a},children:i.yScale.formatY(t.y)}),I.jsx("div",{style:{position:"absolute",bottom:0,left:t.mediaX,transform:"translateX(-50%)",...a},children:gs(t.time,n)})]})}const Jh=["0","1","2","3","4","5","6","7","8","9"];function Qh(i){const t=[];for(const e of i)e>="0"&&e<="9"?t.push({type:"digit",value:e}):t.push({type:"symbol",value:e});return t}function Ya({value:i,format:t,locale:e="en-US",spinDuration:s=350,className:n,style:a}){const l=W.useMemo(()=>{if(typeof t=="function")return t;const c=new Intl.NumberFormat(e,typeof t=="object"?t:void 0);return d=>c.format(d)},[t,e])(i),h=Qh(l);return I.jsx("span",{className:n,style:{display:"inline-flex",fontVariantNumeric:"tabular-nums",lineHeight:1.2,...a},children:h.map((c,d)=>c.type==="digit"?I.jsx(tc,{digit:parseInt(c.value,10),duration:s},`d${d}`):I.jsx("span",{style:{display:"inline-block"},children:c.value},`s${d}`))})}function tc({digit:i,duration:t}){const e=W.useRef(!1);return W.useEffect(()=>{e.current=!0},[]),I.jsx("span",{style:{display:"inline-block",height:"1.2em",overflow:"hidden",position:"relative"},children:I.jsx("span",{style:{display:"flex",flexDirection:"column",transform:`translateY(${-i*1.2}em)`,transition:e.current?`transform ${t}ms cubic-bezier(0.16, 1, 0.3, 1)`:"none"},children:Jh.map(s=>I.jsx("span",{style:{display:"flex",alignItems:"center",justifyContent:"center",height:"1.2em"},children:s},s))})})}function ec(i,t){if(t!==void 0)return t;const e=i.getSeriesIdsByType("pie",{visibleOnly:!0});return e.length>0?e[0]:null}const ic=160,sc=70;function nc({seriesId:i,format:t=Xe,children:e}){const s=wt(),n=ys(s),[,a]=W.useState(0);W.useLayoutEffect(()=>{const m=()=>a(g=>g+1);return s.on("overlayChange",m),()=>{s.off("overlayChange",m)}},[s]);const o=ec(s,i),l=o!==null?s.getHoverInfo(o):null;if(!l||!n)return null;const h=s.getTheme(),c=s.getMediaSize();if(e)return I.jsx(rc,{x:n.mediaX,y:n.mediaY,chartWidth:c.width,chartHeight:c.height,children:e({info:l,format:t})});const{left:d,top:f}=bs({x:n.mediaX,y:n.mediaY,chartWidth:c.width,chartHeight:c.height,tooltipWidth:ic,tooltipHeight:sc,offsetX:16,offsetY:16});return I.jsxs("div",{style:{position:"absolute",left:d,top:f,pointerEvents:"none",zIndex:10,background:h.tooltip.background,backdropFilter:"blur(12px)",WebkitBackdropFilter:"blur(12px)",border:`1px solid ${h.tooltip.borderColor}`,borderRadius:8,padding:"10px 14px",boxShadow:"0 4px 16px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06)",fontSize:h.typography.fontSize,fontFamily:h.typography.fontFamily,color:h.tooltip.textColor,display:"flex",flexDirection:"column",gap:6},children:[I.jsxs("div",{style:{display:"flex",alignItems:"center",gap:8},children:[I.jsx("span",{style:{width:10,height:10,borderRadius:"50%",background:l.color,flexShrink:0}}),I.jsx("span",{style:{fontWeight:600},children:l.label})]}),I.jsxs("div",{style:{display:"flex",justifyContent:"space-between",gap:16},children:[I.jsx("span",{style:{opacity:.6},children:t(l.value)}),I.jsxs("span",{style:{fontWeight:600},children:[l.percent.toFixed(1),"%"]})]})]})}function rc({x:i,y:t,chartWidth:e,chartHeight:s,children:n}){const a=W.useRef(null),[o,l]=W.useState(null);W.useEffect(()=>{const c=a.current;if(!c||typeof ResizeObserver>"u")return;const d=new ResizeObserver(f=>{var g;const m=(g=f[0])==null?void 0:g.contentRect;m&&l(p=>p&&p.width===m.width&&p.height===m.height?p:{width:m.width,height:m.height})});return d.observe(c),()=>d.disconnect()},[]);const h=o?bs({x:i,y:t,chartWidth:e,chartHeight:s,tooltipWidth:o.width,tooltipHeight:o.height,offsetX:16,offsetY:16}):{left:0,top:0};return I.jsx("div",{ref:a,"data-measured":o?"true":"false",style:{position:"absolute",left:h.left,top:h.top,pointerEvents:"none",zIndex:10,width:"max-content",maxWidth:e,boxSizing:"border-box",visibility:o?"visible":"hidden"},children:n})}function ac(i,t){if(i.startsWith("rgba")||!i.startsWith("#"))return i;const e=parseInt(i.slice(1,3),16),s=parseInt(i.slice(3,5),16),n=parseInt(i.slice(5,7),16);return`rgba(${e}, ${s}, ${n}, ${t})`}function oc(i){if(i.length<2)return{value:0,pct:0,positive:!0};const t=i[0].value,s=i[i.length-1].value-t,n=t!==0?s/t*100:0;return{value:s,pct:n,positive:s>=0}}function lc({data:i,theme:t,variant:e="line",valuePosition:s="right",formatValue:n=Xe,label:a,sublabel:o,color:l,negativeColor:h,area:c,areaFill:d,yRange:f,flow:m,width:g=140,height:p=48,strokeWidth:b=1.5,gradient:v=!0,style:S}){const L=(c==null?void 0:c.visible)??d??!0,y=i.length>0?i[i.length-1].value:0,M=W.useMemo(()=>oc(i),[i]),k=l??t.seriesColors[0],F=h??Dt(t.candlestick.down.body),T=Dt(M.positive?t.candlestick.up.body:t.candlestick.down.body),D=W.useMemo(()=>{if(!m||i.length<2)return;const R=i[1].time-i[0].time;if(R<=0)return;const A=m.align??"right";if(A==="left")return{maxVisibleBars:m.capacity,initialRange:{from:i[0].time,bars:m.capacity}};const z=i[i.length-1].time,E=A==="offscreen"?z-R:z,V=E-m.capacity*R;return{maxVisibleBars:m.capacity,initialRange:{from:V,to:E}}},[]),B=s!=="none"&&I.jsxs("div",{style:{display:"flex",flexDirection:"column",justifyContent:"center",gap:1,minWidth:0,flexShrink:0},children:[a&&I.jsx("div",{style:{fontSize:t.axis.fontSize,color:t.axis.textColor,lineHeight:1.2,whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis"},children:a}),I.jsx("div",{style:{fontSize:t.typography.fontSize+3,fontWeight:700,color:t.tooltip.textColor,lineHeight:1.1,whiteSpace:"nowrap",fontVariantNumeric:"tabular-nums"},children:n(y)}),o!==void 0?I.jsx("div",{style:{fontSize:t.axis.fontSize-1,color:t.axis.textColor,lineHeight:1.2,whiteSpace:"nowrap"},children:o}):I.jsxs("div",{style:{fontSize:t.axis.fontSize-1,fontWeight:500,color:T,lineHeight:1.2,whiteSpace:"nowrap",fontVariantNumeric:"tabular-nums"},children:[M.positive?"+":"",M.pct.toFixed(1),"%"]})]}),x=I.jsx("div",{style:{width:g,height:p,flexShrink:0,borderRadius:4,overflow:"hidden"},children:I.jsx(Ea,{theme:t,axis:{y:{visible:!1,width:0,min:f==null?void 0:f.min,max:f==null?void 0:f.max},x:{visible:!1,height:0}},padding:{top:5,right:0,bottom:0,left:0},gradient:v,interactive:!1,grid:{visible:!1},viewport:D,children:e==="line"?I.jsx(Va,{data:[i],options:{colors:[k],strokeWidth:b,area:{visible:L},pulse:!1,stacking:"off"}}):I.jsx(Ra,{data:[i],options:{colors:[k,F],barWidthRatio:.7,stacking:"off",anchor:"right"}})})});return I.jsxs("div",{style:{display:"inline-flex",alignItems:"center",gap:12,padding:"8px 12px",borderRadius:8,background:ac(t.tooltip.background,.7),border:`1px solid ${t.tooltip.borderColor}`,fontFamily:t.typography.fontFamily,...S},children:[s==="left"&&B,x,s==="right"&&B]})}function ja({labelCount:i,minLabelSpacing:t}={}){const e=wt();Wa(e);const s=W.useRef(null);return W.useLayoutEffect(()=>(e.setTimeAxisLabelDensity({labelCount:i??null,minLabelSpacing:t??null}),()=>{e.setTimeAxisLabelDensity({labelCount:null,minLabelSpacing:null})}),[e,i,t]),W.useLayoutEffect(()=>{const n=s.current;if(n!==null)return Hr({chart:e,container:n,axis:"x"})},[e]),I.jsx("div",{ref:s,style:{position:"absolute",left:0,bottom:0,right:e.yAxisWidth,height:e.xAxisHeight,pointerEvents:"none",display:"flex",alignItems:"center"}})}const hc=(i,t)=>t==="volume"?Xe(i):jn(i);function cc({sort:i="none",format:t=hc,children:e}){const s=wt(),n=ys(s),[,a]=W.useState(0);if(W.useLayoutEffect(()=>{const m=()=>a(g=>g+1);return s.on("overlayChange",m),s.getSeriesIds().length>0&&a(g=>g+1),()=>{s.off("overlayChange",m)}},[s]),!n)return null;const o=_n(s,{time:n.time,sort:i,cacheKey:"tooltip"});if(o.length===0)return null;const l=s.getTheme(),h=s.getDataInterval(),c=s.getMediaSize(),d=c.width-s.yAxisWidth,f=c.height-s.xAxisHeight;return e?I.jsx(uc,{x:n.mediaX,y:n.mediaY,chartWidth:d,chartHeight:f,theme:l,children:e({snapshots:o,time:n.time})}):I.jsx(dc,{snapshots:o,displayTime:n.time,x:n.mediaX,y:n.mediaY,chartWidth:d,chartHeight:f,theme:l,dataInterval:h,format:t})}function uc({x:i,y:t,chartWidth:e,chartHeight:s,theme:n,children:a}){const o=W.useRef(null),[l,h]=W.useState(null);W.useEffect(()=>{const d=o.current;if(!d||typeof ResizeObserver>"u")return;const f=new ResizeObserver(m=>{var p;const g=(p=m[0])==null?void 0:p.contentRect;g&&h(b=>b&&b.width===g.width&&b.height===g.height?b:{width:g.width,height:g.height})});return f.observe(d),()=>f.disconnect()},[]);const c=l?bs({x:i,y:t,chartWidth:e,chartHeight:s,tooltipWidth:l.width,tooltipHeight:l.height}):{left:0,top:0};return I.jsx("div",{ref:o,"data-measured":l?"true":"false",style:{position:"absolute",left:c.left,top:c.top,pointerEvents:"none",background:n.tooltip.background,backdropFilter:"blur(12px)",WebkitBackdropFilter:"blur(12px)",border:`1px solid ${n.tooltip.borderColor}`,borderRadius:8,padding:"10px 14px",boxShadow:"0 4px 16px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06)",fontFamily:n.typography.fontFamily,fontSize:n.tooltip.fontSize,fontVariantNumeric:"tabular-nums",color:n.tooltip.textColor,width:"max-content",maxWidth:e,boxSizing:"border-box",zIndex:10,visibility:l?"visible":"hidden"},children:a})}function dc({snapshots:i,displayTime:t,x:e,y:s,chartWidth:n,chartHeight:a,theme:o,dataInterval:l,format:h}){const c=i.some(L=>"open"in L.data),d=i.filter(L=>!("open"in L.data)).length,f=160,m=c?140:40+d*22,{left:g,top:p}=bs({x:e,y:s,chartWidth:n,chartHeight:a,tooltipWidth:f,tooltipHeight:m}),b=o.tooltip.background,v=o.tooltip.borderColor;return I.jsxs("div",{style:{position:"absolute",left:g,top:p,pointerEvents:"none",background:b,backdropFilter:"blur(12px)",WebkitBackdropFilter:"blur(12px)",border:`1px solid ${v}`,borderRadius:8,padding:"10px 14px",boxShadow:"0 4px 16px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06)",fontSize:o.tooltip.fontSize,fontFamily:o.typography.fontFamily,fontVariantNumeric:"tabular-nums",color:o.tooltip.textColor,width:f,boxSizing:"border-box",zIndex:10,transition:"opacity 0.15s ease"},children:[I.jsxs("div",{style:{fontSize:o.axis.fontSize,color:o.axis.textColor,marginBottom:8,paddingBottom:6,borderBottom:`1px solid ${v}`,letterSpacing:"0.02em"},children:[jr(t)," ",gs(t,l)]}),i.map(L=>{if("open"in L.data){const k=L.data,F=k.close>=k.open,T=Dt(F?o.candlestick.up.body:o.candlestick.down.body);return I.jsxs("div",{style:{display:"grid",gridTemplateColumns:"auto 1fr",gap:"4px 12px"},children:[I.jsx(Ei,{label:"Open",color:T,display:h(k.open,"open")}),I.jsx(Ei,{label:"High",color:T,display:h(k.high,"high")}),I.jsx(Ei,{label:"Low",color:T,display:h(k.low,"low")}),I.jsx(Ei,{label:"Close",color:T,display:h(k.close,"close")}),k.volume!=null&&I.jsx(Ei,{label:"Volume",color:o.tooltip.textColor,display:h(k.volume,"volume")})]},L.id)}const M=L.data;return I.jsxs("div",{style:{display:"flex",alignItems:"center",gap:8,padding:"2px 0"},children:[I.jsx("span",{style:{width:8,height:8,borderRadius:"50%",background:L.color,flexShrink:0}}),I.jsx("span",{style:{opacity:.6,flex:1},children:L.label??"Value"}),I.jsx("span",{style:{fontWeight:600,color:L.color},children:h(M.value,"value")})]},L.id)})]})}function Ei({label:i,color:t,display:e}){return I.jsxs(I.Fragment,{children:[I.jsx("span",{style:{opacity:.5},children:i}),I.jsx("span",{style:{fontWeight:600,color:t,textAlign:"right"},children:e})]})}function fc({format:i,labelCount:t,minLabelSpacing:e}={}){const s=wt();Aa(s);const n=W.useRef(null);return W.useLayoutEffect(()=>(s.yScale.setFormat(i??null),()=>s.yScale.setFormat(null)),[s,i]),W.useLayoutEffect(()=>(s.setYAxisLabelDensity({labelCount:t??null,minLabelSpacing:e??null}),()=>{s.setYAxisLabelDensity({labelCount:null,minLabelSpacing:null})}),[s,t,e]),W.useLayoutEffect(()=>{const a=n.current;if(a!==null)return Hr({chart:s,container:a,axis:"y"})},[s]),I.jsx("div",{ref:n,style:{position:"absolute",right:0,top:0,bottom:s.xAxisHeight,width:s.yAxisWidth,pointerEvents:"none"}})}function mc(i,t){if(t!==void 0)return t;const e=i.getSeriesIdsByType("time",{visibleOnly:!0,singleLayerOnly:!0});if(e.length>0)return e[0];const s=i.getSeriesIdsByType("time",{visibleOnly:!0});return s.length>0?s[0]:null}function gc({seriesId:i,color:t,format:e,children:s}){const n=wt();W.useEffect(()=>(n.setYLabel(!0),()=>n.setYLabel(!1)),[n]);const[,a]=W.useState(0);W.useLayoutEffect(()=>{const y=()=>a(M=>M+1);return n.on("overlayChange",y),n.on("viewportChange",y),n.getSeriesIds().length>0&&a(M=>M+1),()=>{n.off("overlayChange",y),n.off("viewportChange",y)}},[n]);const o=mc(n,i),l=o!==null?n.getStackedLastValue(o):null,h=o!==null?n.getPreviousClose(o):null,c=n.yScale.getRange(),d=c.max-c.min,f=d<.1?6:d<10?4:d<1e3?2:0,m=W.useMemo(()=>{if(e)return e;const y=new Intl.NumberFormat("en-US",{minimumFractionDigits:f,maximumFractionDigits:f,useGrouping:!1});return M=>y.format(M)},[e,f]);if(!l||o===null)return null;const{value:g,isLive:p}=l,b=n.getTheme(),v=n.yScale.valueToY(g),S=h===null?"neutral":g>h?"up":g<h?"down":"neutral";let L;return p?t?L=t:L=S==="up"?b.yLabel.upBackground:S==="down"?b.yLabel.downBackground:b.yLabel.neutralBackground:L=b.axis.textColor,s?I.jsx(I.Fragment,{children:s({value:g,y:v,bgColor:L,isLive:p,direction:S,format:m})}):I.jsxs(I.Fragment,{children:[I.jsx("div",{style:{position:"absolute",left:0,right:n.yAxisWidth,top:v,height:0,borderTop:`1px dashed ${L}`,opacity:.5,pointerEvents:"none",zIndex:2}}),I.jsx("div",{style:{position:"absolute",right:4,top:v,transform:"translateY(-50%)",pointerEvents:"auto",zIndex:3,background:L,color:b.yLabel.textColor,fontSize:b.yLabel.fontSize,fontFamily:b.typography.fontFamily,padding:"3px 8px",borderRadius:3,whiteSpace:"nowrap",transition:"background-color 0.3s ease"},children:I.jsx(Ya,{value:g,format:m,spinDuration:350})})]})}exports.BarSeries=Ra;exports.CandlestickSeries=Hh;exports.ChartContainer=Ea;exports.ChartInstance=ba;exports.Crosshair=qh;exports.EdgeLoader=Kh;exports.InfoBar=Pa;exports.Legend=Fa;exports.LineSeries=Va;exports.Navigator=Ba;exports.NavigatorController=ka;exports.NumberFlow=Ya;exports.PieLegend=Da;exports.PieSeries=Zh;exports.PieTooltip=nc;exports.Sparkline=lc;exports.ThemeProvider=Ci;exports.TimeAxis=ja;exports.Title=za;exports.Tooltip=cc;exports.XAxis=ja;exports.YAxis=fc;exports.YLabel=gc;exports.andromeda=ph;exports.autoGradient=j;exports.ayuMirage=bh;exports.buildHoverSnapshots=_n;exports.buildLastSnapshots=Ia;exports.catppuccin=ca;exports.computeTooltipPosition=bs;exports.createTheme=at;exports.detectInterval=Yr;exports.dracula=vh;exports.formatCompact=Xe;exports.formatDate=jr;exports.formatPriceAdaptive=jn;exports.formatTime=gs;exports.githubLight=yh;exports.gruvbox=xh;exports.handwritten=wh;exports.hermite=zr;exports.highContrast=Sh;exports.isDarkBg=ra;exports.lavenderMist=Ch;exports.lightPink=Th;exports.materialPalenight=Lh;exports.minimalLight=Wh;exports.mintBreeze=Ah;exports.monokaiPro=Ph;exports.nightOwl=Fh;exports.normalizeTime=zt;exports.oneDarkPro=Bh;exports.panda=Dh;exports.parseAnimationTime=Br;exports.peachCream=zh;exports.quietLight=Eh;exports.resolveAxisFontSize=Er;exports.resolveAxisTextColor=Vr;exports.resolveCandlestickBodyColor=Dt;exports.rosePineDawn=Vh;exports.sandDune=Yh;exports.snap=Yi;exports.solarizedLight=jh;exports.spring=Fr;exports.useChartInstance=wt;exports.useCrosshairPosition=ys;exports.useLastYValue=Oh;exports.usePreviousClose=Xh;exports.useTheme=vs;exports.useVisibleRange=Wa;exports.useYRange=Aa;
|