@object-ui/plugin-list 0.5.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.
@@ -0,0 +1,95 @@
1
+ (function(Ut,d){typeof exports=="object"&&typeof module<"u"?d(exports,require("react/jsx-runtime"),require("react"),require("react-dom")):typeof define=="function"&&define.amd?define(["exports","react/jsx-runtime","react","react-dom"],d):(Ut=typeof globalThis<"u"?globalThis:Ut||self,d(Ut.ObjectUIPluginList={},Ut.jsxRuntime,Ut.React,Ut.ReactDOM))})(this,(function(Ut,d,w,h1){"use strict";function iT(e){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const o in e)if(o!=="default"){const n=Object.getOwnPropertyDescriptor(e,o);Object.defineProperty(t,o,n.get?n:{enumerable:!0,get:()=>e[o]})}}return t.default=e,Object.freeze(t)}const p=iT(w),p1=iT(h1);class $G{components=new Map;register(t,o,n){const a=n?.namespace?`${n.namespace}:${t}`:t;n?.namespace||console.warn(`Registering component "${t}" without a namespace is deprecated. Please provide a namespace in the meta parameter.`),this.components.has(a),this.components.set(a,{type:a,component:o,...n}),n?.namespace&&this.components.set(t,{type:a,component:o,...n})}get(t,o){if(o){const n=`${o}:${t}`;return this.components.get(n)?.component}return this.components.get(t)?.component}getConfig(t,o){if(o){const n=`${o}:${t}`;return this.components.get(n)}return this.components.get(t)}has(t,o){if(o){const n=`${o}:${t}`;return this.components.has(n)}return this.components.has(t)}getAllTypes(){return Array.from(this.components.keys())}getAllConfigs(){return Array.from(this.components.values())}getNamespaceComponents(t){return Array.from(this.components.values()).filter(o=>o.namespace===t)}}const ie=new $G;class y1{scopes=[];constructor(t={}){this.scopes.push(new Map(Object.entries(t)))}pushScope(t){this.scopes.push(new Map(Object.entries(t)))}popScope(){this.scopes.length>1&&this.scopes.pop()}get(t){const o=t.split("."),n=o[0];for(let a=this.scopes.length-1;a>=0;a--)if(this.scopes[a].has(n)){let r=this.scopes[a].get(n);for(let c=1;c<o.length;c++)if(r&&typeof r=="object")r=r[o[c]];else return;return r}}set(t,o){this.scopes.length>0&&this.scopes[this.scopes.length-1].set(t,o)}has(t){const o=t.split(".")[0];for(let n=this.scopes.length-1;n>=0;n--)if(this.scopes[n].has(o))return!0;return!1}toObject(){const t={};for(const o of this.scopes)for(const[n,a]of o.entries())t[n]=a;return t}createChild(t={}){const o=new y1;return o.scopes=[...this.scopes,new Map(Object.entries(t))],o}}class SG{cache=new Map;maxSize;constructor(t=1e3){this.maxSize=t}compile(t,o){const n=`${t}::${o.join(",")}`;if(this.cache.has(n)){const c=this.cache.get(n);return c.hitCount++,c}this.cache.size>=this.maxSize&&this.evictLFU();const r={fn:this.compileExpression(t,o),varNames:[...o],expression:t,compiledAt:Date.now(),hitCount:1};return this.cache.set(n,r),r}compileExpression(t,o){return new Function(...o,`"use strict"; return (${t});`)}evictLFU(){let t=null,o=1/0,n=1/0;for(const[a,r]of this.cache.entries())(r.hitCount<n||r.hitCount===n&&r.compiledAt<o)&&(t=a,o=r.compiledAt,n=r.hitCount);t&&this.cache.delete(t)}has(t,o){const n=`${t}::${o.join(",")}`;return this.cache.has(n)}clear(){this.cache.clear()}getStats(){let t=0;const o=[];for(const n of this.cache.values())t+=n.hitCount,o.push({expression:n.expression,hitCount:n.hitCount});return{size:this.cache.size,maxSize:this.maxSize,totalHits:t,entries:o.sort((n,a)=>a.hitCount-n.hitCount)}}}class cS{context;cache;constructor(t,o){t instanceof y1?this.context=t:this.context=new y1(t||{}),this.cache=o||new SG}evaluate(t,o={}){if(typeof t!="string")return t;const{defaultValue:n,throwOnError:a=!1,sanitize:r=!0}=o;try{if(!t.includes("${"))return t;const s=t.match(/^\$\{([^}]+)\}$/);return s?this.evaluateExpression(s[1].trim(),{sanitize:r}):t.replace(/\$\{([^}]+)\}/g,(l,u)=>{try{const y=this.evaluateExpression(u.trim(),{sanitize:r});return String(y??"")}catch(y){if(a)throw y;return console.warn(`Expression evaluation failed for: ${u}`,y),l}})}catch(c){if(a)throw c;return console.warn(`Failed to evaluate expression: ${t}`,c),n??t}}evaluateExpression(t,o={}){const{sanitize:n=!0}=o;if(!(!t||t.trim()==="")){if(n&&this.isDangerous(t))throw new Error(`Potentially dangerous expression detected: ${t}`);try{const a=this.context.toObject(),r=Object.keys(a),c=Object.values(a);return this.cache.compile(t,r).fn(...c)}catch(a){throw new Error(`Failed to evaluate expression "${t}": ${a.message}`)}}}isDangerous(t){return[/eval\s*\(/i,/Function\s*\(/i,/setTimeout\s*\(/i,/setInterval\s*\(/i,/import\s*\(/i,/require\s*\(/i,/process\./i,/global\./i,/window\./i,/document\./i,/__proto__/i,/constructor\s*\(/i,/prototype\./i].some(n=>n.test(t))}evaluateCondition(t,o={}){return typeof t=="boolean"?t:t?!!this.evaluate(t,o):!0}updateContext(t){Object.entries(t).forEach(([o,n])=>{this.context.set(o,n)})}getContext(){return this.context}withContext(t){return new cS(this.context.createChild(t),this.cache)}getCacheStats(){return this.cache.getStats()}clearCache(){this.cache.clear()}}function cT(e){var t,o,n="";if(typeof e=="string"||typeof e=="number")n+=e;else if(typeof e=="object")if(Array.isArray(e)){var a=e.length;for(t=0;t<a;t++)e[t]&&(o=cT(e[t]))&&(n&&(n+=" "),n+=o)}else for(o in e)e[o]&&(n&&(n+=" "),n+=o);return n}function sS(){for(var e,t,o=0,n="",a=arguments.length;o<a;o++)(e=arguments[o])&&(t=cT(e))&&(n&&(n+=" "),n+=t);return n}const LG=(e,t)=>{const o=new Array(e.length+t.length);for(let n=0;n<e.length;n++)o[n]=e[n];for(let n=0;n<t.length;n++)o[e.length+n]=t[n];return o},IG=(e,t)=>({classGroupId:e,validator:t}),sT=(e=new Map,t=null,o)=>({nextPart:e,validators:t,classGroupId:o}),f1="-",dT=[],AG="arbitrary..",PG=e=>{const t=DG(e),{conflictingClassGroups:o,conflictingClassGroupModifiers:n}=e;return{getClassGroupId:c=>{if(c.startsWith("[")&&c.endsWith("]"))return TG(c);const s=c.split(f1),l=s[0]===""&&s.length>1?1:0;return lT(s,l,t)},getConflictingClassGroupIds:(c,s)=>{if(s){const l=n[c],u=o[c];return l?u?LG(u,l):l:u||dT}return o[c]||dT}}},lT=(e,t,o)=>{if(e.length-t===0)return o.classGroupId;const a=e[t],r=o.nextPart.get(a);if(r){const u=lT(e,t+1,r);if(u)return u}const c=o.validators;if(c===null)return;const s=t===0?e.join(f1):e.slice(t).join(f1),l=c.length;for(let u=0;u<l;u++){const y=c[u];if(y.validator(s))return y.classGroupId}},TG=e=>e.slice(1,-1).indexOf(":")===-1?void 0:(()=>{const t=e.slice(1,-1),o=t.indexOf(":"),n=t.slice(0,o);return n?AG+n:void 0})(),DG=e=>{const{theme:t,classGroups:o}=e;return EG(o,t)},EG=(e,t)=>{const o=sT();for(const n in e){const a=e[n];dS(a,o,n,t)}return o},dS=(e,t,o,n)=>{const a=e.length;for(let r=0;r<a;r++){const c=e[r];zG(c,t,o,n)}},zG=(e,t,o,n)=>{if(typeof e=="string"){OG(e,t,o);return}if(typeof e=="function"){qG(e,t,o,n);return}jG(e,t,o,n)},OG=(e,t,o)=>{const n=e===""?t:uT(t,e);n.classGroupId=o},qG=(e,t,o,n)=>{if(HG(e)){dS(e(n),t,o,n);return}t.validators===null&&(t.validators=[]),t.validators.push(IG(o,e))},jG=(e,t,o,n)=>{const a=Object.entries(e),r=a.length;for(let c=0;c<r;c++){const[s,l]=a[c];dS(l,uT(t,s),o,n)}},uT=(e,t)=>{let o=e;const n=t.split(f1),a=n.length;for(let r=0;r<a;r++){const c=n[r];let s=o.nextPart.get(c);s||(s=sT(),o.nextPart.set(c,s)),o=s}return o},HG=e=>"isThemeGetter"in e&&e.isThemeGetter===!0,VG=e=>{if(e<1)return{get:()=>{},set:()=>{}};let t=0,o=Object.create(null),n=Object.create(null);const a=(r,c)=>{o[r]=c,t++,t>e&&(t=0,n=o,o=Object.create(null))};return{get(r){let c=o[r];if(c!==void 0)return c;if((c=n[r])!==void 0)return a(r,c),c},set(r,c){r in o?o[r]=c:a(r,c)}}},lS="!",hT=":",FG=[],pT=(e,t,o,n,a)=>({modifiers:e,hasImportantModifier:t,baseClassName:o,maybePostfixModifierPosition:n,isExternal:a}),BG=e=>{const{prefix:t,experimentalParseClassName:o}=e;let n=a=>{const r=[];let c=0,s=0,l=0,u;const y=a.length;for(let g=0;g<y;g++){const _=a[g];if(c===0&&s===0){if(_===hT){r.push(a.slice(l,g)),l=g+1;continue}if(_==="/"){u=g;continue}}_==="["?c++:_==="]"?c--:_==="("?s++:_===")"&&s--}const h=r.length===0?a:a.slice(l);let f=h,k=!1;h.endsWith(lS)?(f=h.slice(0,-1),k=!0):h.startsWith(lS)&&(f=h.slice(1),k=!0);const m=u&&u>l?u-l:void 0;return pT(r,k,f,m)};if(t){const a=t+hT,r=n;n=c=>c.startsWith(a)?r(c.slice(a.length)):pT(FG,!1,c,void 0,!0)}if(o){const a=n;n=r=>o({className:r,parseClassName:a})}return n},WG=e=>{const t=new Map;return e.orderSensitiveModifiers.forEach((o,n)=>{t.set(o,1e6+n)}),o=>{const n=[];let a=[];for(let r=0;r<o.length;r++){const c=o[r],s=c[0]==="[",l=t.has(c);s||l?(a.length>0&&(a.sort(),n.push(...a),a=[]),n.push(c)):a.push(c)}return a.length>0&&(a.sort(),n.push(...a)),n}},UG=e=>({cache:VG(e.cacheSize),parseClassName:BG(e),sortModifiers:WG(e),...PG(e)}),RG=/\s+/,GG=(e,t)=>{const{parseClassName:o,getClassGroupId:n,getConflictingClassGroupIds:a,sortModifiers:r}=t,c=[],s=e.trim().split(RG);let l="";for(let u=s.length-1;u>=0;u-=1){const y=s[u],{isExternal:h,modifiers:f,hasImportantModifier:k,baseClassName:m,maybePostfixModifierPosition:g}=o(y);if(h){l=y+(l.length>0?" "+l:l);continue}let _=!!g,v=n(_?m.substring(0,g):m);if(!v){if(!_){l=y+(l.length>0?" "+l:l);continue}if(v=n(m),!v){l=y+(l.length>0?" "+l:l);continue}_=!1}const b=f.length===0?"":f.length===1?f[0]:r(f).join(":"),M=k?b+lS:b,x=M+v;if(c.indexOf(x)>-1)continue;c.push(x);const N=a(v,_);for(let C=0;C<N.length;++C){const $=N[C];c.push(M+$)}l=y+(l.length>0?" "+l:l)}return l},KG=(...e)=>{let t=0,o,n,a="";for(;t<e.length;)(o=e[t++])&&(n=yT(o))&&(a&&(a+=" "),a+=n);return a},yT=e=>{if(typeof e=="string")return e;let t,o="";for(let n=0;n<e.length;n++)e[n]&&(t=yT(e[n]))&&(o&&(o+=" "),o+=t);return o},YG=(e,...t)=>{let o,n,a,r;const c=l=>{const u=t.reduce((y,h)=>h(y),e());return o=UG(u),n=o.cache.get,a=o.cache.set,r=s,s(l)},s=l=>{const u=n(l);if(u)return u;const y=GG(l,o);return a(l,y),y};return r=c,(...l)=>r(KG(...l))},XG=[],lt=e=>{const t=o=>o[e]||XG;return t.isThemeGetter=!0,t},fT=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,mT=/^\((?:(\w[\w-]*):)?(.+)\)$/i,ZG=/^\d+\/\d+$/,QG=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,JG=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,eK=/^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/,tK=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,oK=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,Wc=e=>ZG.test(e),Ie=e=>!!e&&!Number.isNaN(Number(e)),Jo=e=>!!e&&Number.isInteger(Number(e)),uS=e=>e.endsWith("%")&&Ie(e.slice(0,-1)),jo=e=>QG.test(e),nK=()=>!0,aK=e=>JG.test(e)&&!eK.test(e),kT=()=>!1,rK=e=>tK.test(e),iK=e=>oK.test(e),cK=e=>!ke(e)&&!ge(e),sK=e=>Uc(e,MT,kT),ke=e=>fT.test(e),bn=e=>Uc(e,wT,aK),hS=e=>Uc(e,pK,Ie),gT=e=>Uc(e,_T,kT),dK=e=>Uc(e,bT,iK),m1=e=>Uc(e,xT,rK),ge=e=>mT.test(e),Os=e=>Rc(e,wT),lK=e=>Rc(e,yK),vT=e=>Rc(e,_T),uK=e=>Rc(e,MT),hK=e=>Rc(e,bT),k1=e=>Rc(e,xT,!0),Uc=(e,t,o)=>{const n=fT.exec(e);return n?n[1]?t(n[1]):o(n[2]):!1},Rc=(e,t,o=!1)=>{const n=mT.exec(e);return n?n[1]?t(n[1]):o:!1},_T=e=>e==="position"||e==="percentage",bT=e=>e==="image"||e==="url",MT=e=>e==="length"||e==="size"||e==="bg-size",wT=e=>e==="length",pK=e=>e==="number",yK=e=>e==="family-name",xT=e=>e==="shadow",fK=YG(()=>{const e=lt("color"),t=lt("font"),o=lt("text"),n=lt("font-weight"),a=lt("tracking"),r=lt("leading"),c=lt("breakpoint"),s=lt("container"),l=lt("spacing"),u=lt("radius"),y=lt("shadow"),h=lt("inset-shadow"),f=lt("text-shadow"),k=lt("drop-shadow"),m=lt("blur"),g=lt("perspective"),_=lt("aspect"),v=lt("ease"),b=lt("animate"),M=()=>["auto","avoid","all","avoid-page","page","left","right","column"],x=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom"],N=()=>[...x(),ge,ke],C=()=>["auto","hidden","clip","visible","scroll"],$=()=>["auto","contain","none"],L=()=>[ge,ke,l],A=()=>[Wc,"full","auto",...L()],q=()=>[Jo,"none","subgrid",ge,ke],z=()=>["auto",{span:["full",Jo,ge,ke]},Jo,ge,ke],O=()=>[Jo,"auto",ge,ke],D=()=>["auto","min","max","fr",ge,ke],U=()=>["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"],G=()=>["start","end","center","stretch","center-safe","end-safe"],H=()=>["auto",...L()],Y=()=>[Wc,"auto","full","dvw","dvh","lvw","lvh","svw","svh","min","max","fit",...L()],P=()=>[e,ge,ke],F=()=>[...x(),vT,gT,{position:[ge,ke]}],ne=()=>["no-repeat",{repeat:["","x","y","space","round"]}],de=()=>["auto","cover","contain",uK,sK,{size:[ge,ke]}],B=()=>[uS,Os,bn],W=()=>["","none","full",u,ge,ke],K=()=>["",Ie,Os,bn],R=()=>["solid","dashed","dotted","double"],re=()=>["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"],V=()=>[Ie,uS,vT,gT],te=()=>["","none",m,ge,ke],fe=()=>["none",Ie,ge,ke],pe=()=>["none",Ie,ge,ke],le=()=>[Ie,ge,ke],ee=()=>[Wc,"full",...L()];return{cacheSize:500,theme:{animate:["spin","ping","pulse","bounce"],aspect:["video"],blur:[jo],breakpoint:[jo],color:[nK],container:[jo],"drop-shadow":[jo],ease:["in","out","in-out"],font:[cK],"font-weight":["thin","extralight","light","normal","medium","semibold","bold","extrabold","black"],"inset-shadow":[jo],leading:["none","tight","snug","normal","relaxed","loose"],perspective:["dramatic","near","normal","midrange","distant","none"],radius:[jo],shadow:[jo],spacing:["px",Ie],text:[jo],"text-shadow":[jo],tracking:["tighter","tight","normal","wide","wider","widest"]},classGroups:{aspect:[{aspect:["auto","square",Wc,ke,ge,_]}],container:["container"],columns:[{columns:[Ie,ke,ge,s]}],"break-after":[{"break-after":M()}],"break-before":[{"break-before":M()}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],sr:["sr-only","not-sr-only"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:N()}],overflow:[{overflow:C()}],"overflow-x":[{"overflow-x":C()}],"overflow-y":[{"overflow-y":C()}],overscroll:[{overscroll:$()}],"overscroll-x":[{"overscroll-x":$()}],"overscroll-y":[{"overscroll-y":$()}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:A()}],"inset-x":[{"inset-x":A()}],"inset-y":[{"inset-y":A()}],start:[{start:A()}],end:[{end:A()}],top:[{top:A()}],right:[{right:A()}],bottom:[{bottom:A()}],left:[{left:A()}],visibility:["visible","invisible","collapse"],z:[{z:[Jo,"auto",ge,ke]}],basis:[{basis:[Wc,"full","auto",s,...L()]}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["nowrap","wrap","wrap-reverse"]}],flex:[{flex:[Ie,Wc,"auto","initial","none",ke]}],grow:[{grow:["",Ie,ge,ke]}],shrink:[{shrink:["",Ie,ge,ke]}],order:[{order:[Jo,"first","last","none",ge,ke]}],"grid-cols":[{"grid-cols":q()}],"col-start-end":[{col:z()}],"col-start":[{"col-start":O()}],"col-end":[{"col-end":O()}],"grid-rows":[{"grid-rows":q()}],"row-start-end":[{row:z()}],"row-start":[{"row-start":O()}],"row-end":[{"row-end":O()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":D()}],"auto-rows":[{"auto-rows":D()}],gap:[{gap:L()}],"gap-x":[{"gap-x":L()}],"gap-y":[{"gap-y":L()}],"justify-content":[{justify:[...U(),"normal"]}],"justify-items":[{"justify-items":[...G(),"normal"]}],"justify-self":[{"justify-self":["auto",...G()]}],"align-content":[{content:["normal",...U()]}],"align-items":[{items:[...G(),{baseline:["","last"]}]}],"align-self":[{self:["auto",...G(),{baseline:["","last"]}]}],"place-content":[{"place-content":U()}],"place-items":[{"place-items":[...G(),"baseline"]}],"place-self":[{"place-self":["auto",...G()]}],p:[{p:L()}],px:[{px:L()}],py:[{py:L()}],ps:[{ps:L()}],pe:[{pe:L()}],pt:[{pt:L()}],pr:[{pr:L()}],pb:[{pb:L()}],pl:[{pl:L()}],m:[{m:H()}],mx:[{mx:H()}],my:[{my:H()}],ms:[{ms:H()}],me:[{me:H()}],mt:[{mt:H()}],mr:[{mr:H()}],mb:[{mb:H()}],ml:[{ml:H()}],"space-x":[{"space-x":L()}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":L()}],"space-y-reverse":["space-y-reverse"],size:[{size:Y()}],w:[{w:[s,"screen",...Y()]}],"min-w":[{"min-w":[s,"screen","none",...Y()]}],"max-w":[{"max-w":[s,"screen","none","prose",{screen:[c]},...Y()]}],h:[{h:["screen","lh",...Y()]}],"min-h":[{"min-h":["screen","lh","none",...Y()]}],"max-h":[{"max-h":["screen","lh",...Y()]}],"font-size":[{text:["base",o,Os,bn]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:[n,ge,hS]}],"font-stretch":[{"font-stretch":["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded",uS,ke]}],"font-family":[{font:[lK,ke,t]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractions"],tracking:[{tracking:[a,ge,ke]}],"line-clamp":[{"line-clamp":[Ie,"none",ge,hS]}],leading:[{leading:[r,...L()]}],"list-image":[{"list-image":["none",ge,ke]}],"list-style-position":[{list:["inside","outside"]}],"list-style-type":[{list:["disc","decimal","none",ge,ke]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"placeholder-color":[{placeholder:P()}],"text-color":[{text:P()}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:[...R(),"wavy"]}],"text-decoration-thickness":[{decoration:[Ie,"from-font","auto",ge,bn]}],"text-decoration-color":[{decoration:P()}],"underline-offset":[{"underline-offset":[Ie,"auto",ge,ke]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:L()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",ge,ke]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],wrap:[{wrap:["break-word","anywhere","normal"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",ge,ke]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:F()}],"bg-repeat":[{bg:ne()}],"bg-size":[{bg:de()}],"bg-image":[{bg:["none",{linear:[{to:["t","tr","r","br","b","bl","l","tl"]},Jo,ge,ke],radial:["",ge,ke],conic:[Jo,ge,ke]},hK,dK]}],"bg-color":[{bg:P()}],"gradient-from-pos":[{from:B()}],"gradient-via-pos":[{via:B()}],"gradient-to-pos":[{to:B()}],"gradient-from":[{from:P()}],"gradient-via":[{via:P()}],"gradient-to":[{to:P()}],rounded:[{rounded:W()}],"rounded-s":[{"rounded-s":W()}],"rounded-e":[{"rounded-e":W()}],"rounded-t":[{"rounded-t":W()}],"rounded-r":[{"rounded-r":W()}],"rounded-b":[{"rounded-b":W()}],"rounded-l":[{"rounded-l":W()}],"rounded-ss":[{"rounded-ss":W()}],"rounded-se":[{"rounded-se":W()}],"rounded-ee":[{"rounded-ee":W()}],"rounded-es":[{"rounded-es":W()}],"rounded-tl":[{"rounded-tl":W()}],"rounded-tr":[{"rounded-tr":W()}],"rounded-br":[{"rounded-br":W()}],"rounded-bl":[{"rounded-bl":W()}],"border-w":[{border:K()}],"border-w-x":[{"border-x":K()}],"border-w-y":[{"border-y":K()}],"border-w-s":[{"border-s":K()}],"border-w-e":[{"border-e":K()}],"border-w-t":[{"border-t":K()}],"border-w-r":[{"border-r":K()}],"border-w-b":[{"border-b":K()}],"border-w-l":[{"border-l":K()}],"divide-x":[{"divide-x":K()}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":K()}],"divide-y-reverse":["divide-y-reverse"],"border-style":[{border:[...R(),"hidden","none"]}],"divide-style":[{divide:[...R(),"hidden","none"]}],"border-color":[{border:P()}],"border-color-x":[{"border-x":P()}],"border-color-y":[{"border-y":P()}],"border-color-s":[{"border-s":P()}],"border-color-e":[{"border-e":P()}],"border-color-t":[{"border-t":P()}],"border-color-r":[{"border-r":P()}],"border-color-b":[{"border-b":P()}],"border-color-l":[{"border-l":P()}],"divide-color":[{divide:P()}],"outline-style":[{outline:[...R(),"none","hidden"]}],"outline-offset":[{"outline-offset":[Ie,ge,ke]}],"outline-w":[{outline:["",Ie,Os,bn]}],"outline-color":[{outline:P()}],shadow:[{shadow:["","none",y,k1,m1]}],"shadow-color":[{shadow:P()}],"inset-shadow":[{"inset-shadow":["none",h,k1,m1]}],"inset-shadow-color":[{"inset-shadow":P()}],"ring-w":[{ring:K()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:P()}],"ring-offset-w":[{"ring-offset":[Ie,bn]}],"ring-offset-color":[{"ring-offset":P()}],"inset-ring-w":[{"inset-ring":K()}],"inset-ring-color":[{"inset-ring":P()}],"text-shadow":[{"text-shadow":["none",f,k1,m1]}],"text-shadow-color":[{"text-shadow":P()}],opacity:[{opacity:[Ie,ge,ke]}],"mix-blend":[{"mix-blend":[...re(),"plus-darker","plus-lighter"]}],"bg-blend":[{"bg-blend":re()}],"mask-clip":[{"mask-clip":["border","padding","content","fill","stroke","view"]},"mask-no-clip"],"mask-composite":[{mask:["add","subtract","intersect","exclude"]}],"mask-image-linear-pos":[{"mask-linear":[Ie]}],"mask-image-linear-from-pos":[{"mask-linear-from":V()}],"mask-image-linear-to-pos":[{"mask-linear-to":V()}],"mask-image-linear-from-color":[{"mask-linear-from":P()}],"mask-image-linear-to-color":[{"mask-linear-to":P()}],"mask-image-t-from-pos":[{"mask-t-from":V()}],"mask-image-t-to-pos":[{"mask-t-to":V()}],"mask-image-t-from-color":[{"mask-t-from":P()}],"mask-image-t-to-color":[{"mask-t-to":P()}],"mask-image-r-from-pos":[{"mask-r-from":V()}],"mask-image-r-to-pos":[{"mask-r-to":V()}],"mask-image-r-from-color":[{"mask-r-from":P()}],"mask-image-r-to-color":[{"mask-r-to":P()}],"mask-image-b-from-pos":[{"mask-b-from":V()}],"mask-image-b-to-pos":[{"mask-b-to":V()}],"mask-image-b-from-color":[{"mask-b-from":P()}],"mask-image-b-to-color":[{"mask-b-to":P()}],"mask-image-l-from-pos":[{"mask-l-from":V()}],"mask-image-l-to-pos":[{"mask-l-to":V()}],"mask-image-l-from-color":[{"mask-l-from":P()}],"mask-image-l-to-color":[{"mask-l-to":P()}],"mask-image-x-from-pos":[{"mask-x-from":V()}],"mask-image-x-to-pos":[{"mask-x-to":V()}],"mask-image-x-from-color":[{"mask-x-from":P()}],"mask-image-x-to-color":[{"mask-x-to":P()}],"mask-image-y-from-pos":[{"mask-y-from":V()}],"mask-image-y-to-pos":[{"mask-y-to":V()}],"mask-image-y-from-color":[{"mask-y-from":P()}],"mask-image-y-to-color":[{"mask-y-to":P()}],"mask-image-radial":[{"mask-radial":[ge,ke]}],"mask-image-radial-from-pos":[{"mask-radial-from":V()}],"mask-image-radial-to-pos":[{"mask-radial-to":V()}],"mask-image-radial-from-color":[{"mask-radial-from":P()}],"mask-image-radial-to-color":[{"mask-radial-to":P()}],"mask-image-radial-shape":[{"mask-radial":["circle","ellipse"]}],"mask-image-radial-size":[{"mask-radial":[{closest:["side","corner"],farthest:["side","corner"]}]}],"mask-image-radial-pos":[{"mask-radial-at":x()}],"mask-image-conic-pos":[{"mask-conic":[Ie]}],"mask-image-conic-from-pos":[{"mask-conic-from":V()}],"mask-image-conic-to-pos":[{"mask-conic-to":V()}],"mask-image-conic-from-color":[{"mask-conic-from":P()}],"mask-image-conic-to-color":[{"mask-conic-to":P()}],"mask-mode":[{mask:["alpha","luminance","match"]}],"mask-origin":[{"mask-origin":["border","padding","content","fill","stroke","view"]}],"mask-position":[{mask:F()}],"mask-repeat":[{mask:ne()}],"mask-size":[{mask:de()}],"mask-type":[{"mask-type":["alpha","luminance"]}],"mask-image":[{mask:["none",ge,ke]}],filter:[{filter:["","none",ge,ke]}],blur:[{blur:te()}],brightness:[{brightness:[Ie,ge,ke]}],contrast:[{contrast:[Ie,ge,ke]}],"drop-shadow":[{"drop-shadow":["","none",k,k1,m1]}],"drop-shadow-color":[{"drop-shadow":P()}],grayscale:[{grayscale:["",Ie,ge,ke]}],"hue-rotate":[{"hue-rotate":[Ie,ge,ke]}],invert:[{invert:["",Ie,ge,ke]}],saturate:[{saturate:[Ie,ge,ke]}],sepia:[{sepia:["",Ie,ge,ke]}],"backdrop-filter":[{"backdrop-filter":["","none",ge,ke]}],"backdrop-blur":[{"backdrop-blur":te()}],"backdrop-brightness":[{"backdrop-brightness":[Ie,ge,ke]}],"backdrop-contrast":[{"backdrop-contrast":[Ie,ge,ke]}],"backdrop-grayscale":[{"backdrop-grayscale":["",Ie,ge,ke]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[Ie,ge,ke]}],"backdrop-invert":[{"backdrop-invert":["",Ie,ge,ke]}],"backdrop-opacity":[{"backdrop-opacity":[Ie,ge,ke]}],"backdrop-saturate":[{"backdrop-saturate":[Ie,ge,ke]}],"backdrop-sepia":[{"backdrop-sepia":["",Ie,ge,ke]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":L()}],"border-spacing-x":[{"border-spacing-x":L()}],"border-spacing-y":[{"border-spacing-y":L()}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["","all","colors","opacity","shadow","transform","none",ge,ke]}],"transition-behavior":[{transition:["normal","discrete"]}],duration:[{duration:[Ie,"initial",ge,ke]}],ease:[{ease:["linear","initial",v,ge,ke]}],delay:[{delay:[Ie,ge,ke]}],animate:[{animate:["none",b,ge,ke]}],backface:[{backface:["hidden","visible"]}],perspective:[{perspective:[g,ge,ke]}],"perspective-origin":[{"perspective-origin":N()}],rotate:[{rotate:fe()}],"rotate-x":[{"rotate-x":fe()}],"rotate-y":[{"rotate-y":fe()}],"rotate-z":[{"rotate-z":fe()}],scale:[{scale:pe()}],"scale-x":[{"scale-x":pe()}],"scale-y":[{"scale-y":pe()}],"scale-z":[{"scale-z":pe()}],"scale-3d":["scale-3d"],skew:[{skew:le()}],"skew-x":[{"skew-x":le()}],"skew-y":[{"skew-y":le()}],transform:[{transform:[ge,ke,"","none","gpu","cpu"]}],"transform-origin":[{origin:N()}],"transform-style":[{transform:["3d","flat"]}],translate:[{translate:ee()}],"translate-x":[{"translate-x":ee()}],"translate-y":[{"translate-y":ee()}],"translate-z":[{"translate-z":ee()}],"translate-none":["translate-none"],accent:[{accent:P()}],appearance:[{appearance:["none","auto"]}],"caret-color":[{caret:P()}],"color-scheme":[{scheme:["normal","dark","light","light-dark","only-dark","only-light"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",ge,ke]}],"field-sizing":[{"field-sizing":["fixed","content"]}],"pointer-events":[{"pointer-events":["auto","none"]}],resize:[{resize:["none","","y","x"]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":L()}],"scroll-mx":[{"scroll-mx":L()}],"scroll-my":[{"scroll-my":L()}],"scroll-ms":[{"scroll-ms":L()}],"scroll-me":[{"scroll-me":L()}],"scroll-mt":[{"scroll-mt":L()}],"scroll-mr":[{"scroll-mr":L()}],"scroll-mb":[{"scroll-mb":L()}],"scroll-ml":[{"scroll-ml":L()}],"scroll-p":[{"scroll-p":L()}],"scroll-px":[{"scroll-px":L()}],"scroll-py":[{"scroll-py":L()}],"scroll-ps":[{"scroll-ps":L()}],"scroll-pe":[{"scroll-pe":L()}],"scroll-pt":[{"scroll-pt":L()}],"scroll-pr":[{"scroll-pr":L()}],"scroll-pb":[{"scroll-pb":L()}],"scroll-pl":[{"scroll-pl":L()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",ge,ke]}],fill:[{fill:["none",...P()]}],"stroke-w":[{stroke:[Ie,Os,bn,hS]}],stroke:[{stroke:["none",...P()]}],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-x","border-w-y","border-w-s","border-w-e","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-x","border-color-y","border-color-s","border-color-e","border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],translate:["translate-x","translate-y","translate-none"],"translate-none":["translate","translate-x","translate-y","translate-z"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]},orderSensitiveModifiers:["*","**","after","backdrop","before","details-content","file","first-letter","first-line","marker","placeholder","selection"]}}),pS=w.createContext(null),mK=()=>{const e=w.useContext(pS);if(!e)throw new Error("useSchemaContext must be used within a SchemaRendererProvider");return e},g1=e=>{const o=w.useContext(pS)?.dataSource;return!o||!e?o:e.split(".").reduce((n,a)=>n&&n[a],o)},Gc=w.forwardRef(({schema:e,...t},o)=>{const a=w.useContext(pS)?.dataSource||{},r=w.useMemo(()=>{if(!e||typeof e=="string")return e;const b=new cS({data:a}),M={...e};if(M.properties&&Object.assign(M,M.properties),typeof M.content=="string"&&(M.content=b.evaluate(M.content)),M.props){const x={...M.props};for(const[N,C]of Object.entries(x))x[N]=b.evaluate(C);M.props=x}return M},[e,a]);if(!r)return null;if(typeof r=="string")return d.jsx(d.Fragment,{children:r});const c=ie.get(r.type);if(!c)return d.jsxs("div",{className:"p-4 border border-red-500 rounded text-red-500 bg-red-50 my-2",children:["Unknown component type: ",d.jsx("strong",{children:r.type}),d.jsx("pre",{className:"text-xs mt-2 overflow-auto",children:JSON.stringify(r,null,2)})]});const{type:s,children:l,body:u,schema:y,visible:h,visibleOn:f,hidden:k,hiddenOn:m,disabled:g,disabledOn:_,...v}=r;return w.createElement(c,{schema:r,...v,...r.props||{},className:r.className,"data-obj-id":r.id,"data-obj-type":r.type,...t})});Gc.displayName="SchemaRenderer";var qs=e=>e.type==="checkbox",Mn=e=>e instanceof Date,xt=e=>e==null;const NT=e=>typeof e=="object";var at=e=>!xt(e)&&!Array.isArray(e)&&NT(e)&&!Mn(e),CT=e=>at(e)&&e.target?qs(e.target)?e.target.checked:e.target.value:e,kK=e=>e.substring(0,e.search(/\.\d+(\.|$)/))||e,$T=(e,t)=>e.has(kK(t)),gK=e=>{const t=e.constructor&&e.constructor.prototype;return at(t)&&t.hasOwnProperty("isPrototypeOf")},yS=typeof window<"u"&&typeof window.HTMLElement<"u"&&typeof document<"u";function rt(e){if(e instanceof Date)return new Date(e);const t=typeof FileList<"u"&&e instanceof FileList;if(yS&&(e instanceof Blob||t))return e;const o=Array.isArray(e);if(!o&&!(at(e)&&gK(e)))return e;const n=o?[]:Object.create(Object.getPrototypeOf(e));for(const a in e)Object.prototype.hasOwnProperty.call(e,a)&&(n[a]=rt(e[a]));return n}var v1=e=>/^\w*$/.test(e),Ye=e=>e===void 0,fS=e=>Array.isArray(e)?e.filter(Boolean):[],mS=e=>fS(e.replace(/["|']|\]/g,"").split(/\.|\[/)),ye=(e,t,o)=>{if(!t||!at(e))return o;const n=(v1(t)?[t]:mS(t)).reduce((a,r)=>xt(a)?a:a[r],e);return Ye(n)||n===e?Ye(e[t])?o:e[t]:n},At=e=>typeof e=="boolean",vt=e=>typeof e=="function",Ge=(e,t,o)=>{let n=-1;const a=v1(t)?[t]:mS(t),r=a.length,c=r-1;for(;++n<r;){const s=a[n];let l=o;if(n!==c){const u=e[s];l=at(u)||Array.isArray(u)?u:isNaN(+a[n+1])?{}:[]}if(s==="__proto__"||s==="constructor"||s==="prototype")return;e[s]=l,e=e[s]}};const _1={BLUR:"blur",FOCUS_OUT:"focusout",CHANGE:"change"},Rt={onBlur:"onBlur",onChange:"onChange",onSubmit:"onSubmit",onTouched:"onTouched",all:"all"},Ho={max:"max",min:"min",maxLength:"maxLength",minLength:"minLength",pattern:"pattern",required:"required",validate:"validate"},kS=w.createContext(null);kS.displayName="HookFormControlContext";const gS=()=>w.useContext(kS);var ST=(e,t,o,n=!0)=>{const a={defaultValues:t._defaultValues};for(const r in e)Object.defineProperty(a,r,{get:()=>{const c=r;return t._proxyFormState[c]!==Rt.all&&(t._proxyFormState[c]=!n||Rt.all),o&&(o[c]=!0),e[c]}});return a};const vS=typeof window<"u"?w.useLayoutEffect:w.useEffect;function vK(e){const t=gS(),{control:o=t,disabled:n,name:a,exact:r}=e||{},[c,s]=w.useState(o._formState),l=w.useRef({isDirty:!1,isLoading:!1,dirtyFields:!1,touchedFields:!1,validatingFields:!1,isValidating:!1,isValid:!1,errors:!1});return vS(()=>o._subscribe({name:a,formState:l.current,exact:r,callback:u=>{!n&&s({...o._formState,...u})}}),[a,n,r]),w.useEffect(()=>{l.current.isValid&&o._setValid(!0)},[o]),w.useMemo(()=>ST(c,o,l.current,!1),[c,o])}var Pt=e=>typeof e=="string",_S=(e,t,o,n,a)=>Pt(e)?(n&&t.watch.add(e),ye(o,e,a)):Array.isArray(e)?e.map(r=>(n&&t.watch.add(r),ye(o,r))):(n&&(t.watchAll=!0),o),bS=e=>xt(e)||!NT(e);function Gt(e,t,o=new WeakSet){if(bS(e)||bS(t))return Object.is(e,t);if(Mn(e)&&Mn(t))return Object.is(e.getTime(),t.getTime());const n=Object.keys(e),a=Object.keys(t);if(n.length!==a.length)return!1;if(o.has(e)||o.has(t))return!0;o.add(e),o.add(t);for(const r of n){const c=e[r];if(!a.includes(r))return!1;if(r!=="ref"){const s=t[r];if(Mn(c)&&Mn(s)||at(c)&&at(s)||Array.isArray(c)&&Array.isArray(s)?!Gt(c,s,o):!Object.is(c,s))return!1}}return!0}function _K(e){const t=gS(),{control:o=t,name:n,defaultValue:a,disabled:r,exact:c,compute:s}=e||{},l=w.useRef(a),u=w.useRef(s),y=w.useRef(void 0),h=w.useRef(o),f=w.useRef(n);u.current=s;const[k,m]=w.useState(()=>{const x=o._getWatch(n,l.current);return u.current?u.current(x):x}),g=w.useCallback(x=>{const N=_S(n,o._names,x||o._formValues,!1,l.current);return u.current?u.current(N):N},[o._formValues,o._names,n]),_=w.useCallback(x=>{if(!r){const N=_S(n,o._names,x||o._formValues,!1,l.current);if(u.current){const C=u.current(N);Gt(C,y.current)||(m(C),y.current=C)}else m(N)}},[o._formValues,o._names,r,n]);vS(()=>((h.current!==o||!Gt(f.current,n))&&(h.current=o,f.current=n,_()),o._subscribe({name:n,formState:{values:!0},exact:c,callback:x=>{_(x.values)}})),[o,c,n,_]),w.useEffect(()=>o._removeUnmounted());const v=h.current!==o,b=f.current,M=w.useMemo(()=>{if(r)return null;const x=!v&&!Gt(b,n);return v||x?g():null},[r,v,n,b,g]);return M!==null?M:k}function bK(e){const t=gS(),{name:o,disabled:n,control:a=t,shouldUnregister:r,defaultValue:c,exact:s=!0}=e,l=$T(a._names.array,o),u=w.useMemo(()=>ye(a._formValues,o,ye(a._defaultValues,o,c)),[a,o,c]),y=_K({control:a,name:o,defaultValue:u,exact:s}),h=vK({control:a,name:o,exact:s}),f=w.useRef(e),k=w.useRef(void 0),m=w.useRef(a.register(o,{...e.rules,value:y,...At(e.disabled)?{disabled:e.disabled}:{}}));f.current=e;const g=w.useMemo(()=>Object.defineProperties({},{invalid:{enumerable:!0,get:()=>!!ye(h.errors,o)},isDirty:{enumerable:!0,get:()=>!!ye(h.dirtyFields,o)},isTouched:{enumerable:!0,get:()=>!!ye(h.touchedFields,o)},isValidating:{enumerable:!0,get:()=>!!ye(h.validatingFields,o)},error:{enumerable:!0,get:()=>ye(h.errors,o)}}),[h,o]),_=w.useCallback(x=>m.current.onChange({target:{value:CT(x),name:o},type:_1.CHANGE}),[o]),v=w.useCallback(()=>m.current.onBlur({target:{value:ye(a._formValues,o),name:o},type:_1.BLUR}),[o,a._formValues]),b=w.useCallback(x=>{const N=ye(a._fields,o);N&&N._f&&x&&(N._f.ref={focus:()=>vt(x.focus)&&x.focus(),select:()=>vt(x.select)&&x.select(),setCustomValidity:C=>vt(x.setCustomValidity)&&x.setCustomValidity(C),reportValidity:()=>vt(x.reportValidity)&&x.reportValidity()})},[a._fields,o]),M=w.useMemo(()=>({name:o,value:y,...At(n)||h.disabled?{disabled:h.disabled||n}:{},onChange:_,onBlur:v,ref:b}),[o,n,h.disabled,_,v,b,y]);return w.useEffect(()=>{const x=a._options.shouldUnregister||r,N=k.current;N&&N!==o&&!l&&a.unregister(N),a.register(o,{...f.current.rules,...At(f.current.disabled)?{disabled:f.current.disabled}:{}});const C=($,L)=>{const A=ye(a._fields,$);A&&A._f&&(A._f.mount=L)};if(C(o,!0),x){const $=rt(ye(a._options.defaultValues,o,f.current.defaultValue));Ge(a._defaultValues,o,$),Ye(ye(a._formValues,o))&&Ge(a._formValues,o,$)}return!l&&a.register(o),k.current=o,()=>{(l?x&&!a._state.action:x)?a.unregister(o):C(o,!1)}},[o,a,l,r]),w.useEffect(()=>{a._setDisabledField({disabled:n,name:o})},[n,o,a]),w.useMemo(()=>({field:M,formState:h,fieldState:g}),[M,h,g])}const MK=e=>e.render(bK(e)),MS=w.createContext(null);MS.displayName="HookFormContext";const wK=()=>w.useContext(MS),xK=e=>{const{children:t,watch:o,getValues:n,getFieldState:a,setError:r,clearErrors:c,setValue:s,trigger:l,formState:u,resetField:y,reset:h,handleSubmit:f,unregister:k,control:m,register:g,setFocus:_,subscribe:v}=e;return w.createElement(MS.Provider,{value:w.useMemo(()=>({watch:o,getValues:n,getFieldState:a,setError:r,clearErrors:c,setValue:s,trigger:l,formState:u,resetField:y,reset:h,handleSubmit:f,unregister:k,control:m,register:g,setFocus:_,subscribe:v}),[c,m,u,a,n,f,g,h,y,r,_,s,v,l,k,o])},w.createElement(kS.Provider,{value:m},t))};var NK=(e,t,o,n,a)=>t?{...o[e],types:{...o[e]&&o[e].types?o[e].types:{},[n]:a||!0}}:{},js=e=>Array.isArray(e)?e:[e],LT=()=>{let e=[];return{get observers(){return e},next:a=>{for(const r of e)r.next&&r.next(a)},subscribe:a=>(e.push(a),{unsubscribe:()=>{e=e.filter(r=>r!==a)}}),unsubscribe:()=>{e=[]}}};function IT(e,t){const o={};for(const n in e)if(e.hasOwnProperty(n)){const a=e[n],r=t[n];if(a&&at(a)&&r){const c=IT(a,r);at(c)&&(o[n]=c)}else e[n]&&(o[n]=r)}return o}var _t=e=>at(e)&&!Object.keys(e).length,wS=e=>e.type==="file",b1=e=>{if(!yS)return!1;const t=e?e.ownerDocument:0;return e instanceof(t&&t.defaultView?t.defaultView.HTMLElement:HTMLElement)},AT=e=>e.type==="select-multiple",xS=e=>e.type==="radio",CK=e=>xS(e)||qs(e),NS=e=>b1(e)&&e.isConnected;function $K(e,t){const o=t.slice(0,-1).length;let n=0;for(;n<o;)e=Ye(e)?n++:e[t[n++]];return e}function SK(e){for(const t in e)if(e.hasOwnProperty(t)&&!Ye(e[t]))return!1;return!0}function it(e,t){const o=Array.isArray(t)?t:v1(t)?[t]:mS(t),n=o.length===1?e:$K(e,o),a=o.length-1,r=o[a];return n&&delete n[r],a!==0&&(at(n)&&_t(n)||Array.isArray(n)&&SK(n))&&it(e,o.slice(0,-1)),e}var LK=e=>{for(const t in e)if(vt(e[t]))return!0;return!1};function PT(e){return Array.isArray(e)||at(e)&&!LK(e)}function CS(e,t={}){for(const o in e){const n=e[o];PT(n)?(t[o]=Array.isArray(n)?[]:{},CS(n,t[o])):Ye(n)||(t[o]=!0)}return t}function Kc(e,t,o){o||(o=CS(t));for(const n in e){const a=e[n];if(PT(a))Ye(t)||bS(o[n])?o[n]=CS(a,Array.isArray(a)?[]:{}):Kc(a,xt(t)?{}:t[n],o[n]);else{const r=t[n];o[n]=!Gt(a,r)}}return o}const TT={value:!1,isValid:!1},DT={value:!0,isValid:!0};var ET=e=>{if(Array.isArray(e)){if(e.length>1){const t=e.filter(o=>o&&o.checked&&!o.disabled).map(o=>o.value);return{value:t,isValid:!!t.length}}return e[0].checked&&!e[0].disabled?e[0].attributes&&!Ye(e[0].attributes.value)?Ye(e[0].value)||e[0].value===""?DT:{value:e[0].value,isValid:!0}:DT:TT}return TT},zT=(e,{valueAsNumber:t,valueAsDate:o,setValueAs:n})=>Ye(e)?e:t?e===""?NaN:e&&+e:o&&Pt(e)?new Date(e):n?n(e):e;const OT={isValid:!1,value:null};var qT=e=>Array.isArray(e)?e.reduce((t,o)=>o&&o.checked&&!o.disabled?{isValid:!0,value:o.value}:t,OT):OT;function jT(e){const t=e.ref;return wS(t)?t.files:xS(t)?qT(e.refs).value:AT(t)?[...t.selectedOptions].map(({value:o})=>o):qs(t)?ET(e.refs).value:zT(Ye(t.value)?e.ref.value:t.value,e)}var IK=(e,t,o,n)=>{const a={};for(const r of e){const c=ye(t,r);c&&Ge(a,r,c._f)}return{criteriaMode:o,names:[...e],fields:a,shouldUseNativeValidation:n}},M1=e=>e instanceof RegExp,Hs=e=>Ye(e)?e:M1(e)?e.source:at(e)?M1(e.value)?e.value.source:e.value:e,HT=e=>({isOnSubmit:!e||e===Rt.onSubmit,isOnBlur:e===Rt.onBlur,isOnChange:e===Rt.onChange,isOnAll:e===Rt.all,isOnTouch:e===Rt.onTouched});const VT="AsyncFunction";var AK=e=>!!e&&!!e.validate&&!!(vt(e.validate)&&e.validate.constructor.name===VT||at(e.validate)&&Object.values(e.validate).find(t=>t.constructor.name===VT)),PK=e=>e.mount&&(e.required||e.min||e.max||e.maxLength||e.minLength||e.pattern||e.validate),FT=(e,t,o)=>!o&&(t.watchAll||t.watch.has(e)||[...t.watch].some(n=>e.startsWith(n)&&/^\.\w+/.test(e.slice(n.length))));const Vs=(e,t,o,n)=>{for(const a of o||Object.keys(e)){const r=ye(e,a);if(r){const{_f:c,...s}=r;if(c){if(c.refs&&c.refs[0]&&t(c.refs[0],a)&&!n)return!0;if(c.ref&&t(c.ref,c.name)&&!n)return!0;if(Vs(s,t))break}else if(at(s)&&Vs(s,t))break}}};function BT(e,t,o){const n=ye(e,o);if(n||v1(o))return{error:n,name:o};const a=o.split(".");for(;a.length;){const r=a.join("."),c=ye(t,r),s=ye(e,r);if(c&&!Array.isArray(c)&&o!==r)return{name:o};if(s&&s.type)return{name:r,error:s};if(s&&s.root&&s.root.type)return{name:`${r}.root`,error:s.root};a.pop()}return{name:o}}var TK=(e,t,o,n)=>{o(e);const{name:a,...r}=e;return _t(r)||Object.keys(r).length>=Object.keys(t).length||Object.keys(r).find(c=>t[c]===(!n||Rt.all))},DK=(e,t,o)=>!e||!t||e===t||js(e).some(n=>n&&(o?n===t:n.startsWith(t)||t.startsWith(n))),EK=(e,t,o,n,a)=>a.isOnAll?!1:!o&&a.isOnTouch?!(t||e):(o?n.isOnBlur:a.isOnBlur)?!e:(o?n.isOnChange:a.isOnChange)?e:!0,zK=(e,t)=>!fS(ye(e,t)).length&&it(e,t),OK=(e,t,o)=>{const n=js(ye(e,o));return Ge(n,"root",t[o]),Ge(e,o,n),e};function WT(e,t,o="validate"){if(Pt(e)||Array.isArray(e)&&e.every(Pt)||At(e)&&!e)return{type:o,message:Pt(e)?e:"",ref:t}}var Yc=e=>at(e)&&!M1(e)?e:{value:e,message:""},UT=async(e,t,o,n,a,r)=>{const{ref:c,refs:s,required:l,maxLength:u,minLength:y,min:h,max:f,pattern:k,validate:m,name:g,valueAsNumber:_,mount:v}=e._f,b=ye(o,g);if(!v||t.has(g))return{};const M=s?s[0]:c,x=O=>{a&&M.reportValidity&&(M.setCustomValidity(At(O)?"":O||""),M.reportValidity())},N={},C=xS(c),$=qs(c),L=C||$,A=(_||wS(c))&&Ye(c.value)&&Ye(b)||b1(c)&&c.value===""||b===""||Array.isArray(b)&&!b.length,q=NK.bind(null,g,n,N),z=(O,D,U,G=Ho.maxLength,H=Ho.minLength)=>{const Y=O?D:U;N[g]={type:O?G:H,message:Y,ref:c,...q(O?G:H,Y)}};if(r?!Array.isArray(b)||!b.length:l&&(!L&&(A||xt(b))||At(b)&&!b||$&&!ET(s).isValid||C&&!qT(s).isValid)){const{value:O,message:D}=Pt(l)?{value:!!l,message:l}:Yc(l);if(O&&(N[g]={type:Ho.required,message:D,ref:M,...q(Ho.required,D)},!n))return x(D),N}if(!A&&(!xt(h)||!xt(f))){let O,D;const U=Yc(f),G=Yc(h);if(!xt(b)&&!isNaN(b)){const H=c.valueAsNumber||b&&+b;xt(U.value)||(O=H>U.value),xt(G.value)||(D=H<G.value)}else{const H=c.valueAsDate||new Date(b),Y=ne=>new Date(new Date().toDateString()+" "+ne),P=c.type=="time",F=c.type=="week";Pt(U.value)&&b&&(O=P?Y(b)>Y(U.value):F?b>U.value:H>new Date(U.value)),Pt(G.value)&&b&&(D=P?Y(b)<Y(G.value):F?b<G.value:H<new Date(G.value))}if((O||D)&&(z(!!O,U.message,G.message,Ho.max,Ho.min),!n))return x(N[g].message),N}if((u||y)&&!A&&(Pt(b)||r&&Array.isArray(b))){const O=Yc(u),D=Yc(y),U=!xt(O.value)&&b.length>+O.value,G=!xt(D.value)&&b.length<+D.value;if((U||G)&&(z(U,O.message,D.message),!n))return x(N[g].message),N}if(k&&!A&&Pt(b)){const{value:O,message:D}=Yc(k);if(M1(O)&&!b.match(O)&&(N[g]={type:Ho.pattern,message:D,ref:c,...q(Ho.pattern,D)},!n))return x(D),N}if(m){if(vt(m)){const O=await m(b,o),D=WT(O,M);if(D&&(N[g]={...D,...q(Ho.validate,D.message)},!n))return x(D.message),N}else if(at(m)){let O={};for(const D in m){if(!_t(O)&&!n)break;const U=WT(await m[D](b,o),M,D);U&&(O={...U,...q(D,U.message)},x(U.message),n&&(N[g]=O))}if(!_t(O)&&(N[g]={ref:M,...O},!n))return N}}return x(!0),N};const qK={mode:Rt.onSubmit,reValidateMode:Rt.onChange,shouldFocusError:!0};function jK(e={}){let t={...qK,...e},o={submitCount:0,isDirty:!1,isReady:!1,isLoading:vt(t.defaultValues),isValidating:!1,isSubmitted:!1,isSubmitting:!1,isSubmitSuccessful:!1,isValid:!1,touchedFields:{},dirtyFields:{},validatingFields:{},errors:t.errors||{},disabled:t.disabled||!1},n={},a=at(t.defaultValues)||at(t.values)?rt(t.defaultValues||t.values)||{}:{},r=t.shouldUnregister?{}:rt(a),c={action:!1,mount:!1,watch:!1,keepIsValid:!1},s={mount:new Set,disabled:new Set,unMount:new Set,array:new Set,watch:new Set},l,u=0;const y={isDirty:!1,dirtyFields:!1,validatingFields:!1,touchedFields:!1,isValidating:!1,isValid:!1,errors:!1},h={...y};let f={...h};const k={array:LT(),state:LT()},m=t.criteriaMode===Rt.all,g=T=>I=>{clearTimeout(u),u=setTimeout(T,I)},_=async T=>{if(!c.keepIsValid&&!t.disabled&&(h.isValid||f.isValid||T)){let I;t.resolver?(I=_t((await L()).errors),v()):I=await q(n,!0),I!==o.isValid&&k.state.next({isValid:I})}},v=(T,I)=>{!t.disabled&&(h.isValidating||h.validatingFields||f.isValidating||f.validatingFields)&&((T||Array.from(s.mount)).forEach(E=>{E&&(I?Ge(o.validatingFields,E,I):it(o.validatingFields,E))}),k.state.next({validatingFields:o.validatingFields,isValidating:!_t(o.validatingFields)}))},b=(T,I=[],E,Q,Z=!0,J=!0)=>{if(Q&&E&&!t.disabled){if(c.action=!0,J&&Array.isArray(ye(n,T))){const ae=E(ye(n,T),Q.argA,Q.argB);Z&&Ge(n,T,ae)}if(J&&Array.isArray(ye(o.errors,T))){const ae=E(ye(o.errors,T),Q.argA,Q.argB);Z&&Ge(o.errors,T,ae),zK(o.errors,T)}if((h.touchedFields||f.touchedFields)&&J&&Array.isArray(ye(o.touchedFields,T))){const ae=E(ye(o.touchedFields,T),Q.argA,Q.argB);Z&&Ge(o.touchedFields,T,ae)}(h.dirtyFields||f.dirtyFields)&&(o.dirtyFields=Kc(a,r)),k.state.next({name:T,isDirty:O(T,I),dirtyFields:o.dirtyFields,errors:o.errors,isValid:o.isValid})}else Ge(r,T,I)},M=(T,I)=>{Ge(o.errors,T,I),k.state.next({errors:o.errors})},x=T=>{o.errors=T,k.state.next({errors:o.errors,isValid:!1})},N=(T,I,E,Q)=>{const Z=ye(n,T);if(Z){const J=ye(r,T,Ye(E)?ye(a,T):E);Ye(J)||Q&&Q.defaultChecked||I?Ge(r,T,I?J:jT(Z._f)):G(T,J),c.mount&&!c.action&&_()}},C=(T,I,E,Q,Z)=>{let J=!1,ae=!1;const Ne={name:T};if(!t.disabled){if(!E||Q){(h.isDirty||f.isDirty)&&(ae=o.isDirty,o.isDirty=Ne.isDirty=O(),J=ae!==Ne.isDirty);const Se=Gt(ye(a,T),I);ae=!!ye(o.dirtyFields,T),Se?it(o.dirtyFields,T):Ge(o.dirtyFields,T,!0),Ne.dirtyFields=o.dirtyFields,J=J||(h.dirtyFields||f.dirtyFields)&&ae!==!Se}if(E){const Se=ye(o.touchedFields,T);Se||(Ge(o.touchedFields,T,E),Ne.touchedFields=o.touchedFields,J=J||(h.touchedFields||f.touchedFields)&&Se!==E)}J&&Z&&k.state.next(Ne)}return J?Ne:{}},$=(T,I,E,Q)=>{const Z=ye(o.errors,T),J=(h.isValid||f.isValid)&&At(I)&&o.isValid!==I;if(t.delayError&&E?(l=g(()=>M(T,E)),l(t.delayError)):(clearTimeout(u),l=null,E?Ge(o.errors,T,E):it(o.errors,T)),(E?!Gt(Z,E):Z)||!_t(Q)||J){const ae={...Q,...J&&At(I)?{isValid:I}:{},errors:o.errors,name:T};o={...o,...ae},k.state.next(ae)}},L=async T=>(v(T,!0),await t.resolver(r,t.context,IK(T||s.mount,n,t.criteriaMode,t.shouldUseNativeValidation))),A=async T=>{const{errors:I}=await L(T);if(v(T),T)for(const E of T){const Q=ye(I,E);Q?Ge(o.errors,E,Q):it(o.errors,E)}else o.errors=I;return I},q=async(T,I,E={valid:!0})=>{for(const Q in T){const Z=T[Q];if(Z){const{_f:J,...ae}=Z;if(J){const Ne=s.array.has(J.name),Se=Z._f&&AK(Z._f);Se&&h.validatingFields&&v([J.name],!0);const Te=await UT(Z,s.disabled,r,m,t.shouldUseNativeValidation&&!I,Ne);if(Se&&h.validatingFields&&v([J.name]),Te[J.name]&&(E.valid=!1,I||e.shouldUseNativeValidation))break;!I&&(ye(Te,J.name)?Ne?OK(o.errors,Te,J.name):Ge(o.errors,J.name,Te[J.name]):it(o.errors,J.name))}!_t(ae)&&await q(ae,I,E)}}return E.valid},z=()=>{for(const T of s.unMount){const I=ye(n,T);I&&(I._f.refs?I._f.refs.every(E=>!NS(E)):!NS(I._f.ref))&&te(T)}s.unMount=new Set},O=(T,I)=>!t.disabled&&(T&&I&&Ge(r,T,I),!Gt(de(),a)),D=(T,I,E)=>_S(T,s,{...c.mount?r:Ye(I)?a:Pt(T)?{[T]:I}:I},E,I),U=T=>fS(ye(c.mount?r:a,T,t.shouldUnregister?ye(a,T,[]):[])),G=(T,I,E={})=>{const Q=ye(n,T);let Z=I;if(Q){const J=Q._f;J&&(!J.disabled&&Ge(r,T,zT(I,J)),Z=b1(J.ref)&&xt(I)?"":I,AT(J.ref)?[...J.ref.options].forEach(ae=>ae.selected=Z.includes(ae.value)):J.refs?qs(J.ref)?J.refs.forEach(ae=>{(!ae.defaultChecked||!ae.disabled)&&(Array.isArray(Z)?ae.checked=!!Z.find(Ne=>Ne===ae.value):ae.checked=Z===ae.value||!!Z)}):J.refs.forEach(ae=>ae.checked=ae.value===Z):wS(J.ref)?J.ref.value="":(J.ref.value=Z,J.ref.type||k.state.next({name:T,values:rt(r)})))}(E.shouldDirty||E.shouldTouch)&&C(T,Z,E.shouldTouch,E.shouldDirty,!0),E.shouldValidate&&ne(T)},H=(T,I,E)=>{for(const Q in I){if(!I.hasOwnProperty(Q))return;const Z=I[Q],J=T+"."+Q,ae=ye(n,J);(s.array.has(T)||at(Z)||ae&&!ae._f)&&!Mn(Z)?H(J,Z,E):G(J,Z,E)}},Y=(T,I,E={})=>{const Q=ye(n,T),Z=s.array.has(T),J=rt(I);Ge(r,T,J),Z?(k.array.next({name:T,values:rt(r)}),(h.isDirty||h.dirtyFields||f.isDirty||f.dirtyFields)&&E.shouldDirty&&k.state.next({name:T,dirtyFields:Kc(a,r),isDirty:O(T,J)})):Q&&!Q._f&&!xt(J)?H(T,J,E):G(T,J,E),FT(T,s)?k.state.next({...o,name:T,values:rt(r)}):k.state.next({name:c.mount?T:void 0,values:rt(r)})},P=async T=>{c.mount=!0;const I=T.target;let E=I.name,Q=!0;const Z=ye(n,E),J=Se=>{Q=Number.isNaN(Se)||Mn(Se)&&isNaN(Se.getTime())||Gt(Se,ye(r,E,Se))},ae=HT(t.mode),Ne=HT(t.reValidateMode);if(Z){let Se,Te;const dt=I.type?jT(Z._f):CT(T),Ve=T.type===_1.BLUR||T.type===_1.FOCUS_OUT,nt=!PK(Z._f)&&!t.resolver&&!ye(o.errors,E)&&!Z._f.deps||EK(Ve,ye(o.touchedFields,E),o.isSubmitted,Ne,ae),wt=FT(E,s,Ve);Ge(r,E,dt),Ve?(!I||!I.readOnly)&&(Z._f.onBlur&&Z._f.onBlur(T),l&&l(0)):Z._f.onChange&&Z._f.onChange(T);const Lt=C(E,dt,Ve),qo=!_t(Lt)||wt;if(!Ve&&k.state.next({name:E,type:T.type,values:rt(r)}),nt)return(h.isValid||f.isValid)&&(t.mode==="onBlur"?Ve&&_():Ve||_()),qo&&k.state.next({name:E,...wt?{}:Lt});if(!Ve&&wt&&k.state.next({...o}),t.resolver){const{errors:uo}=await L([E]);if(v([E]),J(dt),Q){const ho=BT(o.errors,n,E),oe=BT(uo,n,ho.name||E);Se=oe.error,E=oe.name,Te=_t(uo)}}else v([E],!0),Se=(await UT(Z,s.disabled,r,m,t.shouldUseNativeValidation))[E],v([E]),J(dt),Q&&(Se?Te=!1:(h.isValid||f.isValid)&&(Te=await q(n,!0)));Q&&(Z._f.deps&&(!Array.isArray(Z._f.deps)||Z._f.deps.length>0)&&ne(Z._f.deps),$(E,Te,Se,Lt))}},F=(T,I)=>{if(ye(o.errors,I)&&T.focus)return T.focus(),1},ne=async(T,I={})=>{let E,Q;const Z=js(T);if(t.resolver){const J=await A(Ye(T)?T:Z);E=_t(J),Q=T?!Z.some(ae=>ye(J,ae)):E}else T?(Q=(await Promise.all(Z.map(async J=>{const ae=ye(n,J);return await q(ae&&ae._f?{[J]:ae}:ae)}))).every(Boolean),!(!Q&&!o.isValid)&&_()):Q=E=await q(n);return k.state.next({...!Pt(T)||(h.isValid||f.isValid)&&E!==o.isValid?{}:{name:T},...t.resolver||!T?{isValid:E}:{},errors:o.errors}),I.shouldFocus&&!Q&&Vs(n,F,T?Z:s.mount),Q},de=(T,I)=>{let E={...c.mount?r:a};return I&&(E=IT(I.dirtyFields?o.dirtyFields:o.touchedFields,E)),Ye(T)?E:Pt(T)?ye(E,T):T.map(Q=>ye(E,Q))},B=(T,I)=>({invalid:!!ye((I||o).errors,T),isDirty:!!ye((I||o).dirtyFields,T),error:ye((I||o).errors,T),isValidating:!!ye(o.validatingFields,T),isTouched:!!ye((I||o).touchedFields,T)}),W=T=>{T&&js(T).forEach(I=>it(o.errors,I)),k.state.next({errors:T?o.errors:{}})},K=(T,I,E)=>{const Q=(ye(n,T,{_f:{}})._f||{}).ref,Z=ye(o.errors,T)||{},{ref:J,message:ae,type:Ne,...Se}=Z;Ge(o.errors,T,{...Se,...I,ref:Q}),k.state.next({name:T,errors:o.errors,isValid:!1}),E&&E.shouldFocus&&Q&&Q.focus&&Q.focus()},R=(T,I)=>vt(T)?k.state.subscribe({next:E=>"values"in E&&T(D(void 0,I),E)}):D(T,I,!0),re=T=>k.state.subscribe({next:I=>{DK(T.name,I.name,T.exact)&&TK(I,T.formState||h,De,T.reRenderRoot)&&T.callback({values:{...r},...o,...I,defaultValues:a})}}).unsubscribe,V=T=>(c.mount=!0,f={...f,...T.formState},re({...T,formState:{...y,...T.formState}})),te=(T,I={})=>{for(const E of T?js(T):s.mount)s.mount.delete(E),s.array.delete(E),I.keepValue||(it(n,E),it(r,E)),!I.keepError&&it(o.errors,E),!I.keepDirty&&it(o.dirtyFields,E),!I.keepTouched&&it(o.touchedFields,E),!I.keepIsValidating&&it(o.validatingFields,E),!t.shouldUnregister&&!I.keepDefaultValue&&it(a,E);k.state.next({values:rt(r)}),k.state.next({...o,...I.keepDirty?{isDirty:O()}:{}}),!I.keepIsValid&&_()},fe=({disabled:T,name:I})=>{if(At(T)&&c.mount||T||s.disabled.has(I)){const Z=s.disabled.has(I)!==!!T;T?s.disabled.add(I):s.disabled.delete(I),Z&&c.mount&&!c.action&&_()}},pe=(T,I={})=>{let E=ye(n,T);const Q=At(I.disabled)||At(t.disabled);return Ge(n,T,{...E||{},_f:{...E&&E._f?E._f:{ref:{name:T}},name:T,mount:!0,...I}}),s.mount.add(T),E?fe({disabled:At(I.disabled)?I.disabled:t.disabled,name:T}):N(T,!0,I.value),{...Q?{disabled:I.disabled||t.disabled}:{},...t.progressive?{required:!!I.required,min:Hs(I.min),max:Hs(I.max),minLength:Hs(I.minLength),maxLength:Hs(I.maxLength),pattern:Hs(I.pattern)}:{},name:T,onChange:P,onBlur:P,ref:Z=>{if(Z){pe(T,I),E=ye(n,T);const J=Ye(Z.value)&&Z.querySelectorAll&&Z.querySelectorAll("input,select,textarea")[0]||Z,ae=CK(J),Ne=E._f.refs||[];if(ae?Ne.find(Se=>Se===J):J===E._f.ref)return;Ge(n,T,{_f:{...E._f,...ae?{refs:[...Ne.filter(NS),J,...Array.isArray(ye(a,T))?[{}]:[]],ref:{type:J.type,name:T}}:{ref:J}}}),N(T,!1,void 0,J)}else E=ye(n,T,{}),E._f&&(E._f.mount=!1),(t.shouldUnregister||I.shouldUnregister)&&!($T(s.array,T)&&c.action)&&s.unMount.add(T)}}},le=()=>t.shouldFocusError&&Vs(n,F,s.mount),ee=T=>{At(T)&&(k.state.next({disabled:T}),Vs(n,(I,E)=>{const Q=ye(n,E);Q&&(I.disabled=Q._f.disabled||T,Array.isArray(Q._f.refs)&&Q._f.refs.forEach(Z=>{Z.disabled=Q._f.disabled||T}))},0,!1))},_e=(T,I)=>async E=>{let Q;E&&(E.preventDefault&&E.preventDefault(),E.persist&&E.persist());let Z=rt(r);if(k.state.next({isSubmitting:!0}),t.resolver){const{errors:J,values:ae}=await L();v(),o.errors=J,Z=rt(ae)}else await q(n);if(s.disabled.size)for(const J of s.disabled)it(Z,J);if(it(o.errors,"root"),_t(o.errors)){k.state.next({errors:{}});try{await T(Z,E)}catch(J){Q=J}}else I&&await I({...o.errors},E),le(),setTimeout(le);if(k.state.next({isSubmitted:!0,isSubmitting:!1,isSubmitSuccessful:_t(o.errors)&&!Q,submitCount:o.submitCount+1,errors:o.errors}),Q)throw Q},j=(T,I={})=>{ye(n,T)&&(Ye(I.defaultValue)?Y(T,rt(ye(a,T))):(Y(T,I.defaultValue),Ge(a,T,rt(I.defaultValue))),I.keepTouched||it(o.touchedFields,T),I.keepDirty||(it(o.dirtyFields,T),o.isDirty=I.defaultValue?O(T,rt(ye(a,T))):O()),I.keepError||(it(o.errors,T),h.isValid&&_()),k.state.next({...o}))},ue=(T,I={})=>{const E=T?rt(T):a,Q=rt(E),Z=_t(T),J=Z?a:Q;if(I.keepDefaultValues||(a=E),!I.keepValues){if(I.keepDirtyValues){const ae=new Set([...s.mount,...Object.keys(Kc(a,r))]);for(const Ne of Array.from(ae)){const Se=ye(o.dirtyFields,Ne),Te=ye(r,Ne),dt=ye(J,Ne);Se&&!Ye(Te)?Ge(J,Ne,Te):!Se&&!Ye(dt)&&Y(Ne,dt)}}else{if(yS&&Ye(T))for(const ae of s.mount){const Ne=ye(n,ae);if(Ne&&Ne._f){const Se=Array.isArray(Ne._f.refs)?Ne._f.refs[0]:Ne._f.ref;if(b1(Se)){const Te=Se.closest("form");if(Te){Te.reset();break}}}}if(I.keepFieldsRef)for(const ae of s.mount)Y(ae,ye(J,ae));else n={}}r=t.shouldUnregister?I.keepDefaultValues?rt(a):{}:rt(J),k.array.next({values:{...J}}),k.state.next({values:{...J}})}s={mount:I.keepDirtyValues?s.mount:new Set,unMount:new Set,array:new Set,disabled:new Set,watch:new Set,watchAll:!1,focus:""},c.mount=!h.isValid||!!I.keepIsValid||!!I.keepDirtyValues||!t.shouldUnregister&&!_t(J),c.watch=!!t.shouldUnregister,c.keepIsValid=!!I.keepIsValid,c.action=!1,I.keepErrors||(o.errors={}),k.state.next({submitCount:I.keepSubmitCount?o.submitCount:0,isDirty:Z?!1:I.keepDirty?o.isDirty:!!(I.keepDefaultValues&&!Gt(T,a)),isSubmitted:I.keepIsSubmitted?o.isSubmitted:!1,dirtyFields:Z?{}:I.keepDirtyValues?I.keepDefaultValues&&r?Kc(a,r):o.dirtyFields:I.keepDefaultValues&&T?Kc(a,T):I.keepDirty?o.dirtyFields:{},touchedFields:I.keepTouched?o.touchedFields:{},errors:I.keepErrors?o.errors:{},isSubmitSuccessful:I.keepIsSubmitSuccessful?o.isSubmitSuccessful:!1,isSubmitting:!1,defaultValues:a})},xe=(T,I)=>ue(vt(T)?T(r):T,{...t.resetOptions,...I}),Ce=(T,I={})=>{const E=ye(n,T),Q=E&&E._f;if(Q){const Z=Q.refs?Q.refs[0]:Q.ref;Z.focus&&setTimeout(()=>{Z.focus(),I.shouldSelect&&vt(Z.select)&&Z.select()})}},De=T=>{o={...o,...T}},Pe={control:{register:pe,unregister:te,getFieldState:B,handleSubmit:_e,setError:K,_subscribe:re,_runSchema:L,_updateIsValidating:v,_focusError:le,_getWatch:D,_getDirty:O,_setValid:_,_setFieldArray:b,_setDisabledField:fe,_setErrors:x,_getFieldArray:U,_reset:ue,_resetDefaultValues:()=>vt(t.defaultValues)&&t.defaultValues().then(T=>{xe(T,t.resetOptions),k.state.next({isLoading:!1})}),_removeUnmounted:z,_disableForm:ee,_subjects:k,_proxyFormState:h,get _fields(){return n},get _formValues(){return r},get _state(){return c},set _state(T){c=T},get _defaultValues(){return a},get _names(){return s},set _names(T){s=T},get _formState(){return o},get _options(){return t},set _options(T){t={...t,...T}}},subscribe:V,trigger:ne,register:pe,handleSubmit:_e,watch:R,setValue:Y,getValues:de,reset:xe,resetField:j,clearErrors:W,unregister:te,setError:K,setFocus:Ce,getFieldState:B};return{...Pe,formControl:Pe}}function HK(e={}){const t=w.useRef(void 0),o=w.useRef(void 0),[n,a]=w.useState({isDirty:!1,isValidating:!1,isLoading:vt(e.defaultValues),isSubmitted:!1,isSubmitting:!1,isSubmitSuccessful:!1,isValid:!1,submitCount:0,dirtyFields:{},touchedFields:{},validatingFields:{},errors:e.errors||{},disabled:e.disabled||!1,isReady:!1,defaultValues:vt(e.defaultValues)?void 0:e.defaultValues});if(!t.current)if(e.formControl)t.current={...e.formControl,formState:n},e.defaultValues&&!vt(e.defaultValues)&&e.formControl.reset(e.defaultValues,e.resetOptions);else{const{formControl:c,...s}=jK(e);t.current={...s,formState:n}}const r=t.current.control;return r._options=e,vS(()=>{const c=r._subscribe({formState:r._proxyFormState,callback:()=>a({...r._formState}),reRenderRoot:!0});return a(s=>({...s,isReady:!0})),r._formState.isReady=!0,c},[r]),w.useEffect(()=>r._disableForm(e.disabled),[r,e.disabled]),w.useEffect(()=>{e.mode&&(r._options.mode=e.mode),e.reValidateMode&&(r._options.reValidateMode=e.reValidateMode)},[r,e.mode,e.reValidateMode]),w.useEffect(()=>{e.errors&&(r._setErrors(e.errors),r._focusError())},[r,e.errors]),w.useEffect(()=>{e.shouldUnregister&&r._subjects.state.next({values:r._getWatch()})},[r,e.shouldUnregister]),w.useEffect(()=>{if(r._proxyFormState.isDirty){const c=r._getDirty();c!==n.isDirty&&r._subjects.state.next({isDirty:c})}},[r,n.isDirty]),w.useEffect(()=>{var c;e.values&&!Gt(e.values,o.current)?(r._reset(e.values,{keepFieldsRef:!0,...r._options.resetOptions}),!((c=r._options.resetOptions)===null||c===void 0)&&c.keepIsValid||r._setValid(),o.current=e.values,a(s=>({...s}))):r._resetDefaultValues()},[r,e.values]),w.useEffect(()=>{r._state.mount||(r._setValid(),r._state.mount=!0),r._state.watch&&(r._state.watch=!1,r._subjects.state.next({...r._formState})),r._removeUnmounted()}),t.current.formState=w.useMemo(()=>ST(n,r),[r,n]),t.current}function S(...e){return fK(sS(e))}function we(e){return e?typeof e=="string"||typeof e=="number"?e:Array.isArray(e)?e.length===0?null:e.length===1?d.jsx(Gc,{schema:e[0]}):e.map((t,o)=>d.jsx(Gc,{schema:t},t.id||o)):d.jsx(Gc,{schema:e}):null}const VK=w.forwardRef(({schema:e,className:t,...o},n)=>{process.env.NODE_ENV!=="production"&&console.warn(`[ObjectUI] The "div" component is deprecated. Please use Shadcn components instead:
2
+ - For containers: use "card", "flex", or semantic layout components
3
+ - For simple wrappers: use layout components like "container", "stack", or "grid"
4
+ See documentation at https://www.objectui.org/docs/components for alternatives.`);const{"data-obj-id":a,"data-obj-type":r,style:c,...s}=o;return d.jsx("div",{ref:n,className:t,...s,"data-obj-id":a,"data-obj-type":r,style:c,children:we(e.children||e.body)})});ie.register("div",VK,{namespace:"ui",label:"Container (Deprecated)",inputs:[{name:"className",type:"string",label:"CSS Class"}],defaultProps:{className:"p-2 sm:p-4 border border-dashed border-gray-300 rounded min-h-[100px]"}}),ie.register("text",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t;return o||e.className||r.className?d.jsx("span",{"data-obj-id":o,"data-obj-type":n,style:a,className:e.className||r.className,...r,children:e.content||e.value}):d.jsx(d.Fragment,{children:e.content||e.value})},{namespace:"ui",label:"Text",inputs:[{name:"content",type:"string",label:"Content",required:!0}],defaultProps:{content:"Text content"}});const FK=w.forwardRef(({schema:e,className:t,...o},n)=>{process.env.NODE_ENV!=="production"&&console.warn(`[ObjectUI] The "span" component is deprecated. Please use Shadcn components instead:
5
+ - For badges/labels: use "badge" component
6
+ - For inline text emphasis: use "text" component with appropriate className
7
+ See documentation at https://www.objectui.org/docs/components for alternatives.`);const{"data-obj-id":a,"data-obj-type":r,style:c,...s}=o;return d.jsx("span",{ref:n,className:t,...s,"data-obj-id":a,"data-obj-type":r,style:c,children:we(e.body)})});ie.register("span",FK,{namespace:"ui",label:"Inline Container (Deprecated)",inputs:[{name:"className",type:"string",label:"CSS Class"}],defaultProps:{className:"px-1.5 py-0.5 sm:px-2 sm:py-1"},defaultChildren:[{type:"text",content:"Inline text"}]});function BK(e,t){const o=p.createContext(t),n=r=>{const{children:c,...s}=r,l=p.useMemo(()=>s,Object.values(s));return d.jsx(o.Provider,{value:l,children:c})};n.displayName=e+"Provider";function a(r){const c=p.useContext(o);if(c)return c;if(t!==void 0)return t;throw new Error(`\`${r}\` must be used within \`${e}\``)}return[n,a]}function Xe(e,t=[]){let o=[];function n(r,c){const s=p.createContext(c),l=o.length;o=[...o,c];const u=h=>{const{scope:f,children:k,...m}=h,g=f?.[e]?.[l]||s,_=p.useMemo(()=>m,Object.values(m));return d.jsx(g.Provider,{value:_,children:k})};u.displayName=r+"Provider";function y(h,f){const k=f?.[e]?.[l]||s,m=p.useContext(k);if(m)return m;if(c!==void 0)return c;throw new Error(`\`${h}\` must be used within \`${r}\``)}return[u,y]}const a=()=>{const r=o.map(c=>p.createContext(c));return function(s){const l=s?.[e]||r;return p.useMemo(()=>({[`__scope${e}`]:{...s,[e]:l}}),[s,l])}};return a.scopeName=e,[n,WK(a,...t)]}function WK(...e){const t=e[0];if(e.length===1)return t;const o=()=>{const n=e.map(a=>({useScope:a(),scopeName:a.scopeName}));return function(r){const c=n.reduce((s,{useScope:l,scopeName:u})=>{const h=l(r)[`__scope${u}`];return{...s,...h}},{});return p.useMemo(()=>({[`__scope${t.scopeName}`]:c}),[c])}};return o.scopeName=t.scopeName,o}function RT(e,t){if(typeof e=="function")return e(t);e!=null&&(e.current=t)}function Kt(...e){return t=>{let o=!1;const n=e.map(a=>{const r=RT(a,t);return!o&&typeof r=="function"&&(o=!0),r});if(o)return()=>{for(let a=0;a<n.length;a++){const r=n[a];typeof r=="function"?r():RT(e[a],null)}}}}function be(...e){return p.useCallback(Kt(...e),e)}function wn(e){const t=UK(e),o=p.forwardRef((n,a)=>{const{children:r,...c}=n,s=p.Children.toArray(r),l=s.find(RK);if(l){const u=l.props.children,y=s.map(h=>h===l?p.Children.count(u)>1?p.Children.only(null):p.isValidElement(u)?u.props.children:null:h);return d.jsx(t,{...c,ref:a,children:p.isValidElement(u)?p.cloneElement(u,void 0,y):null})}return d.jsx(t,{...c,ref:a,children:r})});return o.displayName=`${e}.Slot`,o}function UK(e){const t=p.forwardRef((o,n)=>{const{children:a,...r}=o;if(p.isValidElement(a)){const c=KK(a),s=GK(r,a.props);return a.type!==p.Fragment&&(s.ref=n?Kt(n,c):c),p.cloneElement(a,s)}return p.Children.count(a)>1?p.Children.only(null):null});return t.displayName=`${e}.SlotClone`,t}var GT=Symbol("radix.slottable");function KT(e){const t=({children:o})=>d.jsx(d.Fragment,{children:o});return t.displayName=`${e}.Slottable`,t.__radixId=GT,t}function RK(e){return p.isValidElement(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===GT}function GK(e,t){const o={...t};for(const n in t){const a=e[n],r=t[n];/^on[A-Z]/.test(n)?a&&r?o[n]=(...s)=>{const l=r(...s);return a(...s),l}:a&&(o[n]=a):n==="style"?o[n]={...a,...r}:n==="className"&&(o[n]=[a,r].filter(Boolean).join(" "))}return{...e,...o}}function KK(e){let t=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,o=t&&"isReactWarning"in t&&t.isReactWarning;return o?e.ref:(t=Object.getOwnPropertyDescriptor(e,"ref")?.get,o=t&&"isReactWarning"in t&&t.isReactWarning,o?e.props.ref:e.props.ref||e.ref)}function en(e){const t=e+"CollectionProvider",[o,n]=Xe(t),[a,r]=o(t,{collectionRef:{current:null},itemMap:new Map}),c=g=>{const{scope:_,children:v}=g,b=w.useRef(null),M=w.useRef(new Map).current;return d.jsx(a,{scope:_,itemMap:M,collectionRef:b,children:v})};c.displayName=t;const s=e+"CollectionSlot",l=wn(s),u=w.forwardRef((g,_)=>{const{scope:v,children:b}=g,M=r(s,v),x=be(_,M.collectionRef);return d.jsx(l,{ref:x,children:b})});u.displayName=s;const y=e+"CollectionItemSlot",h="data-radix-collection-item",f=wn(y),k=w.forwardRef((g,_)=>{const{scope:v,children:b,...M}=g,x=w.useRef(null),N=be(_,x),C=r(y,v);return w.useEffect(()=>(C.itemMap.set(x,{ref:x,...M}),()=>{C.itemMap.delete(x)})),d.jsx(f,{[h]:"",ref:N,children:b})});k.displayName=y;function m(g){const _=r(e+"CollectionConsumer",g);return w.useCallback(()=>{const b=_.collectionRef.current;if(!b)return[];const M=Array.from(b.querySelectorAll(`[${h}]`));return Array.from(_.itemMap.values()).sort((C,$)=>M.indexOf(C.ref.current)-M.indexOf($.ref.current))},[_.collectionRef,_.itemMap])}return[{Provider:c,Slot:u,ItemSlot:k},m,n]}function X(e,t,{checkForDefaultPrevented:o=!0}={}){return function(a){if(e?.(a),o===!1||!a.defaultPrevented)return t?.(a)}}var Ze=globalThis?.document?p.useLayoutEffect:()=>{},YK=p[" useInsertionEffect ".trim().toString()]||Ze;function Ke({prop:e,defaultProp:t,onChange:o=()=>{},caller:n}){const[a,r,c]=XK({defaultProp:t,onChange:o}),s=e!==void 0,l=s?e:a;{const y=p.useRef(e!==void 0);p.useEffect(()=>{const h=y.current;h!==s&&console.warn(`${n} is changing from ${h?"controlled":"uncontrolled"} to ${s?"controlled":"uncontrolled"}. Components should not switch from controlled to uncontrolled (or vice versa). Decide between using a controlled or uncontrolled value for the lifetime of the component.`),y.current=s},[s,n])}const u=p.useCallback(y=>{if(s){const h=ZK(y)?y(e):y;h!==e&&c.current?.(h)}else r(y)},[s,e,r,c]);return[l,u]}function XK({defaultProp:e,onChange:t}){const[o,n]=p.useState(e),a=p.useRef(o),r=p.useRef(t);return YK(()=>{r.current=t},[t]),p.useEffect(()=>{a.current!==o&&(r.current?.(o),a.current=o)},[o,a]),[o,n,r]}function ZK(e){return typeof e=="function"}var QK=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],se=QK.reduce((e,t)=>{const o=wn(`Primitive.${t}`),n=p.forwardRef((a,r)=>{const{asChild:c,...s}=a,l=c?o:t;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),d.jsx(l,{...s,ref:r})});return n.displayName=`Primitive.${t}`,{...e,[t]:n}},{});function w1(e,t){e&&p1.flushSync(()=>e.dispatchEvent(t))}function JK(e,t){return p.useReducer((o,n)=>t[o][n]??o,e)}var Qe=e=>{const{present:t,children:o}=e,n=eY(t),a=typeof o=="function"?o({present:n.isPresent}):p.Children.only(o),r=be(n.ref,tY(a));return typeof o=="function"||n.isPresent?p.cloneElement(a,{ref:r}):null};Qe.displayName="Presence";function eY(e){const[t,o]=p.useState(),n=p.useRef(null),a=p.useRef(e),r=p.useRef("none"),c=e?"mounted":"unmounted",[s,l]=JK(c,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return p.useEffect(()=>{const u=x1(n.current);r.current=s==="mounted"?u:"none"},[s]),Ze(()=>{const u=n.current,y=a.current;if(y!==e){const f=r.current,k=x1(u);e?l("MOUNT"):k==="none"||u?.display==="none"?l("UNMOUNT"):l(y&&f!==k?"ANIMATION_OUT":"UNMOUNT"),a.current=e}},[e,l]),Ze(()=>{if(t){let u;const y=t.ownerDocument.defaultView??window,h=k=>{const g=x1(n.current).includes(CSS.escape(k.animationName));if(k.target===t&&g&&(l("ANIMATION_END"),!a.current)){const _=t.style.animationFillMode;t.style.animationFillMode="forwards",u=y.setTimeout(()=>{t.style.animationFillMode==="forwards"&&(t.style.animationFillMode=_)})}},f=k=>{k.target===t&&(r.current=x1(n.current))};return t.addEventListener("animationstart",f),t.addEventListener("animationcancel",h),t.addEventListener("animationend",h),()=>{y.clearTimeout(u),t.removeEventListener("animationstart",f),t.removeEventListener("animationcancel",h),t.removeEventListener("animationend",h)}}else l("ANIMATION_END")},[t,l]),{isPresent:["mounted","unmountSuspended"].includes(s),ref:p.useCallback(u=>{n.current=u?getComputedStyle(u):null,o(u)},[])}}function x1(e){return e?.animationName||"none"}function tY(e){let t=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,o=t&&"isReactWarning"in t&&t.isReactWarning;return o?e.ref:(t=Object.getOwnPropertyDescriptor(e,"ref")?.get,o=t&&"isReactWarning"in t&&t.isReactWarning,o?e.props.ref:e.props.ref||e.ref)}var oY=p[" useId ".trim().toString()]||(()=>{}),nY=0;function We(e){const[t,o]=p.useState(oY());return Ze(()=>{o(n=>n??String(nY++))},[e]),t?`radix-${t}`:""}var N1="Collapsible",[aY,YT]=Xe(N1),[rY,$S]=aY(N1),XT=p.forwardRef((e,t)=>{const{__scopeCollapsible:o,open:n,defaultOpen:a,disabled:r,onOpenChange:c,...s}=e,[l,u]=Ke({prop:n,defaultProp:a??!1,onChange:c,caller:N1});return d.jsx(rY,{scope:o,disabled:r,contentId:We(),open:l,onOpenToggle:p.useCallback(()=>u(y=>!y),[u]),children:d.jsx(se.div,{"data-state":AS(l),"data-disabled":r?"":void 0,...s,ref:t})})});XT.displayName=N1;var ZT="CollapsibleTrigger",SS=p.forwardRef((e,t)=>{const{__scopeCollapsible:o,...n}=e,a=$S(ZT,o);return d.jsx(se.button,{type:"button","aria-controls":a.contentId,"aria-expanded":a.open||!1,"data-state":AS(a.open),"data-disabled":a.disabled?"":void 0,disabled:a.disabled,...n,ref:t,onClick:X(e.onClick,a.onOpenToggle)})});SS.displayName=ZT;var LS="CollapsibleContent",IS=p.forwardRef((e,t)=>{const{forceMount:o,...n}=e,a=$S(LS,e.__scopeCollapsible);return d.jsx(Qe,{present:o||a.open,children:({present:r})=>d.jsx(iY,{...n,ref:t,present:r})})});IS.displayName=LS;var iY=p.forwardRef((e,t)=>{const{__scopeCollapsible:o,present:n,children:a,...r}=e,c=$S(LS,o),[s,l]=p.useState(n),u=p.useRef(null),y=be(t,u),h=p.useRef(0),f=h.current,k=p.useRef(0),m=k.current,g=c.open||s,_=p.useRef(g),v=p.useRef(void 0);return p.useEffect(()=>{const b=requestAnimationFrame(()=>_.current=!1);return()=>cancelAnimationFrame(b)},[]),Ze(()=>{const b=u.current;if(b){v.current=v.current||{transitionDuration:b.style.transitionDuration,animationName:b.style.animationName},b.style.transitionDuration="0s",b.style.animationName="none";const M=b.getBoundingClientRect();h.current=M.height,k.current=M.width,_.current||(b.style.transitionDuration=v.current.transitionDuration,b.style.animationName=v.current.animationName),l(n)}},[c.open,n]),d.jsx(se.div,{"data-state":AS(c.open),"data-disabled":c.disabled?"":void 0,id:c.contentId,hidden:!g,...r,ref:y,style:{"--radix-collapsible-content-height":f?`${f}px`:void 0,"--radix-collapsible-content-width":m?`${m}px`:void 0,...e.style},children:g&&a})});function AS(e){return e?"open":"closed"}var QT=XT,cY=SS,sY=IS,dY=p.createContext(void 0);function Yt(e){const t=p.useContext(dY);return e||t||"ltr"}var Xt="Accordion",lY=["Home","End","ArrowDown","ArrowUp","ArrowLeft","ArrowRight"],[PS,uY,hY]=en(Xt),[C1]=Xe(Xt,[hY,YT]),TS=YT(),JT=w.forwardRef((e,t)=>{const{type:o,...n}=e,a=n,r=n;return d.jsx(PS.Provider,{scope:e.__scopeAccordion,children:o==="multiple"?d.jsx(mY,{...r,ref:t}):d.jsx(fY,{...a,ref:t})})});JT.displayName=Xt;var[eD,pY]=C1(Xt),[tD,yY]=C1(Xt,{collapsible:!1}),fY=w.forwardRef((e,t)=>{const{value:o,defaultValue:n,onValueChange:a=()=>{},collapsible:r=!1,...c}=e,[s,l]=Ke({prop:o,defaultProp:n??"",onChange:a,caller:Xt});return d.jsx(eD,{scope:e.__scopeAccordion,value:w.useMemo(()=>s?[s]:[],[s]),onItemOpen:l,onItemClose:w.useCallback(()=>r&&l(""),[r,l]),children:d.jsx(tD,{scope:e.__scopeAccordion,collapsible:r,children:d.jsx(oD,{...c,ref:t})})})}),mY=w.forwardRef((e,t)=>{const{value:o,defaultValue:n,onValueChange:a=()=>{},...r}=e,[c,s]=Ke({prop:o,defaultProp:n??[],onChange:a,caller:Xt}),l=w.useCallback(y=>s((h=[])=>[...h,y]),[s]),u=w.useCallback(y=>s((h=[])=>h.filter(f=>f!==y)),[s]);return d.jsx(eD,{scope:e.__scopeAccordion,value:c,onItemOpen:l,onItemClose:u,children:d.jsx(tD,{scope:e.__scopeAccordion,collapsible:!0,children:d.jsx(oD,{...r,ref:t})})})}),[kY,$1]=C1(Xt),oD=w.forwardRef((e,t)=>{const{__scopeAccordion:o,disabled:n,dir:a,orientation:r="vertical",...c}=e,s=w.useRef(null),l=be(s,t),u=uY(o),h=Yt(a)==="ltr",f=X(e.onKeyDown,k=>{if(!lY.includes(k.key))return;const m=k.target,g=u().filter(L=>!L.ref.current?.disabled),_=g.findIndex(L=>L.ref.current===m),v=g.length;if(_===-1)return;k.preventDefault();let b=_;const M=0,x=v-1,N=()=>{b=_+1,b>x&&(b=M)},C=()=>{b=_-1,b<M&&(b=x)};switch(k.key){case"Home":b=M;break;case"End":b=x;break;case"ArrowRight":r==="horizontal"&&(h?N():C());break;case"ArrowDown":r==="vertical"&&N();break;case"ArrowLeft":r==="horizontal"&&(h?C():N());break;case"ArrowUp":r==="vertical"&&C();break}const $=b%v;g[$].ref.current?.focus()});return d.jsx(kY,{scope:o,disabled:n,direction:a,orientation:r,children:d.jsx(PS.Slot,{scope:o,children:d.jsx(se.div,{...c,"data-orientation":r,ref:l,onKeyDown:n?void 0:f})})})}),S1="AccordionItem",[gY,DS]=C1(S1),nD=w.forwardRef((e,t)=>{const{__scopeAccordion:o,value:n,...a}=e,r=$1(S1,o),c=pY(S1,o),s=TS(o),l=We(),u=n&&c.value.includes(n)||!1,y=r.disabled||e.disabled;return d.jsx(gY,{scope:o,open:u,disabled:y,triggerId:l,children:d.jsx(QT,{"data-orientation":r.orientation,"data-state":dD(u),...s,...a,ref:t,disabled:y,open:u,onOpenChange:h=>{h?c.onItemOpen(n):c.onItemClose(n)}})})});nD.displayName=S1;var aD="AccordionHeader",rD=w.forwardRef((e,t)=>{const{__scopeAccordion:o,...n}=e,a=$1(Xt,o),r=DS(aD,o);return d.jsx(se.h3,{"data-orientation":a.orientation,"data-state":dD(r.open),"data-disabled":r.disabled?"":void 0,...n,ref:t})});rD.displayName=aD;var ES="AccordionTrigger",iD=w.forwardRef((e,t)=>{const{__scopeAccordion:o,...n}=e,a=$1(Xt,o),r=DS(ES,o),c=yY(ES,o),s=TS(o);return d.jsx(PS.ItemSlot,{scope:o,children:d.jsx(cY,{"aria-disabled":r.open&&!c.collapsible||void 0,"data-orientation":a.orientation,id:r.triggerId,...s,...n,ref:t})})});iD.displayName=ES;var cD="AccordionContent",sD=w.forwardRef((e,t)=>{const{__scopeAccordion:o,...n}=e,a=$1(Xt,o),r=DS(cD,o),c=TS(o);return d.jsx(sY,{role:"region","aria-labelledby":r.triggerId,"data-orientation":a.orientation,...c,...n,ref:t,style:{"--radix-accordion-content-height":"var(--radix-collapsible-content-height)","--radix-accordion-content-width":"var(--radix-collapsible-content-width)",...e.style}})});sD.displayName=cD;function dD(e){return e?"open":"closed"}var vY=JT,_Y=nD,bY=rD,lD=iD,uD=sD;const hD=(...e)=>e.filter((t,o,n)=>!!t&&t.trim()!==""&&n.indexOf(t)===o).join(" ").trim();const MY=e=>e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase();const wY=e=>e.replace(/^([A-Z])|[\s-_]+(\w)/g,(t,o,n)=>n?n.toUpperCase():o.toLowerCase());const pD=e=>{const t=wY(e);return t.charAt(0).toUpperCase()+t.slice(1)};var xY={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};const NY=e=>{for(const t in e)if(t.startsWith("aria-")||t==="role"||t==="title")return!0;return!1};const yD=w.forwardRef(({color:e="currentColor",size:t=24,strokeWidth:o=2,absoluteStrokeWidth:n,className:a="",children:r,iconNode:c,...s},l)=>w.createElement("svg",{ref:l,...xY,width:t,height:t,stroke:e,strokeWidth:n?Number(o)*24/Number(t):o,className:hD("lucide",a),...!r&&!NY(s)&&{"aria-hidden":"true"},...s},[...c.map(([u,y])=>w.createElement(u,y)),...Array.isArray(r)?r:[r]]));const i=(e,t)=>{const o=w.forwardRef(({className:n,...a},r)=>w.createElement(yD,{ref:r,iconNode:t,className:hD(`lucide-${MY(pD(e))}`,`lucide-${e}`,n),...a}));return o.displayName=pD(e),o};const L1=i("a-arrow-down",[["path",{d:"m14 12 4 4 4-4",key:"buelq4"}],["path",{d:"M18 16V7",key:"ty0viw"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16",key:"d5nyq2"}],["path",{d:"M3.304 13h6.392",key:"1q3zxz"}]]);const I1=i("a-arrow-up",[["path",{d:"m14 11 4-4 4 4",key:"1pu57t"}],["path",{d:"M18 16V7",key:"ty0viw"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16",key:"d5nyq2"}],["path",{d:"M3.304 13h6.392",key:"1q3zxz"}]]);const A1=i("a-large-small",[["path",{d:"m15 16 2.536-7.328a1.02 1.02 1 0 1 1.928 0L22 16",key:"xik6mr"}],["path",{d:"M15.697 14h5.606",key:"1stdlc"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16",key:"d5nyq2"}],["path",{d:"M3.304 13h6.392",key:"1q3zxz"}]]);const P1=i("accessibility",[["circle",{cx:"16",cy:"4",r:"1",key:"1grugj"}],["path",{d:"m18 19 1-7-6 1",key:"r0i19z"}],["path",{d:"m5 8 3-3 5.5 3-2.36 3.5",key:"9ptxx2"}],["path",{d:"M4.24 14.5a5 5 0 0 0 6.88 6",key:"10kmtu"}],["path",{d:"M13.76 17.5a5 5 0 0 0-6.88-6",key:"2qq6rc"}]]);const Fs=i("activity",[["path",{d:"M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2",key:"169zse"}]]);const T1=i("air-vent",[["path",{d:"M18 17.5a2.5 2.5 0 1 1-4 2.03V12",key:"yd12zl"}],["path",{d:"M6 12H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2",key:"larmp2"}],["path",{d:"M6 8h12",key:"6g4wlu"}],["path",{d:"M6.6 15.572A2 2 0 1 0 10 17v-5",key:"1x1kqn"}]]);const D1=i("airplay",[["path",{d:"M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1",key:"ns4c3b"}],["path",{d:"m12 15 5 6H7Z",key:"14qnn2"}]]);const xn=i("alarm-clock-check",[["circle",{cx:"12",cy:"13",r:"8",key:"3y4lt7"}],["path",{d:"M5 3 2 6",key:"18tl5t"}],["path",{d:"m22 6-3-3",key:"1opdir"}],["path",{d:"M6.38 18.7 4 21",key:"17xu3x"}],["path",{d:"M17.64 18.67 20 21",key:"kv2oe2"}],["path",{d:"m9 13 2 2 4-4",key:"6343dt"}]]);const Nn=i("alarm-clock-minus",[["circle",{cx:"12",cy:"13",r:"8",key:"3y4lt7"}],["path",{d:"M5 3 2 6",key:"18tl5t"}],["path",{d:"m22 6-3-3",key:"1opdir"}],["path",{d:"M6.38 18.7 4 21",key:"17xu3x"}],["path",{d:"M17.64 18.67 20 21",key:"kv2oe2"}],["path",{d:"M9 13h6",key:"1uhe8q"}]]);const E1=i("alarm-clock-off",[["path",{d:"M6.87 6.87a8 8 0 1 0 11.26 11.26",key:"3on8tj"}],["path",{d:"M19.9 14.25a8 8 0 0 0-9.15-9.15",key:"15ghsc"}],["path",{d:"m22 6-3-3",key:"1opdir"}],["path",{d:"M6.26 18.67 4 21",key:"yzmioq"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M4 4 2 6",key:"1ycko6"}]]);const Cn=i("alarm-clock-plus",[["circle",{cx:"12",cy:"13",r:"8",key:"3y4lt7"}],["path",{d:"M5 3 2 6",key:"18tl5t"}],["path",{d:"m22 6-3-3",key:"1opdir"}],["path",{d:"M6.38 18.7 4 21",key:"17xu3x"}],["path",{d:"M17.64 18.67 20 21",key:"kv2oe2"}],["path",{d:"M12 10v6",key:"1bos4e"}],["path",{d:"M9 13h6",key:"1uhe8q"}]]);const z1=i("alarm-clock",[["circle",{cx:"12",cy:"13",r:"8",key:"3y4lt7"}],["path",{d:"M12 9v4l2 2",key:"1c63tq"}],["path",{d:"M5 3 2 6",key:"18tl5t"}],["path",{d:"m22 6-3-3",key:"1opdir"}],["path",{d:"M6.38 18.7 4 21",key:"17xu3x"}],["path",{d:"M17.64 18.67 20 21",key:"kv2oe2"}]]);const O1=i("alarm-smoke",[["path",{d:"M11 21c0-2.5 2-2.5 2-5",key:"1sicvv"}],["path",{d:"M16 21c0-2.5 2-2.5 2-5",key:"1o3eny"}],["path",{d:"m19 8-.8 3a1.25 1.25 0 0 1-1.2 1H7a1.25 1.25 0 0 1-1.2-1L5 8",key:"1bvca4"}],["path",{d:"M21 3a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a1 1 0 0 1 1-1z",key:"x3qr1j"}],["path",{d:"M6 21c0-2.5 2-2.5 2-5",key:"i3w1gp"}]]);const q1=i("album",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["polyline",{points:"11 3 11 11 14 8 17 11 17 3",key:"1wcwz3"}]]);const j1=i("align-center-horizontal",[["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"M10 16v4a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-4",key:"11f1s0"}],["path",{d:"M10 8V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4",key:"t14dx9"}],["path",{d:"M20 16v1a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-1",key:"1w07xs"}],["path",{d:"M14 8V7c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v1",key:"1apec2"}]]);const H1=i("align-center-vertical",[["path",{d:"M12 2v20",key:"t6zp3m"}],["path",{d:"M8 10H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h4",key:"14d6g8"}],["path",{d:"M16 10h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-4",key:"1e2lrw"}],["path",{d:"M8 20H7a2 2 0 0 1-2-2v-2c0-1.1.9-2 2-2h1",key:"1fkdwx"}],["path",{d:"M16 14h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-1",key:"1euafb"}]]);const V1=i("align-end-horizontal",[["rect",{width:"6",height:"16",x:"4",y:"2",rx:"2",key:"z5wdxg"}],["rect",{width:"6",height:"9",x:"14",y:"9",rx:"2",key:"um7a8w"}],["path",{d:"M22 22H2",key:"19qnx5"}]]);const F1=i("align-end-vertical",[["rect",{width:"16",height:"6",x:"2",y:"4",rx:"2",key:"10wcwx"}],["rect",{width:"9",height:"6",x:"9",y:"14",rx:"2",key:"4p5bwg"}],["path",{d:"M22 22V2",key:"12ipfv"}]]);const B1=i("align-horizontal-distribute-center",[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2",key:"1wwnby"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2",key:"1fe6j6"}],["path",{d:"M17 22v-5",key:"4b6g73"}],["path",{d:"M17 7V2",key:"hnrr36"}],["path",{d:"M7 22v-3",key:"1r4jpn"}],["path",{d:"M7 5V2",key:"liy1u9"}]]);const W1=i("align-horizontal-distribute-end",[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2",key:"1wwnby"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2",key:"1fe6j6"}],["path",{d:"M10 2v20",key:"uyc634"}],["path",{d:"M20 2v20",key:"1tx262"}]]);const U1=i("align-horizontal-distribute-start",[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2",key:"1wwnby"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2",key:"1fe6j6"}],["path",{d:"M4 2v20",key:"gtpd5x"}],["path",{d:"M14 2v20",key:"tg6bpw"}]]);const R1=i("align-horizontal-justify-center",[["rect",{width:"6",height:"14",x:"2",y:"5",rx:"2",key:"dy24zr"}],["rect",{width:"6",height:"10",x:"16",y:"7",rx:"2",key:"13zkjt"}],["path",{d:"M12 2v20",key:"t6zp3m"}]]);const G1=i("align-horizontal-justify-end",[["rect",{width:"6",height:"14",x:"2",y:"5",rx:"2",key:"dy24zr"}],["rect",{width:"6",height:"10",x:"12",y:"7",rx:"2",key:"1ht384"}],["path",{d:"M22 2v20",key:"40qfg1"}]]);const K1=i("align-horizontal-justify-start",[["rect",{width:"6",height:"14",x:"6",y:"5",rx:"2",key:"hsirpf"}],["rect",{width:"6",height:"10",x:"16",y:"7",rx:"2",key:"13zkjt"}],["path",{d:"M2 2v20",key:"1ivd8o"}]]);const Y1=i("align-horizontal-space-around",[["rect",{width:"6",height:"10",x:"9",y:"7",rx:"2",key:"yn7j0q"}],["path",{d:"M4 22V2",key:"tsjzd3"}],["path",{d:"M20 22V2",key:"1bnhr8"}]]);const X1=i("align-horizontal-space-between",[["rect",{width:"6",height:"14",x:"3",y:"5",rx:"2",key:"j77dae"}],["rect",{width:"6",height:"10",x:"15",y:"7",rx:"2",key:"bq30hj"}],["path",{d:"M3 2v20",key:"1d2pfg"}],["path",{d:"M21 2v20",key:"p059bm"}]]);const Z1=i("align-start-horizontal",[["rect",{width:"6",height:"16",x:"4",y:"6",rx:"2",key:"1n4dg1"}],["rect",{width:"6",height:"9",x:"14",y:"6",rx:"2",key:"17khns"}],["path",{d:"M22 2H2",key:"fhrpnj"}]]);const Q1=i("align-start-vertical",[["rect",{width:"9",height:"6",x:"6",y:"14",rx:"2",key:"lpm2y7"}],["rect",{width:"16",height:"6",x:"6",y:"4",rx:"2",key:"rdj6ps"}],["path",{d:"M2 2v20",key:"1ivd8o"}]]);const J1=i("align-vertical-distribute-center",[["path",{d:"M22 17h-3",key:"1lwga1"}],["path",{d:"M22 7h-5",key:"o2endc"}],["path",{d:"M5 17H2",key:"1gx9xc"}],["path",{d:"M7 7H2",key:"6bq26l"}],["rect",{x:"5",y:"14",width:"14",height:"6",rx:"2",key:"1qrzuf"}],["rect",{x:"7",y:"4",width:"10",height:"6",rx:"2",key:"we8e9z"}]]);const el=i("align-vertical-distribute-end",[["rect",{width:"14",height:"6",x:"5",y:"14",rx:"2",key:"jmoj9s"}],["rect",{width:"10",height:"6",x:"7",y:"4",rx:"2",key:"aza5on"}],["path",{d:"M2 20h20",key:"owomy5"}],["path",{d:"M2 10h20",key:"1ir3d8"}]]);const tl=i("align-vertical-distribute-start",[["rect",{width:"14",height:"6",x:"5",y:"14",rx:"2",key:"jmoj9s"}],["rect",{width:"10",height:"6",x:"7",y:"4",rx:"2",key:"aza5on"}],["path",{d:"M2 14h20",key:"myj16y"}],["path",{d:"M2 4h20",key:"mda7wb"}]]);const ol=i("align-vertical-justify-end",[["rect",{width:"14",height:"6",x:"5",y:"12",rx:"2",key:"4l4tp2"}],["rect",{width:"10",height:"6",x:"7",y:"2",rx:"2",key:"ypihtt"}],["path",{d:"M2 22h20",key:"272qi7"}]]);const nl=i("align-vertical-justify-center",[["rect",{width:"14",height:"6",x:"5",y:"16",rx:"2",key:"1i8z2d"}],["rect",{width:"10",height:"6",x:"7",y:"2",rx:"2",key:"ypihtt"}],["path",{d:"M2 12h20",key:"9i4pu4"}]]);const al=i("align-vertical-justify-start",[["rect",{width:"14",height:"6",x:"5",y:"16",rx:"2",key:"1i8z2d"}],["rect",{width:"10",height:"6",x:"7",y:"6",rx:"2",key:"13squh"}],["path",{d:"M2 2h20",key:"1ennik"}]]);const rl=i("align-vertical-space-around",[["rect",{width:"10",height:"6",x:"7",y:"9",rx:"2",key:"b1zbii"}],["path",{d:"M22 20H2",key:"1p1f7z"}],["path",{d:"M22 4H2",key:"1b7qnq"}]]);const il=i("align-vertical-space-between",[["rect",{width:"14",height:"6",x:"5",y:"15",rx:"2",key:"1w91an"}],["rect",{width:"10",height:"6",x:"7",y:"3",rx:"2",key:"17wqzy"}],["path",{d:"M2 21h20",key:"1nyx9w"}],["path",{d:"M2 3h20",key:"91anmk"}]]);const cl=i("ambulance",[["path",{d:"M10 10H6",key:"1bsnug"}],["path",{d:"M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2",key:"wrbu53"}],["path",{d:"M19 18h2a1 1 0 0 0 1-1v-3.28a1 1 0 0 0-.684-.948l-1.923-.641a1 1 0 0 1-.578-.502l-1.539-3.076A1 1 0 0 0 16.382 8H14",key:"lrkjwd"}],["path",{d:"M8 8v4",key:"1fwk8c"}],["path",{d:"M9 18h6",key:"x1upvd"}],["circle",{cx:"17",cy:"18",r:"2",key:"332jqn"}],["circle",{cx:"7",cy:"18",r:"2",key:"19iecd"}]]);const sl=i("ampersand",[["path",{d:"M16 12h3",key:"4uvgyw"}],["path",{d:"M17.5 12a8 8 0 0 1-8 8A4.5 4.5 0 0 1 5 15.5c0-6 8-4 8-8.5a3 3 0 1 0-6 0c0 3 2.5 8.5 12 13",key:"nfoe1t"}]]);const dl=i("ampersands",[["path",{d:"M10 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5",key:"12lh1k"}],["path",{d:"M22 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5",key:"173c68"}]]);const ll=i("amphora",[["path",{d:"M10 2v5.632c0 .424-.272.795-.653.982A6 6 0 0 0 6 14c.006 4 3 7 5 8",key:"1h8rid"}],["path",{d:"M10 5H8a2 2 0 0 0 0 4h.68",key:"3ezsi6"}],["path",{d:"M14 2v5.632c0 .424.272.795.652.982A6 6 0 0 1 18 14c0 4-3 7-5 8",key:"yt6q09"}],["path",{d:"M14 5h2a2 2 0 0 1 0 4h-.68",key:"8f95yk"}],["path",{d:"M18 22H6",key:"mg6kv4"}],["path",{d:"M9 2h6",key:"1jrp98"}]]);const ul=i("angry",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M16 16s-1.5-2-4-2-4 2-4 2",key:"epbg0q"}],["path",{d:"M7.5 8 10 9",key:"olxxln"}],["path",{d:"m14 9 2.5-1",key:"1j6cij"}],["path",{d:"M9 10h.01",key:"qbtxuw"}],["path",{d:"M15 10h.01",key:"1qmjsl"}]]);const hl=i("anchor",[["path",{d:"M12 6v16",key:"nqf5sj"}],["path",{d:"m19 13 2-1a9 9 0 0 1-18 0l2 1",key:"y7qv08"}],["path",{d:"M9 11h6",key:"1fldmi"}],["circle",{cx:"12",cy:"4",r:"2",key:"muu5ef"}]]);const pl=i("annoyed",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M8 15h8",key:"45n4r"}],["path",{d:"M8 9h2",key:"1g203m"}],["path",{d:"M14 9h2",key:"116p9w"}]]);const yl=i("antenna",[["path",{d:"M2 12 7 2",key:"117k30"}],["path",{d:"m7 12 5-10",key:"1tvx22"}],["path",{d:"m12 12 5-10",key:"ev1o1a"}],["path",{d:"m17 12 5-10",key:"1e4ti3"}],["path",{d:"M4.5 7h15",key:"vlsxkz"}],["path",{d:"M12 16v6",key:"c8a4gj"}]]);const fl=i("anvil",[["path",{d:"M7 10H6a4 4 0 0 1-4-4 1 1 0 0 1 1-1h4",key:"1hjpb6"}],["path",{d:"M7 5a1 1 0 0 1 1-1h13a1 1 0 0 1 1 1 7 7 0 0 1-7 7H8a1 1 0 0 1-1-1z",key:"1qn45f"}],["path",{d:"M9 12v5",key:"3anwtq"}],["path",{d:"M15 12v5",key:"5xh3zn"}],["path",{d:"M5 20a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3 1 1 0 0 1-1 1H6a1 1 0 0 1-1-1",key:"1fi4x8"}]]);const ml=i("aperture",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m14.31 8 5.74 9.94",key:"1y6ab4"}],["path",{d:"M9.69 8h11.48",key:"1wxppr"}],["path",{d:"m7.38 12 5.74-9.94",key:"1grp0k"}],["path",{d:"M9.69 16 3.95 6.06",key:"libnyf"}],["path",{d:"M14.31 16H2.83",key:"x5fava"}],["path",{d:"m16.62 12-5.74 9.94",key:"1vwawt"}]]);const kl=i("app-window-mac",[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M6 8h.01",key:"x9i8wu"}],["path",{d:"M10 8h.01",key:"1r9ogq"}],["path",{d:"M14 8h.01",key:"1primd"}]]);const gl=i("app-window",[["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2",key:"izxlao"}],["path",{d:"M10 4v4",key:"pp8u80"}],["path",{d:"M2 8h20",key:"d11cs7"}],["path",{d:"M6 4v4",key:"1svtjw"}]]);const vl=i("apple",[["path",{d:"M12 6.528V3a1 1 0 0 1 1-1h0",key:"11qiee"}],["path",{d:"M18.237 21A15 15 0 0 0 22 11a6 6 0 0 0-10-4.472A6 6 0 0 0 2 11a15.1 15.1 0 0 0 3.763 10 3 3 0 0 0 3.648.648 5.5 5.5 0 0 1 5.178 0A3 3 0 0 0 18.237 21",key:"110c12"}]]);const _l=i("archive-restore",[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1",key:"1wp1u1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h2",key:"tvwodi"}],["path",{d:"M20 8v11a2 2 0 0 1-2 2h-2",key:"1gkqxj"}],["path",{d:"m9 15 3-3 3 3",key:"1pd0qc"}],["path",{d:"M12 12v9",key:"192myk"}]]);const bl=i("archive-x",[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1",key:"1wp1u1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8",key:"1s80jp"}],["path",{d:"m9.5 17 5-5",key:"nakeu6"}],["path",{d:"m9.5 12 5 5",key:"1hccrj"}]]);const Ml=i("archive",[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1",key:"1wp1u1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8",key:"1s80jp"}],["path",{d:"M10 12h4",key:"a56b0p"}]]);const wl=i("armchair",[["path",{d:"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3",key:"irtipd"}],["path",{d:"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z",key:"1qyhux"}],["path",{d:"M5 18v2",key:"ppbyun"}],["path",{d:"M19 18v2",key:"gy7782"}]]);const xl=i("arrow-big-down-dash",[["path",{d:"M15 11a1 1 0 0 0 1 1h2.939a1 1 0 0 1 .75 1.811l-6.835 6.836a1.207 1.207 0 0 1-1.707 0L4.31 13.81a1 1 0 0 1 .75-1.811H8a1 1 0 0 0 1-1V9a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1z",key:"1hy3w3"}],["path",{d:"M9 4h6",key:"10am2s"}]]);const Nl=i("arrow-big-down",[["path",{d:"M15 11a1 1 0 0 0 1 1h2.939a1 1 0 0 1 .75 1.811l-6.835 6.836a1.207 1.207 0 0 1-1.707 0L4.31 13.81a1 1 0 0 1 .75-1.811H8a1 1 0 0 0 1-1V5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1z",key:"1eaqc3"}]]);const Cl=i("arrow-big-left-dash",[["path",{d:"M13 9a1 1 0 0 1-1-1V5.061a1 1 0 0 0-1.811-.75l-6.835 6.836a1.207 1.207 0 0 0 0 1.707l6.835 6.835a1 1 0 0 0 1.811-.75V16a1 1 0 0 1 1-1h2a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1z",key:"p8w4w5"}],["path",{d:"M20 9v6",key:"14roy0"}]]);const $l=i("arrow-big-left",[["path",{d:"M13 9a1 1 0 0 1-1-1V5.061a1 1 0 0 0-1.811-.75l-6.835 6.836a1.207 1.207 0 0 0 0 1.707l6.835 6.835a1 1 0 0 0 1.811-.75V16a1 1 0 0 1 1-1h6a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1z",key:"aztept"}]]);const Sl=i("arrow-big-right-dash",[["path",{d:"M11 9a1 1 0 0 0 1-1V5.061a1 1 0 0 1 1.811-.75l6.836 6.836a1.207 1.207 0 0 1 0 1.707l-6.836 6.835a1 1 0 0 1-1.811-.75V16a1 1 0 0 0-1-1H9a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z",key:"67vhrh"}],["path",{d:"M4 9v6",key:"bns7oa"}]]);const Ll=i("arrow-big-right",[["path",{d:"M11 9a1 1 0 0 0 1-1V5.061a1 1 0 0 1 1.811-.75l6.836 6.836a1.207 1.207 0 0 1 0 1.707l-6.836 6.835a1 1 0 0 1-1.811-.75V16a1 1 0 0 0-1-1H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z",key:"1232du"}]]);const Il=i("arrow-big-up-dash",[["path",{d:"M9 13a1 1 0 0 0-1-1H5.061a1 1 0 0 1-.75-1.811l6.836-6.835a1.207 1.207 0 0 1 1.707 0l6.835 6.835a1 1 0 0 1-.75 1.811H16a1 1 0 0 0-1 1v2a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1z",key:"pnzqmc"}],["path",{d:"M9 20h6",key:"s66wpe"}]]);const Al=i("arrow-big-up",[["path",{d:"M9 13a1 1 0 0 0-1-1H5.061a1 1 0 0 1-.75-1.811l6.836-6.835a1.207 1.207 0 0 1 1.707 0l6.835 6.835a1 1 0 0 1-.75 1.811H16a1 1 0 0 0-1 1v6a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1z",key:"lh0v7k"}]]);const Pl=i("arrow-down-0-1",[["path",{d:"m3 16 4 4 4-4",key:"1co6wj"}],["path",{d:"M7 20V4",key:"1yoxec"}],["rect",{x:"15",y:"4",width:"4",height:"6",ry:"2",key:"1bwicg"}],["path",{d:"M17 20v-6h-2",key:"1qp1so"}],["path",{d:"M15 20h4",key:"1j968p"}]]);const Tl=i("arrow-down-1-0",[["path",{d:"m3 16 4 4 4-4",key:"1co6wj"}],["path",{d:"M7 20V4",key:"1yoxec"}],["path",{d:"M17 10V4h-2",key:"zcsr5x"}],["path",{d:"M15 10h4",key:"id2lce"}],["rect",{x:"15",y:"14",width:"4",height:"6",ry:"2",key:"33xykx"}]]);const $n=i("arrow-down-a-z",[["path",{d:"m3 16 4 4 4-4",key:"1co6wj"}],["path",{d:"M7 20V4",key:"1yoxec"}],["path",{d:"M20 8h-5",key:"1vsyxs"}],["path",{d:"M15 10V6.5a2.5 2.5 0 0 1 5 0V10",key:"ag13bf"}],["path",{d:"M15 14h5l-5 6h5",key:"ur5jdg"}]]);const Dl=i("arrow-down-from-line",[["path",{d:"M19 3H5",key:"1236rx"}],["path",{d:"M12 21V7",key:"gj6g52"}],["path",{d:"m6 15 6 6 6-6",key:"h15q88"}]]);const El=i("arrow-down-left",[["path",{d:"M17 7 7 17",key:"15tmo1"}],["path",{d:"M17 17H7V7",key:"1org7z"}]]);const zl=i("arrow-down-narrow-wide",[["path",{d:"m3 16 4 4 4-4",key:"1co6wj"}],["path",{d:"M7 20V4",key:"1yoxec"}],["path",{d:"M11 4h4",key:"6d7r33"}],["path",{d:"M11 8h7",key:"djye34"}],["path",{d:"M11 12h10",key:"1438ji"}]]);const Ol=i("arrow-down-right",[["path",{d:"m7 7 10 10",key:"1fmybs"}],["path",{d:"M17 7v10H7",key:"6fjiku"}]]);const ql=i("arrow-down-to-dot",[["path",{d:"M12 2v14",key:"jyx4ut"}],["path",{d:"m19 9-7 7-7-7",key:"1oe3oy"}],["circle",{cx:"12",cy:"21",r:"1",key:"o0uj5v"}]]);const jl=i("arrow-down-to-line",[["path",{d:"M12 17V3",key:"1cwfxf"}],["path",{d:"m6 11 6 6 6-6",key:"12ii2o"}],["path",{d:"M19 21H5",key:"150jfl"}]]);const Hl=i("arrow-down-up",[["path",{d:"m3 16 4 4 4-4",key:"1co6wj"}],["path",{d:"M7 20V4",key:"1yoxec"}],["path",{d:"m21 8-4-4-4 4",key:"1c9v7m"}],["path",{d:"M17 4v16",key:"7dpous"}]]);const Sn=i("arrow-down-wide-narrow",[["path",{d:"m3 16 4 4 4-4",key:"1co6wj"}],["path",{d:"M7 20V4",key:"1yoxec"}],["path",{d:"M11 4h10",key:"1w87gc"}],["path",{d:"M11 8h7",key:"djye34"}],["path",{d:"M11 12h4",key:"q8tih4"}]]);const Ln=i("arrow-down-z-a",[["path",{d:"m3 16 4 4 4-4",key:"1co6wj"}],["path",{d:"M7 4v16",key:"1glfcx"}],["path",{d:"M15 4h5l-5 6h5",key:"8asdl1"}],["path",{d:"M15 20v-3.5a2.5 2.5 0 0 1 5 0V20",key:"r6l5cz"}],["path",{d:"M20 18h-5",key:"18j1r2"}]]);const Vl=i("arrow-down",[["path",{d:"M12 5v14",key:"s699le"}],["path",{d:"m19 12-7 7-7-7",key:"1idqje"}]]);const Fl=i("arrow-left-from-line",[["path",{d:"m9 6-6 6 6 6",key:"7v63n9"}],["path",{d:"M3 12h14",key:"13k4hi"}],["path",{d:"M21 19V5",key:"b4bplr"}]]);const Bl=i("arrow-left-right",[["path",{d:"M8 3 4 7l4 4",key:"9rb6wj"}],["path",{d:"M4 7h16",key:"6tx8e3"}],["path",{d:"m16 21 4-4-4-4",key:"siv7j2"}],["path",{d:"M20 17H4",key:"h6l3hr"}]]);const Wl=i("arrow-left-to-line",[["path",{d:"M3 19V5",key:"rwsyhb"}],["path",{d:"m13 6-6 6 6 6",key:"1yhaz7"}],["path",{d:"M7 12h14",key:"uoisry"}]]);const Bs=i("arrow-left",[["path",{d:"m12 19-7-7 7-7",key:"1l729n"}],["path",{d:"M19 12H5",key:"x3x0zl"}]]);const Ul=i("arrow-right-from-line",[["path",{d:"M3 5v14",key:"1nt18q"}],["path",{d:"M21 12H7",key:"13ipq5"}],["path",{d:"m15 18 6-6-6-6",key:"6tx3qv"}]]);const Rl=i("arrow-right-left",[["path",{d:"m16 3 4 4-4 4",key:"1x1c3m"}],["path",{d:"M20 7H4",key:"zbl0bi"}],["path",{d:"m8 21-4-4 4-4",key:"h9nckh"}],["path",{d:"M4 17h16",key:"g4d7ey"}]]);const Ws=i("arrow-right",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"m12 5 7 7-7 7",key:"xquz4c"}]]);const Gl=i("arrow-right-to-line",[["path",{d:"M17 12H3",key:"8awo09"}],["path",{d:"m11 18 6-6-6-6",key:"8c2y43"}],["path",{d:"M21 5v14",key:"nzette"}]]);const Kl=i("arrow-up-0-1",[["path",{d:"m3 8 4-4 4 4",key:"11wl7u"}],["path",{d:"M7 4v16",key:"1glfcx"}],["rect",{x:"15",y:"4",width:"4",height:"6",ry:"2",key:"1bwicg"}],["path",{d:"M17 20v-6h-2",key:"1qp1so"}],["path",{d:"M15 20h4",key:"1j968p"}]]);const Yl=i("arrow-up-1-0",[["path",{d:"m3 8 4-4 4 4",key:"11wl7u"}],["path",{d:"M7 4v16",key:"1glfcx"}],["path",{d:"M17 10V4h-2",key:"zcsr5x"}],["path",{d:"M15 10h4",key:"id2lce"}],["rect",{x:"15",y:"14",width:"4",height:"6",ry:"2",key:"33xykx"}]]);const In=i("arrow-up-a-z",[["path",{d:"m3 8 4-4 4 4",key:"11wl7u"}],["path",{d:"M7 4v16",key:"1glfcx"}],["path",{d:"M20 8h-5",key:"1vsyxs"}],["path",{d:"M15 10V6.5a2.5 2.5 0 0 1 5 0V10",key:"ag13bf"}],["path",{d:"M15 14h5l-5 6h5",key:"ur5jdg"}]]);const Us=i("arrow-up-down",[["path",{d:"m21 16-4 4-4-4",key:"f6ql7i"}],["path",{d:"M17 20V4",key:"1ejh1v"}],["path",{d:"m3 8 4-4 4 4",key:"11wl7u"}],["path",{d:"M7 4v16",key:"1glfcx"}]]);const Xl=i("arrow-up-from-dot",[["path",{d:"m5 9 7-7 7 7",key:"1hw5ic"}],["path",{d:"M12 16V2",key:"ywoabb"}],["circle",{cx:"12",cy:"21",r:"1",key:"o0uj5v"}]]);const Zl=i("arrow-up-from-line",[["path",{d:"m18 9-6-6-6 6",key:"kcunyi"}],["path",{d:"M12 3v14",key:"7cf3v8"}],["path",{d:"M5 21h14",key:"11awu3"}]]);const Ql=i("arrow-up-left",[["path",{d:"M7 17V7h10",key:"11bw93"}],["path",{d:"M17 17 7 7",key:"2786uv"}]]);const An=i("arrow-up-narrow-wide",[["path",{d:"m3 8 4-4 4 4",key:"11wl7u"}],["path",{d:"M7 4v16",key:"1glfcx"}],["path",{d:"M11 12h4",key:"q8tih4"}],["path",{d:"M11 16h7",key:"uosisv"}],["path",{d:"M11 20h10",key:"jvxblo"}]]);const Jl=i("arrow-up-right",[["path",{d:"M7 7h10v10",key:"1tivn9"}],["path",{d:"M7 17 17 7",key:"1vkiza"}]]);const e2=i("arrow-up-to-line",[["path",{d:"M5 3h14",key:"7usisc"}],["path",{d:"m18 13-6-6-6 6",key:"1kf1n9"}],["path",{d:"M12 7v14",key:"1akyts"}]]);const t2=i("arrow-up-wide-narrow",[["path",{d:"m3 8 4-4 4 4",key:"11wl7u"}],["path",{d:"M7 4v16",key:"1glfcx"}],["path",{d:"M11 12h10",key:"1438ji"}],["path",{d:"M11 16h7",key:"uosisv"}],["path",{d:"M11 20h4",key:"1krc32"}]]);const Pn=i("arrow-up-z-a",[["path",{d:"m3 8 4-4 4 4",key:"11wl7u"}],["path",{d:"M7 4v16",key:"1glfcx"}],["path",{d:"M15 4h5l-5 6h5",key:"8asdl1"}],["path",{d:"M15 20v-3.5a2.5 2.5 0 0 1 5 0V20",key:"r6l5cz"}],["path",{d:"M20 18h-5",key:"18j1r2"}]]);const o2=i("arrow-up",[["path",{d:"m5 12 7-7 7 7",key:"hav0vg"}],["path",{d:"M12 19V5",key:"x0mq9r"}]]);const n2=i("arrows-up-from-line",[["path",{d:"m4 6 3-3 3 3",key:"9aidw8"}],["path",{d:"M7 17V3",key:"19qxw1"}],["path",{d:"m14 6 3-3 3 3",key:"6iy689"}],["path",{d:"M17 17V3",key:"o0fmgi"}],["path",{d:"M4 21h16",key:"1h09gz"}]]);const a2=i("asterisk",[["path",{d:"M12 6v12",key:"1vza4d"}],["path",{d:"M17.196 9 6.804 15",key:"1ah31z"}],["path",{d:"m6.804 9 10.392 6",key:"1b6pxd"}]]);const r2=i("at-sign",[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8",key:"7n84p3"}]]);const i2=i("atom",[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["path",{d:"M20.2 20.2c2.04-2.03.02-7.36-4.5-11.9-4.54-4.52-9.87-6.54-11.9-4.5-2.04 2.03-.02 7.36 4.5 11.9 4.54 4.52 9.87 6.54 11.9 4.5Z",key:"1l2ple"}],["path",{d:"M15.7 15.7c4.52-4.54 6.54-9.87 4.5-11.9-2.03-2.04-7.36-.02-11.9 4.5-4.52 4.54-6.54 9.87-4.5 11.9 2.03 2.04 7.36.02 11.9-4.5Z",key:"1wam0m"}]]);const c2=i("audio-lines",[["path",{d:"M2 10v3",key:"1fnikh"}],["path",{d:"M6 6v11",key:"11sgs0"}],["path",{d:"M10 3v18",key:"yhl04a"}],["path",{d:"M14 8v7",key:"3a1oy3"}],["path",{d:"M18 5v13",key:"123xd1"}],["path",{d:"M22 10v3",key:"154ddg"}]]);const s2=i("audio-waveform",[["path",{d:"M2 13a2 2 0 0 0 2-2V7a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0V4a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0v-4a2 2 0 0 1 2-2",key:"57tc96"}]]);const d2=i("award",[["path",{d:"m15.477 12.89 1.515 8.526a.5.5 0 0 1-.81.47l-3.58-2.687a1 1 0 0 0-1.197 0l-3.586 2.686a.5.5 0 0 1-.81-.469l1.514-8.526",key:"1yiouv"}],["circle",{cx:"12",cy:"8",r:"6",key:"1vp47v"}]]);const l2=i("axe",[["path",{d:"m14 12-8.381 8.38a1 1 0 0 1-3.001-3L11 9",key:"5z9253"}],["path",{d:"M15 15.5a.5.5 0 0 0 .5.5A6.5 6.5 0 0 0 22 9.5a.5.5 0 0 0-.5-.5h-1.672a2 2 0 0 1-1.414-.586l-5.062-5.062a1.205 1.205 0 0 0-1.704 0L9.352 5.648a1.205 1.205 0 0 0 0 1.704l5.062 5.062A2 2 0 0 1 15 13.828z",key:"19zklq"}]]);const Tn=i("axis-3d",[["path",{d:"M13.5 10.5 15 9",key:"1nsxvm"}],["path",{d:"M4 4v15a1 1 0 0 0 1 1h15",key:"1w6lkd"}],["path",{d:"M4.293 19.707 6 18",key:"3g1p8c"}],["path",{d:"m9 15 1.5-1.5",key:"1xfbes"}]]);const u2=i("backpack",[["path",{d:"M4 10a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z",key:"1ol0lm"}],["path",{d:"M8 10h8",key:"c7uz4u"}],["path",{d:"M8 18h8",key:"1no2b1"}],["path",{d:"M8 22v-6a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v6",key:"1fr6do"}],["path",{d:"M9 6V4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2",key:"donm21"}]]);const h2=i("baby",[["path",{d:"M10 16c.5.3 1.2.5 2 .5s1.5-.2 2-.5",key:"1u7htd"}],["path",{d:"M15 12h.01",key:"1k8ypt"}],["path",{d:"M19.38 6.813A9 9 0 0 1 20.8 10.2a2 2 0 0 1 0 3.6 9 9 0 0 1-17.6 0 2 2 0 0 1 0-3.6A9 9 0 0 1 12 3c2 0 3.5 1.1 3.5 2.5s-.9 2.5-2 2.5c-.8 0-1.5-.4-1.5-1",key:"11xh7x"}],["path",{d:"M9 12h.01",key:"157uk2"}]]);const p2=i("badge-alert",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);const y2=i("badge-cent",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M12 7v10",key:"jspqdw"}],["path",{d:"M15.4 10a4 4 0 1 0 0 4",key:"2eqtx8"}]]);const Dn=i("badge-check",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);const f2=i("badge-dollar-sign",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8",key:"1h4pet"}],["path",{d:"M12 18V6",key:"zqpxq5"}]]);const m2=i("badge-euro",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M7 12h5",key:"gblrwe"}],["path",{d:"M15 9.4a4 4 0 1 0 0 5.2",key:"1makmb"}]]);const k2=i("badge-indian-rupee",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M8 8h8",key:"1bis0t"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"m13 17-5-1h1a4 4 0 0 0 0-8",key:"nu2bwa"}]]);const g2=i("badge-info",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["line",{x1:"12",x2:"12",y1:"16",y2:"12",key:"1y1yb1"}],["line",{x1:"12",x2:"12.01",y1:"8",y2:"8",key:"110wyk"}]]);const v2=i("badge-japanese-yen",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"m9 8 3 3v7",key:"17yadx"}],["path",{d:"m12 11 3-3",key:"p4cfq1"}],["path",{d:"M9 12h6",key:"1c52cq"}],["path",{d:"M9 16h6",key:"8wimt3"}]]);const _2=i("badge-minus",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12",key:"1jonct"}]]);const b2=i("badge-percent",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"M9 9h.01",key:"1q5me6"}],["path",{d:"M15 15h.01",key:"lqbp3k"}]]);const M2=i("badge-plus",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["line",{x1:"12",x2:"12",y1:"8",y2:"16",key:"10p56q"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12",key:"1jonct"}]]);const w2=i("badge-pound-sterling",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M8 12h4",key:"qz6y1c"}],["path",{d:"M10 16V9.5a2.5 2.5 0 0 1 5 0",key:"3mlbjk"}],["path",{d:"M8 16h7",key:"sbedsn"}]]);const En=i("badge-question-mark",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["line",{x1:"12",x2:"12.01",y1:"17",y2:"17",key:"io3f8k"}]]);const x2=i("badge-russian-ruble",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M9 16h5",key:"1syiyw"}],["path",{d:"M9 12h5a2 2 0 1 0 0-4h-3v9",key:"1ge9c1"}]]);const N2=i("badge-swiss-franc",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M11 17V8h4",key:"1bfq6y"}],["path",{d:"M11 12h3",key:"2eqnfz"}],["path",{d:"M9 16h4",key:"1skf3a"}]]);const C2=i("badge-turkish-lira",[["path",{d:"M11 7v10a5 5 0 0 0 5-5",key:"1ja3ih"}],["path",{d:"m15 8-6 3",key:"4x0uwz"}],["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76",key:"18242g"}]]);const $2=i("badge-x",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["line",{x1:"15",x2:"9",y1:"9",y2:"15",key:"f7djnv"}],["line",{x1:"9",x2:"15",y1:"9",y2:"15",key:"1shsy8"}]]);const S2=i("baggage-claim",[["path",{d:"M22 18H6a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2",key:"4irg2o"}],["path",{d:"M17 14V4a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v10",key:"14fcyx"}],["rect",{width:"13",height:"8",x:"8",y:"6",rx:"1",key:"o6oiis"}],["circle",{cx:"18",cy:"20",r:"2",key:"t9985n"}],["circle",{cx:"9",cy:"20",r:"2",key:"e5v82j"}]]);const L2=i("badge",[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}]]);const I2=i("balloon",[["path",{d:"M12 16v1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v1",key:"2nz4b"}],["path",{d:"M12 6a2 2 0 0 1 2 2",key:"7y7d82"}],["path",{d:"M18 8c0 4-3.5 8-6 8s-6-4-6-8a6 6 0 0 1 12 0",key:"vqb5s3"}]]);const A2=i("ban",[["path",{d:"M4.929 4.929 19.07 19.071",key:"196cmz"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const P2=i("banana",[["path",{d:"M4 13c3.5-2 8-2 10 2a5.5 5.5 0 0 1 8 5",key:"1cscit"}],["path",{d:"M5.15 17.89c5.52-1.52 8.65-6.89 7-12C11.55 4 11.5 2 13 2c3.22 0 5 5.5 5 8 0 6.5-4.2 12-10.49 12C5.11 22 2 22 2 20c0-1.5 1.14-1.55 3.15-2.11Z",key:"1y1nbv"}]]);const T2=i("banknote-arrow-down",[["path",{d:"M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5",key:"x6cv4u"}],["path",{d:"m16 19 3 3 3-3",key:"1ibux0"}],["path",{d:"M18 12h.01",key:"yjnet6"}],["path",{d:"M19 16v6",key:"tddt3s"}],["path",{d:"M6 12h.01",key:"c2rlol"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]]);const D2=i("bandage",[["path",{d:"M10 10.01h.01",key:"1e9xi7"}],["path",{d:"M10 14.01h.01",key:"ac23bv"}],["path",{d:"M14 10.01h.01",key:"2wfrvf"}],["path",{d:"M14 14.01h.01",key:"8tw8yn"}],["path",{d:"M18 6v11.5",key:"dkbidh"}],["path",{d:"M6 6v12",key:"vkc79e"}],["rect",{x:"2",y:"6",width:"20",height:"12",rx:"2",key:"1wpnh2"}]]);const E2=i("banknote-arrow-up",[["path",{d:"M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5",key:"x6cv4u"}],["path",{d:"M18 12h.01",key:"yjnet6"}],["path",{d:"M19 22v-6",key:"qhmiwi"}],["path",{d:"m22 19-3-3-3 3",key:"rn6bg2"}],["path",{d:"M6 12h.01",key:"c2rlol"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]]);const z2=i("banknote-x",[["path",{d:"M13 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5",key:"16nib6"}],["path",{d:"m17 17 5 5",key:"p7ous7"}],["path",{d:"M18 12h.01",key:"yjnet6"}],["path",{d:"m22 17-5 5",key:"gqnmv0"}],["path",{d:"M6 12h.01",key:"c2rlol"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]]);const O2=i("barcode",[["path",{d:"M3 5v14",key:"1nt18q"}],["path",{d:"M8 5v14",key:"1ybrkv"}],["path",{d:"M12 5v14",key:"s699le"}],["path",{d:"M17 5v14",key:"ycjyhj"}],["path",{d:"M21 5v14",key:"nzette"}]]);const q2=i("banknote",[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2",key:"9lu3g6"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}],["path",{d:"M6 12h.01M18 12h.01",key:"113zkx"}]]);const j2=i("barrel",[["path",{d:"M10 3a41 41 0 0 0 0 18",key:"1qcnzb"}],["path",{d:"M14 3a41 41 0 0 1 0 18",key:"547vd4"}],["path",{d:"M17 3a2 2 0 0 1 1.68.92 15.25 15.25 0 0 1 0 16.16A2 2 0 0 1 17 21H7a2 2 0 0 1-1.68-.92 15.25 15.25 0 0 1 0-16.16A2 2 0 0 1 7 3z",key:"1wepyy"}],["path",{d:"M3.84 17h16.32",key:"1wh981"}],["path",{d:"M3.84 7h16.32",key:"19jf4x"}]]);const H2=i("baseline",[["path",{d:"M4 20h16",key:"14thso"}],["path",{d:"m6 16 6-12 6 12",key:"1b4byz"}],["path",{d:"M8 12h8",key:"1wcyev"}]]);const V2=i("bath",[["path",{d:"M10 4 8 6",key:"1rru8s"}],["path",{d:"M17 19v2",key:"ts1sot"}],["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"M7 19v2",key:"12npes"}],["path",{d:"M9 5 7.621 3.621A2.121 2.121 0 0 0 4 5v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5",key:"14ym8i"}]]);const F2=i("battery-charging",[["path",{d:"m11 7-3 5h4l-3 5",key:"b4a64w"}],["path",{d:"M14.856 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.935",key:"lre1cr"}],["path",{d:"M22 14v-4",key:"14q9d5"}],["path",{d:"M5.14 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2.936",key:"13q5k0"}]]);const B2=i("battery-full",[["path",{d:"M10 10v4",key:"1mb2ec"}],["path",{d:"M14 10v4",key:"1nt88p"}],["path",{d:"M22 14v-4",key:"14q9d5"}],["path",{d:"M6 10v4",key:"1n77qd"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2",key:"13zb55"}]]);const W2=i("battery-low",[["path",{d:"M22 14v-4",key:"14q9d5"}],["path",{d:"M6 14v-4",key:"14a6bd"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2",key:"13zb55"}]]);const U2=i("battery-medium",[["path",{d:"M10 14v-4",key:"suye4c"}],["path",{d:"M22 14v-4",key:"14q9d5"}],["path",{d:"M6 14v-4",key:"14a6bd"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2",key:"13zb55"}]]);const R2=i("battery-plus",[["path",{d:"M10 9v6",key:"17i7lo"}],["path",{d:"M12.543 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.605",key:"o09yah"}],["path",{d:"M22 14v-4",key:"14q9d5"}],["path",{d:"M7 12h6",key:"iekk3h"}],["path",{d:"M7.606 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.606",key:"xyqvf1"}]]);const G2=i("battery-warning",[["path",{d:"M10 17h.01",key:"nbq80n"}],["path",{d:"M10 7v6",key:"nne03l"}],["path",{d:"M14 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2",key:"1m83kb"}],["path",{d:"M22 14v-4",key:"14q9d5"}],["path",{d:"M6 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2",key:"h8lgfh"}]]);const K2=i("beaker",[["path",{d:"M4.5 3h15",key:"c7n0jr"}],["path",{d:"M6 3v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V3",key:"m1uhx7"}],["path",{d:"M6 14h12",key:"4cwo0f"}]]);const Y2=i("battery",[["path",{d:"M 22 14 L 22 10",key:"nqc4tb"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2",key:"13zb55"}]]);const X2=i("bean-off",[["path",{d:"M9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22a13.96 13.96 0 0 0 9.9-4.1",key:"bq3udt"}],["path",{d:"M10.75 5.093A6 6 0 0 1 22 8c0 2.411-.61 4.68-1.683 6.66",key:"17ccse"}],["path",{d:"M5.341 10.62a4 4 0 0 0 6.487 1.208M10.62 5.341a4.015 4.015 0 0 1 2.039 2.04",key:"18zqgq"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]]);const Z2=i("bean",[["path",{d:"M10.165 6.598C9.954 7.478 9.64 8.36 9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22c7.732 0 14-6.268 14-14a6 6 0 0 0-11.835-1.402Z",key:"1tvzk7"}],["path",{d:"M5.341 10.62a4 4 0 1 0 5.279-5.28",key:"2cyri2"}]]);const Q2=i("bed-double",[["path",{d:"M2 20v-8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8",key:"1k78r4"}],["path",{d:"M4 10V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4",key:"fb3tl2"}],["path",{d:"M12 4v6",key:"1dcgq2"}],["path",{d:"M2 18h20",key:"ajqnye"}]]);const J2=i("bed-single",[["path",{d:"M3 20v-8a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v8",key:"1wm6mi"}],["path",{d:"M5 10V6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4",key:"4k93s5"}],["path",{d:"M3 18h18",key:"1h113x"}]]);const e0=i("bed",[["path",{d:"M2 4v16",key:"vw9hq8"}],["path",{d:"M2 8h18a2 2 0 0 1 2 2v10",key:"1dgv2r"}],["path",{d:"M2 17h20",key:"18nfp3"}],["path",{d:"M6 8v9",key:"1yriud"}]]);const t0=i("beef",[["path",{d:"M16.4 13.7A6.5 6.5 0 1 0 6.28 6.6c-1.1 3.13-.78 3.9-3.18 6.08A3 3 0 0 0 5 18c4 0 8.4-1.8 11.4-4.3",key:"cisjcv"}],["path",{d:"m18.5 6 2.19 4.5a6.48 6.48 0 0 1-2.29 7.2C15.4 20.2 11 22 7 22a3 3 0 0 1-2.68-1.66L2.4 16.5",key:"5byaag"}],["circle",{cx:"12.5",cy:"8.5",r:"2.5",key:"9738u8"}]]);const o0=i("beer-off",[["path",{d:"M13 13v5",key:"igwfh0"}],["path",{d:"M17 11.47V8",key:"16yw0g"}],["path",{d:"M17 11h1a3 3 0 0 1 2.745 4.211",key:"1xbt65"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-3",key:"c55o3e"}],["path",{d:"M7.536 7.535C6.766 7.649 6.154 8 5.5 8a2.5 2.5 0 0 1-1.768-4.268",key:"1ydug7"}],["path",{d:"M8.727 3.204C9.306 2.767 9.885 2 11 2c1.56 0 2 1.5 3 1.5s1.72-.5 2.5-.5a1 1 0 1 1 0 5c-.78 0-1.5-.5-2.5-.5a3.149 3.149 0 0 0-.842.12",key:"q81o7q"}],["path",{d:"M9 14.6V18",key:"20ek98"}]]);const n0=i("bell-dot",[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M13.916 2.314A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.74 7.327A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673 9 9 0 0 1-.585-.665",key:"1tip0g"}],["circle",{cx:"18",cy:"8",r:"3",key:"1g0gzu"}]]);const a0=i("beer",[["path",{d:"M17 11h1a3 3 0 0 1 0 6h-1",key:"1yp76v"}],["path",{d:"M9 12v6",key:"1u1cab"}],["path",{d:"M13 12v6",key:"1sugkk"}],["path",{d:"M14 7.5c-1 0-1.44.5-3 .5s-2-.5-3-.5-1.72.5-2.5.5a2.5 2.5 0 0 1 0-5c.78 0 1.57.5 2.5.5S9.44 2 11 2s2 1.5 3 1.5 1.72-.5 2.5-.5a2.5 2.5 0 0 1 0 5c-.78 0-1.5-.5-2.5-.5Z",key:"1510fo"}],["path",{d:"M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8",key:"19jb7n"}]]);const r0=i("bell-electric",[["path",{d:"M18.518 17.347A7 7 0 0 1 14 19",key:"1emhpo"}],["path",{d:"M18.8 4A11 11 0 0 1 20 9",key:"127b67"}],["path",{d:"M9 9h.01",key:"1q5me6"}],["circle",{cx:"20",cy:"16",r:"2",key:"1v9bxh"}],["circle",{cx:"9",cy:"9",r:"7",key:"p2h5vp"}],["rect",{x:"4",y:"16",width:"10",height:"6",rx:"2",key:"bfnviv"}]]);const i0=i("bell-minus",[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M15 8h6",key:"8ybuxh"}],["path",{d:"M16.243 3.757A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673A9.4 9.4 0 0 1 18.667 12",key:"bdwj86"}]]);const c0=i("bell-off",[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M17 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 .258-1.742",key:"178tsu"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8.668 3.01A6 6 0 0 1 18 8c0 2.687.77 4.653 1.707 6.05",key:"1hqiys"}]]);const s0=i("bell-plus",[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M15 8h6",key:"8ybuxh"}],["path",{d:"M18 5v6",key:"g5ayrv"}],["path",{d:"M20.002 14.464a9 9 0 0 0 .738.863A1 1 0 0 1 20 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 8.75-5.332",key:"1abcvy"}]]);const d0=i("bell-ring",[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M22 8c0-2.3-.8-4.3-2-6",key:"5bb3ad"}],["path",{d:"M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326",key:"11g9vi"}],["path",{d:"M4 2C2.8 3.7 2 5.7 2 8",key:"tap9e0"}]]);const l0=i("bell",[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326",key:"11g9vi"}]]);const zn=i("between-horizontal-end",[["rect",{width:"13",height:"7",x:"3",y:"3",rx:"1",key:"11xb64"}],["path",{d:"m22 15-3-3 3-3",key:"26chmm"}],["rect",{width:"13",height:"7",x:"3",y:"14",rx:"1",key:"k6ky7n"}]]);const On=i("between-horizontal-start",[["rect",{width:"13",height:"7",x:"8",y:"3",rx:"1",key:"pkso9a"}],["path",{d:"m2 9 3 3-3 3",key:"1agib5"}],["rect",{width:"13",height:"7",x:"8",y:"14",rx:"1",key:"1q5fc1"}]]);const u0=i("between-vertical-end",[["rect",{width:"7",height:"13",x:"3",y:"3",rx:"1",key:"1fdu0f"}],["path",{d:"m9 22 3-3 3 3",key:"17z65a"}],["rect",{width:"7",height:"13",x:"14",y:"3",rx:"1",key:"1squn4"}]]);const h0=i("between-vertical-start",[["rect",{width:"7",height:"13",x:"3",y:"8",rx:"1",key:"1fjrkv"}],["path",{d:"m15 2-3 3-3-3",key:"1uh6eb"}],["rect",{width:"7",height:"13",x:"14",y:"8",rx:"1",key:"w3fjg8"}]]);const p0=i("biceps-flexed",[["path",{d:"M12.409 13.017A5 5 0 0 1 22 15c0 3.866-4 7-9 7-4.077 0-8.153-.82-10.371-2.462-.426-.316-.631-.832-.62-1.362C2.118 12.723 2.627 2 10 2a3 3 0 0 1 3 3 2 2 0 0 1-2 2c-1.105 0-1.64-.444-2-1",key:"1pmlyh"}],["path",{d:"M15 14a5 5 0 0 0-7.584 2",key:"5rb254"}],["path",{d:"M9.964 6.825C8.019 7.977 9.5 13 8 15",key:"kbvsx9"}]]);const y0=i("bike",[["circle",{cx:"18.5",cy:"17.5",r:"3.5",key:"15x4ox"}],["circle",{cx:"5.5",cy:"17.5",r:"3.5",key:"1noe27"}],["circle",{cx:"15",cy:"5",r:"1",key:"19l28e"}],["path",{d:"M12 17.5V14l-3-3 4-3 2 3h2",key:"1npguv"}]]);const f0=i("binary",[["rect",{x:"14",y:"14",width:"4",height:"6",rx:"2",key:"p02svl"}],["rect",{x:"6",y:"4",width:"4",height:"6",rx:"2",key:"xm4xkj"}],["path",{d:"M6 20h4",key:"1i6q5t"}],["path",{d:"M14 10h4",key:"ru81e7"}],["path",{d:"M6 14h2v6",key:"16z9wg"}],["path",{d:"M14 4h2v6",key:"1idq9u"}]]);const m0=i("binoculars",[["path",{d:"M10 10h4",key:"tcdvrf"}],["path",{d:"M19 7V4a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3",key:"3apit1"}],["path",{d:"M20 21a2 2 0 0 0 2-2v-3.851c0-1.39-2-2.962-2-4.829V8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v11a2 2 0 0 0 2 2z",key:"rhpgnw"}],["path",{d:"M 22 16 L 2 16",key:"14lkq7"}],["path",{d:"M4 21a2 2 0 0 1-2-2v-3.851c0-1.39 2-2.962 2-4.829V8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v11a2 2 0 0 1-2 2z",key:"104b3k"}],["path",{d:"M9 7V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3",key:"14fczp"}]]);const k0=i("biohazard",[["circle",{cx:"12",cy:"11.9",r:"2",key:"e8h31w"}],["path",{d:"M6.7 3.4c-.9 2.5 0 5.2 2.2 6.7C6.5 9 3.7 9.6 2 11.6",key:"17bolr"}],["path",{d:"m8.9 10.1 1.4.8",key:"15ezny"}],["path",{d:"M17.3 3.4c.9 2.5 0 5.2-2.2 6.7 2.4-1.2 5.2-.6 6.9 1.5",key:"wtwa5u"}],["path",{d:"m15.1 10.1-1.4.8",key:"1r0b28"}],["path",{d:"M16.7 20.8c-2.6-.4-4.6-2.6-4.7-5.3-.2 2.6-2.1 4.8-4.7 5.2",key:"m7qszh"}],["path",{d:"M12 13.9v1.6",key:"zfyyim"}],["path",{d:"M13.5 5.4c-1-.2-2-.2-3 0",key:"1bi9q0"}],["path",{d:"M17 16.4c.7-.7 1.2-1.6 1.5-2.5",key:"1rhjqw"}],["path",{d:"M5.5 13.9c.3.9.8 1.8 1.5 2.5",key:"8gsud3"}]]);const g0=i("bird",[["path",{d:"M16 7h.01",key:"1kdx03"}],["path",{d:"M3.4 18H12a8 8 0 0 0 8-8V7a4 4 0 0 0-7.28-2.3L2 20",key:"oj1oa8"}],["path",{d:"m20 7 2 .5-2 .5",key:"12nv4d"}],["path",{d:"M10 18v3",key:"1yea0a"}],["path",{d:"M14 17.75V21",key:"1pymcb"}],["path",{d:"M7 18a6 6 0 0 0 3.84-10.61",key:"1npnn0"}]]);const v0=i("birdhouse",[["path",{d:"M12 18v4",key:"jadmvz"}],["path",{d:"m17 18 1.956-11.468",key:"l5n2ro"}],["path",{d:"m3 8 7.82-5.615a2 2 0 0 1 2.36 0L21 8",key:"1sy6n7"}],["path",{d:"M4 18h16",key:"19g7jn"}],["path",{d:"M7 18 5.044 6.532",key:"1uqdf2"}],["circle",{cx:"12",cy:"10",r:"2",key:"1yojzk"}]]);const _0=i("bitcoin",[["path",{d:"M11.767 19.089c4.924.868 6.14-6.025 1.216-6.894m-1.216 6.894L5.86 18.047m5.908 1.042-.347 1.97m1.563-8.864c4.924.869 6.14-6.025 1.215-6.893m-1.215 6.893-3.94-.694m5.155-6.2L8.29 4.26m5.908 1.042.348-1.97M7.48 20.364l3.126-17.727",key:"yr8idg"}]]);const b0=i("blend",[["circle",{cx:"9",cy:"9",r:"7",key:"p2h5vp"}],["circle",{cx:"15",cy:"15",r:"7",key:"19ennj"}]]);const M0=i("blinds",[["path",{d:"M3 3h18",key:"o7r712"}],["path",{d:"M20 7H8",key:"gd2fo2"}],["path",{d:"M20 11H8",key:"1ynp89"}],["path",{d:"M10 19h10",key:"19hjk5"}],["path",{d:"M8 15h12",key:"1yqzne"}],["path",{d:"M4 3v14",key:"fggqzn"}],["circle",{cx:"4",cy:"19",r:"2",key:"p3m9r0"}]]);const w0=i("blocks",[["path",{d:"M10 22V7a1 1 0 0 0-1-1H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5a1 1 0 0 0-1-1H2",key:"1ah6g2"}],["rect",{x:"14",y:"2",width:"8",height:"8",rx:"1",key:"88lufb"}]]);const x0=i("bluetooth-connected",[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17",key:"1q5490"}],["line",{x1:"18",x2:"21",y1:"12",y2:"12",key:"1rsjjs"}],["line",{x1:"3",x2:"6",y1:"12",y2:"12",key:"11yl8c"}]]);const N0=i("bluetooth-off",[["path",{d:"m17 17-5 5V12l-5 5",key:"v5aci6"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M14.5 9.5 17 7l-5-5v4.5",key:"1kddfz"}]]);const C0=i("bluetooth-searching",[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17",key:"1q5490"}],["path",{d:"M20.83 14.83a4 4 0 0 0 0-5.66",key:"k8tn1j"}],["path",{d:"M18 12h.01",key:"yjnet6"}]]);const $0=i("bold",[["path",{d:"M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8",key:"mg9rjx"}]]);const S0=i("bluetooth",[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17",key:"1q5490"}]]);const L0=i("bolt",[["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z",key:"yt0hxn"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}]]);const I0=i("bone",[["path",{d:"M17 10c.7-.7 1.69 0 2.5 0a2.5 2.5 0 1 0 0-5 .5.5 0 0 1-.5-.5 2.5 2.5 0 1 0-5 0c0 .81.7 1.8 0 2.5l-7 7c-.7.7-1.69 0-2.5 0a2.5 2.5 0 0 0 0 5c.28 0 .5.22.5.5a2.5 2.5 0 1 0 5 0c0-.81-.7-1.8 0-2.5Z",key:"w610uw"}]]);const A0=i("bomb",[["circle",{cx:"11",cy:"13",r:"9",key:"hd149"}],["path",{d:"M14.35 4.65 16.3 2.7a2.41 2.41 0 0 1 3.4 0l1.6 1.6a2.4 2.4 0 0 1 0 3.4l-1.95 1.95",key:"jp4j1b"}],["path",{d:"m22 2-1.5 1.5",key:"ay92ug"}]]);const P0=i("book-a",[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"m8 13 4-7 4 7",key:"4rari8"}],["path",{d:"M9.1 11h5.7",key:"1gkovt"}]]);const T0=i("book-alert",[["path",{d:"M12 13h.01",key:"y0uutt"}],["path",{d:"M12 6v3",key:"1m4b9j"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}]]);const D0=i("book-audio",[["path",{d:"M12 6v7",key:"1f6ttz"}],["path",{d:"M16 8v3",key:"gejaml"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"M8 8v3",key:"1qzp49"}]]);const E0=i("book-check",[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"m9 9.5 2 2 4-4",key:"1dth82"}]]);const z0=i("book-copy",[["path",{d:"M5 7a2 2 0 0 0-2 2v11",key:"1yhqjt"}],["path",{d:"M5.803 18H5a2 2 0 0 0 0 4h9.5a.5.5 0 0 0 .5-.5V21",key:"edzzo5"}],["path",{d:"M9 15V4a2 2 0 0 1 2-2h9.5a.5.5 0 0 1 .5.5v14a.5.5 0 0 1-.5.5H11a2 2 0 0 1 0-4h10",key:"1nwzrg"}]]);const qn=i("book-dashed",[["path",{d:"M12 17h1.5",key:"1gkc67"}],["path",{d:"M12 22h1.5",key:"1my7sn"}],["path",{d:"M12 2h1.5",key:"19tvb7"}],["path",{d:"M17.5 22H19a1 1 0 0 0 1-1",key:"10akbh"}],["path",{d:"M17.5 2H19a1 1 0 0 1 1 1v1.5",key:"1vrfjs"}],["path",{d:"M20 14v3h-2.5",key:"1naeju"}],["path",{d:"M20 8.5V10",key:"1ctpfu"}],["path",{d:"M4 10V8.5",key:"1o3zg5"}],["path",{d:"M4 19.5V14",key:"ob81pf"}],["path",{d:"M4 4.5A2.5 2.5 0 0 1 6.5 2H8",key:"s8vcyb"}],["path",{d:"M8 22H6.5a1 1 0 0 1 0-5H8",key:"1cu73q"}]]);const O0=i("book-down",[["path",{d:"M12 13V7",key:"h0r20n"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"m9 10 3 3 3-3",key:"zt5b4y"}]]);const q0=i("book-headphones",[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"M8 12v-2a4 4 0 0 1 8 0v2",key:"1vsqkj"}],["circle",{cx:"15",cy:"12",r:"1",key:"1tmaij"}],["circle",{cx:"9",cy:"12",r:"1",key:"1vctgf"}]]);const j0=i("book-heart",[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"M8.62 9.8A2.25 2.25 0 1 1 12 6.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z",key:"9v40y5"}]]);const H0=i("book-image",[["path",{d:"m20 13.7-2.1-2.1a2 2 0 0 0-2.8 0L9.7 17",key:"q6ojf0"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["circle",{cx:"10",cy:"8",r:"2",key:"2qkj4p"}]]);const V0=i("book-key",[["path",{d:"m19 3 1 1",key:"ze14oc"}],["path",{d:"m20 2-4.5 4.5",key:"1sppr8"}],["path",{d:"M20 7.898V21a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"1xzogz"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2h7.844",key:"vtdg6h"}],["circle",{cx:"14",cy:"8",r:"2",key:"u49eql"}]]);const F0=i("book-lock",[["path",{d:"M18 6V4a2 2 0 1 0-4 0v2",key:"1aquzs"}],["path",{d:"M20 15v6a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"1rkj32"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H10",key:"18wgow"}],["rect",{x:"12",y:"6",width:"8",height:"5",rx:"1",key:"73l30o"}]]);const B0=i("book-minus",[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"M9 10h6",key:"9gxzsh"}]]);const W0=i("book-marked",[["path",{d:"M10 2v8l3-3 3 3V2",key:"sqw3rj"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}]]);const U0=i("book-open-check",[["path",{d:"M12 21V7",key:"gj6g52"}],["path",{d:"m16 12 2 2 4-4",key:"mdajum"}],["path",{d:"M22 6V4a1 1 0 0 0-1-1h-5a4 4 0 0 0-4 4 4 4 0 0 0-4-4H3a1 1 0 0 0-1 1v13a1 1 0 0 0 1 1h6a3 3 0 0 1 3 3 3 3 0 0 1 3-3h6a1 1 0 0 0 1-1v-1.3",key:"8arnkb"}]]);const R0=i("book-open",[["path",{d:"M12 7v14",key:"1akyts"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z",key:"ruj8y"}]]);const G0=i("book-open-text",[["path",{d:"M12 7v14",key:"1akyts"}],["path",{d:"M16 12h2",key:"7q9ll5"}],["path",{d:"M16 8h2",key:"msurwy"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z",key:"ruj8y"}],["path",{d:"M6 12h2",key:"32wvfc"}],["path",{d:"M6 8h2",key:"30oboj"}]]);const K0=i("book-plus",[["path",{d:"M12 7v6",key:"lw1j43"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"M9 10h6",key:"9gxzsh"}]]);const Y0=i("book-search",[["path",{d:"M11 22H5.5a1 1 0 0 1 0-5h4.501",key:"mcbepb"}],["path",{d:"m21 22-1.879-1.878",key:"12q7x1"}],["path",{d:"M3 19.5v-15A2.5 2.5 0 0 1 5.5 2H18a1 1 0 0 1 1 1v8",key:"olfd5n"}],["circle",{cx:"17",cy:"18",r:"3",key:"82mm0e"}]]);const X0=i("book-text",[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"M8 11h8",key:"vwpz6n"}],["path",{d:"M8 7h6",key:"1f0q6e"}]]);const Z0=i("book-type",[["path",{d:"M10 13h4",key:"ytezjc"}],["path",{d:"M12 6v7",key:"1f6ttz"}],["path",{d:"M16 8V6H8v2",key:"x8j6u4"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}]]);const Q0=i("book-up-2",[["path",{d:"M12 13V7",key:"h0r20n"}],["path",{d:"M18 2h1a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"161d7n"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2",key:"1lorq7"}],["path",{d:"m9 10 3-3 3 3",key:"11gsxs"}],["path",{d:"m9 5 3-3 3 3",key:"l8vdw6"}]]);const J0=i("book-up",[["path",{d:"M12 13V7",key:"h0r20n"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"m9 10 3-3 3 3",key:"11gsxs"}]]);const eu=i("book-user",[["path",{d:"M15 13a3 3 0 1 0-6 0",key:"10j68g"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["circle",{cx:"12",cy:"8",r:"2",key:"1822b1"}]]);const tu=i("book-x",[["path",{d:"m14.5 7-5 5",key:"dy991v"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"m9.5 7 5 5",key:"s45iea"}]]);const ou=i("book",[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}]]);const nu=i("bookmark-check",[["path",{d:"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z",key:"oz39mx"}],["path",{d:"m9 10 2 2 4-4",key:"1gnqz4"}]]);const au=i("bookmark-minus",[["path",{d:"M15 10H9",key:"o6yqo3"}],["path",{d:"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z",key:"oz39mx"}]]);const ru=i("bookmark-plus",[["path",{d:"M12 7v6",key:"lw1j43"}],["path",{d:"M15 10H9",key:"o6yqo3"}],["path",{d:"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z",key:"oz39mx"}]]);const iu=i("bookmark-x",[["path",{d:"m14.5 7.5-5 5",key:"3lb6iw"}],["path",{d:"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z",key:"oz39mx"}],["path",{d:"m9.5 7.5 5 5",key:"ko136h"}]]);const cu=i("bookmark",[["path",{d:"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z",key:"oz39mx"}]]);const su=i("boom-box",[["path",{d:"M4 9V5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4",key:"vvzvr1"}],["path",{d:"M8 8v1",key:"xcqmfk"}],["path",{d:"M12 8v1",key:"1rj8u4"}],["path",{d:"M16 8v1",key:"1q12zr"}],["rect",{width:"20",height:"12",x:"2",y:"9",rx:"2",key:"igpb89"}],["circle",{cx:"8",cy:"15",r:"2",key:"fa4a8s"}],["circle",{cx:"16",cy:"15",r:"2",key:"14c3ya"}]]);const du=i("bot-message-square",[["path",{d:"M12 6V2H8",key:"1155em"}],["path",{d:"M15 11v2",key:"i11awn"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"M20 16a2 2 0 0 1-2 2H8.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 4 20.286V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2z",key:"11gyqh"}],["path",{d:"M9 11v2",key:"1ueba0"}]]);const lu=i("bot-off",[["path",{d:"M13.67 8H18a2 2 0 0 1 2 2v4.33",key:"7az073"}],["path",{d:"M2 14h2",key:"vft8re"}],["path",{d:"M20 14h2",key:"4cs60a"}],["path",{d:"M22 22 2 2",key:"1r8tn9"}],["path",{d:"M8 8H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 1.414-.586",key:"s09a7a"}],["path",{d:"M9 13v2",key:"rq6x2g"}],["path",{d:"M9.67 4H12v2.33",key:"110xot"}]]);const uu=i("bot",[["path",{d:"M12 8V4H8",key:"hb8ula"}],["rect",{width:"16",height:"12",x:"4",y:"8",rx:"2",key:"enze0r"}],["path",{d:"M2 14h2",key:"vft8re"}],["path",{d:"M20 14h2",key:"4cs60a"}],["path",{d:"M15 13v2",key:"1xurst"}],["path",{d:"M9 13v2",key:"rq6x2g"}]]);const hu=i("bow-arrow",[["path",{d:"M17 3h4v4",key:"19p9u1"}],["path",{d:"M18.575 11.082a13 13 0 0 1 1.048 9.027 1.17 1.17 0 0 1-1.914.597L14 17",key:"12t3w9"}],["path",{d:"M7 10 3.29 6.29a1.17 1.17 0 0 1 .6-1.91 13 13 0 0 1 9.03 1.05",key:"ogng5l"}],["path",{d:"M7 14a1.7 1.7 0 0 0-1.207.5l-2.646 2.646A.5.5 0 0 0 3.5 18H5a1 1 0 0 1 1 1v1.5a.5.5 0 0 0 .854.354L9.5 18.207A1.7 1.7 0 0 0 10 17v-2a1 1 0 0 0-1-1z",key:"8v3fy2"}],["path",{d:"M9.707 14.293 21 3",key:"ydm3bn"}]]);const pu=i("bottle-wine",[["path",{d:"M10 3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a6 6 0 0 0 1.2 3.6l.6.8A6 6 0 0 1 17 13v8a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-8a6 6 0 0 1 1.2-3.6l.6-.8A6 6 0 0 0 10 5z",key:"blqgoc"}],["path",{d:"M17 13h-4a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h4",key:"43jbee"}]]);const yu=i("box",[["path",{d:"M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z",key:"hh9hay"}],["path",{d:"m3.3 7 8.7 5 8.7-5",key:"g66t2b"}],["path",{d:"M12 22V12",key:"d0xqtd"}]]);const fu=i("boxes",[["path",{d:"M2.97 12.92A2 2 0 0 0 2 14.63v3.24a2 2 0 0 0 .97 1.71l3 1.8a2 2 0 0 0 2.06 0L12 19v-5.5l-5-3-4.03 2.42Z",key:"lc1i9w"}],["path",{d:"m7 16.5-4.74-2.85",key:"1o9zyk"}],["path",{d:"m7 16.5 5-3",key:"va8pkn"}],["path",{d:"M7 16.5v5.17",key:"jnp8gn"}],["path",{d:"M12 13.5V19l3.97 2.38a2 2 0 0 0 2.06 0l3-1.8a2 2 0 0 0 .97-1.71v-3.24a2 2 0 0 0-.97-1.71L17 10.5l-5 3Z",key:"8zsnat"}],["path",{d:"m17 16.5-5-3",key:"8arw3v"}],["path",{d:"m17 16.5 4.74-2.85",key:"8rfmw"}],["path",{d:"M17 16.5v5.17",key:"k6z78m"}],["path",{d:"M7.97 4.42A2 2 0 0 0 7 6.13v4.37l5 3 5-3V6.13a2 2 0 0 0-.97-1.71l-3-1.8a2 2 0 0 0-2.06 0l-3 1.8Z",key:"1xygjf"}],["path",{d:"M12 8 7.26 5.15",key:"1vbdud"}],["path",{d:"m12 8 4.74-2.85",key:"3rx089"}],["path",{d:"M12 13.5V8",key:"1io7kd"}]]);const jn=i("braces",[["path",{d:"M8 3H7a2 2 0 0 0-2 2v5a2 2 0 0 1-2 2 2 2 0 0 1 2 2v5c0 1.1.9 2 2 2h1",key:"ezmyqa"}],["path",{d:"M16 21h1a2 2 0 0 0 2-2v-5c0-1.1.9-2 2-2a2 2 0 0 1-2-2V5a2 2 0 0 0-2-2h-1",key:"e1hn23"}]]);const mu=i("brackets",[["path",{d:"M16 3h3a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1h-3",key:"1kt8lf"}],["path",{d:"M8 21H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h3",key:"gduv9"}]]);const ku=i("brain-circuit",[["path",{d:"M12 5a3 3 0 1 0-5.997.125 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588A4 4 0 1 0 12 18Z",key:"l5xja"}],["path",{d:"M9 13a4.5 4.5 0 0 0 3-4",key:"10igwf"}],["path",{d:"M6.003 5.125A3 3 0 0 0 6.401 6.5",key:"105sqy"}],["path",{d:"M3.477 10.896a4 4 0 0 1 .585-.396",key:"ql3yin"}],["path",{d:"M6 18a4 4 0 0 1-1.967-.516",key:"2e4loj"}],["path",{d:"M12 13h4",key:"1ku699"}],["path",{d:"M12 18h6a2 2 0 0 1 2 2v1",key:"105ag5"}],["path",{d:"M12 8h8",key:"1lhi5i"}],["path",{d:"M16 8V5a2 2 0 0 1 2-2",key:"u6izg6"}],["circle",{cx:"16",cy:"13",r:".5",key:"ry7gng"}],["circle",{cx:"18",cy:"3",r:".5",key:"1aiba7"}],["circle",{cx:"20",cy:"21",r:".5",key:"yhc1fs"}],["circle",{cx:"20",cy:"8",r:".5",key:"1e43v0"}]]);const gu=i("brain-cog",[["path",{d:"m10.852 14.772-.383.923",key:"11vil6"}],["path",{d:"m10.852 9.228-.383-.923",key:"1fjppe"}],["path",{d:"m13.148 14.772.382.924",key:"je3va1"}],["path",{d:"m13.531 8.305-.383.923",key:"18epck"}],["path",{d:"m14.772 10.852.923-.383",key:"k9m8cz"}],["path",{d:"m14.772 13.148.923.383",key:"1xvhww"}],["path",{d:"M17.598 6.5A3 3 0 1 0 12 5a3 3 0 0 0-5.63-1.446 3 3 0 0 0-.368 1.571 4 4 0 0 0-2.525 5.771",key:"jcbbz1"}],["path",{d:"M17.998 5.125a4 4 0 0 1 2.525 5.771",key:"1kkn7e"}],["path",{d:"M19.505 10.294a4 4 0 0 1-1.5 7.706",key:"18bmuc"}],["path",{d:"M4.032 17.483A4 4 0 0 0 11.464 20c.18-.311.892-.311 1.072 0a4 4 0 0 0 7.432-2.516",key:"uozx0d"}],["path",{d:"M4.5 10.291A4 4 0 0 0 6 18",key:"whdemb"}],["path",{d:"M6.002 5.125a3 3 0 0 0 .4 1.375",key:"1kqy2g"}],["path",{d:"m9.228 10.852-.923-.383",key:"1wtb30"}],["path",{d:"m9.228 13.148-.923.383",key:"1a830x"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]]);const vu=i("brain",[["path",{d:"M12 18V5",key:"adv99a"}],["path",{d:"M15 13a4.17 4.17 0 0 1-3-4 4.17 4.17 0 0 1-3 4",key:"1e3is1"}],["path",{d:"M17.598 6.5A3 3 0 1 0 12 5a3 3 0 1 0-5.598 1.5",key:"1gqd8o"}],["path",{d:"M17.997 5.125a4 4 0 0 1 2.526 5.77",key:"iwvgf7"}],["path",{d:"M18 18a4 4 0 0 0 2-7.464",key:"efp6ie"}],["path",{d:"M19.967 17.483A4 4 0 1 1 12 18a4 4 0 1 1-7.967-.517",key:"1gq6am"}],["path",{d:"M6 18a4 4 0 0 1-2-7.464",key:"k1g0md"}],["path",{d:"M6.003 5.125a4 4 0 0 0-2.526 5.77",key:"q97ue3"}]]);const _u=i("brick-wall-fire",[["path",{d:"M16 3v2.107",key:"gq8xun"}],["path",{d:"M17 9c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 22 17a5 5 0 0 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C13 11.5 16 9 17 9",key:"1l2pih"}],["path",{d:"M21 8.274V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.938",key:"jrnqjp"}],["path",{d:"M3 15h5.253",key:"xqg7rb"}],["path",{d:"M3 9h8.228",key:"1ppb70"}],["path",{d:"M8 15v6",key:"1stoo3"}],["path",{d:"M8 3v6",key:"vlvjmk"}]]);const bu=i("brick-wall-shield",[["path",{d:"M12 9v1.258",key:"iwpddn"}],["path",{d:"M16 3v5.46",key:"d7ew98"}],["path",{d:"M21 9.118V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h5.75",key:"137t5x"}],["path",{d:"M22 17.5c0 2.499-1.75 3.749-3.83 4.474a.5.5 0 0 1-.335-.005c-2.085-.72-3.835-1.97-3.835-4.47V14a.5.5 0 0 1 .5-.499c1 0 2.25-.6 3.12-1.36a.6.6 0 0 1 .76-.001c.875.765 2.12 1.36 3.12 1.36a.5.5 0 0 1 .5.5z",key:"16j3tf"}],["path",{d:"M3 15h7",key:"1qldh6"}],["path",{d:"M3 9h12.142",key:"1yjd6m"}],["path",{d:"M8 15v6",key:"1stoo3"}],["path",{d:"M8 3v6",key:"vlvjmk"}]]);const Mu=i("brick-wall",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M12 9v6",key:"199k2o"}],["path",{d:"M16 15v6",key:"8rj2es"}],["path",{d:"M16 3v6",key:"1j6rpj"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"M8 15v6",key:"1stoo3"}],["path",{d:"M8 3v6",key:"vlvjmk"}]]);const wu=i("briefcase-business",[["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2",key:"1ksdt3"}],["path",{d:"M22 13a18.15 18.15 0 0 1-20 0",key:"12hx5q"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2",key:"i6l2r4"}]]);const xu=i("briefcase-conveyor-belt",[["path",{d:"M10 20v2",key:"1n8e1g"}],["path",{d:"M14 20v2",key:"1lq872"}],["path",{d:"M18 20v2",key:"10uadw"}],["path",{d:"M21 20H3",key:"kdqkdp"}],["path",{d:"M6 20v2",key:"a9bc87"}],["path",{d:"M8 16V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v12",key:"17n9tx"}],["rect",{x:"4",y:"6",width:"16",height:"10",rx:"2",key:"1097i5"}]]);const Nu=i("briefcase-medical",[["path",{d:"M12 11v4",key:"a6ujw6"}],["path",{d:"M14 13h-4",key:"1pl8zg"}],["path",{d:"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2",key:"1ksdt3"}],["path",{d:"M18 6v14",key:"1mu4gy"}],["path",{d:"M6 6v14",key:"1s15cj"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2",key:"i6l2r4"}]]);const Cu=i("briefcase",[["path",{d:"M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16",key:"jecpp"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2",key:"i6l2r4"}]]);const $u=i("bring-to-front",[["rect",{x:"8",y:"8",width:"8",height:"8",rx:"2",key:"yj20xf"}],["path",{d:"M4 10a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2",key:"1ltk23"}],["path",{d:"M14 20a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2",key:"1q24h9"}]]);const Su=i("brush",[["path",{d:"m11 10 3 3",key:"fzmg1i"}],["path",{d:"M6.5 21A3.5 3.5 0 1 0 3 17.5a2.62 2.62 0 0 1-.708 1.792A1 1 0 0 0 3 21z",key:"p4q2r7"}],["path",{d:"M9.969 17.031 21.378 5.624a1 1 0 0 0-3.002-3.002L6.967 14.031",key:"wy6l02"}]]);const Lu=i("brush-cleaning",[["path",{d:"m16 22-1-4",key:"1ow2iv"}],["path",{d:"M19 14a1 1 0 0 0 1-1v-1a2 2 0 0 0-2-2h-3a1 1 0 0 1-1-1V4a2 2 0 0 0-4 0v5a1 1 0 0 1-1 1H6a2 2 0 0 0-2 2v1a1 1 0 0 0 1 1",key:"11gii7"}],["path",{d:"M19 14H5l-1.973 6.767A1 1 0 0 0 4 22h16a1 1 0 0 0 .973-1.233z",key:"bju7h4"}],["path",{d:"m8 22 1-4",key:"s3unb"}]]);const Iu=i("bubbles",[["path",{d:"M7.001 15.085A1.5 1.5 0 0 1 9 16.5",key:"y44lvh"}],["circle",{cx:"18.5",cy:"8.5",r:"3.5",key:"1wadoa"}],["circle",{cx:"7.5",cy:"16.5",r:"5.5",key:"6mdt3g"}],["circle",{cx:"7.5",cy:"4.5",r:"2.5",key:"637s54"}]]);const Au=i("bug-off",[["path",{d:"M12 20v-8",key:"i3yub9"}],["path",{d:"M14.12 3.88 16 2",key:"qol33r"}],["path",{d:"M15 7.13V6a3 3 0 0 0-5.14-2.1L8 2",key:"vl8zik"}],["path",{d:"M18 12.34V11a4 4 0 0 0-4-4h-1.3",key:"sz915m"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M21 5a4 4 0 0 1-3.55 3.97",key:"5cxbf6"}],["path",{d:"M22 13h-3.34",key:"1y15gv"}],["path",{d:"M3 21a4 4 0 0 1 3.81-4",key:"1fjd4g"}],["path",{d:"M6 13H2",key:"82j7cp"}],["path",{d:"M7.7 7.7A4 4 0 0 0 6 11v3a6 6 0 0 0 11.13 3.13",key:"1njkjs"}]]);const Pu=i("bug-play",[["path",{d:"M10 19.655A6 6 0 0 1 6 14v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 3.97",key:"1gnv52"}],["path",{d:"M14 15.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z",key:"1weqy9"}],["path",{d:"M14.12 3.88 16 2",key:"qol33r"}],["path",{d:"M21 5a4 4 0 0 1-3.55 3.97",key:"5cxbf6"}],["path",{d:"M3 21a4 4 0 0 1 3.81-4",key:"1fjd4g"}],["path",{d:"M3 5a4 4 0 0 0 3.55 3.97",key:"1d7oge"}],["path",{d:"M6 13H2",key:"82j7cp"}],["path",{d:"m8 2 1.88 1.88",key:"fmnt4t"}],["path",{d:"M9 7.13V6a3 3 0 1 1 6 0v1.13",key:"1vgav8"}]]);const Tu=i("bug",[["path",{d:"M12 20v-9",key:"1qisl0"}],["path",{d:"M14 7a4 4 0 0 1 4 4v3a6 6 0 0 1-12 0v-3a4 4 0 0 1 4-4z",key:"uouzyp"}],["path",{d:"M14.12 3.88 16 2",key:"qol33r"}],["path",{d:"M21 21a4 4 0 0 0-3.81-4",key:"1b0z45"}],["path",{d:"M21 5a4 4 0 0 1-3.55 3.97",key:"5cxbf6"}],["path",{d:"M22 13h-4",key:"1jl80f"}],["path",{d:"M3 21a4 4 0 0 1 3.81-4",key:"1fjd4g"}],["path",{d:"M3 5a4 4 0 0 0 3.55 3.97",key:"1d7oge"}],["path",{d:"M6 13H2",key:"82j7cp"}],["path",{d:"m8 2 1.88 1.88",key:"fmnt4t"}],["path",{d:"M9 7.13V6a3 3 0 1 1 6 0v1.13",key:"1vgav8"}]]);const Du=i("building-2",[["path",{d:"M10 12h4",key:"a56b0p"}],["path",{d:"M10 8h4",key:"1sr2af"}],["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3",key:"1rgiei"}],["path",{d:"M6 10H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2",key:"secmi2"}],["path",{d:"M6 21V5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v16",key:"16ra0t"}]]);const Eu=i("building",[["path",{d:"M12 10h.01",key:"1nrarc"}],["path",{d:"M12 14h.01",key:"1etili"}],["path",{d:"M12 6h.01",key:"1vi96p"}],["path",{d:"M16 10h.01",key:"1m94wz"}],["path",{d:"M16 14h.01",key:"1gbofw"}],["path",{d:"M16 6h.01",key:"1x0f13"}],["path",{d:"M8 10h.01",key:"19clt8"}],["path",{d:"M8 14h.01",key:"6423bh"}],["path",{d:"M8 6h.01",key:"1dz90k"}],["path",{d:"M9 22v-3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v3",key:"cabbwy"}],["rect",{x:"4",y:"2",width:"16",height:"20",rx:"2",key:"1uxh74"}]]);const zu=i("bus-front",[["path",{d:"M4 6 2 7",key:"1mqr15"}],["path",{d:"M10 6h4",key:"1itunk"}],["path",{d:"m22 7-2-1",key:"1umjhc"}],["rect",{width:"16",height:"16",x:"4",y:"3",rx:"2",key:"1wxw4b"}],["path",{d:"M4 11h16",key:"mpoxn0"}],["path",{d:"M8 15h.01",key:"a7atzg"}],["path",{d:"M16 15h.01",key:"rnfrdf"}],["path",{d:"M6 19v2",key:"1loha6"}],["path",{d:"M18 21v-2",key:"sqyl04"}]]);const Ou=i("bus",[["path",{d:"M8 6v6",key:"18i7km"}],["path",{d:"M15 6v6",key:"1sg6z9"}],["path",{d:"M2 12h19.6",key:"de5uta"}],["path",{d:"M18 18h3s.5-1.7.8-2.8c.1-.4.2-.8.2-1.2 0-.4-.1-.8-.2-1.2l-1.4-5C20.1 6.8 19.1 6 18 6H4a2 2 0 0 0-2 2v10h3",key:"1wwztk"}],["circle",{cx:"7",cy:"18",r:"2",key:"19iecd"}],["path",{d:"M9 18h5",key:"lrx6i"}],["circle",{cx:"16",cy:"18",r:"2",key:"1v4tcr"}]]);const qu=i("cable-car",[["path",{d:"M10 3h.01",key:"lbucoy"}],["path",{d:"M14 2h.01",key:"1k8aa1"}],["path",{d:"m2 9 20-5",key:"1kz0j5"}],["path",{d:"M12 12V6.5",key:"1vbrij"}],["rect",{width:"16",height:"10",x:"4",y:"12",rx:"3",key:"if91er"}],["path",{d:"M9 12v5",key:"3anwtq"}],["path",{d:"M15 12v5",key:"5xh3zn"}],["path",{d:"M4 17h16",key:"g4d7ey"}]]);const ju=i("cable",[["path",{d:"M17 19a1 1 0 0 1-1-1v-2a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2a1 1 0 0 1-1 1z",key:"trhst0"}],["path",{d:"M17 21v-2",key:"ds4u3f"}],["path",{d:"M19 14V6.5a1 1 0 0 0-7 0v11a1 1 0 0 1-7 0V10",key:"1mo9zo"}],["path",{d:"M21 21v-2",key:"eo0ou"}],["path",{d:"M3 5V3",key:"1k5hjh"}],["path",{d:"M4 10a2 2 0 0 1-2-2V6a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2z",key:"1dd30t"}],["path",{d:"M7 5V3",key:"1t1388"}]]);const Hu=i("cake-slice",[["path",{d:"M16 13H3",key:"1wpj08"}],["path",{d:"M16 17H3",key:"3lvfcd"}],["path",{d:"m7.2 7.9-3.388 2.5A2 2 0 0 0 3 12.01V20a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-8.654c0-2-2.44-6.026-6.44-8.026a1 1 0 0 0-1.082.057L10.4 5.6",key:"1gmhf7"}],["circle",{cx:"9",cy:"7",r:"2",key:"1305pl"}]]);const Vu=i("cake",[["path",{d:"M20 21v-8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8",key:"1w3rig"}],["path",{d:"M4 16s.5-1 2-1 2.5 2 4 2 2.5-2 4-2 2.5 2 4 2 2-1 2-1",key:"n2jgmb"}],["path",{d:"M2 21h20",key:"1nyx9w"}],["path",{d:"M7 8v3",key:"1qtyvj"}],["path",{d:"M12 8v3",key:"hwp4zt"}],["path",{d:"M17 8v3",key:"1i6e5u"}],["path",{d:"M7 4h.01",key:"1bh4kh"}],["path",{d:"M12 4h.01",key:"1ujb9j"}],["path",{d:"M17 4h.01",key:"1upcoc"}]]);const Fu=i("calculator",[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",key:"1nb95v"}],["line",{x1:"8",x2:"16",y1:"6",y2:"6",key:"x4nwl0"}],["line",{x1:"16",x2:"16",y1:"14",y2:"18",key:"wjye3r"}],["path",{d:"M16 10h.01",key:"1m94wz"}],["path",{d:"M12 10h.01",key:"1nrarc"}],["path",{d:"M8 10h.01",key:"19clt8"}],["path",{d:"M12 14h.01",key:"1etili"}],["path",{d:"M8 14h.01",key:"6423bh"}],["path",{d:"M12 18h.01",key:"mhygvu"}],["path",{d:"M8 18h.01",key:"lrp35t"}]]);const Bu=i("calendar-1",[["path",{d:"M11 14h1v4",key:"fy54vd"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2",key:"12vinp"}]]);const Wu=i("calendar-arrow-down",[["path",{d:"m14 18 4 4 4-4",key:"1waygx"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M18 14v8",key:"irew45"}],["path",{d:"M21 11.354V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.343",key:"bse4f3"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}]]);const Uu=i("calendar-arrow-up",[["path",{d:"m14 18 4-4 4 4",key:"ftkppy"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M18 22v-8",key:"su0gjh"}],["path",{d:"M21 11.343V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h9",key:"1exg90"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}]]);const Ru=i("calendar-check-2",[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21 14V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8",key:"bce9hv"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"m16 20 2 2 4-4",key:"13tcca"}]]);const Gu=i("calendar-clock",[["path",{d:"M16 14v2.2l1.6 1",key:"fo4ql5"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21 7.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.5",key:"1osxxc"}],["path",{d:"M3 10h5",key:"r794hk"}],["path",{d:"M8 2v4",key:"1cmpym"}],["circle",{cx:"16",cy:"16",r:"6",key:"qoo3c4"}]]);const Ku=i("calendar-check",[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"m9 16 2 2 4-4",key:"19s6y9"}]]);const Yu=i("calendar-cog",[["path",{d:"m15.228 16.852-.923-.383",key:"npixar"}],["path",{d:"m15.228 19.148-.923.383",key:"51cr3n"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"m16.47 14.305.382.923",key:"obybxd"}],["path",{d:"m16.852 20.772-.383.924",key:"dpfhf9"}],["path",{d:"m19.148 15.228.383-.923",key:"1reyyz"}],["path",{d:"m19.53 21.696-.382-.924",key:"1goivc"}],["path",{d:"m20.772 16.852.924-.383",key:"htqkph"}],["path",{d:"m20.772 19.148.924.383",key:"9w9pjp"}],["path",{d:"M21 10.592V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6",key:"1pvbig"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}]]);const Xu=i("calendar-days",[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 14h.01",key:"6423bh"}],["path",{d:"M12 14h.01",key:"1etili"}],["path",{d:"M16 14h.01",key:"1gbofw"}],["path",{d:"M8 18h.01",key:"lrp35t"}],["path",{d:"M12 18h.01",key:"mhygvu"}],["path",{d:"M16 18h.01",key:"kzsmim"}]]);const Zu=i("calendar-fold",[["path",{d:"M3 20a2 2 0 0 0 2 2h10a2.4 2.4 0 0 0 1.706-.706l3.588-3.588A2.4 2.4 0 0 0 21 16V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2z",key:"r586nh"}],["path",{d:"M15 22v-5a1 1 0 0 1 1-1h5",key:"xl3app"}],["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M3 10h18",key:"8toen8"}]]);const Qu=i("calendar-heart",[["path",{d:"M12.127 22H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v5.125",key:"vxdnp4"}],["path",{d:"M14.62 18.8A2.25 2.25 0 1 1 18 15.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z",key:"15cy7q"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}]]);const Ju=i("calendar-minus-2",[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M10 16h4",key:"17e571"}]]);const eh=i("calendar-minus",[["path",{d:"M16 19h6",key:"xwg31i"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21 15V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5",key:"1scpom"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}]]);const th=i("calendar-off",[["path",{d:"M4.2 4.2A2 2 0 0 0 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 1.82-1.18",key:"16swn3"}],["path",{d:"M21 15.5V6a2 2 0 0 0-2-2H9.5",key:"yhw86o"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M3 10h7",key:"1wap6i"}],["path",{d:"M21 10h-5.5",key:"quycpq"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const oh=i("calendar-plus-2",[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M10 16h4",key:"17e571"}],["path",{d:"M12 14v4",key:"1thi36"}]]);const nh=i("calendar-plus",[["path",{d:"M16 19h6",key:"xwg31i"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M19 16v6",key:"tddt3s"}],["path",{d:"M21 12.598V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5",key:"1glfrc"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}]]);const ah=i("calendar-range",[["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M17 14h-6",key:"bkmgh3"}],["path",{d:"M13 18H7",key:"bb0bb7"}],["path",{d:"M7 14h.01",key:"1qa3f1"}],["path",{d:"M17 18h.01",key:"1bdyru"}]]);const rh=i("calendar-search",[["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21 11.75V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.25",key:"1jrsq6"}],["path",{d:"m22 22-1.875-1.875",key:"13zax7"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}]]);const ih=i("calendar-x-2",[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8",key:"3spt84"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"m17 22 5-5",key:"1k6ppv"}],["path",{d:"m17 17 5 5",key:"p7ous7"}]]);const ch=i("calendar-sync",[["path",{d:"M11 10v4h4",key:"172dkj"}],["path",{d:"m11 14 1.535-1.605a5 5 0 0 1 8 1.5",key:"vu0qm5"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"m21 18-1.535 1.605a5 5 0 0 1-8-1.5",key:"1qgeyt"}],["path",{d:"M21 22v-4h-4",key:"hrummi"}],["path",{d:"M21 8.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h4.3",key:"mctw84"}],["path",{d:"M3 10h4",key:"1el30a"}],["path",{d:"M8 2v4",key:"1cmpym"}]]);const sh=i("calendar-x",[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"m14 14-4 4",key:"rymu2i"}],["path",{d:"m10 14 4 4",key:"3sz06r"}]]);const Xc=i("calendar",[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M3 10h18",key:"8toen8"}]]);const dh=i("calendars",[["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M15.726 21.01A2 2 0 0 1 14 22H4a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2",key:"j6srht"}],["path",{d:"M18 2v2",key:"1kh14s"}],["path",{d:"M2 13h2",key:"13gyu8"}],["path",{d:"M8 8h14",key:"12jxz2"}],["rect",{x:"8",y:"3",width:"14",height:"14",rx:"2",key:"nsru6w"}]]);const lh=i("camera-off",[["path",{d:"M14.564 14.558a3 3 0 1 1-4.122-4.121",key:"1rnrzw"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M20 20H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 .819-.175",key:"1x3arw"}],["path",{d:"M9.695 4.024A2 2 0 0 1 10.004 4h3.993a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v7.344",key:"1i84u0"}]]);const uh=i("camera",[["path",{d:"M13.997 4a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 1.759-1.048l.489-.904A2 2 0 0 1 10.004 4z",key:"18u6gg"}],["circle",{cx:"12",cy:"13",r:"3",key:"1vg3eu"}]]);const hh=i("candy-off",[["path",{d:"M10 10v7.9",key:"m8g9tt"}],["path",{d:"M11.802 6.145a5 5 0 0 1 6.053 6.053",key:"dn87i3"}],["path",{d:"M14 6.1v2.243",key:"1kzysn"}],["path",{d:"m15.5 15.571-.964.964a5 5 0 0 1-7.071 0 5 5 0 0 1 0-7.07l.964-.965",key:"3sxy18"}],["path",{d:"M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4",key:"gpb6xx"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4",key:"qexcha"}]]);const ph=i("candy-cane",[["path",{d:"M5.7 21a2 2 0 0 1-3.5-2l8.6-14a6 6 0 0 1 10.4 6 2 2 0 1 1-3.464-2 2 2 0 1 0-3.464-2Z",key:"isaq8g"}],["path",{d:"M17.75 7 15 2.1",key:"12x7e8"}],["path",{d:"M10.9 4.8 13 9",key:"100a87"}],["path",{d:"m7.9 9.7 2 4.4",key:"ntfhaj"}],["path",{d:"M4.9 14.7 7 18.9",key:"1x43jy"}]]);const yh=i("candy",[["path",{d:"M10 7v10.9",key:"1gynux"}],["path",{d:"M14 6.1V17",key:"116kdf"}],["path",{d:"M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4",key:"gpb6xx"}],["path",{d:"M16.536 7.465a5 5 0 0 0-7.072 0l-2 2a5 5 0 0 0 0 7.07 5 5 0 0 0 7.072 0l2-2a5 5 0 0 0 0-7.07",key:"1tsln4"}],["path",{d:"M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4",key:"qexcha"}]]);const fh=i("cannabis-off",[["path",{d:"M12 22v-4c1.5 1.5 3.5 3 6 3 0-1.5-.5-3.5-2-5",key:"1bqfb7"}],["path",{d:"M13.988 8.327C13.902 6.054 13.365 3.82 12 2a9.3 9.3 0 0 0-1.445 2.9",key:"1p520n"}],["path",{d:"M17.375 11.725C18.882 10.53 21 7.841 21 6c-2.324 0-5.08 1.296-6.662 2.684",key:"q2itvb"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M21.024 15.378A15 15 0 0 0 22 15c-.426-1.279-2.67-2.557-4.25-2.907",key:"j9amvs"}],["path",{d:"M6.995 6.992C5.714 6.4 4.29 6 3 6c0 2 2.5 5 4 6-1.5 0-4.5 1.5-5 3 3.5 1.5 6 1 6 1-1.5 1.5-2 3.5-2 5 2.5 0 4.5-1.5 6-3",key:"8gmd5g"}]]);const mh=i("cannabis",[["path",{d:"M12 22v-4",key:"1utk9m"}],["path",{d:"M7 12c-1.5 0-4.5 1.5-5 3 3.5 1.5 6 1 6 1-1.5 1.5-2 3.5-2 5 2.5 0 4.5-1.5 6-3 1.5 1.5 3.5 3 6 3 0-1.5-.5-3.5-2-5 0 0 2.5.5 6-1-.5-1.5-3.5-3-5-3 1.5-1 4-4 4-6-2.5 0-5.5 1.5-7 3 0-2.5-.5-5-2-7-1.5 2-2 4.5-2 7-1.5-1.5-4.5-3-7-3 0 2 2.5 5 4 6",key:"1mezod"}]]);const kh=i("captions-off",[["path",{d:"M10.5 5H19a2 2 0 0 1 2 2v8.5",key:"jqtk4d"}],["path",{d:"M17 11h-.5",key:"1961ue"}],["path",{d:"M19 19H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2",key:"1keqsi"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M7 11h4",key:"1o1z6v"}],["path",{d:"M7 15h2.5",key:"1ina1g"}]]);const Hn=i("captions",[["rect",{width:"18",height:"14",x:"3",y:"5",rx:"2",ry:"2",key:"12ruh7"}],["path",{d:"M7 15h4M15 15h2M7 11h2M13 11h4",key:"1ueiar"}]]);const gh=i("car-front",[["path",{d:"m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8",key:"1imjwt"}],["path",{d:"M7 14h.01",key:"1qa3f1"}],["path",{d:"M17 14h.01",key:"7oqj8z"}],["rect",{width:"18",height:"8",x:"3",y:"10",rx:"2",key:"a7itu8"}],["path",{d:"M5 18v2",key:"ppbyun"}],["path",{d:"M19 18v2",key:"gy7782"}]]);const vh=i("car",[["path",{d:"M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9C18.7 10.6 16 10 16 10s-1.3-1.4-2.2-2.3c-.5-.4-1.1-.7-1.8-.7H5c-.6 0-1.1.4-1.4.9l-1.4 2.9A3.7 3.7 0 0 0 2 12v4c0 .6.4 1 1 1h2",key:"5owen"}],["circle",{cx:"7",cy:"17",r:"2",key:"u2ysq9"}],["path",{d:"M9 17h6",key:"r8uit2"}],["circle",{cx:"17",cy:"17",r:"2",key:"axvx0g"}]]);const _h=i("car-taxi-front",[["path",{d:"M10 2h4",key:"n1abiw"}],["path",{d:"m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8",key:"1imjwt"}],["path",{d:"M7 14h.01",key:"1qa3f1"}],["path",{d:"M17 14h.01",key:"7oqj8z"}],["rect",{width:"18",height:"8",x:"3",y:"10",rx:"2",key:"a7itu8"}],["path",{d:"M5 18v2",key:"ppbyun"}],["path",{d:"M19 18v2",key:"gy7782"}]]);const bh=i("card-sim",[["path",{d:"M12 14v4",key:"1thi36"}],["path",{d:"M14.172 2a2 2 0 0 1 1.414.586l3.828 3.828A2 2 0 0 1 20 7.828V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z",key:"1o66bk"}],["path",{d:"M8 14h8",key:"1fgep2"}],["rect",{x:"8",y:"10",width:"8",height:"8",rx:"1",key:"1aonk6"}]]);const Mh=i("caravan",[["path",{d:"M18 19V9a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v8a2 2 0 0 0 2 2h2",key:"19jm3t"}],["path",{d:"M2 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2",key:"13hakp"}],["path",{d:"M22 17v1a1 1 0 0 1-1 1H10v-9a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v9",key:"1crci8"}],["circle",{cx:"8",cy:"19",r:"2",key:"t8fc5s"}]]);const wh=i("carrot",[["path",{d:"M2.27 21.7s9.87-3.5 12.73-6.36a4.5 4.5 0 0 0-6.36-6.37C5.77 11.84 2.27 21.7 2.27 21.7zM8.64 14l-2.05-2.04M15.34 15l-2.46-2.46",key:"rfqxbe"}],["path",{d:"M22 9s-1.33-2-3.5-2C16.86 7 15 9 15 9s1.33 2 3.5 2S22 9 22 9z",key:"6b25w4"}],["path",{d:"M15 2s-2 1.33-2 3.5S15 9 15 9s2-1.84 2-3.5C17 3.33 15 2 15 2z",key:"fn65lo"}]]);const xh=i("case-lower",[["path",{d:"M10 9v7",key:"ylp826"}],["path",{d:"M14 6v10",key:"1jy4vg"}],["circle",{cx:"17.5",cy:"12.5",r:"3.5",key:"1a9481"}],["circle",{cx:"6.5",cy:"12.5",r:"3.5",key:"2jlv1r"}]]);const Nh=i("case-sensitive",[["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16",key:"d5nyq2"}],["path",{d:"M22 9v7",key:"pvm9v3"}],["path",{d:"M3.304 13h6.392",key:"1q3zxz"}],["circle",{cx:"18.5",cy:"12.5",r:"3.5",key:"z97x68"}]]);const Ch=i("case-upper",[["path",{d:"M15 11h4.5a1 1 0 0 1 0 5h-4a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h3a1 1 0 0 1 0 5",key:"nxs35"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16",key:"d5nyq2"}],["path",{d:"M3.304 13h6.392",key:"1q3zxz"}]]);const $h=i("cassette-tape",[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["circle",{cx:"8",cy:"10",r:"2",key:"1xl4ub"}],["path",{d:"M8 12h8",key:"1wcyev"}],["circle",{cx:"16",cy:"10",r:"2",key:"r14t7q"}],["path",{d:"m6 20 .7-2.9A1.4 1.4 0 0 1 8.1 16h7.8a1.4 1.4 0 0 1 1.4 1l.7 3",key:"l01ucn"}]]);const Sh=i("cast",[["path",{d:"M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6",key:"3zrzxg"}],["path",{d:"M2 12a9 9 0 0 1 8 8",key:"g6cvee"}],["path",{d:"M2 16a5 5 0 0 1 4 4",key:"1y1dii"}],["line",{x1:"2",x2:"2.01",y1:"20",y2:"20",key:"xu2jvo"}]]);const Lh=i("castle",[["path",{d:"M10 5V3",key:"1y54qe"}],["path",{d:"M14 5V3",key:"m6isi"}],["path",{d:"M15 21v-3a3 3 0 0 0-6 0v3",key:"lbp5hj"}],["path",{d:"M18 3v8",key:"2ollhf"}],["path",{d:"M18 5H6",key:"98imr9"}],["path",{d:"M22 11H2",key:"1lmjae"}],["path",{d:"M22 9v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9",key:"1rly83"}],["path",{d:"M6 3v8",key:"csox7g"}]]);const Ih=i("cat",[["path",{d:"M12 5c.67 0 1.35.09 2 .26 1.78-2 5.03-2.84 6.42-2.26 1.4.58-.42 7-.42 7 .57 1.07 1 2.24 1 3.44C21 17.9 16.97 21 12 21s-9-3-9-7.56c0-1.25.5-2.4 1-3.44 0 0-1.89-6.42-.5-7 1.39-.58 4.72.23 6.5 2.23A9.04 9.04 0 0 1 12 5Z",key:"x6xyqk"}],["path",{d:"M8 14v.5",key:"1nzgdb"}],["path",{d:"M16 14v.5",key:"1lajdz"}],["path",{d:"M11.25 16.25h1.5L12 17l-.75-.75Z",key:"12kq1m"}]]);const Ah=i("cctv",[["path",{d:"M16.75 12h3.632a1 1 0 0 1 .894 1.447l-2.034 4.069a1 1 0 0 1-1.708.134l-2.124-2.97",key:"ir91b5"}],["path",{d:"M17.106 9.053a1 1 0 0 1 .447 1.341l-3.106 6.211a1 1 0 0 1-1.342.447L3.61 12.3a2.92 2.92 0 0 1-1.3-3.91L3.69 5.6a2.92 2.92 0 0 1 3.92-1.3z",key:"jlp8i1"}],["path",{d:"M2 19h3.76a2 2 0 0 0 1.8-1.1L9 15",key:"19bib8"}],["path",{d:"M2 21v-4",key:"l40lih"}],["path",{d:"M7 9h.01",key:"19b3jx"}]]);const Vn=i("chart-area",[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M7 11.207a.5.5 0 0 1 .146-.353l2-2a.5.5 0 0 1 .708 0l3.292 3.292a.5.5 0 0 0 .708 0l4.292-4.292a.5.5 0 0 1 .854.353V16a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1z",key:"q0gr47"}]]);const Fn=i("chart-bar-big",[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["rect",{x:"7",y:"13",width:"9",height:"4",rx:"1",key:"1iip1u"}],["rect",{x:"7",y:"5",width:"12",height:"4",rx:"1",key:"1anskk"}]]);const Ph=i("chart-bar-decreasing",[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M7 11h8",key:"1feolt"}],["path",{d:"M7 16h3",key:"ur6vzw"}],["path",{d:"M7 6h12",key:"sz5b0d"}]]);const Th=i("chart-bar-increasing",[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M7 11h8",key:"1feolt"}],["path",{d:"M7 16h12",key:"wsnu98"}],["path",{d:"M7 6h3",key:"w9rmul"}]]);const Dh=i("chart-bar-stacked",[["path",{d:"M11 13v4",key:"vyy2rb"}],["path",{d:"M15 5v4",key:"1gx88a"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["rect",{x:"7",y:"13",width:"9",height:"4",rx:"1",key:"1iip1u"}],["rect",{x:"7",y:"5",width:"12",height:"4",rx:"1",key:"1anskk"}]]);const Bn=i("chart-bar",[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M7 16h8",key:"srdodz"}],["path",{d:"M7 11h12",key:"127s9w"}],["path",{d:"M7 6h3",key:"w9rmul"}]]);const Wn=i("chart-candlestick",[["path",{d:"M9 5v4",key:"14uxtq"}],["rect",{width:"4",height:"6",x:"7",y:"9",rx:"1",key:"f4fvz0"}],["path",{d:"M9 15v2",key:"r5rk32"}],["path",{d:"M17 3v2",key:"1l2re6"}],["rect",{width:"4",height:"8",x:"15",y:"5",rx:"1",key:"z38je5"}],["path",{d:"M17 13v3",key:"5l0wba"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}]]);const Un=i("chart-column-big",[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["rect",{x:"15",y:"5",width:"4",height:"12",rx:"1",key:"q8uenq"}],["rect",{x:"7",y:"8",width:"4",height:"9",rx:"1",key:"sr5ea"}]]);const Eh=i("chart-column-decreasing",[["path",{d:"M13 17V9",key:"1fwyjl"}],["path",{d:"M18 17v-3",key:"1sqioe"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M8 17V5",key:"1wzmnc"}]]);const Rn=i("chart-column-increasing",[["path",{d:"M13 17V9",key:"1fwyjl"}],["path",{d:"M18 17V5",key:"sfb6ij"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M8 17v-3",key:"17ska0"}]]);const zh=i("chart-column-stacked",[["path",{d:"M11 13H7",key:"t0o9gq"}],["path",{d:"M19 9h-4",key:"rera1j"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["rect",{x:"15",y:"5",width:"4",height:"12",rx:"1",key:"q8uenq"}],["rect",{x:"7",y:"8",width:"4",height:"9",rx:"1",key:"sr5ea"}]]);const Gn=i("chart-column",[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M18 17V9",key:"2bz60n"}],["path",{d:"M13 17V5",key:"1frdt8"}],["path",{d:"M8 17v-3",key:"17ska0"}]]);const Oh=i("chart-gantt",[["path",{d:"M10 6h8",key:"zvc2xc"}],["path",{d:"M12 16h6",key:"yi5mkt"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M8 11h7",key:"wz2hg0"}]]);const Kn=i("chart-line",[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"m19 9-5 5-4-4-3 3",key:"2osh9i"}]]);const qh=i("chart-network",[["path",{d:"m13.11 7.664 1.78 2.672",key:"go2gg9"}],["path",{d:"m14.162 12.788-3.324 1.424",key:"11x848"}],["path",{d:"m20 4-6.06 1.515",key:"1wxxh7"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["circle",{cx:"12",cy:"6",r:"2",key:"1jj5th"}],["circle",{cx:"16",cy:"12",r:"2",key:"4ma0v8"}],["circle",{cx:"9",cy:"15",r:"2",key:"lf2ghp"}]]);const jh=i("chart-no-axes-column-decreasing",[["path",{d:"M5 21V3",key:"clc1r8"}],["path",{d:"M12 21V9",key:"uvy0l4"}],["path",{d:"M19 21v-6",key:"tkawy9"}]]);const Yn=i("chart-no-axes-column-increasing",[["path",{d:"M5 21v-6",key:"1hz6c0"}],["path",{d:"M12 21V9",key:"uvy0l4"}],["path",{d:"M19 21V3",key:"11j9sm"}]]);const Xn=i("chart-no-axes-column",[["path",{d:"M5 21v-6",key:"1hz6c0"}],["path",{d:"M12 21V3",key:"1lcnhd"}],["path",{d:"M19 21V9",key:"unv183"}]]);const Hh=i("chart-no-axes-combined",[["path",{d:"M12 16v5",key:"zza2cw"}],["path",{d:"M16 14v7",key:"1g90b9"}],["path",{d:"M20 10v11",key:"1iqoj0"}],["path",{d:"m22 3-8.646 8.646a.5.5 0 0 1-.708 0L9.354 8.354a.5.5 0 0 0-.707 0L2 15",key:"1fw8x9"}],["path",{d:"M4 18v3",key:"1yp0dc"}],["path",{d:"M8 14v7",key:"n3cwzv"}]]);const Zn=i("chart-no-axes-gantt",[["path",{d:"M6 5h12",key:"fvfigv"}],["path",{d:"M4 12h10",key:"oujl3d"}],["path",{d:"M12 19h8",key:"baeox8"}]]);const Qn=i("chart-pie",[["path",{d:"M21 12c.552 0 1.005-.449.95-.998a10 10 0 0 0-8.953-8.951c-.55-.055-.998.398-.998.95v8a1 1 0 0 0 1 1z",key:"pzmjnu"}],["path",{d:"M21.21 15.89A10 10 0 1 1 8 2.83",key:"k2fpak"}]]);const Jn=i("chart-scatter",[["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor",key:"kqv944"}],["circle",{cx:"18.5",cy:"5.5",r:".5",fill:"currentColor",key:"lysivs"}],["circle",{cx:"11.5",cy:"11.5",r:".5",fill:"currentColor",key:"byv1b8"}],["circle",{cx:"7.5",cy:"16.5",r:".5",fill:"currentColor",key:"nkw3mc"}],["circle",{cx:"17.5",cy:"14.5",r:".5",fill:"currentColor",key:"1gjh6j"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}]]);const Vh=i("chart-spline",[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M7 16c.5-2 1.5-7 4-7 2 0 2 3 4 3 2.5 0 4.5-5 5-7",key:"lw07rv"}]]);const Fh=i("check-check",[["path",{d:"M18 6 7 17l-5-5",key:"116fxf"}],["path",{d:"m22 10-7.5 7.5L13 16",key:"ke71qq"}]]);const Bh=i("check-line",[["path",{d:"M20 4L9 15",key:"1qkx8z"}],["path",{d:"M21 19L3 19",key:"100sma"}],["path",{d:"M9 15L4 10",key:"9zxff7"}]]);const yo=i("check",[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]]);const Wh=i("chef-hat",[["path",{d:"M17 21a1 1 0 0 0 1-1v-5.35c0-.457.316-.844.727-1.041a4 4 0 0 0-2.134-7.589 5 5 0 0 0-9.186 0 4 4 0 0 0-2.134 7.588c.411.198.727.585.727 1.041V20a1 1 0 0 0 1 1Z",key:"1qvrer"}],["path",{d:"M6 17h12",key:"1jwigz"}]]);const Uh=i("cherry",[["path",{d:"M2 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z",key:"cvxqlc"}],["path",{d:"M12 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z",key:"1ostrc"}],["path",{d:"M7 14c3.22-2.91 4.29-8.75 5-12 1.66 2.38 4.94 9 5 12",key:"hqx58h"}],["path",{d:"M22 9c-4.29 0-7.14-2.33-10-7 5.71 0 10 4.67 10 7Z",key:"eykp1o"}]]);const Rh=i("chess-bishop",[["path",{d:"M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z",key:"b89hwq"}],["path",{d:"M15 18c1.5-.615 3-2.461 3-4.923C18 8.769 14.5 4.462 12 2 9.5 4.462 6 8.77 6 13.077 6 15.539 7.5 17.385 9 18",key:"8jdkhx"}],["path",{d:"m16 7-2.5 2.5",key:"1jq90w"}],["path",{d:"M9 2h6",key:"1jrp98"}]]);const Gh=i("chess-king",[["path",{d:"M4 20a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1z",key:"mqzwx6"}],["path",{d:"m6.7 18-1-1C4.35 15.682 3 14.09 3 12a5 5 0 0 1 4.95-5c1.584 0 2.7.455 4.05 1.818C13.35 7.455 14.466 7 16.05 7A5 5 0 0 1 21 12c0 2.082-1.359 3.673-2.7 5l-1 1",key:"1gdt1g"}],["path",{d:"M10 4h4",key:"1xpv9s"}],["path",{d:"M12 2v6.818",key:"b17a49"}]]);const Kh=i("chess-knight",[["path",{d:"M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z",key:"b89hwq"}],["path",{d:"M16.5 18c1-2 2.5-5 2.5-9a7 7 0 0 0-7-7H6.635a1 1 0 0 0-.768 1.64L7 5l-2.32 5.802a2 2 0 0 0 .95 2.526l2.87 1.456",key:"axbnlq"}],["path",{d:"m15 5 1.425-1.425",key:"15xz8w"}],["path",{d:"m17 8 1.53-1.53",key:"15zhqh"}],["path",{d:"M9.713 12.185 7 18",key:"1ocm0l"}]]);const Yh=i("chess-pawn",[["path",{d:"M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z",key:"b89hwq"}],["path",{d:"m14.5 10 1.5 8",key:"cim3qy"}],["path",{d:"M7 10h10",key:"1101jm"}],["path",{d:"m8 18 1.5-8",key:"ja3yjd"}],["circle",{cx:"12",cy:"6",r:"4",key:"1frrej"}]]);const Xh=i("chess-queen",[["path",{d:"M4 20a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1z",key:"mqzwx6"}],["path",{d:"m12.474 5.943 1.567 5.34a1 1 0 0 0 1.75.328l2.616-3.402",key:"1js4gl"}],["path",{d:"m20 9-3 9",key:"r75r3f"}],["path",{d:"m5.594 8.209 2.615 3.403a1 1 0 0 0 1.75-.329l1.567-5.34",key:"1joj19"}],["path",{d:"M7 18 4 9",key:"1mfzj8"}],["circle",{cx:"12",cy:"4",r:"2",key:"muu5ef"}],["circle",{cx:"20",cy:"7",r:"2",key:"9w7p1x"}],["circle",{cx:"4",cy:"7",r:"2",key:"1d9wy8"}]]);const Zh=i("chess-rook",[["path",{d:"M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1z",key:"b89hwq"}],["path",{d:"M10 2v2",key:"7u0qdc"}],["path",{d:"M14 2v2",key:"6buw04"}],["path",{d:"m17 18-1-9",key:"10nd7q"}],["path",{d:"M6 2v5a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2",key:"uxf4yx"}],["path",{d:"M6 4h12",key:"1x2ag7"}],["path",{d:"m7 18 1-9",key:"1si9vq"}]]);const Zt=i("chevron-down",[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]]);const Qh=i("chevron-first",[["path",{d:"m17 18-6-6 6-6",key:"1yerx2"}],["path",{d:"M7 6v12",key:"1p53r6"}]]);const Jh=i("chevron-last",[["path",{d:"m7 18 6-6-6-6",key:"lwmzdw"}],["path",{d:"M17 6v12",key:"1o0aio"}]]);const ea=i("chevron-left",[["path",{d:"m15 18-6-6 6-6",key:"1wnfg3"}]]);const Ot=i("chevron-right",[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]]);const Zc=i("chevron-up",[["path",{d:"m18 15-6-6-6 6",key:"153udz"}]]);const ep=i("chevrons-down-up",[["path",{d:"m7 20 5-5 5 5",key:"13a0gw"}],["path",{d:"m7 4 5 5 5-5",key:"1kwcof"}]]);const tp=i("chevrons-down",[["path",{d:"m7 6 5 5 5-5",key:"1lc07p"}],["path",{d:"m7 13 5 5 5-5",key:"1d48rs"}]]);const op=i("chevrons-left-right-ellipsis",[["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M16 12h.01",key:"1l6xoz"}],["path",{d:"m17 7 5 5-5 5",key:"1xlxn0"}],["path",{d:"m7 7-5 5 5 5",key:"19njba"}],["path",{d:"M8 12h.01",key:"czm47f"}]]);const np=i("chevrons-left-right",[["path",{d:"m9 7-5 5 5 5",key:"j5w590"}],["path",{d:"m15 7 5 5-5 5",key:"1bl6da"}]]);const Rs=i("chevrons-left",[["path",{d:"m11 17-5-5 5-5",key:"13zhaf"}],["path",{d:"m18 17-5-5 5-5",key:"h8a8et"}]]);const ap=i("chevrons-right-left",[["path",{d:"m20 17-5-5 5-5",key:"30x0n2"}],["path",{d:"m4 17 5-5-5-5",key:"16spf4"}]]);const Gs=i("chevrons-right",[["path",{d:"m6 17 5-5-5-5",key:"xnjwq"}],["path",{d:"m13 17 5-5-5-5",key:"17xmmf"}]]);const Qc=i("chevrons-up-down",[["path",{d:"m7 15 5 5 5-5",key:"1hf1tw"}],["path",{d:"m7 9 5-5 5 5",key:"sgt6xg"}]]);const rp=i("chevrons-up",[["path",{d:"m17 11-5-5-5 5",key:"e8nh98"}],["path",{d:"m17 18-5-5-5 5",key:"2avn1x"}]]);const ta=i("chromium",[["path",{d:"M10.88 21.94 15.46 14",key:"xkve6t"}],["path",{d:"M21.17 8H12",key:"19dcdn"}],["path",{d:"M3.95 6.06 8.54 14",key:"g8jz9m"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}]]);const ip=i("church",[["path",{d:"M10 9h4",key:"u4k05v"}],["path",{d:"M12 7v5",key:"ma6bk"}],["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3",key:"1rgiei"}],["path",{d:"m18 9 3.52 2.147a1 1 0 0 1 .48.854V19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-6.999a1 1 0 0 1 .48-.854L6 9",key:"flvdwo"}],["path",{d:"M6 21V7a1 1 0 0 1 .376-.782l5-3.999a1 1 0 0 1 1.249.001l5 4A1 1 0 0 1 18 7v14",key:"a5i0n2"}]]);const cp=i("cigarette-off",[["path",{d:"M12 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h13",key:"1gdiyg"}],["path",{d:"M18 8c0-2.5-2-2.5-2-5",key:"1il607"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M21 12a1 1 0 0 1 1 1v2a1 1 0 0 1-.5.866",key:"166zjj"}],["path",{d:"M22 8c0-2.5-2-2.5-2-5",key:"1gah44"}],["path",{d:"M7 12v4",key:"jqww69"}]]);const sp=i("cigarette",[["path",{d:"M17 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h14",key:"1mb5g1"}],["path",{d:"M18 8c0-2.5-2-2.5-2-5",key:"1il607"}],["path",{d:"M21 16a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1",key:"1yl5r7"}],["path",{d:"M22 8c0-2.5-2-2.5-2-5",key:"1gah44"}],["path",{d:"M7 12v4",key:"jqww69"}]]);const tn=i("circle-alert",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]]);const oa=i("circle-arrow-down",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 8v8",key:"napkw2"}],["path",{d:"m8 12 4 4 4-4",key:"k98ssh"}]]);const na=i("circle-arrow-left",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m12 8-4 4 4 4",key:"15vm53"}],["path",{d:"M16 12H8",key:"1fr5h0"}]]);const aa=i("circle-arrow-out-down-left",[["path",{d:"M2 12a10 10 0 1 1 10 10",key:"1yn6ov"}],["path",{d:"m2 22 10-10",key:"28ilpk"}],["path",{d:"M8 22H2v-6",key:"sulq54"}]]);const ra=i("circle-arrow-out-down-right",[["path",{d:"M12 22a10 10 0 1 1 10-10",key:"130bv5"}],["path",{d:"M22 22 12 12",key:"131aw7"}],["path",{d:"M22 16v6h-6",key:"1gvm70"}]]);const ia=i("circle-arrow-out-up-left",[["path",{d:"M2 8V2h6",key:"hiwtdz"}],["path",{d:"m2 2 10 10",key:"1oh8rs"}],["path",{d:"M12 2A10 10 0 1 1 2 12",key:"rrk4fa"}]]);const ca=i("circle-arrow-out-up-right",[["path",{d:"M22 12A10 10 0 1 1 12 2",key:"1fm58d"}],["path",{d:"M22 2 12 12",key:"yg2myt"}],["path",{d:"M16 2h6v6",key:"zan5cs"}]]);const sa=i("circle-arrow-right",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m12 16 4-4-4-4",key:"1i9zcv"}],["path",{d:"M8 12h8",key:"1wcyev"}]]);const da=i("circle-arrow-up",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m16 12-4-4-4 4",key:"177agl"}],["path",{d:"M12 16V8",key:"1sbj14"}]]);const la=i("circle-check-big",[["path",{d:"M21.801 10A10 10 0 1 1 17 3.335",key:"yps3ct"}],["path",{d:"m9 11 3 3L22 4",key:"1pflzl"}]]);const Vo=i("circle-check",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);const ua=i("circle-chevron-down",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m16 10-4 4-4-4",key:"894hmk"}]]);const ha=i("circle-chevron-left",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m14 16-4-4 4-4",key:"ojs7w8"}]]);const pa=i("circle-chevron-right",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m10 8 4 4-4 4",key:"1wy4r4"}]]);const ya=i("circle-chevron-up",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m8 14 4-4 4 4",key:"fy2ptz"}]]);const dp=i("circle-dashed",[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0",key:"5ilxe3"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0",key:"11zvb9"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7",key:"1iw5b2"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8",key:"c0bmvh"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69",key:"1ruxm7"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8",key:"qkgqxc"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69",key:"1mcia2"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7",key:"1fvljs"}]]);const lp=i("circle-dollar-sign",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8",key:"1h4pet"}],["path",{d:"M12 18V6",key:"zqpxq5"}]]);const fa=i("circle-divide",[["line",{x1:"8",x2:"16",y1:"12",y2:"12",key:"1jonct"}],["line",{x1:"12",x2:"12",y1:"16",y2:"16",key:"aqc6ln"}],["line",{x1:"12",x2:"12",y1:"8",y2:"8",key:"1mkcni"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const up=i("circle-dot-dashed",[["path",{d:"M10.1 2.18a9.93 9.93 0 0 1 3.8 0",key:"1qdqn0"}],["path",{d:"M17.6 3.71a9.95 9.95 0 0 1 2.69 2.7",key:"1bq7p6"}],["path",{d:"M21.82 10.1a9.93 9.93 0 0 1 0 3.8",key:"1rlaqf"}],["path",{d:"M20.29 17.6a9.95 9.95 0 0 1-2.7 2.69",key:"1xk03u"}],["path",{d:"M13.9 21.82a9.94 9.94 0 0 1-3.8 0",key:"l7re25"}],["path",{d:"M6.4 20.29a9.95 9.95 0 0 1-2.69-2.7",key:"1v18p6"}],["path",{d:"M2.18 13.9a9.93 9.93 0 0 1 0-3.8",key:"xdo6bj"}],["path",{d:"M3.71 6.4a9.95 9.95 0 0 1 2.7-2.69",key:"1jjmaz"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}]]);const hp=i("circle-dot",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}]]);const pp=i("circle-ellipsis",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M17 12h.01",key:"1m0b6t"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M7 12h.01",key:"eqddd0"}]]);const yp=i("circle-equal",[["path",{d:"M7 10h10",key:"1101jm"}],["path",{d:"M7 14h10",key:"1mhdw3"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const fp=i("circle-fading-arrow-up",[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75",key:"175t95"}],["path",{d:"m16 12-4-4-4 4",key:"177agl"}],["path",{d:"M12 16V8",key:"1sbj14"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3",key:"1vce0s"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4",key:"o3fkw4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857",key:"1szpfk"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38",key:"9yhvd4"}]]);const mp=i("circle-fading-plus",[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75",key:"175t95"}],["path",{d:"M12 8v8",key:"napkw2"}],["path",{d:"M16 12H8",key:"1fr5h0"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3",key:"1vce0s"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4",key:"o3fkw4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857",key:"1szpfk"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38",key:"9yhvd4"}]]);const ma=i("circle-gauge",[["path",{d:"M15.6 2.7a10 10 0 1 0 5.7 5.7",key:"1e0p6d"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}],["path",{d:"M13.4 10.6 19 5",key:"1kr7tw"}]]);const ka=i("circle-minus",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M8 12h8",key:"1wcyev"}]]);const kp=i("circle-off",[["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8.35 2.69A10 10 0 0 1 21.3 15.65",key:"1pfsoa"}],["path",{d:"M19.08 19.08A10 10 0 1 1 4.92 4.92",key:"1ablyi"}]]);const ga=i("circle-parking-off",[["path",{d:"M12.656 7H13a3 3 0 0 1 2.984 3.307",key:"1sjx87"}],["path",{d:"M13 13H9",key:"e2beee"}],["path",{d:"M19.071 19.071A1 1 0 0 1 4.93 4.93",key:"1kb595"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8.357 2.687a10 10 0 0 1 12.956 12.956",key:"5bsfdx"}],["path",{d:"M9 17V9",key:"ojradj"}]]);const va=i("circle-parking",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M9 17V7h4a3 3 0 0 1 0 6H9",key:"1dfk2c"}]]);const _a=i("circle-pause",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"10",x2:"10",y1:"15",y2:"9",key:"c1nkhi"}],["line",{x1:"14",x2:"14",y1:"15",y2:"9",key:"h65svq"}]]);const ba=i("circle-percent",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"M9 9h.01",key:"1q5me6"}],["path",{d:"M15 15h.01",key:"lqbp3k"}]]);const gp=i("circle-pile",[["circle",{cx:"12",cy:"19",r:"2",key:"13j0tp"}],["circle",{cx:"12",cy:"5",r:"2",key:"f1ur92"}],["circle",{cx:"16",cy:"12",r:"2",key:"4ma0v8"}],["circle",{cx:"20",cy:"19",r:"2",key:"1obnsp"}],["circle",{cx:"4",cy:"19",r:"2",key:"p3m9r0"}],["circle",{cx:"8",cy:"12",r:"2",key:"1nvbw3"}]]);const Ma=i("circle-plus",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"M12 8v8",key:"napkw2"}]]);const wa=i("circle-play",[["path",{d:"M9 9.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997A1 1 0 0 1 9 14.996z",key:"kmsa83"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const vp=i("circle-pound-sterling",[["path",{d:"M10 16V9.5a1 1 0 0 1 5 0",key:"1i1are"}],["path",{d:"M8 12h4",key:"qz6y1c"}],["path",{d:"M8 16h7",key:"sbedsn"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const xa=i("circle-power",[["path",{d:"M12 7v4",key:"xawao1"}],["path",{d:"M7.998 9.003a5 5 0 1 0 8-.005",key:"1pek45"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const fo=i("circle-question-mark",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);const Na=i("circle-slash-2",[["path",{d:"M22 2 2 22",key:"y4kqgn"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const _p=i("circle-slash",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"9",x2:"15",y1:"15",y2:"9",key:"1dfufj"}]]);const bp=i("circle-star",[["path",{d:"M11.051 7.616a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.867l-1.156-1.152a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z",key:"285bvi"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Mp=i("circle-small",[["circle",{cx:"12",cy:"12",r:"6",key:"1vlfrh"}]]);const Ca=i("circle-stop",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["rect",{x:"9",y:"9",width:"6",height:"6",rx:"1",key:"1ssd4o"}]]);const $a=i("circle-user-round",[["path",{d:"M18 20a6 6 0 0 0-12 0",key:"1qehca"}],["circle",{cx:"12",cy:"10",r:"4",key:"1h16sb"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Sa=i("circle-user",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"M7 20.662V19a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v1.662",key:"154egf"}]]);const La=i("circle-x",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"m9 9 6 6",key:"z0biqf"}]]);const on=i("circle",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const wp=i("circuit-board",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M11 9h4a2 2 0 0 0 2-2V3",key:"1ve2rv"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}],["path",{d:"M7 21v-4a2 2 0 0 1 2-2h4",key:"1fwkro"}],["circle",{cx:"15",cy:"15",r:"2",key:"3i40o0"}]]);const xp=i("citrus",[["path",{d:"M21.66 17.67a1.08 1.08 0 0 1-.04 1.6A12 12 0 0 1 4.73 2.38a1.1 1.1 0 0 1 1.61-.04z",key:"4ite01"}],["path",{d:"M19.65 15.66A8 8 0 0 1 8.35 4.34",key:"1gxipu"}],["path",{d:"m14 10-5.5 5.5",key:"92pfem"}],["path",{d:"M14 17.85V10H6.15",key:"xqmtsk"}]]);const Np=i("clapperboard",[["path",{d:"M20.2 6 3 11l-.9-2.4c-.3-1.1.3-2.2 1.3-2.5l13.5-4c1.1-.3 2.2.3 2.5 1.3Z",key:"1tn4o7"}],["path",{d:"m6.2 5.3 3.1 3.9",key:"iuk76l"}],["path",{d:"m12.4 3.4 3.1 4",key:"6hsd6n"}],["path",{d:"M3 11h18v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z",key:"ltgou9"}]]);const Cp=i("clipboard-check",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"m9 14 2 2 4-4",key:"df797q"}]]);const $p=i("clipboard-clock",[["path",{d:"M16 14v2.2l1.6 1",key:"fo4ql5"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v.832",key:"1ujtp2"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2",key:"qvpao1"}],["circle",{cx:"16",cy:"16",r:"6",key:"qoo3c4"}],["rect",{x:"8",y:"2",width:"8",height:"4",rx:"1",key:"ublpy"}]]);const Sp=i("clipboard-copy",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2",key:"4jdomd"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v4",key:"3hqy98"}],["path",{d:"M21 14H11",key:"1bme5i"}],["path",{d:"m15 10-4 4 4 4",key:"5dvupr"}]]);const Lp=i("clipboard-list",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"M12 11h4",key:"1jrz19"}],["path",{d:"M12 16h4",key:"n85exb"}],["path",{d:"M8 11h.01",key:"1dfujw"}],["path",{d:"M8 16h.01",key:"18s6g9"}]]);const Ip=i("clipboard-minus",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"M9 14h6",key:"159ibu"}]]);const Ap=i("clipboard-paste",[["path",{d:"M11 14h10",key:"1w8e9d"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v1.344",key:"1e62lh"}],["path",{d:"m17 18 4-4-4-4",key:"z2g111"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 1.793-1.113",key:"bjbb7m"}],["rect",{x:"8",y:"2",width:"8",height:"4",rx:"1",key:"ublpy"}]]);const Ia=i("clipboard-pen-line",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",key:"1oijnt"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-.5",key:"1but9f"}],["path",{d:"M16 4h2a2 2 0 0 1 1.73 1",key:"1p8n7l"}],["path",{d:"M8 18h1",key:"13wk12"}],["path",{d:"M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"2t3380"}]]);const Aa=i("clipboard-pen",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",key:"1oijnt"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-5.5",key:"cereej"}],["path",{d:"M4 13.5V6a2 2 0 0 1 2-2h2",key:"5ua5vh"}],["path",{d:"M13.378 15.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"1y4qbx"}]]);const Pp=i("clipboard-plus",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"M9 14h6",key:"159ibu"}],["path",{d:"M12 17v-6",key:"1y8rbf"}]]);const Tp=i("clipboard-type",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"M9 12v-1h6v1",key:"iehl6m"}],["path",{d:"M11 17h2",key:"12w5me"}],["path",{d:"M12 11v6",key:"1bwqyc"}]]);const Dp=i("clipboard-x",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"m15 11-6 6",key:"1toa9n"}],["path",{d:"m9 11 6 6",key:"wlibny"}]]);const Ep=i("clipboard",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}]]);const zp=i("clock-1",[["path",{d:"M12 6v6l2-4",key:"miptyd"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Op=i("clock-10",[["path",{d:"M12 6v6l-4-2",key:"cedpoo"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const qp=i("clock-11",[["path",{d:"M12 6v6l-2-4",key:"ns39ag"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const jp=i("clock-12",[["path",{d:"M12 6v6",key:"1ipuwl"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Hp=i("clock-2",[["path",{d:"M12 6v6l4-2",key:"1r2kuh"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Vp=i("clock-3",[["path",{d:"M12 6v6h4",key:"135r8i"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Fp=i("clock-4",[["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Bp=i("clock-5",[["path",{d:"M12 6v6l2 4",key:"1287s9"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Wp=i("clock-6",[["path",{d:"M12 6v10",key:"wf7rdh"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Up=i("clock-7",[["path",{d:"M12 6v6l-2 4",key:"1095bu"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Rp=i("clock-8",[["path",{d:"M12 6v6l-4 2",key:"imc3wl"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Gp=i("clock-9",[["path",{d:"M12 6v6H8",key:"u39vzm"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Kp=i("clock-alert",[["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["path",{d:"M20 12v5",key:"12wsvk"}],["path",{d:"M20 21h.01",key:"1p6o6n"}],["path",{d:"M21.25 8.2A10 10 0 1 0 16 21.16",key:"17fp9f"}]]);const Yp=i("clock-arrow-down",[["path",{d:"M12 6v6l2 1",key:"19cm8n"}],["path",{d:"M12.337 21.994a10 10 0 1 1 9.588-8.767",key:"28moa"}],["path",{d:"m14 18 4 4 4-4",key:"1waygx"}],["path",{d:"M18 14v8",key:"irew45"}]]);const Xp=i("clock-arrow-up",[["path",{d:"M12 6v6l1.56.78",key:"14ed3g"}],["path",{d:"M13.227 21.925a10 10 0 1 1 8.767-9.588",key:"jwkls1"}],["path",{d:"m14 18 4-4 4 4",key:"ftkppy"}],["path",{d:"M18 22v-8",key:"su0gjh"}]]);const Zp=i("clock-check",[["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["path",{d:"M22 12a10 10 0 1 0-11 9.95",key:"17dhok"}],["path",{d:"m22 16-5.5 5.5L14 19",key:"1eibut"}]]);const Qp=i("clock-fading",[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75",key:"175t95"}],["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3",key:"1vce0s"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4",key:"o3fkw4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857",key:"1szpfk"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38",key:"9yhvd4"}]]);const Jp=i("clock-plus",[["path",{d:"M12 6v6l3.644 1.822",key:"1jmett"}],["path",{d:"M16 19h6",key:"xwg31i"}],["path",{d:"M19 16v6",key:"tddt3s"}],["path",{d:"M21.92 13.267a10 10 0 1 0-8.653 8.653",key:"1u0osk"}]]);const ey=i("clock",[["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const ty=i("closed-caption",[["path",{d:"M10 9.17a3 3 0 1 0 0 5.66",key:"h9wayk"}],["path",{d:"M17 9.17a3 3 0 1 0 0 5.66",key:"1v6zke"}],["rect",{x:"2",y:"5",width:"20",height:"14",rx:"2",key:"qneu4z"}]]);const oy=i("cloud-alert",[["path",{d:"M12 12v4",key:"tww15h"}],["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M17 18h.5a1 1 0 0 0 0-9h-1.79A7 7 0 1 0 7 17.708",key:"xsb5ju"}]]);const ny=i("cloud-backup",[["path",{d:"M21 15.251A4.5 4.5 0 0 0 17.5 8h-1.79A7 7 0 1 0 3 13.607",key:"xpoh9y"}],["path",{d:"M7 11v4h4",key:"q9yh32"}],["path",{d:"M8 19a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5 4.82 4.82 0 0 0-3.41 1.41L7 15",key:"1xm8iu"}]]);const ay=i("cloud-check",[["path",{d:"m17 15-5.5 5.5L9 18",key:"15q87x"}],["path",{d:"M5 17.743A7 7 0 1 1 15.71 10h1.79a4.5 4.5 0 0 1 1.5 8.742",key:"9ho6ki"}]]);const ry=i("cloud-cog",[["path",{d:"m10.852 19.772-.383.924",key:"r7sl7d"}],["path",{d:"m13.148 14.228.383-.923",key:"1d5zpm"}],["path",{d:"M13.148 19.772a3 3 0 1 0-2.296-5.544l-.383-.923",key:"1ydik7"}],["path",{d:"m13.53 20.696-.382-.924a3 3 0 1 1-2.296-5.544",key:"1m1vsf"}],["path",{d:"m14.772 15.852.923-.383",key:"660p6e"}],["path",{d:"m14.772 18.148.923.383",key:"hrcpis"}],["path",{d:"M4.2 15.1a7 7 0 1 1 9.93-9.858A7 7 0 0 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.2",key:"j2q98n"}],["path",{d:"m9.228 15.852-.923-.383",key:"1p9ong"}],["path",{d:"m9.228 18.148-.923.383",key:"6558rz"}]]);const iy=i("cloud-drizzle",[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"M8 19v1",key:"1dk2by"}],["path",{d:"M8 14v1",key:"84yxot"}],["path",{d:"M16 19v1",key:"v220m7"}],["path",{d:"M16 14v1",key:"g12gj6"}],["path",{d:"M12 21v1",key:"q8vafk"}],["path",{d:"M12 16v1",key:"1mx6rx"}]]);const Pa=i("cloud-download",[["path",{d:"M12 13v8l-4-4",key:"1f5nwf"}],["path",{d:"m12 21 4-4",key:"1lfcce"}],["path",{d:"M4.393 15.269A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.436 8.284",key:"ui1hmy"}]]);const cy=i("cloud-fog",[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"M16 17H7",key:"pygtm1"}],["path",{d:"M17 21H9",key:"1u2q02"}]]);const sy=i("cloud-hail",[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"M16 14v2",key:"a1is7l"}],["path",{d:"M8 14v2",key:"1e9m6t"}],["path",{d:"M16 20h.01",key:"xwek51"}],["path",{d:"M8 20h.01",key:"1vjney"}],["path",{d:"M12 16v2",key:"z66u1j"}],["path",{d:"M12 22h.01",key:"1urd7a"}]]);const dy=i("cloud-lightning",[["path",{d:"M6 16.326A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 .5 8.973",key:"1cez44"}],["path",{d:"m13 12-3 5h4l-3 5",key:"1t22er"}]]);const ly=i("cloud-moon-rain",[["path",{d:"M11 20v2",key:"174qtz"}],["path",{d:"M18.376 14.512a6 6 0 0 0 3.461-4.127c.148-.625-.659-.97-1.248-.714a4 4 0 0 1-5.259-5.26c.255-.589-.09-1.395-.716-1.248a6 6 0 0 0-4.594 5.36",key:"zwnc1e"}],["path",{d:"M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24",key:"1qmrp3"}],["path",{d:"M7 19v2",key:"12npes"}]]);const uy=i("cloud-moon",[["path",{d:"M13 16a3 3 0 0 1 0 6H7a5 5 0 1 1 4.9-6z",key:"ie2ih4"}],["path",{d:"M18.376 14.512a6 6 0 0 0 3.461-4.127c.148-.625-.659-.97-1.248-.714a4 4 0 0 1-5.259-5.26c.255-.589-.09-1.395-.716-1.248a6 6 0 0 0-4.594 5.36",key:"zwnc1e"}]]);const hy=i("cloud-off",[["path",{d:"M10.94 5.274A7 7 0 0 1 15.71 10h1.79a4.5 4.5 0 0 1 4.222 6.057",key:"1uxyv8"}],["path",{d:"M18.796 18.81A4.5 4.5 0 0 1 17.5 19H9A7 7 0 0 1 5.79 5.78",key:"99tcn7"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const py=i("cloud-rain-wind",[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"m9.2 22 3-7",key:"sb5f6j"}],["path",{d:"m9 13-3 7",key:"500co5"}],["path",{d:"m17 13-3 7",key:"8t2fiy"}]]);const yy=i("cloud-rain",[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"M16 14v6",key:"1j4efv"}],["path",{d:"M8 14v6",key:"17c4r9"}],["path",{d:"M12 16v6",key:"c8a4gj"}]]);const fy=i("cloud-snow",[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"M8 15h.01",key:"a7atzg"}],["path",{d:"M8 19h.01",key:"puxtts"}],["path",{d:"M12 17h.01",key:"p32p05"}],["path",{d:"M12 21h.01",key:"h35vbk"}],["path",{d:"M16 15h.01",key:"rnfrdf"}],["path",{d:"M16 19h.01",key:"1vcnzz"}]]);const my=i("cloud-sun-rain",[["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"m4.93 4.93 1.41 1.41",key:"149t6j"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"m19.07 4.93-1.41 1.41",key:"1shlcs"}],["path",{d:"M15.947 12.65a4 4 0 0 0-5.925-4.128",key:"dpwdj0"}],["path",{d:"M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24",key:"1qmrp3"}],["path",{d:"M11 20v2",key:"174qtz"}],["path",{d:"M7 19v2",key:"12npes"}]]);const ky=i("cloud-sun",[["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"m4.93 4.93 1.41 1.41",key:"149t6j"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"m19.07 4.93-1.41 1.41",key:"1shlcs"}],["path",{d:"M15.947 12.65a4 4 0 0 0-5.925-4.128",key:"dpwdj0"}],["path",{d:"M13 22H7a5 5 0 1 1 4.9-6H13a3 3 0 0 1 0 6Z",key:"s09mg5"}]]);const gy=i("cloud-sync",[["path",{d:"m17 18-1.535 1.605a5 5 0 0 1-8-1.5",key:"adpv5j"}],["path",{d:"M17 22v-4h-4",key:"ex1ofj"}],["path",{d:"M20.996 15.251A4.5 4.5 0 0 0 17.495 8h-1.79a7 7 0 1 0-12.709 5.607",key:"ziqt14"}],["path",{d:"M7 10v4h4",key:"1j6gx1"}],["path",{d:"m7 14 1.535-1.605a5 5 0 0 1 8 1.5",key:"19q5h7"}]]);const Ta=i("cloud-upload",[["path",{d:"M12 13v8",key:"1l5pq0"}],["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"m8 17 4-4 4 4",key:"1quai1"}]]);const vy=i("cloud",[["path",{d:"M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z",key:"p7xjir"}]]);const _y=i("clover",[["path",{d:"M16.17 7.83 2 22",key:"t58vo8"}],["path",{d:"M4.02 12a2.827 2.827 0 1 1 3.81-4.17A2.827 2.827 0 1 1 12 4.02a2.827 2.827 0 1 1 4.17 3.81A2.827 2.827 0 1 1 19.98 12a2.827 2.827 0 1 1-3.81 4.17A2.827 2.827 0 1 1 12 19.98a2.827 2.827 0 1 1-4.17-3.81A1 1 0 1 1 4 12",key:"17k36q"}],["path",{d:"m7.83 7.83 8.34 8.34",key:"1d7sxk"}]]);const by=i("cloudy",[["path",{d:"M17.5 12a1 1 0 1 1 0 9H9.006a7 7 0 1 1 6.702-9z",key:"44yre2"}],["path",{d:"M21.832 9A3 3 0 0 0 19 7h-2.207a5.5 5.5 0 0 0-10.72.61",key:"leugyv"}]]);const My=i("club",[["path",{d:"M17.28 9.05a5.5 5.5 0 1 0-10.56 0A5.5 5.5 0 1 0 12 17.66a5.5 5.5 0 1 0 5.28-8.6Z",key:"27yuqz"}],["path",{d:"M12 17.66L12 22",key:"ogfahf"}]]);const Da=i("code-xml",[["path",{d:"m18 16 4-4-4-4",key:"1inbqp"}],["path",{d:"m6 8-4 4 4 4",key:"15zrgr"}],["path",{d:"m14.5 4-5 16",key:"e7oirm"}]]);const wy=i("code",[["path",{d:"m16 18 6-6-6-6",key:"eg8j8"}],["path",{d:"m8 6-6 6 6 6",key:"ppft3o"}]]);const xy=i("codepen",[["polygon",{points:"12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2",key:"srzb37"}],["line",{x1:"12",x2:"12",y1:"22",y2:"15.5",key:"1t73f2"}],["polyline",{points:"22 8.5 12 15.5 2 8.5",key:"ajlxae"}],["polyline",{points:"2 15.5 12 8.5 22 15.5",key:"susrui"}],["line",{x1:"12",x2:"12",y1:"2",y2:"8.5",key:"2cldga"}]]);const Ny=i("codesandbox",[["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z",key:"yt0hxn"}],["polyline",{points:"7.5 4.21 12 6.81 16.5 4.21",key:"fabo96"}],["polyline",{points:"7.5 19.79 7.5 14.6 3 12",key:"z377f1"}],["polyline",{points:"21 12 16.5 14.6 16.5 19.79",key:"9nrev1"}],["polyline",{points:"3.27 6.96 12 12.01 20.73 6.96",key:"1180pa"}],["line",{x1:"12",x2:"12",y1:"22.08",y2:"12",key:"3z3uq6"}]]);const Cy=i("coffee",[["path",{d:"M10 2v2",key:"7u0qdc"}],["path",{d:"M14 2v2",key:"6buw04"}],["path",{d:"M16 8a1 1 0 0 1 1 1v8a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1h14a4 4 0 1 1 0 8h-1",key:"pwadti"}],["path",{d:"M6 2v2",key:"colzsn"}]]);const $y=i("cog",[["path",{d:"M11 10.27 7 3.34",key:"16pf9h"}],["path",{d:"m11 13.73-4 6.93",key:"794ttg"}],["path",{d:"M12 22v-2",key:"1osdcq"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M14 12h8",key:"4f43i9"}],["path",{d:"m17 20.66-1-1.73",key:"eq3orb"}],["path",{d:"m17 3.34-1 1.73",key:"2wel8s"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"m20.66 17-1.73-1",key:"sg0v6f"}],["path",{d:"m20.66 7-1.73 1",key:"1ow05n"}],["path",{d:"m3.34 17 1.73-1",key:"nuk764"}],["path",{d:"m3.34 7 1.73 1",key:"1ulond"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}],["circle",{cx:"12",cy:"12",r:"8",key:"46899m"}]]);const Sy=i("coins",[["circle",{cx:"8",cy:"8",r:"6",key:"3yglwk"}],["path",{d:"M18.09 10.37A6 6 0 1 1 10.34 18",key:"t5s6rm"}],["path",{d:"M7 6h1v4",key:"1obek4"}],["path",{d:"m16.71 13.88.7.71-2.82 2.82",key:"1rbuyh"}]]);const Ea=i("columns-2",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M12 3v18",key:"108xh3"}]]);const mo=i("columns-3-cog",[["path",{d:"M10.5 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v5.5",key:"1g2yzs"}],["path",{d:"m14.3 19.6 1-.4",key:"11sv9r"}],["path",{d:"M15 3v7.5",key:"7lm50a"}],["path",{d:"m15.2 16.9-.9-.3",key:"1t7mvx"}],["path",{d:"m16.6 21.7.3-.9",key:"1j67ps"}],["path",{d:"m16.8 15.3-.4-1",key:"1ei7r6"}],["path",{d:"m19.1 15.2.3-.9",key:"18r7jp"}],["path",{d:"m19.6 21.7-.4-1",key:"z2vh2"}],["path",{d:"m20.7 16.8 1-.4",key:"19m87a"}],["path",{d:"m21.7 19.4-.9-.3",key:"1qgwi9"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}]]);const za=i("columns-3",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"M15 3v18",key:"14nvp0"}]]);const Ly=i("columns-4",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7.5 3v18",key:"w0wo6v"}],["path",{d:"M12 3v18",key:"108xh3"}],["path",{d:"M16.5 3v18",key:"10tjh1"}]]);const Iy=i("combine",[["path",{d:"M14 3a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1",key:"1l7d7l"}],["path",{d:"M19 3a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1",key:"9955pe"}],["path",{d:"m7 15 3 3",key:"4hkfgk"}],["path",{d:"m7 21 3-3H5a2 2 0 0 1-2-2v-2",key:"1xljwe"}],["rect",{x:"14",y:"14",width:"7",height:"7",rx:"1",key:"1cdgtw"}],["rect",{x:"3",y:"3",width:"7",height:"7",rx:"1",key:"zi3rio"}]]);const Ay=i("command",[["path",{d:"M15 6v12a3 3 0 1 0 3-3H6a3 3 0 1 0 3 3V6a3 3 0 1 0-3 3h12a3 3 0 1 0-3-3",key:"11bfej"}]]);const Py=i("compass",[["path",{d:"m16.24 7.76-1.804 5.411a2 2 0 0 1-1.265 1.265L7.76 16.24l1.804-5.411a2 2 0 0 1 1.265-1.265z",key:"9ktpf1"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const Ty=i("component",[["path",{d:"M15.536 11.293a1 1 0 0 0 0 1.414l2.376 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z",key:"1uwlt4"}],["path",{d:"M2.297 11.293a1 1 0 0 0 0 1.414l2.377 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414L6.088 8.916a1 1 0 0 0-1.414 0z",key:"10291m"}],["path",{d:"M8.916 17.912a1 1 0 0 0 0 1.415l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.415l-2.377-2.376a1 1 0 0 0-1.414 0z",key:"1tqoq1"}],["path",{d:"M8.916 4.674a1 1 0 0 0 0 1.414l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z",key:"1x6lto"}]]);const Dy=i("computer",[["rect",{width:"14",height:"8",x:"5",y:"2",rx:"2",key:"wc9tft"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",key:"w68u3i"}],["path",{d:"M6 18h2",key:"rwmk9e"}],["path",{d:"M12 18h6",key:"aqd8w3"}]]);const Ey=i("concierge-bell",[["path",{d:"M3 20a1 1 0 0 1-1-1v-1a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1Z",key:"1pvr1r"}],["path",{d:"M20 16a8 8 0 1 0-16 0",key:"1pa543"}],["path",{d:"M12 4v4",key:"1bq03y"}],["path",{d:"M10 4h4",key:"1xpv9s"}]]);const zy=i("cone",[["path",{d:"m20.9 18.55-8-15.98a1 1 0 0 0-1.8 0l-8 15.98",key:"53pte7"}],["ellipse",{cx:"12",cy:"19",rx:"9",ry:"3",key:"1ji25f"}]]);const Oy=i("construction",[["rect",{x:"2",y:"6",width:"20",height:"8",rx:"1",key:"1estib"}],["path",{d:"M17 14v7",key:"7m2elx"}],["path",{d:"M7 14v7",key:"1cm7wv"}],["path",{d:"M17 3v3",key:"1v4jwn"}],["path",{d:"M7 3v3",key:"7o6guu"}],["path",{d:"M10 14 2.3 6.3",key:"1023jk"}],["path",{d:"m14 6 7.7 7.7",key:"1s8pl2"}],["path",{d:"m8 6 8 8",key:"hl96qh"}]]);const Oa=i("contact-round",[["path",{d:"M16 2v2",key:"scm5qe"}],["path",{d:"M17.915 22a6 6 0 0 0-12 0",key:"suqz9p"}],["path",{d:"M8 2v2",key:"pbkmx"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2",key:"12vinp"}]]);const qy=i("contact",[["path",{d:"M16 2v2",key:"scm5qe"}],["path",{d:"M7 22v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2",key:"1waht3"}],["path",{d:"M8 2v2",key:"pbkmx"}],["circle",{cx:"12",cy:"11",r:"3",key:"itu57m"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2",key:"12vinp"}]]);const jy=i("container",[["path",{d:"M22 7.7c0-.6-.4-1.2-.8-1.5l-6.3-3.9a1.72 1.72 0 0 0-1.7 0l-10.3 6c-.5.2-.9.8-.9 1.4v6.6c0 .5.4 1.2.8 1.5l6.3 3.9a1.72 1.72 0 0 0 1.7 0l10.3-6c.5-.3.9-1 .9-1.5Z",key:"1t2lqe"}],["path",{d:"M10 21.9V14L2.1 9.1",key:"o7czzq"}],["path",{d:"m10 14 11.9-6.9",key:"zm5e20"}],["path",{d:"M14 19.8v-8.1",key:"159ecu"}],["path",{d:"M18 17.5V9.4",key:"11uown"}]]);const Hy=i("contrast",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 18a6 6 0 0 0 0-12v12z",key:"j4l70d"}]]);const Vy=i("cookie",[["path",{d:"M12 2a10 10 0 1 0 10 10 4 4 0 0 1-5-5 4 4 0 0 1-5-5",key:"laymnq"}],["path",{d:"M8.5 8.5v.01",key:"ue8clq"}],["path",{d:"M16 15.5v.01",key:"14dtrp"}],["path",{d:"M12 12v.01",key:"u5ubse"}],["path",{d:"M11 17v.01",key:"1hyl5a"}],["path",{d:"M7 14v.01",key:"uct60s"}]]);const Fy=i("cooking-pot",[["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"M20 12v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8",key:"u0tga0"}],["path",{d:"m4 8 16-4",key:"16g0ng"}],["path",{d:"m8.86 6.78-.45-1.81a2 2 0 0 1 1.45-2.43l1.94-.48a2 2 0 0 1 2.43 1.46l.45 1.8",key:"12cejc"}]]);const By=i("copy-check",[["path",{d:"m12 15 2 2 4-4",key:"2c609p"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]]);const Wy=i("copy-minus",[["line",{x1:"12",x2:"18",y1:"15",y2:"15",key:"1nscbv"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]]);const Uy=i("copy-plus",[["line",{x1:"15",x2:"15",y1:"12",y2:"18",key:"1p7wdc"}],["line",{x1:"12",x2:"18",y1:"15",y2:"15",key:"1nscbv"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]]);const Ry=i("copy-slash",[["line",{x1:"12",x2:"18",y1:"18",y2:"12",key:"ebkxgr"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]]);const Gy=i("copy-x",[["line",{x1:"12",x2:"18",y1:"12",y2:"18",key:"1rg63v"}],["line",{x1:"12",x2:"18",y1:"18",y2:"12",key:"ebkxgr"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]]);const Ky=i("copyleft",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M9.17 14.83a4 4 0 1 0 0-5.66",key:"1sveal"}]]);const Yy=i("copy",[["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]]);const Xy=i("copyright",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M14.83 14.83a4 4 0 1 1 0-5.66",key:"1i56pz"}]]);const Zy=i("corner-down-left",[["path",{d:"M20 4v7a4 4 0 0 1-4 4H4",key:"6o5b7l"}],["path",{d:"m9 10-5 5 5 5",key:"1kshq7"}]]);const Qy=i("corner-down-right",[["path",{d:"m15 10 5 5-5 5",key:"qqa56n"}],["path",{d:"M4 4v7a4 4 0 0 0 4 4h12",key:"z08zvw"}]]);const Jy=i("corner-left-down",[["path",{d:"m14 15-5 5-5-5",key:"1eia93"}],["path",{d:"M20 4h-7a4 4 0 0 0-4 4v12",key:"nbpdq2"}]]);const ef=i("corner-left-up",[["path",{d:"M14 9 9 4 4 9",key:"1af5af"}],["path",{d:"M20 20h-7a4 4 0 0 1-4-4V4",key:"1blwi3"}]]);const tf=i("corner-right-down",[["path",{d:"m10 15 5 5 5-5",key:"1hpjnr"}],["path",{d:"M4 4h7a4 4 0 0 1 4 4v12",key:"wcbgct"}]]);const of=i("corner-right-up",[["path",{d:"m10 9 5-5 5 5",key:"9ctzwi"}],["path",{d:"M4 20h7a4 4 0 0 0 4-4V4",key:"1plgdj"}]]);const nf=i("corner-up-left",[["path",{d:"M20 20v-7a4 4 0 0 0-4-4H4",key:"1nkjon"}],["path",{d:"M9 14 4 9l5-5",key:"102s5s"}]]);const af=i("corner-up-right",[["path",{d:"m15 14 5-5-5-5",key:"12vg1m"}],["path",{d:"M4 20v-7a4 4 0 0 1 4-4h12",key:"1lu4f8"}]]);const rf=i("cpu",[["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M17 20v2",key:"1rnc9c"}],["path",{d:"M17 2v2",key:"11trls"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"M2 17h2",key:"7oei6x"}],["path",{d:"M2 7h2",key:"asdhe0"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"M20 17h2",key:"1fpfkl"}],["path",{d:"M20 7h2",key:"1o8tra"}],["path",{d:"M7 20v2",key:"4gnj0m"}],["path",{d:"M7 2v2",key:"1i4yhu"}],["rect",{x:"4",y:"4",width:"16",height:"16",rx:"2",key:"1vbyd7"}],["rect",{x:"8",y:"8",width:"8",height:"8",rx:"1",key:"z9xiuo"}]]);const cf=i("creative-commons",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M10 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1",key:"1ss3eq"}],["path",{d:"M17 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1",key:"1od56t"}]]);const sf=i("credit-card",[["rect",{width:"20",height:"14",x:"2",y:"5",rx:"2",key:"ynyp8z"}],["line",{x1:"2",x2:"22",y1:"10",y2:"10",key:"1b3vmo"}]]);const df=i("croissant",[["path",{d:"M10.2 18H4.774a1.5 1.5 0 0 1-1.352-.97 11 11 0 0 1 .132-6.487",key:"14kkz9"}],["path",{d:"M18 10.2V4.774a1.5 1.5 0 0 0-.97-1.352 11 11 0 0 0-6.486.132",key:"1g7v07"}],["path",{d:"M18 5a4 3 0 0 1 4 3 2 2 0 0 1-2 2 10 10 0 0 0-5.139 1.42",key:"ratg6b"}],["path",{d:"M5 18a3 4 0 0 0 3 4 2 2 0 0 0 2-2 10 10 0 0 1 1.42-5.14",key:"4454f0"}],["path",{d:"M8.709 2.554a10 10 0 0 0-6.155 6.155 1.5 1.5 0 0 0 .676 1.626l9.807 5.42a2 2 0 0 0 2.718-2.718l-5.42-9.807a1.5 1.5 0 0 0-1.626-.676",key:"qmemie"}]]);const lf=i("crop",[["path",{d:"M6 2v14a2 2 0 0 0 2 2h14",key:"ron5a4"}],["path",{d:"M18 22V8a2 2 0 0 0-2-2H2",key:"7s9ehn"}]]);const uf=i("cross",[["path",{d:"M4 9a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h4a1 1 0 0 1 1 1v4a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-4a1 1 0 0 1 1-1h4a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-4a1 1 0 0 1-1-1V4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4a1 1 0 0 1-1 1z",key:"1xbrqy"}]]);const hf=i("crown",[["path",{d:"M11.562 3.266a.5.5 0 0 1 .876 0L15.39 8.87a1 1 0 0 0 1.516.294L21.183 5.5a.5.5 0 0 1 .798.519l-2.834 10.246a1 1 0 0 1-.956.734H5.81a1 1 0 0 1-.957-.734L2.02 6.02a.5.5 0 0 1 .798-.519l4.276 3.664a1 1 0 0 0 1.516-.294z",key:"1vdc57"}],["path",{d:"M5 21h14",key:"11awu3"}]]);const pf=i("crosshair",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"22",x2:"18",y1:"12",y2:"12",key:"l9bcsi"}],["line",{x1:"6",x2:"2",y1:"12",y2:"12",key:"13hhkx"}],["line",{x1:"12",x2:"12",y1:"6",y2:"2",key:"10w3f3"}],["line",{x1:"12",x2:"12",y1:"22",y2:"18",key:"15g9kq"}]]);const yf=i("cuboid",[["path",{d:"m21.12 6.4-6.05-4.06a2 2 0 0 0-2.17-.05L2.95 8.41a2 2 0 0 0-.95 1.7v5.82a2 2 0 0 0 .88 1.66l6.05 4.07a2 2 0 0 0 2.17.05l9.95-6.12a2 2 0 0 0 .95-1.7V8.06a2 2 0 0 0-.88-1.66Z",key:"1u2ovd"}],["path",{d:"M10 22v-8L2.25 9.15",key:"11pn4q"}],["path",{d:"m10 14 11.77-6.87",key:"1kt1wh"}]]);const ff=i("cup-soda",[["path",{d:"m6 8 1.75 12.28a2 2 0 0 0 2 1.72h4.54a2 2 0 0 0 2-1.72L18 8",key:"8166m8"}],["path",{d:"M5 8h14",key:"pcz4l3"}],["path",{d:"M7 15a6.47 6.47 0 0 1 5 0 6.47 6.47 0 0 0 5 0",key:"yjz344"}],["path",{d:"m12 8 1-6h2",key:"3ybfa4"}]]);const mf=i("currency",[["circle",{cx:"12",cy:"12",r:"8",key:"46899m"}],["line",{x1:"3",x2:"6",y1:"3",y2:"6",key:"1jkytn"}],["line",{x1:"21",x2:"18",y1:"3",y2:"6",key:"14zfjt"}],["line",{x1:"3",x2:"6",y1:"21",y2:"18",key:"iusuec"}],["line",{x1:"21",x2:"18",y1:"21",y2:"18",key:"yj2dd7"}]]);const kf=i("cylinder",[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 5v14a9 3 0 0 0 18 0V5",key:"aqi0yr"}]]);const gf=i("dam",[["path",{d:"M11 11.31c1.17.56 1.54 1.69 3.5 1.69 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"157kva"}],["path",{d:"M11.75 18c.35.5 1.45 1 2.75 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"d7q6m6"}],["path",{d:"M2 10h4",key:"l0bgd4"}],["path",{d:"M2 14h4",key:"1gsvsf"}],["path",{d:"M2 18h4",key:"1bu2t1"}],["path",{d:"M2 6h4",key:"aawbzj"}],["path",{d:"M7 3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1L10 4a1 1 0 0 0-1-1z",key:"pr6s65"}]]);const vf=i("database-backup",[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 12a9 3 0 0 0 5 2.69",key:"1ui2ym"}],["path",{d:"M21 9.3V5",key:"6k6cib"}],["path",{d:"M3 5v14a9 3 0 0 0 6.47 2.88",key:"i62tjy"}],["path",{d:"M12 12v4h4",key:"1bxaet"}],["path",{d:"M13 20a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L12 16",key:"1f4ei9"}]]);const _f=i("database-zap",[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 5V19A9 3 0 0 0 15 21.84",key:"14ibmq"}],["path",{d:"M21 5V8",key:"1marbg"}],["path",{d:"M21 12L18 17H22L19 22",key:"zafso"}],["path",{d:"M3 12A9 3 0 0 0 14.59 14.87",key:"1y4wr8"}]]);const bf=i("database",[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 5V19A9 3 0 0 0 21 19V5",key:"1wlel7"}],["path",{d:"M3 12A9 3 0 0 0 21 12",key:"mv7ke4"}]]);const Mf=i("decimals-arrow-left",[["path",{d:"m13 21-3-3 3-3",key:"s3o1nf"}],["path",{d:"M20 18H10",key:"14r3mt"}],["path",{d:"M3 11h.01",key:"1eifu7"}],["rect",{x:"6",y:"3",width:"5",height:"8",rx:"2.5",key:"v9paqo"}]]);const wf=i("decimals-arrow-right",[["path",{d:"M10 18h10",key:"1y5s8o"}],["path",{d:"m17 21 3-3-3-3",key:"1ammt0"}],["path",{d:"M3 11h.01",key:"1eifu7"}],["rect",{x:"15",y:"3",width:"5",height:"8",rx:"2.5",key:"76md6a"}],["rect",{x:"6",y:"3",width:"5",height:"8",rx:"2.5",key:"v9paqo"}]]);const xf=i("delete",[["path",{d:"M10 5a2 2 0 0 0-1.344.519l-6.328 5.74a1 1 0 0 0 0 1.481l6.328 5.741A2 2 0 0 0 10 19h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2z",key:"1yo7s0"}],["path",{d:"m12 9 6 6",key:"anjzzh"}],["path",{d:"m18 9-6 6",key:"1fp51s"}]]);const Nf=i("dessert",[["path",{d:"M10.162 3.167A10 10 0 0 0 2 13a2 2 0 0 0 4 0v-1a2 2 0 0 1 4 0v4a2 2 0 0 0 4 0v-4a2 2 0 0 1 4 0v1a2 2 0 0 0 4-.006 10 10 0 0 0-8.161-9.826",key:"xi88qy"}],["path",{d:"M20.804 14.869a9 9 0 0 1-17.608 0",key:"1r28rg"}],["circle",{cx:"12",cy:"4",r:"2",key:"muu5ef"}]]);const Cf=i("diameter",[["circle",{cx:"19",cy:"19",r:"2",key:"17f5cg"}],["circle",{cx:"5",cy:"5",r:"2",key:"1gwv83"}],["path",{d:"M6.48 3.66a10 10 0 0 1 13.86 13.86",key:"xr8kdq"}],["path",{d:"m6.41 6.41 11.18 11.18",key:"uhpjw7"}],["path",{d:"M3.66 6.48a10 10 0 0 0 13.86 13.86",key:"cldpwv"}]]);const $f=i("diamond-minus",[["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z",key:"1ey20j"}],["path",{d:"M8 12h8",key:"1wcyev"}]]);const qa=i("diamond-percent",[["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0Z",key:"1tpxz2"}],["path",{d:"M9.2 9.2h.01",key:"1b7bvt"}],["path",{d:"m14.5 9.5-5 5",key:"17q4r4"}],["path",{d:"M14.7 14.8h.01",key:"17nsh4"}]]);const Sf=i("diamond-plus",[["path",{d:"M12 8v8",key:"napkw2"}],["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z",key:"1ey20j"}],["path",{d:"M8 12h8",key:"1wcyev"}]]);const Lf=i("diamond",[["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41l-7.59-7.59a2.41 2.41 0 0 0-3.41 0Z",key:"1f1r0c"}]]);const If=i("dice-1",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M12 12h.01",key:"1mp3jc"}]]);const Af=i("dice-2",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M15 9h.01",key:"x1ddxp"}],["path",{d:"M9 15h.01",key:"fzyn71"}]]);const Pf=i("dice-3",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M16 8h.01",key:"cr5u4v"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M8 16h.01",key:"18s6g9"}]]);const Tf=i("dice-4",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M16 8h.01",key:"cr5u4v"}],["path",{d:"M8 8h.01",key:"1e4136"}],["path",{d:"M8 16h.01",key:"18s6g9"}],["path",{d:"M16 16h.01",key:"1f9h7w"}]]);const Df=i("dice-5",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M16 8h.01",key:"cr5u4v"}],["path",{d:"M8 8h.01",key:"1e4136"}],["path",{d:"M8 16h.01",key:"18s6g9"}],["path",{d:"M16 16h.01",key:"1f9h7w"}],["path",{d:"M12 12h.01",key:"1mp3jc"}]]);const Ef=i("dice-6",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M16 8h.01",key:"cr5u4v"}],["path",{d:"M16 12h.01",key:"1l6xoz"}],["path",{d:"M16 16h.01",key:"1f9h7w"}],["path",{d:"M8 8h.01",key:"1e4136"}],["path",{d:"M8 12h.01",key:"czm47f"}],["path",{d:"M8 16h.01",key:"18s6g9"}]]);const zf=i("dices",[["rect",{width:"12",height:"12",x:"2",y:"10",rx:"2",ry:"2",key:"6agr2n"}],["path",{d:"m17.92 14 3.5-3.5a2.24 2.24 0 0 0 0-3l-5-4.92a2.24 2.24 0 0 0-3 0L10 6",key:"1o487t"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"M10 14h.01",key:"ssrbsk"}],["path",{d:"M15 6h.01",key:"cblpky"}],["path",{d:"M18 9h.01",key:"2061c0"}]]);const Of=i("diff",[["path",{d:"M12 3v14",key:"7cf3v8"}],["path",{d:"M5 10h14",key:"elsbfy"}],["path",{d:"M5 21h14",key:"11awu3"}]]);const qf=i("disc-2",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M12 12h.01",key:"1mp3jc"}]]);const jf=i("disc-3",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M6 12c0-1.7.7-3.2 1.8-4.2",key:"oqkarx"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}],["path",{d:"M18 12c0 1.7-.7 3.2-1.8 4.2",key:"1eah9h"}]]);const Hf=i("disc-album",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["circle",{cx:"12",cy:"12",r:"5",key:"nd82uf"}],["path",{d:"M12 12h.01",key:"1mp3jc"}]]);const Vf=i("disc",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]]);const Ff=i("divide",[["circle",{cx:"12",cy:"6",r:"1",key:"1bh7o1"}],["line",{x1:"5",x2:"19",y1:"12",y2:"12",key:"13b5wn"}],["circle",{cx:"12",cy:"18",r:"1",key:"lqb9t5"}]]);const Bf=i("dna-off",[["path",{d:"M15 2c-1.35 1.5-2.092 3-2.5 4.5L14 8",key:"1bivrr"}],["path",{d:"m17 6-2.891-2.891",key:"xu6p2f"}],["path",{d:"M2 15c3.333-3 6.667-3 10-3",key:"nxix30"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"m20 9 .891.891",key:"3xwk7g"}],["path",{d:"M22 9c-1.5 1.35-3 2.092-4.5 2.5l-1-1",key:"18cutr"}],["path",{d:"M3.109 14.109 4 15",key:"q76aoh"}],["path",{d:"m6.5 12.5 1 1",key:"cs35ky"}],["path",{d:"m7 18 2.891 2.891",key:"1sisit"}],["path",{d:"M9 22c1.35-1.5 2.092-3 2.5-4.5L10 16",key:"rlvei3"}]]);const Wf=i("dna",[["path",{d:"m10 16 1.5 1.5",key:"11lckj"}],["path",{d:"m14 8-1.5-1.5",key:"1ohn8i"}],["path",{d:"M15 2c-1.798 1.998-2.518 3.995-2.807 5.993",key:"80uv8i"}],["path",{d:"m16.5 10.5 1 1",key:"696xn5"}],["path",{d:"m17 6-2.891-2.891",key:"xu6p2f"}],["path",{d:"M2 15c6.667-6 13.333 0 20-6",key:"1pyr53"}],["path",{d:"m20 9 .891.891",key:"3xwk7g"}],["path",{d:"M3.109 14.109 4 15",key:"q76aoh"}],["path",{d:"m6.5 12.5 1 1",key:"cs35ky"}],["path",{d:"m7 18 2.891 2.891",key:"1sisit"}],["path",{d:"M9 22c1.798-1.998 2.518-3.995 2.807-5.993",key:"q3hbxp"}]]);const Uf=i("dock",[["path",{d:"M2 8h20",key:"d11cs7"}],["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M6 16h12",key:"u522kt"}]]);const Rf=i("dog",[["path",{d:"M11.25 16.25h1.5L12 17z",key:"w7jh35"}],["path",{d:"M16 14v.5",key:"1lajdz"}],["path",{d:"M4.42 11.247A13.152 13.152 0 0 0 4 14.556C4 18.728 7.582 21 12 21s8-2.272 8-6.444a11.702 11.702 0 0 0-.493-3.309",key:"u7s9ue"}],["path",{d:"M8 14v.5",key:"1nzgdb"}],["path",{d:"M8.5 8.5c-.384 1.05-1.083 2.028-2.344 2.5-1.931.722-3.576-.297-3.656-1-.113-.994 1.177-6.53 4-7 1.923-.321 3.651.845 3.651 2.235A7.497 7.497 0 0 1 14 5.277c0-1.39 1.844-2.598 3.767-2.277 2.823.47 4.113 6.006 4 7-.08.703-1.725 1.722-3.656 1-1.261-.472-1.855-1.45-2.239-2.5",key:"v8hric"}]]);const Gf=i("dollar-sign",[["line",{x1:"12",x2:"12",y1:"2",y2:"22",key:"7eqyqh"}],["path",{d:"M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6",key:"1b0p4s"}]]);const Kf=i("donut",[["path",{d:"M20.5 10a2.5 2.5 0 0 1-2.4-3H18a2.95 2.95 0 0 1-2.6-4.4 10 10 0 1 0 6.3 7.1c-.3.2-.8.3-1.2.3",key:"19sr3x"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]]);const Yf=i("door-closed-locked",[["path",{d:"M10 12h.01",key:"1kxr2c"}],["path",{d:"M18 9V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14",key:"1bnhmg"}],["path",{d:"M2 20h8",key:"10ntw1"}],["path",{d:"M20 17v-2a2 2 0 1 0-4 0v2",key:"pwaxnr"}],["rect",{x:"14",y:"17",width:"8",height:"5",rx:"1",key:"15pjcy"}]]);const Xf=i("door-closed",[["path",{d:"M10 12h.01",key:"1kxr2c"}],["path",{d:"M18 20V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14",key:"36qu9e"}],["path",{d:"M2 20h20",key:"owomy5"}]]);const Zf=i("door-open",[["path",{d:"M11 20H2",key:"nlcfvz"}],["path",{d:"M11 4.562v16.157a1 1 0 0 0 1.242.97L19 20V5.562a2 2 0 0 0-1.515-1.94l-4-1A2 2 0 0 0 11 4.561z",key:"au4z13"}],["path",{d:"M11 4H8a2 2 0 0 0-2 2v14",key:"74r1mk"}],["path",{d:"M14 12h.01",key:"1jfl7z"}],["path",{d:"M22 20h-3",key:"vhrsz"}]]);const Ks=i("dot",[["circle",{cx:"12.1",cy:"12.1",r:"1",key:"18d7e5"}]]);const Ys=i("download",[["path",{d:"M12 15V3",key:"m9g1x1"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["path",{d:"m7 10 5 5 5-5",key:"brsn70"}]]);const Qf=i("drafting-compass",[["path",{d:"m12.99 6.74 1.93 3.44",key:"iwagvd"}],["path",{d:"M19.136 12a10 10 0 0 1-14.271 0",key:"ppmlo4"}],["path",{d:"m21 21-2.16-3.84",key:"vylbct"}],["path",{d:"m3 21 8.02-14.26",key:"1ssaw4"}],["circle",{cx:"12",cy:"5",r:"2",key:"f1ur92"}]]);const Jf=i("drama",[["path",{d:"M10 11h.01",key:"d2at3l"}],["path",{d:"M14 6h.01",key:"k028ub"}],["path",{d:"M18 6h.01",key:"1v4wsw"}],["path",{d:"M6.5 13.1h.01",key:"1748ia"}],["path",{d:"M22 5c0 9-4 12-6 12s-6-3-6-12c0-2 2-3 6-3s6 1 6 3",key:"172yzv"}],["path",{d:"M17.4 9.9c-.8.8-2 .8-2.8 0",key:"1obv0w"}],["path",{d:"M10.1 7.1C9 7.2 7.7 7.7 6 8.6c-3.5 2-4.7 3.9-3.7 5.6 4.5 7.8 9.5 8.4 11.2 7.4.9-.5 1.9-2.1 1.9-4.7",key:"rqjl8i"}],["path",{d:"M9.1 16.5c.3-1.1 1.4-1.7 2.4-1.4",key:"1mr6wy"}]]);const em=i("drill",[["path",{d:"M10 18a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H5a3 3 0 0 1-3-3 1 1 0 0 1 1-1z",key:"ioqxb1"}],["path",{d:"M13 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1l-.81 3.242a1 1 0 0 1-.97.758H8",key:"1rs59n"}],["path",{d:"M14 4h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-3",key:"105ega"}],["path",{d:"M18 6h4",key:"66u95g"}],["path",{d:"m5 10-2 8",key:"xt2lic"}],["path",{d:"m7 18 2-8",key:"1bzku2"}]]);const tm=i("dribbble",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M19.13 5.09C15.22 9.14 10 10.44 2.25 10.94",key:"hpej1"}],["path",{d:"M21.75 12.84c-6.62-1.41-12.14 1-16.38 6.32",key:"1tr44o"}],["path",{d:"M8.56 2.75c4.37 6 6 9.42 8 17.72",key:"kbh691"}]]);const om=i("drone",[["path",{d:"M10 10 7 7",key:"zp14k7"}],["path",{d:"m10 14-3 3",key:"1jrpxk"}],["path",{d:"m14 10 3-3",key:"7tigam"}],["path",{d:"m14 14 3 3",key:"vm23p3"}],["path",{d:"M14.205 4.139a4 4 0 1 1 5.439 5.863",key:"1tm5p2"}],["path",{d:"M19.637 14a4 4 0 1 1-5.432 5.868",key:"16egi2"}],["path",{d:"M4.367 10a4 4 0 1 1 5.438-5.862",key:"1wta6a"}],["path",{d:"M9.795 19.862a4 4 0 1 1-5.429-5.873",key:"q39hpv"}],["rect",{x:"10",y:"8",width:"4",height:"8",rx:"1",key:"phrjt1"}]]);const nm=i("droplet-off",[["path",{d:"M18.715 13.186C18.29 11.858 17.384 10.607 16 9.5c-2-1.6-3.5-4-4-6.5a10.7 10.7 0 0 1-.884 2.586",key:"8suz2t"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8.795 8.797A11 11 0 0 1 8 9.5C6 11.1 5 13 5 15a7 7 0 0 0 13.222 3.208",key:"19dw9m"}]]);const am=i("droplet",[["path",{d:"M12 22a7 7 0 0 0 7-7c0-2-1-3.9-3-5.5s-3.5-4-4-6.5c-.5 2.5-2 4.9-4 6.5C6 11.1 5 13 5 15a7 7 0 0 0 7 7z",key:"c7niix"}]]);const rm=i("droplets",[["path",{d:"M7 16.3c2.2 0 4-1.83 4-4.05 0-1.16-.57-2.26-1.71-3.19S7.29 6.75 7 5.3c-.29 1.45-1.14 2.84-2.29 3.76S3 11.1 3 12.25c0 2.22 1.8 4.05 4 4.05z",key:"1ptgy4"}],["path",{d:"M12.56 6.6A10.97 10.97 0 0 0 14 3.02c.5 2.5 2 4.9 4 6.5s3 3.5 3 5.5a6.98 6.98 0 0 1-11.91 4.97",key:"1sl1rz"}]]);const im=i("drum",[["path",{d:"m2 2 8 8",key:"1v6059"}],["path",{d:"m22 2-8 8",key:"173r8a"}],["ellipse",{cx:"12",cy:"9",rx:"10",ry:"5",key:"liohsx"}],["path",{d:"M7 13.4v7.9",key:"1yi6u9"}],["path",{d:"M12 14v8",key:"1tn2tj"}],["path",{d:"M17 13.4v7.9",key:"eqz2v3"}],["path",{d:"M2 9v8a10 5 0 0 0 20 0V9",key:"1750ul"}]]);const cm=i("drumstick",[["path",{d:"M15.4 15.63a7.875 6 135 1 1 6.23-6.23 4.5 3.43 135 0 0-6.23 6.23",key:"1dtqwm"}],["path",{d:"m8.29 12.71-2.6 2.6a2.5 2.5 0 1 0-1.65 4.65A2.5 2.5 0 1 0 8.7 18.3l2.59-2.59",key:"1oq1fw"}]]);const sm=i("dumbbell",[["path",{d:"M17.596 12.768a2 2 0 1 0 2.829-2.829l-1.768-1.767a2 2 0 0 0 2.828-2.829l-2.828-2.828a2 2 0 0 0-2.829 2.828l-1.767-1.768a2 2 0 1 0-2.829 2.829z",key:"9m4mmf"}],["path",{d:"m2.5 21.5 1.4-1.4",key:"17g3f0"}],["path",{d:"m20.1 3.9 1.4-1.4",key:"1qn309"}],["path",{d:"M5.343 21.485a2 2 0 1 0 2.829-2.828l1.767 1.768a2 2 0 1 0 2.829-2.829l-6.364-6.364a2 2 0 1 0-2.829 2.829l1.768 1.767a2 2 0 0 0-2.828 2.829z",key:"1t2c92"}],["path",{d:"m9.6 14.4 4.8-4.8",key:"6umqxw"}]]);const dm=i("ear",[["path",{d:"M6 8.5a6.5 6.5 0 1 1 13 0c0 6-6 6-6 10a3.5 3.5 0 1 1-7 0",key:"1dfaln"}],["path",{d:"M15 8.5a2.5 2.5 0 0 0-5 0v1a2 2 0 1 1 0 4",key:"1qnva7"}]]);const lm=i("ear-off",[["path",{d:"M6 18.5a3.5 3.5 0 1 0 7 0c0-1.57.92-2.52 2.04-3.46",key:"1qngmn"}],["path",{d:"M6 8.5c0-.75.13-1.47.36-2.14",key:"b06bma"}],["path",{d:"M8.8 3.15A6.5 6.5 0 0 1 19 8.5c0 1.63-.44 2.81-1.09 3.76",key:"g10hsz"}],["path",{d:"M12.5 6A2.5 2.5 0 0 1 15 8.5M10 13a2 2 0 0 0 1.82-1.18",key:"ygzou7"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]]);const um=i("earth-lock",[["path",{d:"M7 3.34V5a3 3 0 0 0 3 3",key:"w732o8"}],["path",{d:"M11 21.95V18a2 2 0 0 0-2-2 2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05",key:"f02343"}],["path",{d:"M21.54 15H17a2 2 0 0 0-2 2v4.54",key:"1djwo0"}],["path",{d:"M12 2a10 10 0 1 0 9.54 13",key:"zjsr6q"}],["path",{d:"M20 6V4a2 2 0 1 0-4 0v2",key:"1of5e8"}],["rect",{width:"8",height:"5",x:"14",y:"6",rx:"1",key:"1fmf51"}]]);const ja=i("earth",[["path",{d:"M21.54 15H17a2 2 0 0 0-2 2v4.54",key:"1djwo0"}],["path",{d:"M7 3.34V5a3 3 0 0 0 3 3a2 2 0 0 1 2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2c0-1.1.9-2 2-2h3.17",key:"1tzkfa"}],["path",{d:"M11 21.95V18a2 2 0 0 0-2-2a2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05",key:"14pb5j"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const hm=i("eclipse",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 2a7 7 0 1 0 10 10",key:"1yuj32"}]]);const pm=i("egg-fried",[["circle",{cx:"11.5",cy:"12.5",r:"3.5",key:"1cl1mi"}],["path",{d:"M3 8c0-3.5 2.5-6 6.5-6 5 0 4.83 3 7.5 5s5 2 5 6c0 4.5-2.5 6.5-7 6.5-2.5 0-2.5 2.5-6 2.5s-7-2-7-5.5c0-3 1.5-3 1.5-5C3.5 10 3 9 3 8Z",key:"165ef9"}]]);const ym=i("egg-off",[["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M20 14.347V14c0-6-4-12-8-12-1.078 0-2.157.436-3.157 1.19",key:"13g2jy"}],["path",{d:"M6.206 6.21C4.871 8.4 4 11.2 4 14a8 8 0 0 0 14.568 4.568",key:"1581id"}]]);const fm=i("egg",[["path",{d:"M12 2C8 2 4 8 4 14a8 8 0 0 0 16 0c0-6-4-12-8-12",key:"1le142"}]]);const Ha=i("ellipsis-vertical",[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"12",cy:"5",r:"1",key:"gxeob9"}],["circle",{cx:"12",cy:"19",r:"1",key:"lyex9k"}]]);const nn=i("ellipsis",[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"19",cy:"12",r:"1",key:"1wjl8i"}],["circle",{cx:"5",cy:"12",r:"1",key:"1pcz8c"}]]);const mm=i("equal-approximately",[["path",{d:"M5 15a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0",key:"yrdkhy"}],["path",{d:"M5 9a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0",key:"gzkvyz"}]]);const km=i("equal-not",[["line",{x1:"5",x2:"19",y1:"9",y2:"9",key:"1nwqeh"}],["line",{x1:"5",x2:"19",y1:"15",y2:"15",key:"g8yjpy"}],["line",{x1:"19",x2:"5",y1:"5",y2:"19",key:"1x9vlm"}]]);const gm=i("equal",[["line",{x1:"5",x2:"19",y1:"9",y2:"9",key:"1nwqeh"}],["line",{x1:"5",x2:"19",y1:"15",y2:"15",key:"g8yjpy"}]]);const vm=i("eraser",[["path",{d:"M21 21H8a2 2 0 0 1-1.42-.587l-3.994-3.999a2 2 0 0 1 0-2.828l10-10a2 2 0 0 1 2.829 0l5.999 6a2 2 0 0 1 0 2.828L12.834 21",key:"g5wo59"}],["path",{d:"m5.082 11.09 8.828 8.828",key:"1wx5vj"}]]);const _m=i("ethernet-port",[["path",{d:"m15 20 3-3h2a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h2l3 3z",key:"rbahqx"}],["path",{d:"M6 8v1",key:"1636ez"}],["path",{d:"M10 8v1",key:"1talb4"}],["path",{d:"M14 8v1",key:"1rsfgr"}],["path",{d:"M18 8v1",key:"gnkwox"}]]);const bm=i("euro",[["path",{d:"M4 10h12",key:"1y6xl8"}],["path",{d:"M4 14h9",key:"1loblj"}],["path",{d:"M19 6a7.7 7.7 0 0 0-5.2-2A7.9 7.9 0 0 0 6 12c0 4.4 3.5 8 7.8 8 2 0 3.8-.8 5.2-2",key:"1j6lzo"}]]);const Mm=i("ev-charger",[["path",{d:"M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 4 0v-6.998a2 2 0 0 0-.59-1.42L18 5",key:"1wtuz0"}],["path",{d:"M14 21V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v16",key:"e09ifn"}],["path",{d:"M2 21h13",key:"1x0fut"}],["path",{d:"M3 7h11",key:"19efrr"}],["path",{d:"m9 11-2 3h3l-2 3",key:"lmzxi1"}]]);const wm=i("expand",[["path",{d:"m15 15 6 6",key:"1s409w"}],["path",{d:"m15 9 6-6",key:"ko1vev"}],["path",{d:"M21 16v5h-5",key:"1ck2sf"}],["path",{d:"M21 8V3h-5",key:"1qoq8a"}],["path",{d:"M3 16v5h5",key:"1t08am"}],["path",{d:"m3 21 6-6",key:"wwnumi"}],["path",{d:"M3 8V3h5",key:"1ln10m"}],["path",{d:"M9 9 3 3",key:"v551iv"}]]);const xm=i("external-link",[["path",{d:"M15 3h6v6",key:"1q9fwt"}],["path",{d:"M10 14 21 3",key:"gplh6r"}],["path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6",key:"a6xqqp"}]]);const Nm=i("eye-closed",[["path",{d:"m15 18-.722-3.25",key:"1j64jw"}],["path",{d:"M2 8a10.645 10.645 0 0 0 20 0",key:"1e7gxb"}],["path",{d:"m20 15-1.726-2.05",key:"1cnuld"}],["path",{d:"m4 15 1.726-2.05",key:"1dsqqd"}],["path",{d:"m9 18 .722-3.25",key:"ypw2yx"}]]);const Cm=i("eye-off",[["path",{d:"M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49",key:"ct8e1f"}],["path",{d:"M14.084 14.158a3 3 0 0 1-4.242-4.242",key:"151rxh"}],["path",{d:"M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143",key:"13bj9a"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const $m=i("eye",[["path",{d:"M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0",key:"1nclc0"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]]);const Sm=i("facebook",[["path",{d:"M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z",key:"1jg4f8"}]]);const Lm=i("factory",[["path",{d:"M12 16h.01",key:"1drbdi"}],["path",{d:"M16 16h.01",key:"1f9h7w"}],["path",{d:"M3 19a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8.5a.5.5 0 0 0-.769-.422l-4.462 2.844A.5.5 0 0 1 15 10.5v-2a.5.5 0 0 0-.769-.422L9.77 10.922A.5.5 0 0 1 9 10.5V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2z",key:"1iv0i2"}],["path",{d:"M8 16h.01",key:"18s6g9"}]]);const Im=i("fan",[["path",{d:"M10.827 16.379a6.082 6.082 0 0 1-8.618-7.002l5.412 1.45a6.082 6.082 0 0 1 7.002-8.618l-1.45 5.412a6.082 6.082 0 0 1 8.618 7.002l-5.412-1.45a6.082 6.082 0 0 1-7.002 8.618l1.45-5.412Z",key:"484a7f"}],["path",{d:"M12 12v.01",key:"u5ubse"}]]);const Am=i("fast-forward",[["path",{d:"M12 6a2 2 0 0 1 3.414-1.414l6 6a2 2 0 0 1 0 2.828l-6 6A2 2 0 0 1 12 18z",key:"b19h5q"}],["path",{d:"M2 6a2 2 0 0 1 3.414-1.414l6 6a2 2 0 0 1 0 2.828l-6 6A2 2 0 0 1 2 18z",key:"h7h5ge"}]]);const Pm=i("feather",[["path",{d:"M12.67 19a2 2 0 0 0 1.416-.588l6.154-6.172a6 6 0 0 0-8.49-8.49L5.586 9.914A2 2 0 0 0 5 11.328V18a1 1 0 0 0 1 1z",key:"18jl4k"}],["path",{d:"M16 8 2 22",key:"vp34q"}],["path",{d:"M17.5 15H9",key:"1oz8nu"}]]);const Tm=i("fence",[["path",{d:"M4 3 2 5v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z",key:"1n2rgs"}],["path",{d:"M6 8h4",key:"utf9t1"}],["path",{d:"M6 18h4",key:"12yh4b"}],["path",{d:"m12 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z",key:"3ha7mj"}],["path",{d:"M14 8h4",key:"1r8wg2"}],["path",{d:"M14 18h4",key:"1t3kbu"}],["path",{d:"m20 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z",key:"dfd4e2"}]]);const Dm=i("ferris-wheel",[["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}],["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"m6.8 15-3.5 2",key:"hjy98k"}],["path",{d:"m20.7 7-3.5 2",key:"f08gto"}],["path",{d:"M6.8 9 3.3 7",key:"1aevh4"}],["path",{d:"m20.7 17-3.5-2",key:"1liqo3"}],["path",{d:"m9 22 3-8 3 8",key:"wees03"}],["path",{d:"M8 22h8",key:"rmew8v"}],["path",{d:"M18 18.7a9 9 0 1 0-12 0",key:"dhzg4g"}]]);const Em=i("figma",[["path",{d:"M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5z",key:"1340ok"}],["path",{d:"M12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z",key:"1hz3m3"}],["path",{d:"M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0z",key:"1oz8n2"}],["path",{d:"M5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0z",key:"1ff65i"}],["path",{d:"M5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z",key:"pdip6e"}]]);const zm=i("file-archive",[["path",{d:"M13.659 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v11.5",key:"4pqfef"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M8 12v-1",key:"1ej8lb"}],["path",{d:"M8 18v-2",key:"qcmpov"}],["path",{d:"M8 7V6",key:"1nbb54"}],["circle",{cx:"8",cy:"20",r:"2",key:"ckkr5m"}]]);const Va=i("file-axis-3d",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m8 18 4-4",key:"12zab0"}],["path",{d:"M8 10v8h8",key:"tlaukw"}]]);const Fa=i("file-badge",[["path",{d:"M13 22h5a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.3",key:"cvl1xm"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m7.69 16.479 1.29 4.88a.5.5 0 0 1-.698.591l-1.843-.849a1 1 0 0 0-.879.001l-1.846.85a.5.5 0 0 1-.692-.593l1.29-4.88",key:"1ff7gj"}],["circle",{cx:"6",cy:"14",r:"3",key:"a1xfv6"}]]);const Om=i("file-box",[["path",{d:"M14.5 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.8",key:"1kchwa"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M11.7 14.2 7 17l-4.7-2.8",key:"1yk8tc"}],["path",{d:"M3 13.1a2 2 0 0 0-.999 1.76v3.24a2 2 0 0 0 .969 1.78L6 21.7a2 2 0 0 0 2.03.01L11 19.9a2 2 0 0 0 1-1.76V14.9a2 2 0 0 0-.97-1.78L8 11.3a2 2 0 0 0-2.03-.01z",key:"19flxy"}],["path",{d:"M7 17v5",key:"1yj1jh"}]]);const Ba=i("file-braces-corner",[["path",{d:"M14 22h4a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v6",key:"14cnrg"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M5 14a1 1 0 0 0-1 1v2a1 1 0 0 1-1 1 1 1 0 0 1 1 1v2a1 1 0 0 0 1 1",key:"sr0ebq"}],["path",{d:"M9 22a1 1 0 0 0 1-1v-2a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-2a1 1 0 0 0-1-1",key:"w793db"}]]);const Wa=i("file-braces",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1",key:"1oajmo"}],["path",{d:"M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1",key:"mpwhp6"}]]);const Ua=i("file-chart-column",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M8 18v-1",key:"zg0ygc"}],["path",{d:"M12 18v-6",key:"17g6i2"}],["path",{d:"M16 18v-3",key:"j5jt4h"}]]);const Ra=i("file-chart-column-increasing",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M8 18v-2",key:"qcmpov"}],["path",{d:"M12 18v-4",key:"q1q25u"}],["path",{d:"M16 18v-6",key:"15y0np"}]]);const Ga=i("file-chart-line",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m16 13-3.5 3.5-2-2L8 17",key:"zz7yod"}]]);const Ka=i("file-chart-pie",[["path",{d:"M15.941 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.704l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.512",key:"13hoie"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M4.017 11.512a6 6 0 1 0 8.466 8.475",key:"s6vs5t"}],["path",{d:"M9 16a1 1 0 0 1-1-1v-4c0-.552.45-1.008.995-.917a6 6 0 0 1 4.922 4.922c.091.544-.365.995-.917.995z",key:"1dl6s6"}]]);const Ya=i("file-check-corner",[["path",{d:"M10.5 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v6",key:"g5mvt7"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m14 20 2 2 4-4",key:"15kota"}]]);const qm=i("file-check",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m9 15 2 2 4-4",key:"1grp1n"}]]);const jm=i("file-clock",[["path",{d:"M16 22h2a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v2.85",key:"ryk6xj"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M8 14v2.2l1.6 1",key:"6m4bie"}],["circle",{cx:"8",cy:"16",r:"6",key:"10v15b"}]]);const Xa=i("file-code-corner",[["path",{d:"M4 12.15V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-3.35",key:"1wthlu"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m5 16-3 3 3 3",key:"331omg"}],["path",{d:"m9 22 3-3-3-3",key:"lsp7cz"}]]);const Hm=i("file-code",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M10 12.5 8 15l2 2.5",key:"1tg20x"}],["path",{d:"m14 12.5 2 2.5-2 2.5",key:"yinavb"}]]);const Za=i("file-cog",[["path",{d:"M13.85 22H18a2 2 0 0 0 2-2V8a2 2 0 0 0-.586-1.414l-4-4A2 2 0 0 0 14 2H6a2 2 0 0 0-2 2v6.6",key:"1l4p50"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m3.305 19.53.923-.382",key:"ao1pio"}],["path",{d:"m4.228 16.852-.924-.383",key:"1fv9zy"}],["path",{d:"m5.852 15.228-.383-.923",key:"1a9hc2"}],["path",{d:"m5.852 20.772-.383.924",key:"1sh9ke"}],["path",{d:"m8.148 15.228.383-.923",key:"4yu6lf"}],["path",{d:"m8.53 21.696-.382-.924",key:"18b0s9"}],["path",{d:"m9.773 16.852.922-.383",key:"ti6xop"}],["path",{d:"m9.773 19.148.922.383",key:"rws47d"}],["circle",{cx:"7",cy:"18",r:"3",key:"lvkj7j"}]]);const Vm=i("file-digit",[["path",{d:"M4 12V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2",key:"jrl274"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M10 16h2v6",key:"1bxocy"}],["path",{d:"M10 22h4",key:"ceow96"}],["rect",{x:"2",y:"16",width:"4",height:"6",rx:"2",key:"r45zd0"}]]);const Fm=i("file-down",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M12 18v-6",key:"17g6i2"}],["path",{d:"m9 15 3 3 3-3",key:"1npd3o"}]]);const Bm=i("file-diff",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M9 10h6",key:"9gxzsh"}],["path",{d:"M12 13V7",key:"h0r20n"}],["path",{d:"M9 17h6",key:"r8uit2"}]]);const Qa=i("file-exclamation-point",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);const ko=i("file-headphone",[["path",{d:"M4 6.835V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-.343",key:"1vfytu"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M2 19a2 2 0 0 1 4 0v1a2 2 0 0 1-4 0v-4a6 6 0 0 1 12 0v4a2 2 0 0 1-4 0v-1a2 2 0 0 1 4 0",key:"1etmh7"}]]);const Wm=i("file-heart",[["path",{d:"M13 22h5a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v7",key:"oagw2b"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M3.62 18.8A2.25 2.25 0 1 1 7 15.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a1 1 0 0 1-1.507 0z",key:"rg3psg"}]]);const Um=i("file-image",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["circle",{cx:"10",cy:"12",r:"2",key:"737tya"}],["path",{d:"m20 17-1.296-1.296a2.41 2.41 0 0 0-3.408 0L9 22",key:"wt3hpn"}]]);const Rm=i("file-input",[["path",{d:"M4 11V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-1",key:"1q9hii"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M2 15h10",key:"jfw4w8"}],["path",{d:"m9 18 3-3-3-3",key:"112psh"}]]);const Ja=i("file-key",[["path",{d:"M10.65 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v10.1",key:"1a2hbp"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m10 15 1 1",key:"1h4vmv"}],["path",{d:"m11 14-4.586 4.586",key:"maylof"}],["circle",{cx:"5",cy:"20",r:"2",key:"860zyv"}]]);const er=i("file-lock",[["path",{d:"M4 9.8V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-3",key:"1432pc"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M9 17v-2a2 2 0 0 0-4 0v2",key:"168m41"}],["rect",{width:"8",height:"5",x:"3",y:"17",rx:"1",key:"o8vfew"}]]);const tr=i("file-minus-corner",[["path",{d:"M20 14V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12",key:"l9p8hp"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M14 18h6",key:"1m8k6r"}]]);const Gm=i("file-minus",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M9 15h6",key:"cctwl0"}]]);const Km=i("file-music",[["path",{d:"M11.65 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v10.35",key:"5ad7z2"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M8 20v-7l3 1.474",key:"1ggyb9"}],["circle",{cx:"6",cy:"20",r:"2",key:"j7wjp0"}]]);const Ym=i("file-output",[["path",{d:"M4.226 20.925A2 2 0 0 0 6 22h12a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.127",key:"wfxp4w"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m5 11-3 3",key:"1dgrs4"}],["path",{d:"m5 17-3-3h10",key:"1mvvaf"}]]);const or=i("file-pen-line",[["path",{d:"m18.226 5.226-2.52-2.52A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-.351",key:"1k2beg"}],["path",{d:"M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"2t3380"}],["path",{d:"M8 18h1",key:"13wk12"}]]);const nr=i("file-pen",[["path",{d:"M12.659 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v9.34",key:"o6klzx"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M10.378 12.622a1 1 0 0 1 3 3.003L8.36 20.637a2 2 0 0 1-.854.506l-2.867.837a.5.5 0 0 1-.62-.62l.836-2.869a2 2 0 0 1 .506-.853z",key:"zhnas1"}]]);const ar=i("file-play",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M15.033 13.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56v-4.704a.645.645 0 0 1 .967-.56z",key:"1tzo1f"}]]);const rr=i("file-plus-corner",[["path",{d:"M11.35 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v5.35",key:"17jvcc"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M14 19h6",key:"bvotb8"}],["path",{d:"M17 16v6",key:"18yu1i"}]]);const Xm=i("file-plus",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M9 15h6",key:"cctwl0"}],["path",{d:"M12 18v-6",key:"17g6i2"}]]);const ir=i("file-question-mark",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M12 17h.01",key:"p32p05"}],["path",{d:"M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3",key:"mhlwft"}]]);const Zm=i("file-scan",[["path",{d:"M20 10V8a2.4 2.4 0 0 0-.706-1.704l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h4.35",key:"1cdjst"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M16 14a2 2 0 0 0-2 2",key:"ceaadl"}],["path",{d:"M16 22a2 2 0 0 1-2-2",key:"1wqh5n"}],["path",{d:"M20 14a2 2 0 0 1 2 2",key:"1ny6zw"}],["path",{d:"M20 22a2 2 0 0 0 2-2",key:"1l9q4k"}]]);const cr=i("file-search-corner",[["path",{d:"M11.1 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.589 3.588A2.4 2.4 0 0 1 20 8v3.25",key:"uh4ikj"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m21 22-2.88-2.88",key:"9dd25w"}],["circle",{cx:"16",cy:"17",r:"3",key:"11br10"}]]);const Qm=i("file-search",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["circle",{cx:"11.5",cy:"14.5",r:"2.5",key:"1bq0ko"}],["path",{d:"M13.3 16.3 15 18",key:"2quom7"}]]);const sr=i("file-signal",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M8 15h.01",key:"a7atzg"}],["path",{d:"M11.5 13.5a2.5 2.5 0 0 1 0 3",key:"1fccat"}],["path",{d:"M15 12a5 5 0 0 1 0 6",key:"ps46cm"}]]);const Jm=i("file-sliders",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"M10 11v2",key:"1s651w"}],["path",{d:"M8 17h8",key:"wh5c61"}],["path",{d:"M14 16v2",key:"12fp5e"}]]);const ek=i("file-spreadsheet",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M8 13h2",key:"yr2amv"}],["path",{d:"M14 13h2",key:"un5t4a"}],["path",{d:"M8 17h2",key:"2yhykz"}],["path",{d:"M14 17h2",key:"10kma7"}]]);const tk=i("file-stack",[["path",{d:"M11 21a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1",key:"likhh7"}],["path",{d:"M16 16a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1",key:"17ky3x"}],["path",{d:"M21 6a2 2 0 0 0-.586-1.414l-2-2A2 2 0 0 0 17 2h-3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1z",key:"1hyeo0"}]]);const ok=i("file-symlink",[["path",{d:"M4 11V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7",key:"huwfnr"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m10 18 3-3-3-3",key:"18f6ys"}]]);const nk=i("file-terminal",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m8 16 2-2-2-2",key:"10vzyd"}],["path",{d:"M12 18h4",key:"1wd2n7"}]]);const ak=i("file-text",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M10 9H8",key:"b1mrlr"}],["path",{d:"M16 13H8",key:"t4e002"}],["path",{d:"M16 17H8",key:"z1uh3a"}]]);const dr=i("file-type-corner",[["path",{d:"M12 22h6a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v6",key:"15usau"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M3 16v-1.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5V16",key:"s1gz5"}],["path",{d:"M6 22h2",key:"194x9m"}],["path",{d:"M7 14v8",key:"11ixej"}]]);const rk=i("file-type",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M11 18h2",key:"12mj7e"}],["path",{d:"M12 12v6",key:"3ahymv"}],["path",{d:"M9 13v-.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v.5",key:"qbrxap"}]]);const ik=i("file-up",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M12 12v6",key:"3ahymv"}],["path",{d:"m15 15-3-3-3 3",key:"15xj92"}]]);const ck=i("file-user",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M16 22a4 4 0 0 0-8 0",key:"7a83pg"}],["circle",{cx:"12",cy:"15",r:"3",key:"g36mzq"}]]);const sk=i("file-volume",[["path",{d:"M4 11.55V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-1.95",key:"44gpjv"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M12 15a5 5 0 0 1 0 6",key:"oxg87a"}],["path",{d:"M8 14.502a.5.5 0 0 0-.826-.381l-1.893 1.631a1 1 0 0 1-.651.243H3.5a.5.5 0 0 0-.5.501v3.006a.5.5 0 0 0 .5.501h1.129a1 1 0 0 1 .652.243l1.893 1.633a.5.5 0 0 0 .826-.38z",key:"8rtoi1"}]]);const lr=i("file-video-camera",[["path",{d:"M4 12V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2",key:"jrl274"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m10 17.843 3.033-1.755a.64.64 0 0 1 .967.56v4.704a.65.65 0 0 1-.967.56L10 20.157",key:"17aeo9"}],["rect",{width:"7",height:"6",x:"3",y:"16",rx:"1",key:"s27ndx"}]]);const ur=i("file-x-corner",[["path",{d:"M11 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v5",key:"1jo35a"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m15 17 5 5",key:"36xl1x"}],["path",{d:"m20 17-5 5",key:"vdz27y"}]]);const dk=i("file-x",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"m14.5 12.5-5 5",key:"b62r18"}],["path",{d:"m9.5 12.5 5 5",key:"1rk7el"}]]);const Xs=i("file",[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}]]);const lk=i("files",[["path",{d:"M15 2h-4a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8",key:"14sh0y"}],["path",{d:"M16.706 2.706A2.4 2.4 0 0 0 15 2v5a1 1 0 0 0 1 1h5a2.4 2.4 0 0 0-.706-1.706z",key:"1970lx"}],["path",{d:"M5 7a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h8a2 2 0 0 0 1.732-1",key:"l4dndm"}]]);const uk=i("film",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 3v18",key:"bbkbws"}],["path",{d:"M3 7.5h4",key:"zfgn84"}],["path",{d:"M3 12h18",key:"1i2n21"}],["path",{d:"M3 16.5h4",key:"1230mu"}],["path",{d:"M17 3v18",key:"in4fa5"}],["path",{d:"M17 7.5h4",key:"myr1c1"}],["path",{d:"M17 16.5h4",key:"go4c1d"}]]);const hr=i("fingerprint-pattern",[["path",{d:"M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4",key:"1nerag"}],["path",{d:"M14 13.12c0 2.38 0 6.38-1 8.88",key:"o46ks0"}],["path",{d:"M17.29 21.02c.12-.6.43-2.3.5-3.02",key:"ptglia"}],["path",{d:"M2 12a10 10 0 0 1 18-6",key:"ydlgp0"}],["path",{d:"M2 16h.01",key:"1gqxmh"}],["path",{d:"M21.8 16c.2-2 .131-5.354 0-6",key:"drycrb"}],["path",{d:"M5 19.5C5.5 18 6 15 6 12a6 6 0 0 1 .34-2",key:"1tidbn"}],["path",{d:"M8.65 22c.21-.66.45-1.32.57-2",key:"13wd9y"}],["path",{d:"M9 6.8a6 6 0 0 1 9 5.2v2",key:"1fr1j5"}]]);const hk=i("fire-extinguisher",[["path",{d:"M15 6.5V3a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3.5",key:"sqyvz"}],["path",{d:"M9 18h8",key:"i7pszb"}],["path",{d:"M18 3h-3",key:"7idoqj"}],["path",{d:"M11 3a6 6 0 0 0-6 6v11",key:"1v5je3"}],["path",{d:"M5 13h4",key:"svpcxo"}],["path",{d:"M17 10a4 4 0 0 0-8 0v10a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2Z",key:"vsjego"}]]);const pk=i("fish-off",[["path",{d:"M18 12.47v.03m0-.5v.47m-.475 5.056A6.744 6.744 0 0 1 15 18c-3.56 0-7.56-2.53-8.5-6 .348-1.28 1.114-2.433 2.121-3.38m3.444-2.088A8.802 8.802 0 0 1 15 6c3.56 0 6.06 2.54 7 6-.309 1.14-.786 2.177-1.413 3.058",key:"1j1hse"}],["path",{d:"M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33m7.48-4.372A9.77 9.77 0 0 1 16 6.07m0 11.86a9.77 9.77 0 0 1-1.728-3.618",key:"1q46z8"}],["path",{d:"m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98M8.53 3h5.27a2 2 0 0 1 1.98 1.67l.23 1.4M2 2l20 20",key:"1407gh"}]]);const yk=i("fish-symbol",[["path",{d:"M2 16s9-15 20-4C11 23 2 8 2 8",key:"h4oh4o"}]]);const fk=i("fish",[["path",{d:"M6.5 12c.94-3.46 4.94-6 8.5-6 3.56 0 6.06 2.54 7 6-.94 3.47-3.44 6-7 6s-7.56-2.53-8.5-6Z",key:"15baut"}],["path",{d:"M18 12v.5",key:"18hhni"}],["path",{d:"M16 17.93a9.77 9.77 0 0 1 0-11.86",key:"16dt7o"}],["path",{d:"M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33",key:"l9di03"}],["path",{d:"M10.46 7.26C10.2 5.88 9.17 4.24 8 3h5.8a2 2 0 0 1 1.98 1.67l.23 1.4",key:"1kjonw"}],["path",{d:"m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98",key:"1zlm23"}]]);const mk=i("fishing-hook",[["path",{d:"m17.586 11.414-5.93 5.93a1 1 0 0 1-8-8l3.137-3.137a.707.707 0 0 1 1.207.5V10",key:"157y8s"}],["path",{d:"M20.414 8.586 22 7",key:"5g2s34"}],["circle",{cx:"19",cy:"10",r:"2",key:"7363ft"}]]);const kk=i("flag-off",[["path",{d:"M16 16c-3 0-5-2-8-2a6 6 0 0 0-4 1.528",key:"1q158e"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M4 22V4",key:"1plyxx"}],["path",{d:"M7.656 2H8c3 0 5 2 7.333 2q2 0 3.067-.8A1 1 0 0 1 20 4v10.347",key:"xj1b71"}]]);const gk=i("flag-triangle-left",[["path",{d:"M18 22V2.8a.8.8 0 0 0-1.17-.71L5.45 7.78a.8.8 0 0 0 0 1.44L18 15.5",key:"rbbtmw"}]]);const vk=i("flag-triangle-right",[["path",{d:"M6 22V2.8a.8.8 0 0 1 1.17-.71l11.38 5.69a.8.8 0 0 1 0 1.44L6 15.5",key:"kfjsu0"}]]);const _k=i("flag",[["path",{d:"M4 22V4a1 1 0 0 1 .4-.8A6 6 0 0 1 8 2c3 0 5 2 7.333 2q2 0 3.067-.8A1 1 0 0 1 20 4v10a1 1 0 0 1-.4.8A6 6 0 0 1 16 16c-3 0-5-2-8-2a6 6 0 0 0-4 1.528",key:"1jaruq"}]]);const bk=i("flame-kindling",[["path",{d:"M12 2c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 17 10a5 5 0 1 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C8 4.5 11 2 12 2Z",key:"1ir223"}],["path",{d:"m5 22 14-4",key:"1brv4h"}],["path",{d:"m5 18 14 4",key:"lgyyje"}]]);const Mk=i("flame",[["path",{d:"M12 3q1 4 4 6.5t3 5.5a1 1 0 0 1-14 0 5 5 0 0 1 1-3 1 1 0 0 0 5 0c0-2-1.5-3-1.5-5q0-2 2.5-4",key:"1slcih"}]]);const wk=i("flashlight-off",[["path",{d:"M11.652 6H18",key:"voqkpr"}],["path",{d:"M12 13v1",key:"176q98"}],["path",{d:"M16 16v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-8a4 4 0 0 0-.8-2.4l-.6-.8A3 3 0 0 1 6 7V6",key:"dzyf92"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M7.649 2H17a1 1 0 0 1 1 1v4a3 3 0 0 1-.6 1.8l-.6.8a4 4 0 0 0-.55 1.007",key:"1hvcfn"}]]);const xk=i("flashlight",[["path",{d:"M12 13v1",key:"176q98"}],["path",{d:"M17 2a1 1 0 0 1 1 1v4a3 3 0 0 1-.6 1.8l-.6.8A4 4 0 0 0 16 12v8a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2v-8a4 4 0 0 0-.8-2.4l-.6-.8A3 3 0 0 1 6 7V3a1 1 0 0 1 1-1z",key:"17vh7j"}],["path",{d:"M6 6h12",key:"n6hhss"}]]);const Nk=i("flask-conical-off",[["path",{d:"M10 2v2.343",key:"15t272"}],["path",{d:"M14 2v6.343",key:"sxr80q"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M20 20a2 2 0 0 1-2 2H6a2 2 0 0 1-1.755-2.96l5.227-9.563",key:"k0duyd"}],["path",{d:"M6.453 15H15",key:"1f0z33"}],["path",{d:"M8.5 2h7",key:"csnxdl"}]]);const Ck=i("flask-conical",[["path",{d:"M14 2v6a2 2 0 0 0 .245.96l5.51 10.08A2 2 0 0 1 18 22H6a2 2 0 0 1-1.755-2.96l5.51-10.08A2 2 0 0 0 10 8V2",key:"18mbvz"}],["path",{d:"M6.453 15h11.094",key:"3shlmq"}],["path",{d:"M8.5 2h7",key:"csnxdl"}]]);const $k=i("flask-round",[["path",{d:"M10 2v6.292a7 7 0 1 0 4 0V2",key:"1s42pc"}],["path",{d:"M5 15h14",key:"m0yey3"}],["path",{d:"M8.5 2h7",key:"csnxdl"}]]);const Sk=i("flip-horizontal-2",[["path",{d:"m3 7 5 5-5 5V7",key:"couhi7"}],["path",{d:"m21 7-5 5 5 5V7",key:"6ouia7"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"M12 14v2",key:"8jcxud"}],["path",{d:"M12 8v2",key:"1woqiv"}],["path",{d:"M12 2v2",key:"tus03m"}]]);const Lk=i("flip-horizontal",[["path",{d:"M8 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h3",key:"1i73f7"}],["path",{d:"M16 3h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-3",key:"saxlbk"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"M12 14v2",key:"8jcxud"}],["path",{d:"M12 8v2",key:"1woqiv"}],["path",{d:"M12 2v2",key:"tus03m"}]]);const Ik=i("flip-vertical-2",[["path",{d:"m17 3-5 5-5-5h10",key:"1ftt6x"}],["path",{d:"m17 21-5-5-5 5h10",key:"1m0wmu"}],["path",{d:"M4 12H2",key:"rhcxmi"}],["path",{d:"M10 12H8",key:"s88cx1"}],["path",{d:"M16 12h-2",key:"10asgb"}],["path",{d:"M22 12h-2",key:"14jgyd"}]]);const Ak=i("flip-vertical",[["path",{d:"M21 8V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v3",key:"14bfxa"}],["path",{d:"M21 16v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-3",key:"14rx03"}],["path",{d:"M4 12H2",key:"rhcxmi"}],["path",{d:"M10 12H8",key:"s88cx1"}],["path",{d:"M16 12h-2",key:"10asgb"}],["path",{d:"M22 12h-2",key:"14jgyd"}]]);const Pk=i("flower-2",[["path",{d:"M12 5a3 3 0 1 1 3 3m-3-3a3 3 0 1 0-3 3m3-3v1M9 8a3 3 0 1 0 3 3M9 8h1m5 0a3 3 0 1 1-3 3m3-3h-1m-2 3v-1",key:"3pnvol"}],["circle",{cx:"12",cy:"8",r:"2",key:"1822b1"}],["path",{d:"M12 10v12",key:"6ubwww"}],["path",{d:"M12 22c4.2 0 7-1.667 7-5-4.2 0-7 1.667-7 5Z",key:"9hd38g"}],["path",{d:"M12 22c-4.2 0-7-1.667-7-5 4.2 0 7 1.667 7 5Z",key:"ufn41s"}]]);const Tk=i("flower",[["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"M12 16.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 1 1 12 7.5a4.5 4.5 0 1 1 4.5 4.5 4.5 4.5 0 1 1-4.5 4.5",key:"14wa3c"}],["path",{d:"M12 7.5V9",key:"1oy5b0"}],["path",{d:"M7.5 12H9",key:"eltsq1"}],["path",{d:"M16.5 12H15",key:"vk5kw4"}],["path",{d:"M12 16.5V15",key:"k7eayi"}],["path",{d:"m8 8 1.88 1.88",key:"nxy4qf"}],["path",{d:"M14.12 9.88 16 8",key:"1lst6k"}],["path",{d:"m8 16 1.88-1.88",key:"h2eex1"}],["path",{d:"M14.12 14.12 16 16",key:"uqkrx3"}]]);const Dk=i("focus",[["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}]]);const Ek=i("fold-vertical",[["path",{d:"M12 22v-6",key:"6o8u61"}],["path",{d:"M12 8V2",key:"1wkif3"}],["path",{d:"M4 12H2",key:"rhcxmi"}],["path",{d:"M10 12H8",key:"s88cx1"}],["path",{d:"M16 12h-2",key:"10asgb"}],["path",{d:"M22 12h-2",key:"14jgyd"}],["path",{d:"m15 19-3-3-3 3",key:"e37ymu"}],["path",{d:"m15 5-3 3-3-3",key:"19d6lf"}]]);const zk=i("fold-horizontal",[["path",{d:"M2 12h6",key:"1wqiqv"}],["path",{d:"M22 12h-6",key:"1eg9hc"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 8v2",key:"1woqiv"}],["path",{d:"M12 14v2",key:"8jcxud"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"m19 9-3 3 3 3",key:"12ol22"}],["path",{d:"m5 15 3-3-3-3",key:"1kdhjc"}]]);const Ok=i("folder-archive",[["circle",{cx:"15",cy:"19",r:"2",key:"u2pros"}],["path",{d:"M20.9 19.8A2 2 0 0 0 22 18V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h5.1",key:"1jj40k"}],["path",{d:"M15 11v-1",key:"cntcp"}],["path",{d:"M15 17v-2",key:"1279jj"}]]);const qk=i("folder-check",[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"m9 13 2 2 4-4",key:"6343dt"}]]);const jk=i("folder-clock",[["path",{d:"M16 14v2.2l1.6 1",key:"fo4ql5"}],["path",{d:"M7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2",key:"1urifu"}],["circle",{cx:"16",cy:"16",r:"6",key:"qoo3c4"}]]);const Hk=i("folder-closed",[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M2 10h20",key:"1ir3d8"}]]);const Vk=i("folder-code",[["path",{d:"M10 10.5 8 13l2 2.5",key:"m4t9c1"}],["path",{d:"m14 10.5 2 2.5-2 2.5",key:"14w2eb"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2z",key:"1u1bxd"}]]);const Fk=i("folder-dot",[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z",key:"1fr9dc"}],["circle",{cx:"12",cy:"13",r:"1",key:"49l61u"}]]);const pr=i("folder-cog",[["path",{d:"M10.3 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.98a2 2 0 0 1 1.69.9l.66 1.2A2 2 0 0 0 12 6h8a2 2 0 0 1 2 2v3.3",key:"128dxu"}],["path",{d:"m14.305 19.53.923-.382",key:"3m78fa"}],["path",{d:"m15.228 16.852-.923-.383",key:"npixar"}],["path",{d:"m16.852 15.228-.383-.923",key:"5xggr7"}],["path",{d:"m16.852 20.772-.383.924",key:"dpfhf9"}],["path",{d:"m19.148 15.228.383-.923",key:"1reyyz"}],["path",{d:"m19.53 21.696-.382-.924",key:"1goivc"}],["path",{d:"m20.772 16.852.924-.383",key:"htqkph"}],["path",{d:"m20.772 19.148.924.383",key:"9w9pjp"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}]]);const Bk=i("folder-down",[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M12 10v6",key:"1bos4e"}],["path",{d:"m15 13-3 3-3-3",key:"6j2sf0"}]]);const Wk=i("folder-git-2",[["path",{d:"M18 19a5 5 0 0 1-5-5v8",key:"sz5oeg"}],["path",{d:"M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v5",key:"1w6njk"}],["circle",{cx:"13",cy:"12",r:"2",key:"1j92g6"}],["circle",{cx:"20",cy:"19",r:"2",key:"1obnsp"}]]);const Uk=i("folder-git",[["circle",{cx:"12",cy:"13",r:"2",key:"1c1ljs"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M14 13h3",key:"1dgedf"}],["path",{d:"M7 13h3",key:"1pygq7"}]]);const Rk=i("folder-heart",[["path",{d:"M10.638 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v3.417",key:"10r6g4"}],["path",{d:"M14.62 18.8A2.25 2.25 0 1 1 18 15.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z",key:"15cy7q"}]]);const Gk=i("folder-input",[["path",{d:"M2 9V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1",key:"fm4g5t"}],["path",{d:"M2 13h10",key:"pgb2dq"}],["path",{d:"m9 16 3-3-3-3",key:"6m91ic"}]]);const Kk=i("folder-key",[["circle",{cx:"16",cy:"20",r:"2",key:"1vifvg"}],["path",{d:"M10 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v2",key:"3hgo9p"}],["path",{d:"m22 14-4.5 4.5",key:"1ef6z8"}],["path",{d:"m21 15 1 1",key:"1ejcpy"}]]);const Yk=i("folder-kanban",[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z",key:"1fr9dc"}],["path",{d:"M8 10v4",key:"tgpxqk"}],["path",{d:"M12 10v2",key:"hh53o1"}],["path",{d:"M16 10v6",key:"1d6xys"}]]);const Xk=i("folder-lock",[["rect",{width:"8",height:"5",x:"14",y:"17",rx:"1",key:"19aais"}],["path",{d:"M10 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v2.5",key:"1w6v7t"}],["path",{d:"M20 17v-2a2 2 0 1 0-4 0v2",key:"pwaxnr"}]]);const Zk=i("folder-minus",[["path",{d:"M9 13h6",key:"1uhe8q"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}]]);const Qk=i("folder-open-dot",[["path",{d:"m6 14 1.45-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.55 6a2 2 0 0 1-1.94 1.5H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H18a2 2 0 0 1 2 2v2",key:"1nmvlm"}],["circle",{cx:"14",cy:"15",r:"1",key:"1gm4qj"}]]);const Zs=i("folder-open",[["path",{d:"m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2",key:"usdka0"}]]);const Jk=i("folder-output",[["path",{d:"M2 7.5V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-1.5",key:"1yk7aj"}],["path",{d:"M2 13h10",key:"pgb2dq"}],["path",{d:"m5 10-3 3 3 3",key:"1r8ie0"}]]);const yr=i("folder-pen",[["path",{d:"M2 11.5V5a2 2 0 0 1 2-2h3.9c.7 0 1.3.3 1.7.9l.8 1.2c.4.6 1 .9 1.7.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-9.5",key:"a8xqs0"}],["path",{d:"M11.378 13.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"1saktj"}]]);const eg=i("folder-plus",[["path",{d:"M12 10v6",key:"1bos4e"}],["path",{d:"M9 13h6",key:"1uhe8q"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}]]);const tg=i("folder-root",[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z",key:"1fr9dc"}],["circle",{cx:"12",cy:"13",r:"2",key:"1c1ljs"}],["path",{d:"M12 15v5",key:"11xva1"}]]);const og=i("folder-search-2",[["circle",{cx:"11.5",cy:"12.5",r:"2.5",key:"1ea5ju"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M13.3 14.3 15 16",key:"1y4v1n"}]]);const ng=i("folder-search",[["path",{d:"M10.7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v4.1",key:"1bw5m7"}],["path",{d:"m21 21-1.9-1.9",key:"1g2n9r"}],["circle",{cx:"17",cy:"17",r:"3",key:"18b49y"}]]);const ag=i("folder-symlink",[["path",{d:"M2 9.35V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7",key:"y8kt7d"}],["path",{d:"m8 16 3-3-3-3",key:"rlqrt1"}]]);const rg=i("folder-sync",[["path",{d:"M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v.5",key:"1dkoa9"}],["path",{d:"M12 10v4h4",key:"1czhmt"}],["path",{d:"m12 14 1.535-1.605a5 5 0 0 1 8 1.5",key:"lvuxfi"}],["path",{d:"M22 22v-4h-4",key:"1ewp4q"}],["path",{d:"m22 18-1.535 1.605a5 5 0 0 1-8-1.5",key:"14ync0"}]]);const ig=i("folder-tree",[["path",{d:"M20 10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-2.5a1 1 0 0 1-.8-.4l-.9-1.2A1 1 0 0 0 15 3h-2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z",key:"hod4my"}],["path",{d:"M20 21a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-2.9a1 1 0 0 1-.88-.55l-.42-.85a1 1 0 0 0-.92-.6H13a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z",key:"w4yl2u"}],["path",{d:"M3 5a2 2 0 0 0 2 2h3",key:"f2jnh7"}],["path",{d:"M3 3v13a2 2 0 0 0 2 2h3",key:"k8epm1"}]]);const cg=i("folder-up",[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M12 10v6",key:"1bos4e"}],["path",{d:"m9 13 3-3 3 3",key:"1pxg3c"}]]);const Qs=i("folder",[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}]]);const sg=i("folders",[["path",{d:"M20 5a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h2.5a1.5 1.5 0 0 1 1.2.6l.6.8a1.5 1.5 0 0 0 1.2.6z",key:"a4852j"}],["path",{d:"M3 8.268a2 2 0 0 0-1 1.738V19a2 2 0 0 0 2 2h11a2 2 0 0 0 1.732-1",key:"yxbcw3"}]]);const dg=i("folder-x",[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"m9.5 10.5 5 5",key:"ra9qjz"}],["path",{d:"m14.5 10.5-5 5",key:"l2rkpq"}]]);const lg=i("footprints",[["path",{d:"M4 16v-2.38C4 11.5 2.97 10.5 3 8c.03-2.72 1.49-6 4.5-6C9.37 2 10 3.8 10 5.5c0 3.11-2 5.66-2 8.68V16a2 2 0 1 1-4 0Z",key:"1dudjm"}],["path",{d:"M20 20v-2.38c0-2.12 1.03-3.12 1-5.62-.03-2.72-1.49-6-4.5-6C14.63 6 14 7.8 14 9.5c0 3.11 2 5.66 2 8.68V20a2 2 0 1 0 4 0Z",key:"l2t8xc"}],["path",{d:"M16 17h4",key:"1dejxt"}],["path",{d:"M4 13h4",key:"1bwh8b"}]]);const ug=i("forklift",[["path",{d:"M12 12H5a2 2 0 0 0-2 2v5",key:"7zsz91"}],["circle",{cx:"13",cy:"19",r:"2",key:"wjnkru"}],["circle",{cx:"5",cy:"19",r:"2",key:"v8kfzx"}],["path",{d:"M8 19h3m5-17v17h6M6 12V7c0-1.1.9-2 2-2h3l5 5",key:"13bk1p"}]]);const hg=i("form",[["path",{d:"M4 14h6",key:"77gv2w"}],["path",{d:"M4 2h10",key:"a2b314"}],["rect",{x:"4",y:"18",width:"16",height:"4",rx:"1",key:"sybzq6"}],["rect",{x:"4",y:"6",width:"16",height:"4",rx:"1",key:"1osc9e"}]]);const pg=i("forward",[["path",{d:"m15 17 5-5-5-5",key:"nf172w"}],["path",{d:"M4 18v-2a4 4 0 0 1 4-4h12",key:"jmiej9"}]]);const yg=i("frame",[["line",{x1:"22",x2:"2",y1:"6",y2:"6",key:"15w7dq"}],["line",{x1:"22",x2:"2",y1:"18",y2:"18",key:"1ip48p"}],["line",{x1:"6",x2:"6",y1:"2",y2:"22",key:"a2lnyx"}],["line",{x1:"18",x2:"18",y1:"2",y2:"22",key:"8vb6jd"}]]);const fg=i("framer",[["path",{d:"M5 16V9h14V2H5l14 14h-7m-7 0 7 7v-7m-7 0h7",key:"1a2nng"}]]);const mg=i("frown",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M16 16s-1.5-2-4-2-4 2-4 2",key:"epbg0q"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9",key:"yxxnd0"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9",key:"1p4y9e"}]]);const kg=i("fuel",[["path",{d:"M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 4 0v-6.998a2 2 0 0 0-.59-1.42L18 5",key:"1wtuz0"}],["path",{d:"M14 21V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v16",key:"e09ifn"}],["path",{d:"M2 21h13",key:"1x0fut"}],["path",{d:"M3 9h11",key:"1p7c0w"}]]);const gg=i("fullscreen",[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["rect",{width:"10",height:"8",x:"7",y:"8",rx:"1",key:"vys8me"}]]);const vg=i("funnel-plus",[["path",{d:"M13.354 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l1.218-1.348",key:"8mvsmf"}],["path",{d:"M16 6h6",key:"1dogtp"}],["path",{d:"M19 3v6",key:"1ytpjt"}]]);const fr=i("funnel-x",[["path",{d:"M12.531 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l.427-.473",key:"ol2ft2"}],["path",{d:"m16.5 3.5 5 5",key:"15e6fa"}],["path",{d:"m21.5 3.5-5 5",key:"m0lwru"}]]);const _g=i("gallery-horizontal-end",[["path",{d:"M2 7v10",key:"a2pl2d"}],["path",{d:"M6 5v14",key:"1kq3d7"}],["rect",{width:"12",height:"18",x:"10",y:"3",rx:"2",key:"13i7bc"}]]);const mr=i("funnel",[["path",{d:"M10 20a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14z",key:"sc7q7i"}]]);const bg=i("gallery-horizontal",[["path",{d:"M2 3v18",key:"pzttux"}],["rect",{width:"12",height:"18",x:"6",y:"3",rx:"2",key:"btr8bg"}],["path",{d:"M22 3v18",key:"6jf3v"}]]);const Mg=i("gallery-thumbnails",[["rect",{width:"18",height:"14",x:"3",y:"3",rx:"2",key:"74y24f"}],["path",{d:"M4 21h1",key:"16zlid"}],["path",{d:"M9 21h1",key:"15o7lz"}],["path",{d:"M14 21h1",key:"v9vybs"}],["path",{d:"M19 21h1",key:"edywat"}]]);const wg=i("gallery-vertical-end",[["path",{d:"M7 2h10",key:"nczekb"}],["path",{d:"M5 6h14",key:"u2x4p"}],["rect",{width:"18",height:"12",x:"3",y:"10",rx:"2",key:"l0tzu3"}]]);const xg=i("gallery-vertical",[["path",{d:"M3 2h18",key:"15qxfx"}],["rect",{width:"18",height:"12",x:"3",y:"6",rx:"2",key:"1439r6"}],["path",{d:"M3 22h18",key:"8prr45"}]]);const Ng=i("gamepad-2",[["line",{x1:"6",x2:"10",y1:"11",y2:"11",key:"1gktln"}],["line",{x1:"8",x2:"8",y1:"9",y2:"13",key:"qnk9ow"}],["line",{x1:"15",x2:"15.01",y1:"12",y2:"12",key:"krot7o"}],["line",{x1:"18",x2:"18.01",y1:"10",y2:"10",key:"1lcuu1"}],["path",{d:"M17.32 5H6.68a4 4 0 0 0-3.978 3.59c-.006.052-.01.101-.017.152C2.604 9.416 2 14.456 2 16a3 3 0 0 0 3 3c1 0 1.5-.5 2-1l1.414-1.414A2 2 0 0 1 9.828 16h4.344a2 2 0 0 1 1.414.586L17 18c.5.5 1 1 2 1a3 3 0 0 0 3-3c0-1.545-.604-6.584-.685-7.258-.007-.05-.011-.1-.017-.151A4 4 0 0 0 17.32 5z",key:"mfqc10"}]]);const Cg=i("gamepad-directional",[["path",{d:"M11.146 15.854a1.207 1.207 0 0 1 1.708 0l1.56 1.56A2 2 0 0 1 15 18.828V21a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-2.172a2 2 0 0 1 .586-1.414z",key:"1re2og"}],["path",{d:"M18.828 15a2 2 0 0 1-1.414-.586l-1.56-1.56a1.207 1.207 0 0 1 0-1.708l1.56-1.56A2 2 0 0 1 18.828 9H21a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1z",key:"1pchrj"}],["path",{d:"M6.586 14.414A2 2 0 0 1 5.172 15H3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h2.172a2 2 0 0 1 1.414.586l1.56 1.56a1.207 1.207 0 0 1 0 1.708z",key:"16mt4c"}],["path",{d:"M9 3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2.172a2 2 0 0 1-.586 1.414l-1.56 1.56a1.207 1.207 0 0 1-1.708 0l-1.56-1.56A2 2 0 0 1 9 5.172z",key:"19ox6c"}]]);const $g=i("gamepad",[["line",{x1:"6",x2:"10",y1:"12",y2:"12",key:"161bw2"}],["line",{x1:"8",x2:"8",y1:"10",y2:"14",key:"1i6ji0"}],["line",{x1:"15",x2:"15.01",y1:"13",y2:"13",key:"dqpgro"}],["line",{x1:"18",x2:"18.01",y1:"11",y2:"11",key:"meh2c"}],["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2",key:"9lu3g6"}]]);const Sg=i("gauge",[["path",{d:"m12 14 4-4",key:"9kzdfg"}],["path",{d:"M3.34 19a10 10 0 1 1 17.32 0",key:"19p75a"}]]);const Lg=i("gem",[["path",{d:"M10.5 3 8 9l4 13 4-13-2.5-6",key:"b3dvk1"}],["path",{d:"M17 3a2 2 0 0 1 1.6.8l3 4a2 2 0 0 1 .013 2.382l-7.99 10.986a2 2 0 0 1-3.247 0l-7.99-10.986A2 2 0 0 1 2.4 7.8l2.998-3.997A2 2 0 0 1 7 3z",key:"7w4byz"}],["path",{d:"M2 9h20",key:"16fsjt"}]]);const Ig=i("gavel",[["path",{d:"m14 13-8.381 8.38a1 1 0 0 1-3.001-3l8.384-8.381",key:"pgg06f"}],["path",{d:"m16 16 6-6",key:"vzrcl6"}],["path",{d:"m21.5 10.5-8-8",key:"a17d9x"}],["path",{d:"m8 8 6-6",key:"18bi4p"}],["path",{d:"m8.5 7.5 8 8",key:"1oyaui"}]]);const Ag=i("ghost",[["path",{d:"M9 10h.01",key:"qbtxuw"}],["path",{d:"M15 10h.01",key:"1qmjsl"}],["path",{d:"M12 2a8 8 0 0 0-8 8v12l3-3 2.5 2.5L12 19l2.5 2.5L17 19l3 3V10a8 8 0 0 0-8-8z",key:"uwwb07"}]]);const Pg=i("georgian-lari",[["path",{d:"M11.5 21a7.5 7.5 0 1 1 7.35-9",key:"1gyj8k"}],["path",{d:"M13 12V3",key:"18om2a"}],["path",{d:"M4 21h16",key:"1h09gz"}],["path",{d:"M9 12V3",key:"geutu0"}]]);const Tg=i("gift",[["rect",{x:"3",y:"8",width:"18",height:"4",rx:"1",key:"bkv52"}],["path",{d:"M12 8v13",key:"1c76mn"}],["path",{d:"M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7",key:"6wjy6b"}],["path",{d:"M7.5 8a2.5 2.5 0 0 1 0-5A4.8 8 0 0 1 12 8a4.8 8 0 0 1 4.5-5 2.5 2.5 0 0 1 0 5",key:"1ihvrl"}]]);const Dg=i("git-branch-minus",[["path",{d:"M15 6a9 9 0 0 0-9 9V3",key:"1cii5b"}],["path",{d:"M21 18h-6",key:"139f0c"}],["circle",{cx:"18",cy:"6",r:"3",key:"1h7g24"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}]]);const Eg=i("git-branch-plus",[["path",{d:"M6 3v12",key:"qpgusn"}],["path",{d:"M18 9a3 3 0 1 0 0-6 3 3 0 0 0 0 6z",key:"1d02ji"}],["path",{d:"M6 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6z",key:"chk6ph"}],["path",{d:"M15 6a9 9 0 0 0-9 9",key:"or332x"}],["path",{d:"M18 15v6",key:"9wciyi"}],["path",{d:"M21 18h-6",key:"139f0c"}]]);const zg=i("git-branch",[["line",{x1:"6",x2:"6",y1:"3",y2:"15",key:"17qcm7"}],["circle",{cx:"18",cy:"6",r:"3",key:"1h7g24"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}],["path",{d:"M18 9a9 9 0 0 1-9 9",key:"n2h4wq"}]]);const kr=i("git-commit-horizontal",[["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["line",{x1:"3",x2:"9",y1:"12",y2:"12",key:"1dyftd"}],["line",{x1:"15",x2:"21",y1:"12",y2:"12",key:"oup4p8"}]]);const Og=i("git-commit-vertical",[["path",{d:"M12 3v6",key:"1holv5"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"M12 15v6",key:"a9ows0"}]]);const qg=i("git-compare-arrows",[["circle",{cx:"5",cy:"6",r:"3",key:"1qnov2"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v7",key:"1yj91y"}],["path",{d:"m15 9-3-3 3-3",key:"1lwv8l"}],["circle",{cx:"19",cy:"18",r:"3",key:"1qljk2"}],["path",{d:"M12 18H7a2 2 0 0 1-2-2V9",key:"16sdep"}],["path",{d:"m9 15 3 3-3 3",key:"1m3kbl"}]]);const jg=i("git-compare",[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7",key:"1yeb86"}],["path",{d:"M11 18H8a2 2 0 0 1-2-2V9",key:"19pyzm"}]]);const Hg=i("git-fork",[["circle",{cx:"12",cy:"18",r:"3",key:"1mpf1b"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["circle",{cx:"18",cy:"6",r:"3",key:"1h7g24"}],["path",{d:"M18 9v2c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1V9",key:"1uq4wg"}],["path",{d:"M12 12v3",key:"158kv8"}]]);const Vg=i("git-graph",[["circle",{cx:"5",cy:"6",r:"3",key:"1qnov2"}],["path",{d:"M5 9v6",key:"158jrl"}],["circle",{cx:"5",cy:"18",r:"3",key:"104gr9"}],["path",{d:"M12 3v18",key:"108xh3"}],["circle",{cx:"19",cy:"6",r:"3",key:"108a5v"}],["path",{d:"M16 15.7A9 9 0 0 0 19 9",key:"1e3vqb"}]]);const Fg=i("git-merge",[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M6 21V9a9 9 0 0 0 9 9",key:"7kw0sc"}]]);const Bg=i("git-pull-request-arrow",[["circle",{cx:"5",cy:"6",r:"3",key:"1qnov2"}],["path",{d:"M5 9v12",key:"ih889a"}],["circle",{cx:"19",cy:"18",r:"3",key:"1qljk2"}],["path",{d:"m15 9-3-3 3-3",key:"1lwv8l"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v7",key:"1yj91y"}]]);const Wg=i("git-pull-request-closed",[["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M6 9v12",key:"1sc30k"}],["path",{d:"m21 3-6 6",key:"16nqsk"}],["path",{d:"m21 9-6-6",key:"9j17rh"}],["path",{d:"M18 11.5V15",key:"65xf6f"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}]]);const Ug=i("git-pull-request-create-arrow",[["circle",{cx:"5",cy:"6",r:"3",key:"1qnov2"}],["path",{d:"M5 9v12",key:"ih889a"}],["path",{d:"m15 9-3-3 3-3",key:"1lwv8l"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v3",key:"1rbwk6"}],["path",{d:"M19 15v6",key:"10aioa"}],["path",{d:"M22 18h-6",key:"1d5gi5"}]]);const Rg=i("git-pull-request-create",[["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M6 9v12",key:"1sc30k"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v3",key:"1jb6z3"}],["path",{d:"M18 15v6",key:"9wciyi"}],["path",{d:"M21 18h-6",key:"139f0c"}]]);const Gg=i("git-pull-request-draft",[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M18 6V5",key:"1oao2s"}],["path",{d:"M18 11v-1",key:"11c8tz"}],["line",{x1:"6",x2:"6",y1:"9",y2:"21",key:"rroup"}]]);const Kg=i("git-pull-request",[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7",key:"1yeb86"}],["line",{x1:"6",x2:"6",y1:"9",y2:"21",key:"rroup"}]]);const Yg=i("github",[["path",{d:"M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4",key:"tonef"}],["path",{d:"M9 18c-4.51 2-5-2-7-2",key:"9comsn"}]]);const Xg=i("gitlab",[["path",{d:"m22 13.29-3.33-10a.42.42 0 0 0-.14-.18.38.38 0 0 0-.22-.11.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18l-2.26 6.67H8.32L6.1 3.26a.42.42 0 0 0-.1-.18.38.38 0 0 0-.26-.08.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18L2 13.29a.74.74 0 0 0 .27.83L12 21l9.69-6.88a.71.71 0 0 0 .31-.83Z",key:"148pdi"}]]);const Zg=i("glass-water",[["path",{d:"M5.116 4.104A1 1 0 0 1 6.11 3h11.78a1 1 0 0 1 .994 1.105L17.19 20.21A2 2 0 0 1 15.2 22H8.8a2 2 0 0 1-2-1.79z",key:"p55z4y"}],["path",{d:"M6 12a5 5 0 0 1 6 0 5 5 0 0 0 6 0",key:"mjntcy"}]]);const Qg=i("glasses",[["circle",{cx:"6",cy:"15",r:"4",key:"vux9w4"}],["circle",{cx:"18",cy:"15",r:"4",key:"18o8ve"}],["path",{d:"M14 15a2 2 0 0 0-2-2 2 2 0 0 0-2 2",key:"1ag4bs"}],["path",{d:"M2.5 13 5 7c.7-1.3 1.4-2 3-2",key:"1hm1gs"}],["path",{d:"M21.5 13 19 7c-.7-1.3-1.5-2-3-2",key:"1r31ai"}]]);const Jg=i("globe-lock",[["path",{d:"M15.686 15A14.5 14.5 0 0 1 12 22a14.5 14.5 0 0 1 0-20 10 10 0 1 0 9.542 13",key:"qkt0x6"}],["path",{d:"M2 12h8.5",key:"ovaggd"}],["path",{d:"M20 6V4a2 2 0 1 0-4 0v2",key:"1of5e8"}],["rect",{width:"8",height:"5",x:"14",y:"6",rx:"1",key:"1fmf51"}]]);const e4=i("globe-x",[["path",{d:"m16 3 5 5",key:"1husv6"}],["path",{d:"M2 12h20A10 10 0 1 1 12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 4-10",key:"46evmv"}],["path",{d:"m21 3-5 5",key:"1g5oa7"}]]);const t4=i("globe",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20",key:"13o1zl"}],["path",{d:"M2 12h20",key:"9i4pu4"}]]);const o4=i("gpu",[["path",{d:"M2 21V3",key:"1bzk4w"}],["path",{d:"M2 5h18a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2.26",key:"1d64pi"}],["path",{d:"M7 17v3a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-3",key:"5hbqbf"}],["circle",{cx:"16",cy:"11",r:"2",key:"qt15rb"}],["circle",{cx:"8",cy:"11",r:"2",key:"ssideg"}]]);const n4=i("goal",[["path",{d:"M12 13V2l8 4-8 4",key:"5wlwwj"}],["path",{d:"M20.561 10.222a9 9 0 1 1-12.55-5.29",key:"1c0wjv"}],["path",{d:"M8.002 9.997a5 5 0 1 0 8.9 2.02",key:"gb1g7m"}]]);const a4=i("graduation-cap",[["path",{d:"M21.42 10.922a1 1 0 0 0-.019-1.838L12.83 5.18a2 2 0 0 0-1.66 0L2.6 9.08a1 1 0 0 0 0 1.832l8.57 3.908a2 2 0 0 0 1.66 0z",key:"j76jl0"}],["path",{d:"M22 10v6",key:"1lu8f3"}],["path",{d:"M6 12.5V16a6 3 0 0 0 12 0v-3.5",key:"1r8lef"}]]);const r4=i("grape",[["path",{d:"M22 5V2l-5.89 5.89",key:"1eenpo"}],["circle",{cx:"16.6",cy:"15.89",r:"3",key:"xjtalx"}],["circle",{cx:"8.11",cy:"7.4",r:"3",key:"u2fv6i"}],["circle",{cx:"12.35",cy:"11.65",r:"3",key:"i6i8g7"}],["circle",{cx:"13.91",cy:"5.85",r:"3",key:"6ye0dv"}],["circle",{cx:"18.15",cy:"10.09",r:"3",key:"snx9no"}],["circle",{cx:"6.56",cy:"13.2",r:"3",key:"17x4xg"}],["circle",{cx:"10.8",cy:"17.44",r:"3",key:"1hogw9"}],["circle",{cx:"5",cy:"19",r:"3",key:"1sn6vo"}]]);const gr=i("grid-2x2-check",[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3",key:"11za1p"}],["path",{d:"m16 19 2 2 4-4",key:"1b14m6"}]]);const vr=i("grid-2x2-plus",[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3",key:"11za1p"}],["path",{d:"M16 19h6",key:"xwg31i"}],["path",{d:"M19 22v-6",key:"qhmiwi"}]]);const _r=i("grid-2x2-x",[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3",key:"11za1p"}],["path",{d:"m16 16 5 5",key:"8tpb07"}],["path",{d:"m16 21 5-5",key:"193jll"}]]);const br=i("grid-2x2",[["path",{d:"M12 3v18",key:"108xh3"}],["path",{d:"M3 12h18",key:"1i2n21"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]]);const i4=i("grid-3x2",[["path",{d:"M15 3v18",key:"14nvp0"}],["path",{d:"M3 12h18",key:"1i2n21"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]]);const Qt=i("grid-3x3",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"M15 3v18",key:"14nvp0"}]]);const c4=i("grip-horizontal",[["circle",{cx:"12",cy:"9",r:"1",key:"124mty"}],["circle",{cx:"19",cy:"9",r:"1",key:"1ruzo2"}],["circle",{cx:"5",cy:"9",r:"1",key:"1a8b28"}],["circle",{cx:"12",cy:"15",r:"1",key:"1e56xg"}],["circle",{cx:"19",cy:"15",r:"1",key:"1a92ep"}],["circle",{cx:"5",cy:"15",r:"1",key:"5r1jwy"}]]);const Jc=i("grip-vertical",[["circle",{cx:"9",cy:"12",r:"1",key:"1vctgf"}],["circle",{cx:"9",cy:"5",r:"1",key:"hp0tcf"}],["circle",{cx:"9",cy:"19",r:"1",key:"fkjjf6"}],["circle",{cx:"15",cy:"12",r:"1",key:"1tmaij"}],["circle",{cx:"15",cy:"5",r:"1",key:"19l28e"}],["circle",{cx:"15",cy:"19",r:"1",key:"f4zoj3"}]]);const s4=i("grip",[["circle",{cx:"12",cy:"5",r:"1",key:"gxeob9"}],["circle",{cx:"19",cy:"5",r:"1",key:"w8mnmm"}],["circle",{cx:"5",cy:"5",r:"1",key:"lttvr7"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"19",cy:"12",r:"1",key:"1wjl8i"}],["circle",{cx:"5",cy:"12",r:"1",key:"1pcz8c"}],["circle",{cx:"12",cy:"19",r:"1",key:"lyex9k"}],["circle",{cx:"19",cy:"19",r:"1",key:"shf9b7"}],["circle",{cx:"5",cy:"19",r:"1",key:"bfqh0e"}]]);const d4=i("group",[["path",{d:"M3 7V5c0-1.1.9-2 2-2h2",key:"adw53z"}],["path",{d:"M17 3h2c1.1 0 2 .9 2 2v2",key:"an4l38"}],["path",{d:"M21 17v2c0 1.1-.9 2-2 2h-2",key:"144t0e"}],["path",{d:"M7 21H5c-1.1 0-2-.9-2-2v-2",key:"rtnfgi"}],["rect",{width:"7",height:"5",x:"7",y:"7",rx:"1",key:"1eyiv7"}],["rect",{width:"7",height:"5",x:"10",y:"12",rx:"1",key:"1qlmkx"}]]);const l4=i("guitar",[["path",{d:"m11.9 12.1 4.514-4.514",key:"109xqo"}],["path",{d:"M20.1 2.3a1 1 0 0 0-1.4 0l-1.114 1.114A2 2 0 0 0 17 4.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 17.828 7h1.344a2 2 0 0 0 1.414-.586L21.7 5.3a1 1 0 0 0 0-1.4z",key:"txyc8t"}],["path",{d:"m6 16 2 2",key:"16qmzd"}],["path",{d:"M8.23 9.85A3 3 0 0 1 11 8a5 5 0 0 1 5 5 3 3 0 0 1-1.85 2.77l-.92.38A2 2 0 0 0 12 18a4 4 0 0 1-4 4 6 6 0 0 1-6-6 4 4 0 0 1 4-4 2 2 0 0 0 1.85-1.23z",key:"1de1vg"}]]);const u4=i("ham",[["path",{d:"M13.144 21.144A7.274 10.445 45 1 0 2.856 10.856",key:"1k1t7q"}],["path",{d:"M13.144 21.144A7.274 4.365 45 0 0 2.856 10.856a7.274 4.365 45 0 0 10.288 10.288",key:"153t1g"}],["path",{d:"M16.565 10.435 18.6 8.4a2.501 2.501 0 1 0 1.65-4.65 2.5 2.5 0 1 0-4.66 1.66l-2.024 2.025",key:"gzrt0n"}],["path",{d:"m8.5 16.5-1-1",key:"otr954"}]]);const h4=i("hamburger",[["path",{d:"M12 16H4a2 2 0 1 1 0-4h16a2 2 0 1 1 0 4h-4.25",key:"5dloqd"}],["path",{d:"M5 12a2 2 0 0 1-2-2 9 7 0 0 1 18 0 2 2 0 0 1-2 2",key:"1vl3my"}],["path",{d:"M5 16a2 2 0 0 0-2 2 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 2 2 0 0 0-2-2q0 0 0 0",key:"1us75o"}],["path",{d:"m6.67 12 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2",key:"qqzweh"}]]);const p4=i("hammer",[["path",{d:"m15 12-9.373 9.373a1 1 0 0 1-3.001-3L12 9",key:"1hayfq"}],["path",{d:"m18 15 4-4",key:"16gjal"}],["path",{d:"m21.5 11.5-1.914-1.914A2 2 0 0 1 19 8.172v-.344a2 2 0 0 0-.586-1.414l-1.657-1.657A6 6 0 0 0 12.516 3H9l1.243 1.243A6 6 0 0 1 12 8.485V10l2 2h1.172a2 2 0 0 1 1.414.586L18.5 14.5",key:"15ts47"}]]);const y4=i("hand-coins",[["path",{d:"M11 15h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 17",key:"geh8rc"}],["path",{d:"m7 21 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9",key:"1fto5m"}],["path",{d:"m2 16 6 6",key:"1pfhp9"}],["circle",{cx:"16",cy:"9",r:"2.9",key:"1n0dlu"}],["circle",{cx:"6",cy:"5",r:"3",key:"151irh"}]]);const f4=i("hand-fist",[["path",{d:"M12.035 17.012a3 3 0 0 0-3-3l-.311-.002a.72.72 0 0 1-.505-1.229l1.195-1.195A2 2 0 0 1 10.828 11H12a2 2 0 0 0 0-4H9.243a3 3 0 0 0-2.122.879l-2.707 2.707A4.83 4.83 0 0 0 3 14a8 8 0 0 0 8 8h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v2a2 2 0 1 0 4 0",key:"1ff7rl"}],["path",{d:"M13.888 9.662A2 2 0 0 0 17 8V5A2 2 0 1 0 13 5",key:"1xmd21"}],["path",{d:"M9 5A2 2 0 1 0 5 5V10",key:"f3wfjw"}],["path",{d:"M9 7V4A2 2 0 1 1 13 4V7.268",key:"eaoucv"}]]);const Mr=i("hand-grab",[["path",{d:"M18 11.5V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4",key:"edstyy"}],["path",{d:"M14 10V8a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2",key:"19wdwo"}],["path",{d:"M10 9.9V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v5",key:"1lugqo"}],["path",{d:"M6 14a2 2 0 0 0-2-2a2 2 0 0 0-2 2",key:"1hbeus"}],["path",{d:"M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-4a8 8 0 0 1-8-8 2 2 0 1 1 4 0",key:"1etffm"}]]);const m4=i("hand-heart",[["path",{d:"M11 14h2a2 2 0 0 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 16",key:"1v1a37"}],["path",{d:"m14.45 13.39 5.05-4.694C20.196 8 21 6.85 21 5.75a2.75 2.75 0 0 0-4.797-1.837.276.276 0 0 1-.406 0A2.75 2.75 0 0 0 11 5.75c0 1.2.802 2.248 1.5 2.946L16 11.95",key:"fhfbnt"}],["path",{d:"m2 15 6 6",key:"10dquu"}],["path",{d:"m7 20 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a1 1 0 0 0-2.75-2.91",key:"1x6kdw"}]]);const wr=i("hand-helping",[["path",{d:"M11 12h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 14",key:"1j4xps"}],["path",{d:"m7 18 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9",key:"uospg8"}],["path",{d:"m2 13 6 6",key:"16e5sb"}]]);const k4=i("hand-metal",[["path",{d:"M18 12.5V10a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4",key:"wc6myp"}],["path",{d:"M14 11V9a2 2 0 1 0-4 0v2",key:"94qvcw"}],["path",{d:"M10 10.5V5a2 2 0 1 0-4 0v9",key:"m1ah89"}],["path",{d:"m7 15-1.76-1.76a2 2 0 0 0-2.83 2.82l3.6 3.6C7.5 21.14 9.2 22 12 22h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v5",key:"t1skq1"}]]);const g4=i("hand-platter",[["path",{d:"M12 3V2",key:"ar7q03"}],["path",{d:"m15.4 17.4 3.2-2.8a2 2 0 1 1 2.8 2.9l-3.6 3.3c-.7.8-1.7 1.2-2.8 1.2h-4c-1.1 0-2.1-.4-2.8-1.2l-1.302-1.464A1 1 0 0 0 6.151 19H5",key:"n2g93r"}],["path",{d:"M2 14h12a2 2 0 0 1 0 4h-2",key:"1o2jem"}],["path",{d:"M4 10h16",key:"img6z1"}],["path",{d:"M5 10a7 7 0 0 1 14 0",key:"1ega1o"}],["path",{d:"M5 14v6a1 1 0 0 1-1 1H2",key:"1hescx"}]]);const v4=i("hand",[["path",{d:"M18 11V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2",key:"1fvzgz"}],["path",{d:"M14 10V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2",key:"1kc0my"}],["path",{d:"M10 10.5V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2v8",key:"10h0bg"}],["path",{d:"M18 8a2 2 0 1 1 4 0v6a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15",key:"1s1gnw"}]]);const _4=i("handbag",[["path",{d:"M2.048 18.566A2 2 0 0 0 4 21h16a2 2 0 0 0 1.952-2.434l-2-9A2 2 0 0 0 18 8H6a2 2 0 0 0-1.952 1.566z",key:"1qbui5"}],["path",{d:"M8 11V6a4 4 0 0 1 8 0v5",key:"tcht90"}]]);const b4=i("handshake",[["path",{d:"m11 17 2 2a1 1 0 1 0 3-3",key:"efffak"}],["path",{d:"m14 14 2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4",key:"9pr0kb"}],["path",{d:"m21 3 1 11h-2",key:"1tisrp"}],["path",{d:"M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3",key:"1uvwmv"}],["path",{d:"M3 4h8",key:"1ep09j"}]]);const M4=i("hard-drive-download",[["path",{d:"M12 2v8",key:"1q4o3n"}],["path",{d:"m16 6-4 4-4-4",key:"6wukr"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",key:"w68u3i"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"M10 18h.01",key:"h775k"}]]);const w4=i("hard-drive-upload",[["path",{d:"m16 6-4-4-4 4",key:"13yo43"}],["path",{d:"M12 2v8",key:"1q4o3n"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",key:"w68u3i"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"M10 18h.01",key:"h775k"}]]);const x4=i("hard-hat",[["path",{d:"M10 10V5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v5",key:"1p9q5i"}],["path",{d:"M14 6a6 6 0 0 1 6 6v3",key:"1hnv84"}],["path",{d:"M4 15v-3a6 6 0 0 1 6-6",key:"9ciidu"}],["rect",{x:"2",y:"15",width:"20",height:"4",rx:"1",key:"g3x8cw"}]]);const N4=i("hard-drive",[["line",{x1:"22",x2:"2",y1:"12",y2:"12",key:"1y58io"}],["path",{d:"M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z",key:"oot6mr"}],["line",{x1:"6",x2:"6.01",y1:"16",y2:"16",key:"sgf278"}],["line",{x1:"10",x2:"10.01",y1:"16",y2:"16",key:"1l4acy"}]]);const C4=i("hash",[["line",{x1:"4",x2:"20",y1:"9",y2:"9",key:"4lhtct"}],["line",{x1:"4",x2:"20",y1:"15",y2:"15",key:"vyu0kd"}],["line",{x1:"10",x2:"8",y1:"3",y2:"21",key:"1ggp8o"}],["line",{x1:"16",x2:"14",y1:"3",y2:"21",key:"weycgp"}]]);const $4=i("hat-glasses",[["path",{d:"M14 18a2 2 0 0 0-4 0",key:"1v8fkw"}],["path",{d:"m19 11-2.11-6.657a2 2 0 0 0-2.752-1.148l-1.276.61A2 2 0 0 1 12 4H8.5a2 2 0 0 0-1.925 1.456L5 11",key:"1fkr7p"}],["path",{d:"M2 11h20",key:"3eubbj"}],["circle",{cx:"17",cy:"18",r:"3",key:"82mm0e"}],["circle",{cx:"7",cy:"18",r:"3",key:"lvkj7j"}]]);const S4=i("haze",[["path",{d:"m5.2 6.2 1.4 1.4",key:"17imol"}],["path",{d:"M2 13h2",key:"13gyu8"}],["path",{d:"M20 13h2",key:"16rner"}],["path",{d:"m17.4 7.6 1.4-1.4",key:"t4xlah"}],["path",{d:"M22 17H2",key:"1gtaj3"}],["path",{d:"M22 21H2",key:"1gy6en"}],["path",{d:"M16 13a4 4 0 0 0-8 0",key:"1dyczq"}],["path",{d:"M12 5V2.5",key:"1vytko"}]]);const L4=i("hd",[["path",{d:"M10 12H6",key:"15f2ro"}],["path",{d:"M10 15V9",key:"1lckn7"}],["path",{d:"M14 14.5a.5.5 0 0 0 .5.5h1a2.5 2.5 0 0 0 2.5-2.5v-1A2.5 2.5 0 0 0 15.5 9h-1a.5.5 0 0 0-.5.5z",key:"b3f847"}],["path",{d:"M6 15V9",key:"12stmj"}],["rect",{x:"2",y:"5",width:"20",height:"14",rx:"2",key:"qneu4z"}]]);const I4=i("hdmi-port",[["path",{d:"M22 9a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h1l2 2h12l2-2h1a1 1 0 0 0 1-1Z",key:"2128wb"}],["path",{d:"M7.5 12h9",key:"1t0ckc"}]]);const A4=i("heading-1",[["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"m17 12 3-2v8",key:"1hhhft"}]]);const P4=i("heading-2",[["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1",key:"9jr5yi"}]]);const T4=i("heading-3",[["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"M17.5 10.5c1.7-1 3.5 0 3.5 1.5a2 2 0 0 1-2 2",key:"68ncm8"}],["path",{d:"M17 17.5c2 1.5 4 .3 4-1.5a2 2 0 0 0-2-2",key:"1ejuhz"}]]);const D4=i("heading-4",[["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"M17 10v3a1 1 0 0 0 1 1h3",key:"tj5zdr"}],["path",{d:"M21 10v8",key:"1kdml4"}],["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}]]);const E4=i("heading-5",[["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"M17 13v-3h4",key:"1nvgqp"}],["path",{d:"M17 17.7c.4.2.8.3 1.3.3 1.5 0 2.7-1.1 2.7-2.5S19.8 13 18.3 13H17",key:"2nebdn"}]]);const z4=i("heading-6",[["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["circle",{cx:"19",cy:"16",r:"2",key:"15mx69"}],["path",{d:"M20 10c-2 2-3 3.5-3 6",key:"f35dl0"}]]);const O4=i("heading",[["path",{d:"M6 12h12",key:"8npq4p"}],["path",{d:"M6 20V4",key:"1w1bmo"}],["path",{d:"M18 20V4",key:"o2hl4u"}]]);const q4=i("headphone-off",[["path",{d:"M21 14h-1.343",key:"1jdnxi"}],["path",{d:"M9.128 3.47A9 9 0 0 1 21 12v3.343",key:"6kipu2"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M20.414 20.414A2 2 0 0 1 19 21h-1a2 2 0 0 1-2-2v-3",key:"9x50f4"}],["path",{d:"M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 2.636-6.364",key:"1bkxnm"}]]);const j4=i("headphones",[["path",{d:"M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 18 0v7a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3",key:"1xhozi"}]]);const H4=i("headset",[["path",{d:"M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z",key:"12oyoe"}],["path",{d:"M21 16v2a4 4 0 0 1-4 4h-5",key:"1x7m43"}]]);const V4=i("heart-crack",[["path",{d:"M12.409 5.824c-.702.792-1.15 1.496-1.415 2.166l2.153 2.156a.5.5 0 0 1 0 .707l-2.293 2.293a.5.5 0 0 0 0 .707L12 15",key:"idzbju"}],["path",{d:"M13.508 20.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.677.6.6 0 0 0 .818.001A5.5 5.5 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5z",key:"1su70f"}]]);const F4=i("heart-handshake",[["path",{d:"M19.414 14.414C21 12.828 22 11.5 22 9.5a5.5 5.5 0 0 0-9.591-3.676.6.6 0 0 1-.818.001A5.5 5.5 0 0 0 2 9.5c0 2.3 1.5 4 3 5.5l5.535 5.362a2 2 0 0 0 2.879.052 2.12 2.12 0 0 0-.004-3 2.124 2.124 0 1 0 3-3 2.124 2.124 0 0 0 3.004 0 2 2 0 0 0 0-2.828l-1.881-1.882a2.41 2.41 0 0 0-3.409 0l-1.71 1.71a2 2 0 0 1-2.828 0 2 2 0 0 1 0-2.828l2.823-2.762",key:"17lmqv"}]]);const B4=i("heart-minus",[["path",{d:"m14.876 18.99-1.368 1.323a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5a5.2 5.2 0 0 1-.244 1.572",key:"15yztm"}],["path",{d:"M15 15h6",key:"1u4692"}]]);const W4=i("heart-off",[["path",{d:"M10.5 4.893a5.5 5.5 0 0 1 1.091.931.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 1.872-1.002 3.356-2.187 4.655",key:"1inpfl"}],["path",{d:"m16.967 16.967-3.459 3.346a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 2.747-4.761",key:"vbc6x7"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const U4=i("heart-plus",[["path",{d:"m14.479 19.374-.971.939a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5a5.2 5.2 0 0 1-.219 1.49",key:"wg5jx"}],["path",{d:"M15 15h6",key:"1u4692"}],["path",{d:"M18 12v6",key:"1houu1"}]]);const R4=i("heart-pulse",[["path",{d:"M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5",key:"mvr1a0"}],["path",{d:"M3.22 13H9.5l.5-1 2 4.5 2-7 1.5 3.5h5.27",key:"auskq0"}]]);const G4=i("heart",[["path",{d:"M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5",key:"mvr1a0"}]]);const K4=i("heater",[["path",{d:"M11 8c2-3-2-3 0-6",key:"1ldv5m"}],["path",{d:"M15.5 8c2-3-2-3 0-6",key:"1otqoz"}],["path",{d:"M6 10h.01",key:"1lbq93"}],["path",{d:"M6 14h.01",key:"zudwn7"}],["path",{d:"M10 16v-4",key:"1c25yv"}],["path",{d:"M14 16v-4",key:"1dkbt8"}],["path",{d:"M18 16v-4",key:"1yg9me"}],["path",{d:"M20 6a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3",key:"1ubg90"}],["path",{d:"M5 20v2",key:"1abpe8"}],["path",{d:"M19 20v2",key:"kqn6ft"}]]);const Y4=i("helicopter",[["path",{d:"M11 17v4",key:"14wq8k"}],["path",{d:"M14 3v8a2 2 0 0 0 2 2h5.865",key:"12oo5h"}],["path",{d:"M17 17v4",key:"hdt4hh"}],["path",{d:"M18 17a4 4 0 0 0 4-4 8 6 0 0 0-8-6 6 5 0 0 0-6 5v3a2 2 0 0 0 2 2z",key:"yynif"}],["path",{d:"M2 10v5",key:"sa5akn"}],["path",{d:"M6 3h16",key:"27qw71"}],["path",{d:"M7 21h14",key:"1ugz0u"}],["path",{d:"M8 13H2",key:"1thz1o"}]]);const X4=i("hexagon",[["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z",key:"yt0hxn"}]]);const Z4=i("highlighter",[["path",{d:"m9 11-6 6v3h9l3-3",key:"1a3l36"}],["path",{d:"m22 12-4.6 4.6a2 2 0 0 1-2.8 0l-5.2-5.2a2 2 0 0 1 0-2.8L14 4",key:"14a9rk"}]]);const Q4=i("history",[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}],["path",{d:"M12 7v5l4 2",key:"1fdv2h"}]]);const J4=i("hop-off",[["path",{d:"M10.82 16.12c1.69.6 3.91.79 5.18.85.28.01.53-.09.7-.27",key:"qyzcap"}],["path",{d:"M11.14 20.57c.52.24 2.44 1.12 4.08 1.37.46.06.86-.25.9-.71.12-1.52-.3-3.43-.5-4.28",key:"y078lb"}],["path",{d:"M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .7-.26",key:"1utre3"}],["path",{d:"M17.99 5.52a20.83 20.83 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-1.17.1-2.5.02-3.9-.25",key:"17o9hm"}],["path",{d:"M20.57 11.14c.24.52 1.12 2.44 1.37 4.08.04.3-.08.59-.31.75",key:"1d1n4p"}],["path",{d:"M4.93 4.93a10 10 0 0 0-.67 13.4c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.85.85 0 0 0 .48-.24",key:"9uv3tt"}],["path",{d:"M5.52 17.99c1.05.95 2.91 2.42 4.5 3.15a.8.8 0 0 0 1.13-.68c.2-2.34-.33-5.3-1.57-8.28",key:"1292wz"}],["path",{d:"M8.35 2.68a10 10 0 0 1 9.98 1.58c.43.35.4.96-.12 1.17-1.5.6-4.3.98-6.07 1.05",key:"7ozu9p"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const e5=i("hop",[["path",{d:"M10.82 16.12c1.69.6 3.91.79 5.18.85.55.03 1-.42.97-.97-.06-1.27-.26-3.5-.85-5.18",key:"18lxf1"}],["path",{d:"M11.5 6.5c1.64 0 5-.38 6.71-1.07.52-.2.55-.82.12-1.17A10 10 0 0 0 4.26 18.33c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.88.88 0 0 0 .73-.74c.3-2.14-.15-3.5-.61-4.88",key:"vtfxrw"}],["path",{d:"M15.62 16.95c.2.85.62 2.76.5 4.28a.77.77 0 0 1-.9.7 16.64 16.64 0 0 1-4.08-1.36",key:"13hl71"}],["path",{d:"M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .96-.96 17.68 17.68 0 0 0-.9-4.87",key:"1sl8oj"}],["path",{d:"M16.94 15.62c.86.2 2.77.62 4.29.5a.77.77 0 0 0 .7-.9 16.64 16.64 0 0 0-1.36-4.08",key:"19c6kt"}],["path",{d:"M17.99 5.52a20.82 20.82 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-2.33.2-5.3-.32-8.27-1.57",key:"85ghs3"}],["path",{d:"M4.93 4.93 3 3a.7.7 0 0 1 0-1",key:"x087yj"}],["path",{d:"M9.58 12.18c1.24 2.98 1.77 5.95 1.57 8.28a.8.8 0 0 1-1.13.68 20.82 20.82 0 0 1-4.5-3.15",key:"11xdqo"}]]);const t5=i("hospital",[["path",{d:"M12 7v4",key:"xawao1"}],["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3",key:"1rgiei"}],["path",{d:"M14 9h-4",key:"1w2s2s"}],["path",{d:"M18 11h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2h2",key:"1tthqt"}],["path",{d:"M18 21V5a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16",key:"dw4p4i"}]]);const o5=i("hotel",[["path",{d:"M10 22v-6.57",key:"1wmca3"}],["path",{d:"M12 11h.01",key:"z322tv"}],["path",{d:"M12 7h.01",key:"1ivr5q"}],["path",{d:"M14 15.43V22",key:"1q2vjd"}],["path",{d:"M15 16a5 5 0 0 0-6 0",key:"o9wqvi"}],["path",{d:"M16 11h.01",key:"xkw8gn"}],["path",{d:"M16 7h.01",key:"1kdx03"}],["path",{d:"M8 11h.01",key:"1dfujw"}],["path",{d:"M8 7h.01",key:"1vti4s"}],["rect",{x:"4",y:"2",width:"16",height:"20",rx:"2",key:"1uxh74"}]]);const n5=i("hourglass",[["path",{d:"M5 22h14",key:"ehvnwv"}],["path",{d:"M5 2h14",key:"pdyrp9"}],["path",{d:"M17 22v-4.172a2 2 0 0 0-.586-1.414L12 12l-4.414 4.414A2 2 0 0 0 7 17.828V22",key:"1d314k"}],["path",{d:"M7 2v4.172a2 2 0 0 0 .586 1.414L12 12l4.414-4.414A2 2 0 0 0 17 6.172V2",key:"1vvvr6"}]]);const a5=i("house-heart",[["path",{d:"M8.62 13.8A2.25 2.25 0 1 1 12 10.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z",key:"n9s7kx"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z",key:"r6nss1"}]]);const r5=i("house-plug",[["path",{d:"M10 12V8.964",key:"1vll13"}],["path",{d:"M14 12V8.964",key:"1x3qvg"}],["path",{d:"M15 12a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-2a1 1 0 0 1 1-1z",key:"ppykja"}],["path",{d:"M8.5 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-2",key:"365xoy"}]]);const i5=i("house-plus",[["path",{d:"M12.35 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .71-1.53l7-6a2 2 0 0 1 2.58 0l7 6A2 2 0 0 1 21 10v2.35",key:"8ek5ge"}],["path",{d:"M14.8 12.4A1 1 0 0 0 14 12h-4a1 1 0 0 0-1 1v8",key:"1rbg29"}],["path",{d:"M15 18h6",key:"3b3c90"}],["path",{d:"M18 15v6",key:"9wciyi"}]]);const c5=i("house-wifi",[["path",{d:"M9.5 13.866a4 4 0 0 1 5 .01",key:"1wy54i"}],["path",{d:"M12 17h.01",key:"p32p05"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z",key:"r6nss1"}],["path",{d:"M7 10.754a8 8 0 0 1 10 0",key:"exoy2g"}]]);const xr=i("house",[["path",{d:"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8",key:"5wwlr5"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z",key:"r6nss1"}]]);const Nr=i("ice-cream-bowl",[["path",{d:"M12 17c5 0 8-2.69 8-6H4c0 3.31 3 6 8 6m-4 4h8m-4-3v3M5.14 11a3.5 3.5 0 1 1 6.71 0",key:"1uxfcu"}],["path",{d:"M12.14 11a3.5 3.5 0 1 1 6.71 0",key:"4k3m1s"}],["path",{d:"M15.5 6.5a3.5 3.5 0 1 0-7 0",key:"zmuahr"}]]);const Cr=i("ice-cream-cone",[["path",{d:"m7 11 4.08 10.35a1 1 0 0 0 1.84 0L17 11",key:"1v6356"}],["path",{d:"M17 7A5 5 0 0 0 7 7",key:"151p3v"}],["path",{d:"M17 7a2 2 0 0 1 0 4H7a2 2 0 0 1 0-4",key:"1sdaij"}]]);const s5=i("id-card-lanyard",[["path",{d:"M13.5 8h-3",key:"xvov4w"}],["path",{d:"m15 2-1 2h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h3",key:"16uttc"}],["path",{d:"M16.899 22A5 5 0 0 0 7.1 22",key:"1d0ppr"}],["path",{d:"m9 2 3 6",key:"1o7bd9"}],["circle",{cx:"12",cy:"15",r:"3",key:"g36mzq"}]]);const d5=i("id-card",[["path",{d:"M16 10h2",key:"8sgtl7"}],["path",{d:"M16 14h2",key:"epxaof"}],["path",{d:"M6.17 15a3 3 0 0 1 5.66 0",key:"n6f512"}],["circle",{cx:"9",cy:"11",r:"2",key:"yxgjnd"}],["rect",{x:"2",y:"5",width:"20",height:"14",rx:"2",key:"qneu4z"}]]);const l5=i("image-down",[["path",{d:"M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21",key:"9csbqa"}],["path",{d:"m14 19 3 3v-5.5",key:"9ldu5r"}],["path",{d:"m17 22 3-3",key:"1nkfve"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}]]);const u5=i("image-minus",[["path",{d:"M21 9v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7",key:"m87ecr"}],["line",{x1:"16",x2:"22",y1:"5",y2:"5",key:"ez7e4s"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21",key:"1xmnt7"}]]);const h5=i("image-off",[["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}],["path",{d:"M10.41 10.41a2 2 0 1 1-2.83-2.83",key:"1bzlo9"}],["line",{x1:"13.5",x2:"6",y1:"13.5",y2:"21",key:"1q0aeu"}],["line",{x1:"18",x2:"21",y1:"12",y2:"15",key:"5mozeu"}],["path",{d:"M3.59 3.59A1.99 1.99 0 0 0 3 5v14a2 2 0 0 0 2 2h14c.55 0 1.052-.22 1.41-.59",key:"mmje98"}],["path",{d:"M21 15V5a2 2 0 0 0-2-2H9",key:"43el77"}]]);const p5=i("image-play",[["path",{d:"M15 15.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z",key:"nrt1m3"}],["path",{d:"M21 12.17V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6",key:"99hgts"}],["path",{d:"m6 21 5-5",key:"1wyjai"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}]]);const y5=i("image-plus",[["path",{d:"M16 5h6",key:"1vod17"}],["path",{d:"M19 2v6",key:"4bpg5p"}],["path",{d:"M21 11.5V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7.5",key:"1ue2ih"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21",key:"1xmnt7"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}]]);const f5=i("image-up",[["path",{d:"M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21",key:"9csbqa"}],["path",{d:"m14 19.5 3-3 3 3",key:"9vmjn0"}],["path",{d:"M17 22v-5.5",key:"1aa6fl"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}]]);const m5=i("image-upscale",[["path",{d:"M16 3h5v5",key:"1806ms"}],["path",{d:"M17 21h2a2 2 0 0 0 2-2",key:"130fy9"}],["path",{d:"M21 12v3",key:"1wzk3p"}],["path",{d:"m21 3-5 5",key:"1g5oa7"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2",key:"kk3yz1"}],["path",{d:"m5 21 4.144-4.144a1.21 1.21 0 0 1 1.712 0L13 19",key:"fyekpt"}],["path",{d:"M9 3h3",key:"d52fa"}],["rect",{x:"3",y:"11",width:"10",height:"10",rx:"1",key:"1wpmix"}]]);const k5=i("image",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21",key:"1xmnt7"}]]);const Js=i("images",[["path",{d:"m22 11-1.296-1.296a2.4 2.4 0 0 0-3.408 0L11 16",key:"9kzy35"}],["path",{d:"M4 8a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2",key:"1t0f0t"}],["circle",{cx:"13",cy:"7",r:"1",fill:"currentColor",key:"1obus6"}],["rect",{x:"8",y:"2",width:"14",height:"14",rx:"2",key:"1gvhby"}]]);const g5=i("import",[["path",{d:"M12 3v12",key:"1x0j5s"}],["path",{d:"m8 11 4 4 4-4",key:"1dohi6"}],["path",{d:"M8 5H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-4",key:"1ywtjm"}]]);const ed=i("inbox",[["polyline",{points:"22 12 16 12 14 15 10 15 8 12 2 12",key:"o97t9d"}],["path",{d:"M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z",key:"oot6mr"}]]);const v5=i("indian-rupee",[["path",{d:"M6 3h12",key:"ggurg9"}],["path",{d:"M6 8h12",key:"6g4wlu"}],["path",{d:"m6 13 8.5 8",key:"u1kupk"}],["path",{d:"M6 13h3",key:"wdp6ag"}],["path",{d:"M9 13c6.667 0 6.667-10 0-10",key:"1nkvk2"}]]);const _5=i("infinity",[["path",{d:"M6 16c5 0 7-8 12-8a4 4 0 0 1 0 8c-5 0-7-8-12-8a4 4 0 1 0 0 8",key:"18ogeb"}]]);const td=i("info",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]]);const b5=i("inspection-panel",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 7h.01",key:"7u93v4"}],["path",{d:"M17 7h.01",key:"14a9sn"}],["path",{d:"M7 17h.01",key:"19xn7k"}],["path",{d:"M17 17h.01",key:"1sd3ek"}]]);const M5=i("instagram",[["rect",{width:"20",height:"20",x:"2",y:"2",rx:"5",ry:"5",key:"2e1cvw"}],["path",{d:"M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z",key:"9exkf1"}],["line",{x1:"17.5",x2:"17.51",y1:"6.5",y2:"6.5",key:"r4j83e"}]]);const w5=i("italic",[["line",{x1:"19",x2:"10",y1:"4",y2:"4",key:"15jd3p"}],["line",{x1:"14",x2:"5",y1:"20",y2:"20",key:"bu0au3"}],["line",{x1:"15",x2:"9",y1:"4",y2:"20",key:"uljnxc"}]]);const x5=i("iteration-ccw",[["path",{d:"m16 14 4 4-4 4",key:"hkso8o"}],["path",{d:"M20 10a8 8 0 1 0-8 8h8",key:"1bik7b"}]]);const N5=i("iteration-cw",[["path",{d:"M4 10a8 8 0 1 1 8 8H4",key:"svv66n"}],["path",{d:"m8 22-4-4 4-4",key:"6g7gki"}]]);const C5=i("japanese-yen",[["path",{d:"M12 9.5V21m0-11.5L6 3m6 6.5L18 3",key:"2ej80x"}],["path",{d:"M6 15h12",key:"1hwgt5"}],["path",{d:"M6 11h12",key:"wf4gp6"}]]);const $5=i("joystick",[["path",{d:"M21 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2Z",key:"jg2n2t"}],["path",{d:"M6 15v-2",key:"gd6mvg"}],["path",{d:"M12 15V9",key:"8c7uyn"}],["circle",{cx:"12",cy:"6",r:"3",key:"1gm2ql"}]]);const S5=i("kanban",[["path",{d:"M5 3v14",key:"9nsxs2"}],["path",{d:"M12 3v8",key:"1h2ygw"}],["path",{d:"M19 3v18",key:"1sk56x"}]]);const L5=i("kayak",[["path",{d:"M18 17a1 1 0 0 0-1 1v1a2 2 0 1 0 2-2z",key:"skzb1g"}],["path",{d:"M20.97 3.61a.45.45 0 0 0-.58-.58C10.2 6.6 6.6 10.2 3.03 20.39a.45.45 0 0 0 .58.58C13.8 17.4 17.4 13.8 20.97 3.61",key:"cv9jm7"}],["path",{d:"m6.707 6.707 10.586 10.586",key:"d2l993"}],["path",{d:"M7 5a2 2 0 1 0-2 2h1a1 1 0 0 0 1-1z",key:"i0et4n"}]]);const I5=i("key-round",[["path",{d:"M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z",key:"1s6t7t"}],["circle",{cx:"16.5",cy:"7.5",r:".5",fill:"currentColor",key:"w0ekpg"}]]);const A5=i("key-square",[["path",{d:"M12.4 2.7a2.5 2.5 0 0 1 3.4 0l5.5 5.5a2.5 2.5 0 0 1 0 3.4l-3.7 3.7a2.5 2.5 0 0 1-3.4 0L8.7 9.8a2.5 2.5 0 0 1 0-3.4z",key:"165ttr"}],["path",{d:"m14 7 3 3",key:"1r5n42"}],["path",{d:"m9.4 10.6-6.814 6.814A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814",key:"1ubxi2"}]]);const P5=i("key",[["path",{d:"m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4",key:"g0fldk"}],["path",{d:"m21 2-9.6 9.6",key:"1j0ho8"}],["circle",{cx:"7.5",cy:"15.5",r:"5.5",key:"yqb3hr"}]]);const T5=i("keyboard-music",[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M6 8h4",key:"utf9t1"}],["path",{d:"M14 8h.01",key:"1primd"}],["path",{d:"M18 8h.01",key:"emo2bl"}],["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"M6 12v4",key:"dy92yo"}],["path",{d:"M10 12v4",key:"1fxnav"}],["path",{d:"M14 12v4",key:"1hft58"}],["path",{d:"M18 12v4",key:"tjjnbz"}]]);const D5=i("keyboard-off",[["path",{d:"M 20 4 A2 2 0 0 1 22 6",key:"1g1fkt"}],["path",{d:"M 22 6 L 22 16.41",key:"1qjg3w"}],["path",{d:"M 7 16 L 16 16",key:"n0yqwb"}],["path",{d:"M 9.69 4 L 20 4",key:"kbpcgx"}],["path",{d:"M14 8h.01",key:"1primd"}],["path",{d:"M18 8h.01",key:"emo2bl"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2",key:"s23sx2"}],["path",{d:"M6 8h.01",key:"x9i8wu"}],["path",{d:"M8 12h.01",key:"czm47f"}]]);const E5=i("keyboard",[["path",{d:"M10 8h.01",key:"1r9ogq"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M14 8h.01",key:"1primd"}],["path",{d:"M16 12h.01",key:"1l6xoz"}],["path",{d:"M18 8h.01",key:"emo2bl"}],["path",{d:"M6 8h.01",key:"x9i8wu"}],["path",{d:"M7 16h10",key:"wp8him"}],["path",{d:"M8 12h.01",key:"czm47f"}],["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}]]);const z5=i("lamp-ceiling",[["path",{d:"M12 2v5",key:"nd4vlx"}],["path",{d:"M14.829 15.998a3 3 0 1 1-5.658 0",key:"1pybiy"}],["path",{d:"M20.92 14.606A1 1 0 0 1 20 16H4a1 1 0 0 1-.92-1.394l3-7A1 1 0 0 1 7 7h10a1 1 0 0 1 .92.606z",key:"ma1wor"}]]);const O5=i("lamp-desk",[["path",{d:"M10.293 2.293a1 1 0 0 1 1.414 0l2.5 2.5 5.994 1.227a1 1 0 0 1 .506 1.687l-7 7a1 1 0 0 1-1.687-.506l-1.227-5.994-2.5-2.5a1 1 0 0 1 0-1.414z",key:"sb8slu"}],["path",{d:"m14.207 4.793-3.414 3.414",key:"m2x3oj"}],["path",{d:"M3 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1z",key:"8b3myj"}],["path",{d:"m9.086 6.5-4.793 4.793a1 1 0 0 0-.18 1.17L7 18",key:"43s6cu"}]]);const q5=i("lamp-floor",[["path",{d:"M12 10v12",key:"6ubwww"}],["path",{d:"M17.929 7.629A1 1 0 0 1 17 9H7a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 9 2h6a1 1 0 0 1 .928.629z",key:"1o95gh"}],["path",{d:"M9 22h6",key:"1rlq3v"}]]);const j5=i("lamp-wall-down",[["path",{d:"M19.929 18.629A1 1 0 0 1 19 20H9a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 11 13h6a1 1 0 0 1 .928.629z",key:"u4w2d7"}],["path",{d:"M6 3a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1z",key:"15356w"}],["path",{d:"M8 6h4a2 2 0 0 1 2 2v5",key:"1m6m7x"}]]);const H5=i("lamp-wall-up",[["path",{d:"M19.929 9.629A1 1 0 0 1 19 11H9a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 11 4h6a1 1 0 0 1 .928.629z",key:"1uvrbf"}],["path",{d:"M6 15a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z",key:"154r2a"}],["path",{d:"M8 18h4a2 2 0 0 0 2-2v-5",key:"z9mbu0"}]]);const V5=i("lamp",[["path",{d:"M12 12v6",key:"3ahymv"}],["path",{d:"M4.077 10.615A1 1 0 0 0 5 12h14a1 1 0 0 0 .923-1.385l-3.077-7.384A2 2 0 0 0 15 2H9a2 2 0 0 0-1.846 1.23Z",key:"1l7kg2"}],["path",{d:"M8 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1z",key:"1mmzpi"}]]);const F5=i("land-plot",[["path",{d:"m12 8 6-3-6-3v10",key:"mvpnpy"}],["path",{d:"m8 11.99-5.5 3.14a1 1 0 0 0 0 1.74l8.5 4.86a2 2 0 0 0 2 0l8.5-4.86a1 1 0 0 0 0-1.74L16 12",key:"ek95tt"}],["path",{d:"m6.49 12.85 11.02 6.3",key:"1kt42w"}],["path",{d:"M17.51 12.85 6.5 19.15",key:"v55bdg"}]]);const B5=i("landmark",[["path",{d:"M10 18v-7",key:"wt116b"}],["path",{d:"M11.12 2.198a2 2 0 0 1 1.76.006l7.866 3.847c.476.233.31.949-.22.949H3.474c-.53 0-.695-.716-.22-.949z",key:"1m329m"}],["path",{d:"M14 18v-7",key:"vav6t3"}],["path",{d:"M18 18v-7",key:"aexdmj"}],["path",{d:"M3 22h18",key:"8prr45"}],["path",{d:"M6 18v-7",key:"1ivflk"}]]);const W5=i("languages",[["path",{d:"m5 8 6 6",key:"1wu5hv"}],["path",{d:"m4 14 6-6 2-3",key:"1k1g8d"}],["path",{d:"M2 5h12",key:"or177f"}],["path",{d:"M7 2h1",key:"1t2jsx"}],["path",{d:"m22 22-5-10-5 10",key:"don7ne"}],["path",{d:"M14 18h6",key:"1m8k6r"}]]);const U5=i("laptop-minimal-check",[["path",{d:"M2 20h20",key:"owomy5"}],["path",{d:"m9 10 2 2 4-4",key:"1gnqz4"}],["rect",{x:"3",y:"4",width:"18",height:"12",rx:"2",key:"8ur36m"}]]);const $r=i("laptop-minimal",[["rect",{width:"18",height:"12",x:"3",y:"4",rx:"2",ry:"2",key:"1qhy41"}],["line",{x1:"2",x2:"22",y1:"20",y2:"20",key:"ni3hll"}]]);const R5=i("laptop",[["path",{d:"M18 5a2 2 0 0 1 2 2v8.526a2 2 0 0 0 .212.897l1.068 2.127a1 1 0 0 1-.9 1.45H3.62a1 1 0 0 1-.9-1.45l1.068-2.127A2 2 0 0 0 4 15.526V7a2 2 0 0 1 2-2z",key:"1pdavp"}],["path",{d:"M20.054 15.987H3.946",key:"14rxg9"}]]);const G5=i("lasso-select",[["path",{d:"M7 22a5 5 0 0 1-2-4",key:"umushi"}],["path",{d:"M7 16.93c.96.43 1.96.74 2.99.91",key:"ybbtv3"}],["path",{d:"M3.34 14A6.8 6.8 0 0 1 2 10c0-4.42 4.48-8 10-8s10 3.58 10 8a7.19 7.19 0 0 1-.33 2",key:"gt5e1w"}],["path",{d:"M5 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4z",key:"bq3ynw"}],["path",{d:"M14.33 22h-.09a.35.35 0 0 1-.24-.32v-10a.34.34 0 0 1 .33-.34c.08 0 .15.03.21.08l7.34 6a.33.33 0 0 1-.21.59h-4.49l-2.57 3.85a.35.35 0 0 1-.28.14z",key:"72q637"}]]);const K5=i("lasso",[["path",{d:"M3.704 14.467a10 8 0 1 1 3.115 2.375",key:"wxgc5m"}],["path",{d:"M7 22a5 5 0 0 1-2-3.994",key:"1xp6a4"}],["circle",{cx:"5",cy:"16",r:"2",key:"18csp3"}]]);const Y5=i("laugh",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M18 13a6 6 0 0 1-6 5 6 6 0 0 1-6-5h12Z",key:"b2q4dd"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9",key:"yxxnd0"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9",key:"1p4y9e"}]]);const X5=i("layers-2",[["path",{d:"M13 13.74a2 2 0 0 1-2 0L2.5 8.87a1 1 0 0 1 0-1.74L11 2.26a2 2 0 0 1 2 0l8.5 4.87a1 1 0 0 1 0 1.74z",key:"15q6uc"}],["path",{d:"m20 14.285 1.5.845a1 1 0 0 1 0 1.74L13 21.74a2 2 0 0 1-2 0l-8.5-4.87a1 1 0 0 1 0-1.74l1.5-.845",key:"byia6g"}]]);const Z5=i("layers-plus",[["path",{d:"M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 .83.18 2 2 0 0 0 .83-.18l8.58-3.9a1 1 0 0 0 0-1.831z",key:"zzgyd3"}],["path",{d:"M16 17h6",key:"1ook5g"}],["path",{d:"M19 14v6",key:"1ckrd5"}],["path",{d:"M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 .825.178",key:"1ia9y3"}],["path",{d:"M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l2.116-.962",key:"jksky3"}]]);const Sr=i("layers",[["path",{d:"M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83z",key:"zw3jo"}],["path",{d:"M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 12",key:"1wduqc"}],["path",{d:"M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 17",key:"kqbvx6"}]]);const Q5=i("layout-dashboard",[["rect",{width:"7",height:"9",x:"3",y:"3",rx:"1",key:"10lvy0"}],["rect",{width:"7",height:"5",x:"14",y:"3",rx:"1",key:"16une8"}],["rect",{width:"7",height:"9",x:"14",y:"12",rx:"1",key:"1hutg5"}],["rect",{width:"7",height:"5",x:"3",y:"16",rx:"1",key:"ldoo1y"}]]);const od=i("layout-grid",[["rect",{width:"7",height:"7",x:"3",y:"3",rx:"1",key:"1g98yp"}],["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1",key:"6d4xhi"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1",key:"nxv5o0"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1",key:"1bb6yr"}]]);const J5=i("layout-list",[["rect",{width:"7",height:"7",x:"3",y:"3",rx:"1",key:"1g98yp"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1",key:"1bb6yr"}],["path",{d:"M14 4h7",key:"3xa0d5"}],["path",{d:"M14 9h7",key:"1icrd9"}],["path",{d:"M14 15h7",key:"1mj8o2"}],["path",{d:"M14 20h7",key:"11slyb"}]]);const ev=i("layout-panel-left",[["rect",{width:"7",height:"18",x:"3",y:"3",rx:"1",key:"2obqm"}],["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1",key:"6d4xhi"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1",key:"nxv5o0"}]]);const tv=i("layout-panel-top",[["rect",{width:"18",height:"7",x:"3",y:"3",rx:"1",key:"f1a2em"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1",key:"1bb6yr"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1",key:"nxv5o0"}]]);const ov=i("layout-template",[["rect",{width:"18",height:"7",x:"3",y:"3",rx:"1",key:"f1a2em"}],["rect",{width:"9",height:"7",x:"3",y:"14",rx:"1",key:"jqznyg"}],["rect",{width:"5",height:"7",x:"16",y:"14",rx:"1",key:"q5h2i8"}]]);const nv=i("leaf",[["path",{d:"M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z",key:"nnexq3"}],["path",{d:"M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12",key:"mt58a7"}]]);const av=i("leafy-green",[["path",{d:"M2 22c1.25-.987 2.27-1.975 3.9-2.2a5.56 5.56 0 0 1 3.8 1.5 4 4 0 0 0 6.187-2.353 3.5 3.5 0 0 0 3.69-5.116A3.5 3.5 0 0 0 20.95 8 3.5 3.5 0 1 0 16 3.05a3.5 3.5 0 0 0-5.831 1.373 3.5 3.5 0 0 0-5.116 3.69 4 4 0 0 0-2.348 6.155C3.499 15.42 4.409 16.712 4.2 18.1 3.926 19.743 3.014 20.732 2 22",key:"1134nt"}],["path",{d:"M2 22 17 7",key:"1q7jp2"}]]);const rv=i("lectern",[["path",{d:"M16 12h3a2 2 0 0 0 1.902-1.38l1.056-3.333A1 1 0 0 0 21 6H3a1 1 0 0 0-.958 1.287l1.056 3.334A2 2 0 0 0 5 12h3",key:"13jjxg"}],["path",{d:"M18 6V3a1 1 0 0 0-1-1h-3",key:"1550fe"}],["rect",{width:"8",height:"12",x:"8",y:"10",rx:"1",key:"qmu8b6"}]]);const iv=i("library-big",[["rect",{width:"8",height:"18",x:"3",y:"3",rx:"1",key:"oynpb5"}],["path",{d:"M7 3v18",key:"bbkbws"}],["path",{d:"M20.4 18.9c.2.5-.1 1.1-.6 1.3l-1.9.7c-.5.2-1.1-.1-1.3-.6L11.1 5.1c-.2-.5.1-1.1.6-1.3l1.9-.7c.5-.2 1.1.1 1.3.6Z",key:"1qboyk"}]]);const cv=i("library",[["path",{d:"m16 6 4 14",key:"ji33uf"}],["path",{d:"M12 6v14",key:"1n7gus"}],["path",{d:"M8 8v12",key:"1gg7y9"}],["path",{d:"M4 4v16",key:"6qkkli"}]]);const sv=i("life-buoy",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m4.93 4.93 4.24 4.24",key:"1ymg45"}],["path",{d:"m14.83 9.17 4.24-4.24",key:"1cb5xl"}],["path",{d:"m14.83 14.83 4.24 4.24",key:"q42g0n"}],["path",{d:"m9.17 14.83-4.24 4.24",key:"bqpfvv"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}]]);const dv=i("ligature",[["path",{d:"M14 12h2v8",key:"c1fccl"}],["path",{d:"M14 20h4",key:"lzx1xo"}],["path",{d:"M6 12h4",key:"a4o3ry"}],["path",{d:"M6 20h4",key:"1i6q5t"}],["path",{d:"M8 20V8a4 4 0 0 1 7.464-2",key:"wk9t6r"}]]);const lv=i("lightbulb-off",[["path",{d:"M16.8 11.2c.8-.9 1.2-2 1.2-3.2a6 6 0 0 0-9.3-5",key:"1fkcox"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M6.3 6.3a4.67 4.67 0 0 0 1.2 5.2c.7.7 1.3 1.5 1.5 2.5",key:"10m8kw"}],["path",{d:"M9 18h6",key:"x1upvd"}],["path",{d:"M10 22h4",key:"ceow96"}]]);const uv=i("lightbulb",[["path",{d:"M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5",key:"1gvzjb"}],["path",{d:"M9 18h6",key:"x1upvd"}],["path",{d:"M10 22h4",key:"ceow96"}]]);const hv=i("line-squiggle",[["path",{d:"M7 3.5c5-2 7 2.5 3 4C1.5 10 2 15 5 16c5 2 9-10 14-7s.5 13.5-4 12c-5-2.5.5-11 6-2",key:"1lrphd"}]]);const pv=i("link-2-off",[["path",{d:"M9 17H7A5 5 0 0 1 7 7",key:"10o201"}],["path",{d:"M15 7h2a5 5 0 0 1 4 8",key:"1d3206"}],["line",{x1:"8",x2:"12",y1:"12",y2:"12",key:"rvw6j4"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]]);const yv=i("link-2",[["path",{d:"M9 17H7A5 5 0 0 1 7 7h2",key:"8i5ue5"}],["path",{d:"M15 7h2a5 5 0 1 1 0 10h-2",key:"1b9ql8"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12",key:"1jonct"}]]);const fv=i("link",[["path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71",key:"1cjeqo"}],["path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71",key:"19qd67"}]]);const mv=i("linkedin",[["path",{d:"M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z",key:"c2jq9f"}],["rect",{width:"4",height:"12",x:"2",y:"9",key:"mk3on5"}],["circle",{cx:"4",cy:"4",r:"2",key:"bt5ra8"}]]);const kv=i("list-check",[["path",{d:"M16 5H3",key:"m91uny"}],["path",{d:"M16 12H3",key:"1a2rj7"}],["path",{d:"M11 19H3",key:"zflm78"}],["path",{d:"m15 18 2 2 4-4",key:"1szwhi"}]]);const gv=i("list-checks",[["path",{d:"M13 5h8",key:"a7qcls"}],["path",{d:"M13 12h8",key:"h98zly"}],["path",{d:"M13 19h8",key:"c3s6r1"}],["path",{d:"m3 17 2 2 4-4",key:"1jhpwq"}],["path",{d:"m3 7 2 2 4-4",key:"1obspn"}]]);const vv=i("list-chevrons-down-up",[["path",{d:"M3 5h8",key:"18g2rq"}],["path",{d:"M3 12h8",key:"1xfjp6"}],["path",{d:"M3 19h8",key:"fpbke4"}],["path",{d:"m15 5 3 3 3-3",key:"1t4thf"}],["path",{d:"m15 19 3-3 3 3",key:"y4ckd2"}]]);const _v=i("list-chevrons-up-down",[["path",{d:"M3 5h8",key:"18g2rq"}],["path",{d:"M3 12h8",key:"1xfjp6"}],["path",{d:"M3 19h8",key:"fpbke4"}],["path",{d:"m15 8 3-3 3 3",key:"bc4io6"}],["path",{d:"m15 16 3 3 3-3",key:"9wmg1l"}]]);const bv=i("list-collapse",[["path",{d:"M10 5h11",key:"1hkqpe"}],["path",{d:"M10 12h11",key:"6m4ad9"}],["path",{d:"M10 19h11",key:"14g2nv"}],["path",{d:"m3 10 3-3-3-3",key:"i7pm08"}],["path",{d:"m3 20 3-3-3-3",key:"20gx1n"}]]);const Mv=i("list-end",[["path",{d:"M16 5H3",key:"m91uny"}],["path",{d:"M16 12H3",key:"1a2rj7"}],["path",{d:"M9 19H3",key:"s61nz1"}],["path",{d:"m16 16-3 3 3 3",key:"117b85"}],["path",{d:"M21 5v12a2 2 0 0 1-2 2h-6",key:"hey24a"}]]);const wv=i("list-filter-plus",[["path",{d:"M12 5H2",key:"1o22fu"}],["path",{d:"M6 12h12",key:"8npq4p"}],["path",{d:"M9 19h6",key:"456am0"}],["path",{d:"M16 5h6",key:"1vod17"}],["path",{d:"M19 8V2",key:"1wcffq"}]]);const xv=i("list-filter",[["path",{d:"M2 5h20",key:"1fs1ex"}],["path",{d:"M6 12h12",key:"8npq4p"}],["path",{d:"M9 19h6",key:"456am0"}]]);const go=i("list-indent-decrease",[["path",{d:"M21 5H11",key:"us1j55"}],["path",{d:"M21 12H11",key:"wd7e0v"}],["path",{d:"M21 19H11",key:"saa85w"}],["path",{d:"m7 8-4 4 4 4",key:"o5hrat"}]]);const vo=i("list-indent-increase",[["path",{d:"M21 5H11",key:"us1j55"}],["path",{d:"M21 12H11",key:"wd7e0v"}],["path",{d:"M21 19H11",key:"saa85w"}],["path",{d:"m3 8 4 4-4 4",key:"1a3j6y"}]]);const Nv=i("list-minus",[["path",{d:"M16 5H3",key:"m91uny"}],["path",{d:"M11 12H3",key:"51ecnj"}],["path",{d:"M16 19H3",key:"zzsher"}],["path",{d:"M21 12h-6",key:"bt1uis"}]]);const Cv=i("list-music",[["path",{d:"M16 5H3",key:"m91uny"}],["path",{d:"M11 12H3",key:"51ecnj"}],["path",{d:"M11 19H3",key:"zflm78"}],["path",{d:"M21 16V5",key:"yxg4q8"}],["circle",{cx:"18",cy:"16",r:"3",key:"1hluhg"}]]);const $v=i("list-ordered",[["path",{d:"M11 5h10",key:"1cz7ny"}],["path",{d:"M11 12h10",key:"1438ji"}],["path",{d:"M11 19h10",key:"11t30w"}],["path",{d:"M4 4h1v5",key:"10yrso"}],["path",{d:"M4 9h2",key:"r1h2o0"}],["path",{d:"M6.5 20H3.4c0-1 2.6-1.925 2.6-3.5a1.5 1.5 0 0 0-2.6-1.02",key:"xtkcd5"}]]);const Sv=i("list-plus",[["path",{d:"M16 5H3",key:"m91uny"}],["path",{d:"M11 12H3",key:"51ecnj"}],["path",{d:"M16 19H3",key:"zzsher"}],["path",{d:"M18 9v6",key:"1twb98"}],["path",{d:"M21 12h-6",key:"bt1uis"}]]);const Lv=i("list-restart",[["path",{d:"M21 5H3",key:"1fi0y6"}],["path",{d:"M7 12H3",key:"13ou7f"}],["path",{d:"M7 19H3",key:"wbqt3n"}],["path",{d:"M12 18a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L11 14",key:"qth677"}],["path",{d:"M11 10v4h4",key:"172dkj"}]]);const Iv=i("list-start",[["path",{d:"M3 5h6",key:"1ltk0q"}],["path",{d:"M3 12h13",key:"ppymz1"}],["path",{d:"M3 19h13",key:"bpdczq"}],["path",{d:"m16 8-3-3 3-3",key:"1pjpp6"}],["path",{d:"M21 19V7a2 2 0 0 0-2-2h-6",key:"4zzq67"}]]);const Av=i("list-todo",[["path",{d:"M13 5h8",key:"a7qcls"}],["path",{d:"M13 12h8",key:"h98zly"}],["path",{d:"M13 19h8",key:"c3s6r1"}],["path",{d:"m3 17 2 2 4-4",key:"1jhpwq"}],["rect",{x:"3",y:"4",width:"6",height:"6",rx:"1",key:"cif1o7"}]]);const Pv=i("list-tree",[["path",{d:"M8 5h13",key:"1pao27"}],["path",{d:"M13 12h8",key:"h98zly"}],["path",{d:"M13 19h8",key:"c3s6r1"}],["path",{d:"M3 10a2 2 0 0 0 2 2h3",key:"1npucw"}],["path",{d:"M3 5v12a2 2 0 0 0 2 2h3",key:"x1gjn2"}]]);const Tv=i("list-video",[["path",{d:"M21 5H3",key:"1fi0y6"}],["path",{d:"M10 12H3",key:"1ulcyk"}],["path",{d:"M10 19H3",key:"108z41"}],["path",{d:"M15 12.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z",key:"ms4nik"}]]);const Dv=i("list-x",[["path",{d:"M16 5H3",key:"m91uny"}],["path",{d:"M11 12H3",key:"51ecnj"}],["path",{d:"M16 19H3",key:"zzsher"}],["path",{d:"m15.5 9.5 5 5",key:"ytk86i"}],["path",{d:"m20.5 9.5-5 5",key:"17o44f"}]]);const Ev=i("list",[["path",{d:"M3 5h.01",key:"18ugdj"}],["path",{d:"M3 12h.01",key:"nlz23k"}],["path",{d:"M3 19h.01",key:"noohij"}],["path",{d:"M8 5h13",key:"1pao27"}],["path",{d:"M8 12h13",key:"1za7za"}],["path",{d:"M8 19h13",key:"m83p4d"}]]);const zv=i("loader-pinwheel",[["path",{d:"M22 12a1 1 0 0 1-10 0 1 1 0 0 0-10 0",key:"1lzz15"}],["path",{d:"M7 20.7a1 1 0 1 1 5-8.7 1 1 0 1 0 5-8.6",key:"1gnrpi"}],["path",{d:"M7 3.3a1 1 0 1 1 5 8.6 1 1 0 1 0 5 8.6",key:"u9yy5q"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const qt=i("loader-circle",[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56",key:"13zald"}]]);const Ov=i("loader",[["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"m16.2 7.8 2.9-2.9",key:"r700ao"}],["path",{d:"M18 12h4",key:"wj9ykh"}],["path",{d:"m16.2 16.2 2.9 2.9",key:"1bxg5t"}],["path",{d:"M12 18v4",key:"jadmvz"}],["path",{d:"m4.9 19.1 2.9-2.9",key:"bwix9q"}],["path",{d:"M2 12h4",key:"j09sii"}],["path",{d:"m4.9 4.9 2.9 2.9",key:"giyufr"}]]);const qv=i("locate-fixed",[["line",{x1:"2",x2:"5",y1:"12",y2:"12",key:"bvdh0s"}],["line",{x1:"19",x2:"22",y1:"12",y2:"12",key:"1tbv5k"}],["line",{x1:"12",x2:"12",y1:"2",y2:"5",key:"11lu5j"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22",key:"x3vr5v"}],["circle",{cx:"12",cy:"12",r:"7",key:"fim9np"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]]);const jv=i("locate-off",[["path",{d:"M12 19v3",key:"npa21l"}],["path",{d:"M12 2v3",key:"qbqxhf"}],["path",{d:"M18.89 13.24a7 7 0 0 0-8.13-8.13",key:"1v9jrh"}],["path",{d:"M19 12h3",key:"osuazr"}],["path",{d:"M2 12h3",key:"1wrr53"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M7.05 7.05a7 7 0 0 0 9.9 9.9",key:"rc5l2e"}]]);const Hv=i("locate",[["line",{x1:"2",x2:"5",y1:"12",y2:"12",key:"bvdh0s"}],["line",{x1:"19",x2:"22",y1:"12",y2:"12",key:"1tbv5k"}],["line",{x1:"12",x2:"12",y1:"2",y2:"5",key:"11lu5j"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22",key:"x3vr5v"}],["circle",{cx:"12",cy:"12",r:"7",key:"fim9np"}]]);const Lr=i("lock-keyhole-open",[["circle",{cx:"12",cy:"16",r:"1",key:"1au0dj"}],["rect",{width:"18",height:"12",x:"3",y:"10",rx:"2",key:"l0tzu3"}],["path",{d:"M7 10V7a5 5 0 0 1 9.33-2.5",key:"car5b7"}]]);const Vv=i("lock-keyhole",[["circle",{cx:"12",cy:"16",r:"1",key:"1au0dj"}],["rect",{x:"3",y:"10",width:"18",height:"12",rx:"2",key:"6s8ecr"}],["path",{d:"M7 10V7a5 5 0 0 1 10 0v3",key:"1pqi11"}]]);const Ir=i("lock-open",[["rect",{width:"18",height:"11",x:"3",y:"11",rx:"2",ry:"2",key:"1w4ew1"}],["path",{d:"M7 11V7a5 5 0 0 1 9.9-1",key:"1mm8w8"}]]);const Fv=i("lock",[["rect",{width:"18",height:"11",x:"3",y:"11",rx:"2",ry:"2",key:"1w4ew1"}],["path",{d:"M7 11V7a5 5 0 0 1 10 0v4",key:"fwvmzm"}]]);const Bv=i("log-in",[["path",{d:"m10 17 5-5-5-5",key:"1bsop3"}],["path",{d:"M15 12H3",key:"6jk70r"}],["path",{d:"M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4",key:"u53s6r"}]]);const Wv=i("log-out",[["path",{d:"m16 17 5-5-5-5",key:"1bji2h"}],["path",{d:"M21 12H9",key:"dn1m92"}],["path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4",key:"1uf3rs"}]]);const Uv=i("logs",[["path",{d:"M3 5h1",key:"1mv5vm"}],["path",{d:"M3 12h1",key:"lp3yf2"}],["path",{d:"M3 19h1",key:"w6f3n9"}],["path",{d:"M8 5h1",key:"1nxr5w"}],["path",{d:"M8 12h1",key:"1con00"}],["path",{d:"M8 19h1",key:"k7p10e"}],["path",{d:"M13 5h8",key:"a7qcls"}],["path",{d:"M13 12h8",key:"h98zly"}],["path",{d:"M13 19h8",key:"c3s6r1"}]]);const Rv=i("lollipop",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}],["path",{d:"M11 11a2 2 0 0 0 4 0 4 4 0 0 0-8 0 6 6 0 0 0 12 0",key:"107gwy"}]]);const Gv=i("luggage",[["path",{d:"M6 20a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2",key:"1m57jg"}],["path",{d:"M8 18V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v14",key:"1l99gc"}],["path",{d:"M10 20h4",key:"ni2waw"}],["circle",{cx:"16",cy:"20",r:"2",key:"1vifvg"}],["circle",{cx:"8",cy:"20",r:"2",key:"ckkr5m"}]]);const Kv=i("magnet",[["path",{d:"m12 15 4 4",key:"lnac28"}],["path",{d:"M2.352 10.648a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l6.029-6.029a1 1 0 1 1 3 3l-6.029 6.029a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l6.365-6.367A1 1 0 0 0 8.716 4.282z",key:"nlhkjb"}],["path",{d:"m5 8 4 4",key:"j6kj7e"}]]);const Yv=i("mail-check",[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8",key:"12jkf8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"m16 19 2 2 4-4",key:"1b14m6"}]]);const Xv=i("mail-minus",[["path",{d:"M22 15V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8",key:"fuxbkv"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"M16 19h6",key:"xwg31i"}]]);const Zv=i("mail-open",[["path",{d:"M21.2 8.4c.5.38.8.97.8 1.6v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V10a2 2 0 0 1 .8-1.6l8-6a2 2 0 0 1 2.4 0l8 6Z",key:"1jhwl8"}],["path",{d:"m22 10-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 10",key:"1qfld7"}]]);const Ar=i("mail-question-mark",[["path",{d:"M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5",key:"e61zoh"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"M18 15.28c.2-.4.5-.8.9-1a2.1 2.1 0 0 1 2.6.4c.3.4.5.8.5 1.3 0 1.3-2 2-2 2",key:"7z9rxb"}],["path",{d:"M20 22v.01",key:"12bgn6"}]]);const Qv=i("mail-plus",[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8",key:"12jkf8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"M19 16v6",key:"tddt3s"}],["path",{d:"M16 19h6",key:"xwg31i"}]]);const Jv=i("mail-search",[["path",{d:"M22 12.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h7.5",key:"w80f2v"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"M18 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z",key:"8lzu5m"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["path",{d:"m22 22-1.5-1.5",key:"1x83k4"}]]);const e3=i("mail-warning",[["path",{d:"M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5",key:"e61zoh"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"M20 14v4",key:"1hm744"}],["path",{d:"M20 22v.01",key:"12bgn6"}]]);const t3=i("mail",[["path",{d:"m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7",key:"132q7q"}],["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2",key:"izxlao"}]]);const o3=i("mail-x",[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h9",key:"1j9vog"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"m17 17 4 4",key:"1b3523"}],["path",{d:"m21 17-4 4",key:"uinynz"}]]);const n3=i("mailbox",[["path",{d:"M22 17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.5C2 7 4 5 6.5 5H18c2.2 0 4 1.8 4 4v8Z",key:"1lbycx"}],["polyline",{points:"15,9 18,9 18,11",key:"1pm9c0"}],["path",{d:"M6.5 5C9 5 11 7 11 9.5V17a2 2 0 0 1-2 2",key:"15i455"}],["line",{x1:"6",x2:"7",y1:"10",y2:"10",key:"1e2scm"}]]);const a3=i("mails",[["path",{d:"M17 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 1-1.732",key:"1vyzll"}],["path",{d:"m22 5.5-6.419 4.179a2 2 0 0 1-2.162 0L7 5.5",key:"k7ramc"}],["rect",{x:"7",y:"3",width:"15",height:"12",rx:"2",key:"17196g"}]]);const r3=i("map-minus",[["path",{d:"m11 19-1.106-.552a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V14",key:"40pylx"}],["path",{d:"M15 5.764V14",key:"1bab71"}],["path",{d:"M21 18h-6",key:"139f0c"}],["path",{d:"M9 3.236v15",key:"1uimfh"}]]);const i3=i("map-pin-check-inside",[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["path",{d:"m9 10 2 2 4-4",key:"1gnqz4"}]]);const c3=i("map-pin-check",[["path",{d:"M19.43 12.935c.357-.967.57-1.955.57-2.935a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32.197 32.197 0 0 0 .813-.728",key:"1dq61d"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"m16 18 2 2 4-4",key:"1mkfmb"}]]);const s3=i("map-pin-house",[["path",{d:"M15 22a1 1 0 0 1-1-1v-4a1 1 0 0 1 .445-.832l3-2a1 1 0 0 1 1.11 0l3 2A1 1 0 0 1 22 17v4a1 1 0 0 1-1 1z",key:"1p1rcz"}],["path",{d:"M18 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 .601.2",key:"mcbcs9"}],["path",{d:"M18 22v-3",key:"1t1ugv"}],["circle",{cx:"10",cy:"10",r:"3",key:"1ns7v1"}]]);const d3=i("map-pin-minus-inside",[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["path",{d:"M9 10h6",key:"9gxzsh"}]]);const l3=i("map-pin-minus",[["path",{d:"M18.977 14C19.6 12.701 20 11.343 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738",key:"11uxia"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"M16 18h6",key:"987eiv"}]]);const u3=i("map-pin-off",[["path",{d:"M12.75 7.09a3 3 0 0 1 2.16 2.16",key:"1d4wjd"}],["path",{d:"M17.072 17.072c-1.634 2.17-3.527 3.912-4.471 4.727a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 1.432-4.568",key:"12yil7"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8.475 2.818A8 8 0 0 1 20 10c0 1.183-.31 2.377-.81 3.533",key:"lhrkcz"}],["path",{d:"M9.13 9.13a3 3 0 0 0 3.74 3.74",key:"13wojd"}]]);const h3=i("map-pin-plus-inside",[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["path",{d:"M12 7v6",key:"lw1j43"}],["path",{d:"M9 10h6",key:"9gxzsh"}]]);const Pr=i("map-pin-pen",[["path",{d:"M17.97 9.304A8 8 0 0 0 2 10c0 4.69 4.887 9.562 7.022 11.468",key:"1fahp3"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"1817ys"}],["circle",{cx:"10",cy:"10",r:"3",key:"1ns7v1"}]]);const p3=i("map-pin-plus",[["path",{d:"M19.914 11.105A7.298 7.298 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738",key:"fcdtly"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"M16 18h6",key:"987eiv"}],["path",{d:"M19 15v6",key:"10aioa"}]]);const y3=i("map-pin-x-inside",[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["path",{d:"m14.5 7.5-5 5",key:"3lb6iw"}],["path",{d:"m9.5 7.5 5 5",key:"ko136h"}]]);const f3=i("map-pin-x",[["path",{d:"M19.752 11.901A7.78 7.78 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 19 19 0 0 0 .09-.077",key:"y0ewhp"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"m21.5 15.5-5 5",key:"11iqnx"}],["path",{d:"m21.5 20.5-5-5",key:"1bylgx"}]]);const m3=i("map-pin",[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}]]);const k3=i("map-pinned",[["path",{d:"M18 8c0 3.613-3.869 7.429-5.393 8.795a1 1 0 0 1-1.214 0C9.87 15.429 6 11.613 6 8a6 6 0 0 1 12 0",key:"11u0oz"}],["circle",{cx:"12",cy:"8",r:"2",key:"1822b1"}],["path",{d:"M8.714 14h-3.71a1 1 0 0 0-.948.683l-2.004 6A1 1 0 0 0 3 22h18a1 1 0 0 0 .948-1.316l-2-6a1 1 0 0 0-.949-.684h-3.712",key:"q8zwxj"}]]);const g3=i("map-plus",[["path",{d:"m11 19-1.106-.552a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V12",key:"svfegj"}],["path",{d:"M15 5.764V12",key:"1ocw4k"}],["path",{d:"M18 15v6",key:"9wciyi"}],["path",{d:"M21 18h-6",key:"139f0c"}],["path",{d:"M9 3.236v15",key:"1uimfh"}]]);const nd=i("map",[["path",{d:"M14.106 5.553a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619v12.764a1 1 0 0 1-.553.894l-4.553 2.277a2 2 0 0 1-1.788 0l-4.212-2.106a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0z",key:"169xi5"}],["path",{d:"M15 5.764v15",key:"1pn4in"}],["path",{d:"M9 3.236v15",key:"1uimfh"}]]);const v3=i("mars-stroke",[["path",{d:"m14 6 4 4",key:"1q72g9"}],["path",{d:"M17 3h4v4",key:"19p9u1"}],["path",{d:"m21 3-7.75 7.75",key:"1cjbfd"}],["circle",{cx:"9",cy:"15",r:"6",key:"bx5svt"}]]);const _3=i("mars",[["path",{d:"M16 3h5v5",key:"1806ms"}],["path",{d:"m21 3-6.75 6.75",key:"pv0uzu"}],["circle",{cx:"10",cy:"14",r:"6",key:"1qwbdc"}]]);const b3=i("martini",[["path",{d:"M8 22h8",key:"rmew8v"}],["path",{d:"M12 11v11",key:"ur9y6a"}],["path",{d:"m19 3-7 8-7-8Z",key:"1sgpiw"}]]);const M3=i("maximize-2",[["path",{d:"M15 3h6v6",key:"1q9fwt"}],["path",{d:"m21 3-7 7",key:"1l2asr"}],["path",{d:"m3 21 7-7",key:"tjx5ai"}],["path",{d:"M9 21H3v-6",key:"wtvkvv"}]]);const w3=i("maximize",[["path",{d:"M8 3H5a2 2 0 0 0-2 2v3",key:"1dcmit"}],["path",{d:"M21 8V5a2 2 0 0 0-2-2h-3",key:"1e4gt3"}],["path",{d:"M3 16v3a2 2 0 0 0 2 2h3",key:"wsl5sc"}],["path",{d:"M16 21h3a2 2 0 0 0 2-2v-3",key:"18trek"}]]);const x3=i("medal",[["path",{d:"M7.21 15 2.66 7.14a2 2 0 0 1 .13-2.2L4.4 2.8A2 2 0 0 1 6 2h12a2 2 0 0 1 1.6.8l1.6 2.14a2 2 0 0 1 .14 2.2L16.79 15",key:"143lza"}],["path",{d:"M11 12 5.12 2.2",key:"qhuxz6"}],["path",{d:"m13 12 5.88-9.8",key:"hbye0f"}],["path",{d:"M8 7h8",key:"i86dvs"}],["circle",{cx:"12",cy:"17",r:"5",key:"qbz8iq"}],["path",{d:"M12 18v-2h-.5",key:"fawc4q"}]]);const N3=i("megaphone-off",[["path",{d:"M11.636 6A13 13 0 0 0 19.4 3.2 1 1 0 0 1 21 4v11.344",key:"bycexp"}],["path",{d:"M14.378 14.357A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h1",key:"1t17s6"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14",key:"1853fq"}],["path",{d:"M8 8v6",key:"aieo6v"}]]);const C3=i("megaphone",[["path",{d:"M11 6a13 13 0 0 0 8.4-2.8A1 1 0 0 1 21 4v12a1 1 0 0 1-1.6.8A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z",key:"q8bfy3"}],["path",{d:"M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14",key:"1853fq"}],["path",{d:"M8 6v8",key:"15ugcq"}]]);const $3=i("meh",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"8",x2:"16",y1:"15",y2:"15",key:"1xb1d9"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9",key:"yxxnd0"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9",key:"1p4y9e"}]]);const S3=i("memory-stick",[["path",{d:"M12 12v-2",key:"fwoke6"}],["path",{d:"M12 18v-2",key:"qj6yno"}],["path",{d:"M16 12v-2",key:"heuere"}],["path",{d:"M16 18v-2",key:"s1ct0w"}],["path",{d:"M2 11h1.5",key:"15p63e"}],["path",{d:"M20 18v-2",key:"12ehxp"}],["path",{d:"M20.5 11H22",key:"khsy7a"}],["path",{d:"M4 18v-2",key:"1c3oqr"}],["path",{d:"M8 12v-2",key:"1mwtfd"}],["path",{d:"M8 18v-2",key:"qcmpov"}],["rect",{x:"2",y:"6",width:"20",height:"10",rx:"2",key:"1qcswk"}]]);const L3=i("menu",[["path",{d:"M4 5h16",key:"1tepv9"}],["path",{d:"M4 12h16",key:"1lakjw"}],["path",{d:"M4 19h16",key:"1djgab"}]]);const I3=i("merge",[["path",{d:"m8 6 4-4 4 4",key:"ybng9g"}],["path",{d:"M12 2v10.3a4 4 0 0 1-1.172 2.872L4 22",key:"1hyw0i"}],["path",{d:"m20 22-5-5",key:"1m27yz"}]]);const A3=i("message-circle-code",[["path",{d:"m10 9-3 3 3 3",key:"1oro0q"}],["path",{d:"m14 15 3-3-3-3",key:"bz13h7"}],["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",key:"1sd12s"}]]);const P3=i("message-circle-dashed",[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0",key:"5ilxe3"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0",key:"11zvb9"}],["path",{d:"M17.609 3.72a10 10 0 0 1 2.69 2.7",key:"jiglxs"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8",key:"c0bmvh"}],["path",{d:"M20.28 17.61a10 10 0 0 1-2.7 2.69",key:"elg7ff"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8",key:"qkgqxc"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69",key:"1mcia2"}],["path",{d:"m6.163 21.117-2.906.85a1 1 0 0 1-1.236-1.169l.965-2.98",key:"1qsu07"}]]);const T3=i("message-circle-heart",[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",key:"1sd12s"}],["path",{d:"M7.828 13.07A3 3 0 0 1 12 8.764a3 3 0 0 1 5.004 2.224 3 3 0 0 1-.832 2.083l-3.447 3.62a1 1 0 0 1-1.45-.001z",key:"hoo97p"}]]);const D3=i("message-circle-more",[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",key:"1sd12s"}],["path",{d:"M8 12h.01",key:"czm47f"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M16 12h.01",key:"1l6xoz"}]]);const E3=i("message-circle-off",[["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M4.93 4.929a10 10 0 0 0-1.938 11.412 2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 0 0 11.302-1.989",key:"7il5tn"}],["path",{d:"M8.35 2.69A10 10 0 0 1 21.3 15.65",key:"1pfsoa"}]]);const z3=i("message-circle-plus",[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",key:"1sd12s"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"M12 8v8",key:"napkw2"}]]);const Tr=i("message-circle-question-mark",[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",key:"1sd12s"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);const O3=i("message-circle-reply",[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",key:"1sd12s"}],["path",{d:"m10 15-3-3 3-3",key:"1pgupc"}],["path",{d:"M7 12h8a2 2 0 0 1 2 2v1",key:"89sh1g"}]]);const q3=i("message-circle-warning",[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",key:"1sd12s"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]]);const j3=i("message-circle-x",[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",key:"1sd12s"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"m9 9 6 6",key:"z0biqf"}]]);const H3=i("message-circle",[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",key:"1sd12s"}]]);const V3=i("message-square-code",[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}],["path",{d:"m10 8-3 3 3 3",key:"fp6dz7"}],["path",{d:"m14 14 3-3-3-3",key:"1yrceu"}]]);const F3=i("message-square-dashed",[["path",{d:"M14 3h2",key:"1d12a5"}],["path",{d:"M16 19h-2",key:"1agirb"}],["path",{d:"M2 12v-2",key:"1ey295"}],["path",{d:"M2 16v5.286a.71.71 0 0 0 1.212.502l1.149-1.149",key:"120k8q"}],["path",{d:"M20 19a2 2 0 0 0 2-2v-1",key:"ior8tn"}],["path",{d:"M22 10v2",key:"rmlecy"}],["path",{d:"M22 6V5a2 2 0 0 0-2-2",key:"sp3k6r"}],["path",{d:"M4 3a2 2 0 0 0-2 2v1",key:"11zt7s"}],["path",{d:"M8 19h2",key:"jnunrx"}],["path",{d:"M8 3h2",key:"ysbsee"}]]);const B3=i("message-square-diff",[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}],["path",{d:"M10 15h4",key:"192ueg"}],["path",{d:"M10 9h4",key:"u4k05v"}],["path",{d:"M12 7v4",key:"xawao1"}]]);const W3=i("message-square-dot",[["path",{d:"M12.7 3H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H20a2 2 0 0 0 2-2v-4.7",key:"wjb7ig"}],["circle",{cx:"19",cy:"6",r:"3",key:"108a5v"}]]);const U3=i("message-square-heart",[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}],["path",{d:"M7.5 9.5c0 .687.265 1.383.697 1.844l3.009 3.264a1.14 1.14 0 0 0 .407.314 1 1 0 0 0 .783-.004 1.14 1.14 0 0 0 .398-.31l3.008-3.264A2.77 2.77 0 0 0 16.5 9.5 2.5 2.5 0 0 0 12 8a2.5 2.5 0 0 0-4.5 1.5",key:"1faxuh"}]]);const R3=i("message-square-lock",[["path",{d:"M22 8.5V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H10",key:"fu6chl"}],["path",{d:"M20 15v-2a2 2 0 0 0-4 0v2",key:"vl8a78"}],["rect",{x:"14",y:"15",width:"8",height:"5",rx:"1",key:"37aafw"}]]);const G3=i("message-square-off",[["path",{d:"M19 19H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.7.7 0 0 1 2 21.286V5a2 2 0 0 1 1.184-1.826",key:"1wyg69"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8.656 3H20a2 2 0 0 1 2 2v11.344",key:"mhl4k6"}]]);const K3=i("message-square-more",[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}],["path",{d:"M12 11h.01",key:"z322tv"}],["path",{d:"M16 11h.01",key:"xkw8gn"}],["path",{d:"M8 11h.01",key:"1dfujw"}]]);const Y3=i("message-square-plus",[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}],["path",{d:"M12 8v6",key:"1ib9pf"}],["path",{d:"M9 11h6",key:"1fldmi"}]]);const X3=i("message-square-quote",[["path",{d:"M14 14a2 2 0 0 0 2-2V8h-2",key:"1r06pg"}],["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}],["path",{d:"M8 14a2 2 0 0 0 2-2V8H8",key:"1jzu5j"}]]);const Z3=i("message-square-reply",[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}],["path",{d:"m10 8-3 3 3 3",key:"fp6dz7"}],["path",{d:"M17 14v-1a2 2 0 0 0-2-2H7",key:"1tkjnz"}]]);const Q3=i("message-square-text",[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}],["path",{d:"M7 11h10",key:"1twpyw"}],["path",{d:"M7 15h6",key:"d9of3u"}],["path",{d:"M7 7h8",key:"af5zfr"}]]);const J3=i("message-square-share",[["path",{d:"M12 3H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H20a2 2 0 0 0 2-2v-4",key:"11da1y"}],["path",{d:"M16 3h6v6",key:"1bx56c"}],["path",{d:"m16 9 6-6",key:"m4dnic"}]]);const e_=i("message-square-warning",[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}],["path",{d:"M12 15h.01",key:"q59x07"}],["path",{d:"M12 7v4",key:"xawao1"}]]);const t_=i("message-square-x",[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}],["path",{d:"m14.5 8.5-5 5",key:"19tnj2"}],["path",{d:"m9.5 8.5 5 5",key:"1oa8ql"}]]);const o_=i("message-square",[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}]]);const n_=i("messages-square",[["path",{d:"M16 10a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 14.286V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z",key:"1n2ejm"}],["path",{d:"M20 9a2 2 0 0 1 2 2v10.286a.71.71 0 0 1-1.212.502l-2.202-2.202A2 2 0 0 0 17.172 19H10a2 2 0 0 1-2-2v-1",key:"1qfcsi"}]]);const a_=i("mic-off",[["path",{d:"M12 19v3",key:"npa21l"}],["path",{d:"M15 9.34V5a3 3 0 0 0-5.68-1.33",key:"1gzdoj"}],["path",{d:"M16.95 16.95A7 7 0 0 1 5 12v-2",key:"cqa7eg"}],["path",{d:"M18.89 13.23A7 7 0 0 0 19 12v-2",key:"16hl24"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M9 9v3a3 3 0 0 0 5.12 2.12",key:"r2i35w"}]]);const r_=i("mic",[["path",{d:"M12 19v3",key:"npa21l"}],["path",{d:"M19 10v2a7 7 0 0 1-14 0v-2",key:"1vc78b"}],["rect",{x:"9",y:"2",width:"6",height:"13",rx:"3",key:"s6n7sd"}]]);const Dr=i("mic-vocal",[["path",{d:"m11 7.601-5.994 8.19a1 1 0 0 0 .1 1.298l.817.818a1 1 0 0 0 1.314.087L15.09 12",key:"80a601"}],["path",{d:"M16.5 21.174C15.5 20.5 14.372 20 13 20c-2.058 0-3.928 2.356-6 2-2.072-.356-2.775-3.369-1.5-4.5",key:"j0ngtp"}],["circle",{cx:"16",cy:"7",r:"5",key:"d08jfb"}]]);const i_=i("microchip",[["path",{d:"M10 12h4",key:"a56b0p"}],["path",{d:"M10 17h4",key:"pvmtpo"}],["path",{d:"M10 7h4",key:"1vgcok"}],["path",{d:"M18 12h2",key:"quuxs7"}],["path",{d:"M18 18h2",key:"4scel"}],["path",{d:"M18 6h2",key:"1ptzki"}],["path",{d:"M4 12h2",key:"1ltxp0"}],["path",{d:"M4 18h2",key:"1xrofg"}],["path",{d:"M4 6h2",key:"1cx33n"}],["rect",{x:"6",y:"2",width:"12",height:"20",rx:"2",key:"749fme"}]]);const c_=i("microscope",[["path",{d:"M6 18h8",key:"1borvv"}],["path",{d:"M3 22h18",key:"8prr45"}],["path",{d:"M14 22a7 7 0 1 0 0-14h-1",key:"1jwaiy"}],["path",{d:"M9 14h2",key:"197e7h"}],["path",{d:"M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z",key:"1bmzmy"}],["path",{d:"M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3",key:"1drr47"}]]);const s_=i("microwave",[["rect",{width:"20",height:"15",x:"2",y:"4",rx:"2",key:"2no95f"}],["rect",{width:"8",height:"7",x:"6",y:"8",rx:"1",key:"zh9wx"}],["path",{d:"M18 8v7",key:"o5zi4n"}],["path",{d:"M6 19v2",key:"1loha6"}],["path",{d:"M18 19v2",key:"1dawf0"}]]);const d_=i("milestone",[["path",{d:"M12 13v8",key:"1l5pq0"}],["path",{d:"M12 3v3",key:"1n5kay"}],["path",{d:"M4 6a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h13a2 2 0 0 0 1.152-.365l3.424-2.317a1 1 0 0 0 0-1.635l-3.424-2.318A2 2 0 0 0 17 6z",key:"1btarq"}]]);const l_=i("milk-off",[["path",{d:"M8 2h8",key:"1ssgc1"}],["path",{d:"M9 2v1.343M15 2v2.789a4 4 0 0 0 .672 2.219l.656.984a4 4 0 0 1 .672 2.22v1.131M7.8 7.8l-.128.192A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-3",key:"y0ejgx"}],["path",{d:"M7 15a6.47 6.47 0 0 1 5 0 6.472 6.472 0 0 0 3.435.435",key:"iaxqsy"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]]);const u_=i("milk",[["path",{d:"M8 2h8",key:"1ssgc1"}],["path",{d:"M9 2v2.789a4 4 0 0 1-.672 2.219l-.656.984A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-9.789a4 4 0 0 0-.672-2.219l-.656-.984A4 4 0 0 1 15 4.788V2",key:"qtp12x"}],["path",{d:"M7 15a6.472 6.472 0 0 1 5 0 6.47 6.47 0 0 0 5 0",key:"ygeh44"}]]);const h_=i("minimize-2",[["path",{d:"m14 10 7-7",key:"oa77jy"}],["path",{d:"M20 10h-6V4",key:"mjg0md"}],["path",{d:"m3 21 7-7",key:"tjx5ai"}],["path",{d:"M4 14h6v6",key:"rmj7iw"}]]);const p_=i("minimize",[["path",{d:"M8 3v3a2 2 0 0 1-2 2H3",key:"hohbtr"}],["path",{d:"M21 8h-3a2 2 0 0 1-2-2V3",key:"5jw1f3"}],["path",{d:"M3 16h3a2 2 0 0 1 2 2v3",key:"198tvr"}],["path",{d:"M16 21v-3a2 2 0 0 1 2-2h3",key:"ph8mxp"}]]);const y_=i("monitor-check",[["path",{d:"m9 10 2 2 4-4",key:"1gnqz4"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}]]);const ad=i("minus",[["path",{d:"M5 12h14",key:"1ays0h"}]]);const f_=i("monitor-cloud",[["path",{d:"M11 13a3 3 0 1 1 2.83-4H14a2 2 0 0 1 0 4z",key:"1da4q6"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2",key:"x3v2xh"}]]);const m_=i("monitor-cog",[["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"m14.305 7.53.923-.382",key:"1mlnsw"}],["path",{d:"m15.228 4.852-.923-.383",key:"82mpwg"}],["path",{d:"m16.852 3.228-.383-.924",key:"ln4sir"}],["path",{d:"m16.852 8.772-.383.923",key:"1dejw0"}],["path",{d:"m19.148 3.228.383-.924",key:"192kgf"}],["path",{d:"m19.53 9.696-.382-.924",key:"fiavlr"}],["path",{d:"m20.772 4.852.924-.383",key:"1j8mgp"}],["path",{d:"m20.772 7.148.924.383",key:"zix9be"}],["path",{d:"M22 13v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7",key:"1tnzv8"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["circle",{cx:"18",cy:"6",r:"3",key:"1h7g24"}]]);const k_=i("monitor-dot",[["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M22 12.307V15a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h8.693",key:"1dx6ho"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["circle",{cx:"19",cy:"6",r:"3",key:"108a5v"}]]);const g_=i("monitor-down",[["path",{d:"M12 13V7",key:"h0r20n"}],["path",{d:"m15 10-3 3-3-3",key:"lzhmyn"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}]]);const v_=i("monitor-off",[["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M17 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 1.184-1.826",key:"cv7jms"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["path",{d:"M8.656 3H20a2 2 0 0 1 2 2v10a2 2 0 0 1-.293 1.042",key:"z8ni2w"}]]);const __=i("monitor-pause",[["path",{d:"M10 13V7",key:"1u13u9"}],["path",{d:"M14 13V7",key:"1vj9om"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}]]);const b_=i("monitor-play",[["path",{d:"M15.033 9.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56V7.648a.645.645 0 0 1 .967-.56z",key:"vbtd3f"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2",key:"x3v2xh"}]]);const M_=i("monitor-smartphone",[["path",{d:"M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8",key:"10dyio"}],["path",{d:"M10 19v-3.96 3.15",key:"1irgej"}],["path",{d:"M7 19h5",key:"qswx4l"}],["rect",{width:"6",height:"10",x:"16",y:"12",rx:"2",key:"1egngj"}]]);const w_=i("monitor-speaker",[["path",{d:"M5.5 20H8",key:"1k40s5"}],["path",{d:"M17 9h.01",key:"1j24nn"}],["rect",{width:"10",height:"16",x:"12",y:"4",rx:"2",key:"ixliua"}],["path",{d:"M8 6H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h4",key:"1mp6e1"}],["circle",{cx:"17",cy:"15",r:"1",key:"tqvash"}]]);const x_=i("monitor-stop",[["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2",key:"x3v2xh"}],["rect",{x:"9",y:"7",width:"6",height:"6",rx:"1",key:"5m2oou"}]]);const N_=i("monitor-x",[["path",{d:"m14.5 12.5-5-5",key:"1jahn5"}],["path",{d:"m9.5 12.5 5-5",key:"1k2t7b"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}]]);const C_=i("monitor-up",[["path",{d:"m9 10 3-3 3 3",key:"11gsxs"}],["path",{d:"M12 13V7",key:"h0r20n"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}]]);const $_=i("moon-star",[["path",{d:"M18 5h4",key:"1lhgn2"}],["path",{d:"M20 3v4",key:"1olli1"}],["path",{d:"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401",key:"kfwtm"}]]);const S_=i("monitor",[["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["line",{x1:"8",x2:"16",y1:"21",y2:"21",key:"1svkeh"}],["line",{x1:"12",x2:"12",y1:"17",y2:"21",key:"vw1qmm"}]]);const L_=i("moon",[["path",{d:"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401",key:"kfwtm"}]]);const I_=i("motorbike",[["path",{d:"m18 14-1-3",key:"bdajw9"}],["path",{d:"m3 9 6 2a2 2 0 0 1 2-2h2a2 2 0 0 1 1.99 1.81",key:"f5fotj"}],["path",{d:"M8 17h3a1 1 0 0 0 1-1 6 6 0 0 1 6-6 1 1 0 0 0 1-1v-.75A5 5 0 0 0 17 5",key:"3i90e2"}],["circle",{cx:"19",cy:"17",r:"3",key:"1otbdv"}],["circle",{cx:"5",cy:"17",r:"3",key:"1d8p0c"}]]);const A_=i("mountain-snow",[["path",{d:"m8 3 4 8 5-5 5 15H2L8 3z",key:"otkl63"}],["path",{d:"M4.14 15.08c2.62-1.57 5.24-1.43 7.86.42 2.74 1.94 5.49 2 8.23.19",key:"1pvmmp"}]]);const P_=i("mountain",[["path",{d:"m8 3 4 8 5-5 5 15H2L8 3z",key:"otkl63"}]]);const T_=i("mouse-off",[["path",{d:"M12 6v.343",key:"1gyhex"}],["path",{d:"M18.218 18.218A7 7 0 0 1 5 15V9a7 7 0 0 1 .782-3.218",key:"ukzz01"}],["path",{d:"M19 13.343V9A7 7 0 0 0 8.56 2.902",key:"104jy9"}],["path",{d:"M22 22 2 2",key:"1r8tn9"}]]);const D_=i("mouse-pointer-2-off",[["path",{d:"m15.55 8.45 5.138 2.087a.5.5 0 0 1-.063.947l-6.124 1.58a2 2 0 0 0-1.438 1.435l-1.579 6.126a.5.5 0 0 1-.947.063L8.45 15.551",key:"1qoshx"}],["path",{d:"M22 2 2 22",key:"y4kqgn"}],["path",{d:"m6.816 11.528-2.779-6.84a.495.495 0 0 1 .651-.651l6.84 2.779",key:"mymuvk"}]]);const E_=i("mouse-pointer-2",[["path",{d:"M4.037 4.688a.495.495 0 0 1 .651-.651l16 6.5a.5.5 0 0 1-.063.947l-6.124 1.58a2 2 0 0 0-1.438 1.435l-1.579 6.126a.5.5 0 0 1-.947.063z",key:"edeuup"}]]);const z_=i("mouse-pointer-ban",[["path",{d:"M2.034 2.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.944L8.204 7.545a1 1 0 0 0-.66.66l-1.066 3.443a.5.5 0 0 1-.944.033z",key:"11pp1i"}],["circle",{cx:"16",cy:"16",r:"6",key:"qoo3c4"}],["path",{d:"m11.8 11.8 8.4 8.4",key:"oogvdj"}]]);const O_=i("mouse-pointer-click",[["path",{d:"M14 4.1 12 6",key:"ita8i4"}],["path",{d:"m5.1 8-2.9-.8",key:"1go3kf"}],["path",{d:"m6 12-1.9 2",key:"mnht97"}],["path",{d:"M7.2 2.2 8 5.1",key:"1cfko1"}],["path",{d:"M9.037 9.69a.498.498 0 0 1 .653-.653l11 4.5a.5.5 0 0 1-.074.949l-4.349 1.041a1 1 0 0 0-.74.739l-1.04 4.35a.5.5 0 0 1-.95.074z",key:"s0h3yz"}]]);const q_=i("mouse-pointer",[["path",{d:"M12.586 12.586 19 19",key:"ea5xo7"}],["path",{d:"M3.688 3.037a.497.497 0 0 0-.651.651l6.5 15.999a.501.501 0 0 0 .947-.062l1.569-6.083a2 2 0 0 1 1.448-1.479l6.124-1.579a.5.5 0 0 0 .063-.947z",key:"277e5u"}]]);const j_=i("mouse",[["rect",{x:"5",y:"2",width:"14",height:"20",rx:"7",key:"11ol66"}],["path",{d:"M12 6v4",key:"16clxf"}]]);const Er=i("move-3d",[["path",{d:"M5 3v16h16",key:"1mqmf9"}],["path",{d:"m5 19 6-6",key:"jh6hbb"}],["path",{d:"m2 6 3-3 3 3",key:"tkyvxa"}],["path",{d:"m18 16 3 3-3 3",key:"1d4glt"}]]);const H_=i("move-diagonal-2",[["path",{d:"M19 13v6h-6",key:"1hxl6d"}],["path",{d:"M5 11V5h6",key:"12e2xe"}],["path",{d:"m5 5 14 14",key:"11anup"}]]);const V_=i("move-diagonal",[["path",{d:"M11 19H5v-6",key:"8awifj"}],["path",{d:"M13 5h6v6",key:"7voy1q"}],["path",{d:"M19 5 5 19",key:"wwaj1z"}]]);const F_=i("move-down-left",[["path",{d:"M11 19H5V13",key:"1akmht"}],["path",{d:"M19 5L5 19",key:"72u4yj"}]]);const B_=i("move-down-right",[["path",{d:"M19 13V19H13",key:"10vkzq"}],["path",{d:"M5 5L19 19",key:"5zm2fv"}]]);const W_=i("move-down",[["path",{d:"M8 18L12 22L16 18",key:"cskvfv"}],["path",{d:"M12 2V22",key:"r89rzk"}]]);const U_=i("move-horizontal",[["path",{d:"m18 8 4 4-4 4",key:"1ak13k"}],["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"m6 8-4 4 4 4",key:"15zrgr"}]]);const R_=i("move-left",[["path",{d:"M6 8L2 12L6 16",key:"kyvwex"}],["path",{d:"M2 12H22",key:"1m8cig"}]]);const G_=i("move-right",[["path",{d:"M18 8L22 12L18 16",key:"1r0oui"}],["path",{d:"M2 12H22",key:"1m8cig"}]]);const K_=i("move-up-left",[["path",{d:"M5 11V5H11",key:"3q78g9"}],["path",{d:"M5 5L19 19",key:"5zm2fv"}]]);const Y_=i("move-up",[["path",{d:"M8 6L12 2L16 6",key:"1yvkyx"}],["path",{d:"M12 2V22",key:"r89rzk"}]]);const X_=i("move-up-right",[["path",{d:"M13 5H19V11",key:"1n1gyv"}],["path",{d:"M19 5L5 19",key:"72u4yj"}]]);const Z_=i("move",[["path",{d:"M12 2v20",key:"t6zp3m"}],["path",{d:"m15 19-3 3-3-3",key:"11eu04"}],["path",{d:"m19 9 3 3-3 3",key:"1mg7y2"}],["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"m5 9-3 3 3 3",key:"j64kie"}],["path",{d:"m9 5 3-3 3 3",key:"l8vdw6"}]]);const Q_=i("move-vertical",[["path",{d:"M12 2v20",key:"t6zp3m"}],["path",{d:"m8 18 4 4 4-4",key:"bh5tu3"}],["path",{d:"m8 6 4-4 4 4",key:"ybng9g"}]]);const J_=i("music-2",[["circle",{cx:"8",cy:"18",r:"4",key:"1fc0mg"}],["path",{d:"M12 18V2l7 4",key:"g04rme"}]]);const e8=i("music-3",[["circle",{cx:"12",cy:"18",r:"4",key:"m3r9ws"}],["path",{d:"M16 18V2",key:"40x2m5"}]]);const t8=i("music-4",[["path",{d:"M9 18V5l12-2v13",key:"1jmyc2"}],["path",{d:"m9 9 12-2",key:"1e64n2"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}],["circle",{cx:"18",cy:"16",r:"3",key:"1hluhg"}]]);const o8=i("music",[["path",{d:"M9 18V5l12-2v13",key:"1jmyc2"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}],["circle",{cx:"18",cy:"16",r:"3",key:"1hluhg"}]]);const n8=i("navigation-2-off",[["path",{d:"M9.31 9.31 5 21l7-4 7 4-1.17-3.17",key:"qoq2o2"}],["path",{d:"M14.53 8.88 12 2l-1.17 3.17",key:"k3sjzy"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]]);const a8=i("navigation-2",[["polygon",{points:"12 2 19 21 12 17 5 21 12 2",key:"x8c0qg"}]]);const r8=i("navigation-off",[["path",{d:"M8.43 8.43 3 11l8 2 2 8 2.57-5.43",key:"1vdtb7"}],["path",{d:"M17.39 11.73 22 2l-9.73 4.61",key:"tya3r6"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]]);const i8=i("navigation",[["polygon",{points:"3 11 22 2 13 21 11 13 3 11",key:"1ltx0t"}]]);const c8=i("network",[["rect",{x:"16",y:"16",width:"6",height:"6",rx:"1",key:"4q2zg0"}],["rect",{x:"2",y:"16",width:"6",height:"6",rx:"1",key:"8cvhb9"}],["rect",{x:"9",y:"2",width:"6",height:"6",rx:"1",key:"1egb70"}],["path",{d:"M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3",key:"1jsf9p"}],["path",{d:"M12 12V8",key:"2874zd"}]]);const s8=i("newspaper",[["path",{d:"M15 18h-5",key:"95g1m2"}],["path",{d:"M18 14h-8",key:"sponae"}],["path",{d:"M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-4 0v-9a2 2 0 0 1 2-2h2",key:"39pd36"}],["rect",{width:"8",height:"4",x:"10",y:"6",rx:"1",key:"aywv1n"}]]);const d8=i("nfc",[["path",{d:"M6 8.32a7.43 7.43 0 0 1 0 7.36",key:"9iaqei"}],["path",{d:"M9.46 6.21a11.76 11.76 0 0 1 0 11.58",key:"1yha7l"}],["path",{d:"M12.91 4.1a15.91 15.91 0 0 1 .01 15.8",key:"4iu2gk"}],["path",{d:"M16.37 2a20.16 20.16 0 0 1 0 20",key:"sap9u2"}]]);const l8=i("non-binary",[["path",{d:"M12 2v10",key:"mnfbl"}],["path",{d:"m8.5 4 7 4",key:"m1xjk3"}],["path",{d:"m8.5 8 7-4",key:"t0m5j6"}],["circle",{cx:"12",cy:"17",r:"5",key:"qbz8iq"}]]);const u8=i("notebook-pen",[["path",{d:"M13.4 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-7.4",key:"re6nr2"}],["path",{d:"M2 6h4",key:"aawbzj"}],["path",{d:"M2 10h4",key:"l0bgd4"}],["path",{d:"M2 14h4",key:"1gsvsf"}],["path",{d:"M2 18h4",key:"1bu2t1"}],["path",{d:"M21.378 5.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"pqwjuv"}]]);const h8=i("notebook-tabs",[["path",{d:"M2 6h4",key:"aawbzj"}],["path",{d:"M2 10h4",key:"l0bgd4"}],["path",{d:"M2 14h4",key:"1gsvsf"}],["path",{d:"M2 18h4",key:"1bu2t1"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",key:"1nb95v"}],["path",{d:"M15 2v20",key:"dcj49h"}],["path",{d:"M15 7h5",key:"1xj5lc"}],["path",{d:"M15 12h5",key:"w5shd9"}],["path",{d:"M15 17h5",key:"1qaofu"}]]);const p8=i("notebook-text",[["path",{d:"M2 6h4",key:"aawbzj"}],["path",{d:"M2 10h4",key:"l0bgd4"}],["path",{d:"M2 14h4",key:"1gsvsf"}],["path",{d:"M2 18h4",key:"1bu2t1"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",key:"1nb95v"}],["path",{d:"M9.5 8h5",key:"11mslq"}],["path",{d:"M9.5 12H16",key:"ktog6x"}],["path",{d:"M9.5 16H14",key:"p1seyn"}]]);const y8=i("notebook",[["path",{d:"M2 6h4",key:"aawbzj"}],["path",{d:"M2 10h4",key:"l0bgd4"}],["path",{d:"M2 14h4",key:"1gsvsf"}],["path",{d:"M2 18h4",key:"1bu2t1"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",key:"1nb95v"}],["path",{d:"M16 2v20",key:"rotuqe"}]]);const f8=i("notepad-text-dashed",[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v2",key:"j91f56"}],["path",{d:"M20 12v2",key:"w8o0tu"}],["path",{d:"M20 18v2a2 2 0 0 1-2 2h-1",key:"1c9ggx"}],["path",{d:"M13 22h-2",key:"191ugt"}],["path",{d:"M7 22H6a2 2 0 0 1-2-2v-2",key:"1rt9px"}],["path",{d:"M4 14v-2",key:"1v0sqh"}],["path",{d:"M4 8V6a2 2 0 0 1 2-2h2",key:"1mwabg"}],["path",{d:"M8 10h6",key:"3oa6kw"}],["path",{d:"M8 14h8",key:"1fgep2"}],["path",{d:"M8 18h5",key:"17enja"}]]);const m8=i("notepad-text",[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"16",height:"18",x:"4",y:"4",rx:"2",key:"1u9h20"}],["path",{d:"M8 10h6",key:"3oa6kw"}],["path",{d:"M8 14h8",key:"1fgep2"}],["path",{d:"M8 18h5",key:"17enja"}]]);const k8=i("nut-off",[["path",{d:"M12 4V2",key:"1k5q1u"}],["path",{d:"M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592a7.01 7.01 0 0 0 4.125-2.939",key:"1xcvy9"}],["path",{d:"M19 10v3.343",key:"163tfc"}],["path",{d:"M12 12c-1.349-.573-1.905-1.005-2.5-2-.546.902-1.048 1.353-2.5 2-1.018-.644-1.46-1.08-2-2-1.028.71-1.69.918-3 1 1.081-1.048 1.757-2.03 2-3 .194-.776.84-1.551 1.79-2.21m11.654 5.997c.887-.457 1.28-.891 1.556-1.787 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4-.74 0-1.461.068-2.15.192",key:"17914v"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]]);const g8=i("nut",[["path",{d:"M12 4V2",key:"1k5q1u"}],["path",{d:"M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592A7.003 7.003 0 0 0 19 14v-4",key:"1tgyif"}],["path",{d:"M12 4C8 4 4.5 6 4 8c-.243.97-.919 1.952-2 3 1.31-.082 1.972-.29 3-1 .54.92.982 1.356 2 2 1.452-.647 1.954-1.098 2.5-2 .595.995 1.151 1.427 2.5 2 1.31-.621 1.862-1.058 2.5-2 .629.977 1.162 1.423 2.5 2 1.209-.548 1.68-.967 2-2 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4Z",key:"tnsqj"}]]);const zr=i("octagon-alert",[["path",{d:"M12 16h.01",key:"1drbdi"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M15.312 2a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586l-4.688-4.688A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2z",key:"1fd625"}]]);const v8=i("octagon-minus",[["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",key:"2d38gg"}],["path",{d:"M8 12h8",key:"1wcyev"}]]);const Or=i("octagon-pause",[["path",{d:"M10 15V9",key:"1lckn7"}],["path",{d:"M14 15V9",key:"1muqhk"}],["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",key:"2d38gg"}]]);const an=i("octagon-x",[["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",key:"2d38gg"}],["path",{d:"m9 9 6 6",key:"z0biqf"}]]);const _8=i("octagon",[["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",key:"2d38gg"}]]);const b8=i("omega",[["path",{d:"M3 20h4.5a.5.5 0 0 0 .5-.5v-.282a.52.52 0 0 0-.247-.437 8 8 0 1 1 8.494-.001.52.52 0 0 0-.247.438v.282a.5.5 0 0 0 .5.5H21",key:"1x94xo"}]]);const M8=i("option",[["path",{d:"M3 3h6l6 18h6",key:"ph9rgk"}],["path",{d:"M14 3h7",key:"16f0ms"}]]);const w8=i("orbit",[["path",{d:"M20.341 6.484A10 10 0 0 1 10.266 21.85",key:"1enhxb"}],["path",{d:"M3.659 17.516A10 10 0 0 1 13.74 2.152",key:"1crzgf"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["circle",{cx:"19",cy:"5",r:"2",key:"mhkx31"}],["circle",{cx:"5",cy:"19",r:"2",key:"v8kfzx"}]]);const x8=i("origami",[["path",{d:"M12 12V4a1 1 0 0 1 1-1h6.297a1 1 0 0 1 .651 1.759l-4.696 4.025",key:"1bx4vc"}],["path",{d:"m12 21-7.414-7.414A2 2 0 0 1 4 12.172V6.415a1.002 1.002 0 0 1 1.707-.707L20 20.009",key:"1h3km6"}],["path",{d:"m12.214 3.381 8.414 14.966a1 1 0 0 1-.167 1.199l-1.168 1.163a1 1 0 0 1-.706.291H6.351a1 1 0 0 1-.625-.219L3.25 18.8a1 1 0 0 1 .631-1.781l4.165.027",key:"1hj4wg"}]]);const N8=i("package-2",[["path",{d:"M12 3v6",key:"1holv5"}],["path",{d:"M16.76 3a2 2 0 0 1 1.8 1.1l2.23 4.479a2 2 0 0 1 .21.891V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9.472a2 2 0 0 1 .211-.894L5.45 4.1A2 2 0 0 1 7.24 3z",key:"187q7i"}],["path",{d:"M3.054 9.013h17.893",key:"grwhos"}]]);const C8=i("package-check",[["path",{d:"m16 16 2 2 4-4",key:"gfu2re"}],["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",key:"e7tb2h"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}],["polyline",{points:"3.29 7 12 12 20.71 7",key:"ousv84"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12",key:"a4e8g8"}]]);const $8=i("package-minus",[["path",{d:"M16 16h6",key:"100bgy"}],["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",key:"e7tb2h"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}],["polyline",{points:"3.29 7 12 12 20.71 7",key:"ousv84"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12",key:"a4e8g8"}]]);const S8=i("package-open",[["path",{d:"M12 22v-9",key:"x3hkom"}],["path",{d:"M15.17 2.21a1.67 1.67 0 0 1 1.63 0L21 4.57a1.93 1.93 0 0 1 0 3.36L8.82 14.79a1.655 1.655 0 0 1-1.64 0L3 12.43a1.93 1.93 0 0 1 0-3.36z",key:"2ntwy6"}],["path",{d:"M20 13v3.87a2.06 2.06 0 0 1-1.11 1.83l-6 3.08a1.93 1.93 0 0 1-1.78 0l-6-3.08A2.06 2.06 0 0 1 4 16.87V13",key:"1pmm1c"}],["path",{d:"M21 12.43a1.93 1.93 0 0 0 0-3.36L8.83 2.2a1.64 1.64 0 0 0-1.63 0L3 4.57a1.93 1.93 0 0 0 0 3.36l12.18 6.86a1.636 1.636 0 0 0 1.63 0z",key:"12ttoo"}]]);const L8=i("package-plus",[["path",{d:"M16 16h6",key:"100bgy"}],["path",{d:"M19 13v6",key:"85cyf1"}],["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",key:"e7tb2h"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}],["polyline",{points:"3.29 7 12 12 20.71 7",key:"ousv84"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12",key:"a4e8g8"}]]);const I8=i("package-search",[["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",key:"e7tb2h"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}],["polyline",{points:"3.29 7 12 12 20.71 7",key:"ousv84"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12",key:"a4e8g8"}],["circle",{cx:"18.5",cy:"15.5",r:"2.5",key:"b5zd12"}],["path",{d:"M20.27 17.27 22 19",key:"1l4muz"}]]);const A8=i("package-x",[["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",key:"e7tb2h"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}],["polyline",{points:"3.29 7 12 12 20.71 7",key:"ousv84"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12",key:"a4e8g8"}],["path",{d:"m17 13 5 5m-5 0 5-5",key:"im3w4b"}]]);const P8=i("package",[["path",{d:"M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z",key:"1a0edw"}],["path",{d:"M12 22V12",key:"d0xqtd"}],["polyline",{points:"3.29 7 12 12 20.71 7",key:"ousv84"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}]]);const T8=i("paint-bucket",[["path",{d:"M11 7 6 2",key:"1jwth8"}],["path",{d:"M18.992 12H2.041",key:"xw1gg"}],["path",{d:"M21.145 18.38A3.34 3.34 0 0 1 20 16.5a3.3 3.3 0 0 1-1.145 1.88c-.575.46-.855 1.02-.855 1.595A2 2 0 0 0 20 22a2 2 0 0 0 2-2.025c0-.58-.285-1.13-.855-1.595",key:"1nkol4"}],["path",{d:"m8.5 4.5 2.148-2.148a1.205 1.205 0 0 1 1.704 0l7.296 7.296a1.205 1.205 0 0 1 0 1.704l-7.592 7.592a3.615 3.615 0 0 1-5.112 0l-3.888-3.888a3.615 3.615 0 0 1 0-5.112L5.67 7.33",key:"1nk1rd"}]]);const D8=i("paint-roller",[["rect",{width:"16",height:"6",x:"2",y:"2",rx:"2",key:"jcyz7m"}],["path",{d:"M10 16v-2a2 2 0 0 1 2-2h8a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2",key:"1b9h7c"}],["rect",{width:"4",height:"6",x:"8",y:"16",rx:"1",key:"d6e7yl"}]]);const qr=i("paintbrush-vertical",[["path",{d:"M10 2v2",key:"7u0qdc"}],["path",{d:"M14 2v4",key:"qmzblu"}],["path",{d:"M17 2a1 1 0 0 1 1 1v9H6V3a1 1 0 0 1 1-1z",key:"ycvu00"}],["path",{d:"M6 12a1 1 0 0 0-1 1v1a2 2 0 0 0 2 2h2a1 1 0 0 1 1 1v2.9a2 2 0 1 0 4 0V17a1 1 0 0 1 1-1h2a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1",key:"iw4wnp"}]]);const E8=i("paintbrush",[["path",{d:"m14.622 17.897-10.68-2.913",key:"vj2p1u"}],["path",{d:"M18.376 2.622a1 1 0 1 1 3.002 3.002L17.36 9.643a.5.5 0 0 0 0 .707l.944.944a2.41 2.41 0 0 1 0 3.408l-.944.944a.5.5 0 0 1-.707 0L8.354 7.348a.5.5 0 0 1 0-.707l.944-.944a2.41 2.41 0 0 1 3.408 0l.944.944a.5.5 0 0 0 .707 0z",key:"18tc5c"}],["path",{d:"M9 8c-1.804 2.71-3.97 3.46-6.583 3.948a.507.507 0 0 0-.302.819l7.32 8.883a1 1 0 0 0 1.185.204C12.735 20.405 16 16.792 16 15",key:"ytzfxy"}]]);const z8=i("palette",[["path",{d:"M12 22a1 1 0 0 1 0-20 10 9 0 0 1 10 9 5 5 0 0 1-5 5h-2.25a1.75 1.75 0 0 0-1.4 2.8l.3.4a1.75 1.75 0 0 1-1.4 2.8z",key:"e79jfc"}],["circle",{cx:"13.5",cy:"6.5",r:".5",fill:"currentColor",key:"1okk4w"}],["circle",{cx:"17.5",cy:"10.5",r:".5",fill:"currentColor",key:"f64h9f"}],["circle",{cx:"6.5",cy:"12.5",r:".5",fill:"currentColor",key:"qy21gx"}],["circle",{cx:"8.5",cy:"7.5",r:".5",fill:"currentColor",key:"fotxhn"}]]);const O8=i("panda",[["path",{d:"M11.25 17.25h1.5L12 18z",key:"1wmwwj"}],["path",{d:"m15 12 2 2",key:"k60wz4"}],["path",{d:"M18 6.5a.5.5 0 0 0-.5-.5",key:"1ch4h4"}],["path",{d:"M20.69 9.67a4.5 4.5 0 1 0-7.04-5.5 8.35 8.35 0 0 0-3.3 0 4.5 4.5 0 1 0-7.04 5.5C2.49 11.2 2 12.88 2 14.5 2 19.47 6.48 22 12 22s10-2.53 10-7.5c0-1.62-.48-3.3-1.3-4.83",key:"1c660l"}],["path",{d:"M6 6.5a.495.495 0 0 1 .5-.5",key:"eviuep"}],["path",{d:"m9 12-2 2",key:"326nkw"}]]);const q8=i("panel-bottom-close",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"m15 8-3 3-3-3",key:"1oxy1z"}]]);const jr=i("panel-bottom-dashed",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M14 15h1",key:"171nev"}],["path",{d:"M19 15h2",key:"1vnucp"}],["path",{d:"M3 15h2",key:"8bym0q"}],["path",{d:"M9 15h1",key:"1tg3ks"}]]);const j8=i("panel-bottom-open",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"m9 10 3-3 3 3",key:"11gsxs"}]]);const H8=i("panel-bottom",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 15h18",key:"5xshup"}]]);const Hr=i("panel-left-close",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"m16 15-3-3 3-3",key:"14y99z"}]]);const Vr=i("panel-left-dashed",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 14v1",key:"askpd8"}],["path",{d:"M9 19v2",key:"16tejx"}],["path",{d:"M9 3v2",key:"1noubl"}],["path",{d:"M9 9v1",key:"19ebxg"}]]);const Fr=i("panel-left-open",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"m14 9 3 3-3 3",key:"8010ee"}]]);const V8=i("panel-left-right-dashed",[["path",{d:"M15 10V9",key:"4dkmfx"}],["path",{d:"M15 15v-1",key:"6a4afx"}],["path",{d:"M15 21v-2",key:"1qshmc"}],["path",{d:"M15 5V3",key:"1fk0mb"}],["path",{d:"M9 10V9",key:"1lazqi"}],["path",{d:"M9 15v-1",key:"9lx740"}],["path",{d:"M9 21v-2",key:"1fwk0n"}],["path",{d:"M9 5V3",key:"2q8zi6"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]]);const rn=i("panel-left",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}]]);const F8=i("panel-right-close",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 3v18",key:"14nvp0"}],["path",{d:"m8 9 3 3-3 3",key:"12hl5m"}]]);const Br=i("panel-right-dashed",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 14v1",key:"ilsfch"}],["path",{d:"M15 19v2",key:"1fst2f"}],["path",{d:"M15 3v2",key:"z204g4"}],["path",{d:"M15 9v1",key:"z2a8b1"}]]);const B8=i("panel-right-open",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 3v18",key:"14nvp0"}],["path",{d:"m10 15-3-3 3-3",key:"1pgupc"}]]);const W8=i("panel-right",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 3v18",key:"14nvp0"}]]);const U8=i("panel-top-bottom-dashed",[["path",{d:"M14 15h1",key:"171nev"}],["path",{d:"M14 9h1",key:"l0svgy"}],["path",{d:"M19 15h2",key:"1vnucp"}],["path",{d:"M19 9h2",key:"te2zfg"}],["path",{d:"M3 15h2",key:"8bym0q"}],["path",{d:"M3 9h2",key:"1h4ldw"}],["path",{d:"M9 15h1",key:"1tg3ks"}],["path",{d:"M9 9h1",key:"15jzuz"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]]);const R8=i("panel-top-close",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"m9 16 3-3 3 3",key:"1idcnm"}]]);const Wr=i("panel-top-dashed",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M14 9h1",key:"l0svgy"}],["path",{d:"M19 9h2",key:"te2zfg"}],["path",{d:"M3 9h2",key:"1h4ldw"}],["path",{d:"M9 9h1",key:"15jzuz"}]]);const G8=i("panel-top-open",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"m15 14-3 3-3-3",key:"g215vf"}]]);const K8=i("panel-top",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}]]);const Y8=i("panels-left-bottom",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"M9 15h12",key:"5ijen5"}]]);const X8=i("panels-right-bottom",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 15h12",key:"1wkqb3"}],["path",{d:"M15 3v18",key:"14nvp0"}]]);const Z8=i("paperclip",[["path",{d:"m16 6-8.414 8.586a2 2 0 0 0 2.829 2.829l8.414-8.586a4 4 0 1 0-5.657-5.657l-8.379 8.551a6 6 0 1 0 8.485 8.485l8.379-8.551",key:"1miecu"}]]);const Ur=i("panels-top-left",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"M9 21V9",key:"1oto5p"}]]);const Q8=i("parentheses",[["path",{d:"M8 21s-4-3-4-9 4-9 4-9",key:"uto9ud"}],["path",{d:"M16 3s4 3 4 9-4 9-4 9",key:"4w2vsq"}]]);const J8=i("parking-meter",[["path",{d:"M11 15h2",key:"199qp6"}],["path",{d:"M12 12v3",key:"158kv8"}],["path",{d:"M12 19v3",key:"npa21l"}],["path",{d:"M15.282 19a1 1 0 0 0 .948-.68l2.37-6.988a7 7 0 1 0-13.2 0l2.37 6.988a1 1 0 0 0 .948.68z",key:"1jofit"}],["path",{d:"M9 9a3 3 0 1 1 6 0",key:"jdoeu8"}]]);const eb=i("party-popper",[["path",{d:"M5.8 11.3 2 22l10.7-3.79",key:"gwxi1d"}],["path",{d:"M4 3h.01",key:"1vcuye"}],["path",{d:"M22 8h.01",key:"1mrtc2"}],["path",{d:"M15 2h.01",key:"1cjtqr"}],["path",{d:"M22 20h.01",key:"1mrys2"}],["path",{d:"m22 2-2.24.75a2.9 2.9 0 0 0-1.96 3.12c.1.86-.57 1.63-1.45 1.63h-.38c-.86 0-1.6.6-1.76 1.44L14 10",key:"hbicv8"}],["path",{d:"m22 13-.82-.33c-.86-.34-1.82.2-1.98 1.11c-.11.7-.72 1.22-1.43 1.22H17",key:"1i94pl"}],["path",{d:"m11 2 .33.82c.34.86-.2 1.82-1.11 1.98C9.52 4.9 9 5.52 9 6.23V7",key:"1cofks"}],["path",{d:"M11 13c1.93 1.93 2.83 4.17 2 5-.83.83-3.07-.07-5-2-1.93-1.93-2.83-4.17-2-5 .83-.83 3.07.07 5 2Z",key:"4kbmks"}]]);const tb=i("pause",[["rect",{x:"14",y:"3",width:"5",height:"18",rx:"1",key:"kaeet6"}],["rect",{x:"5",y:"3",width:"5",height:"18",rx:"1",key:"1wsw3u"}]]);const ob=i("paw-print",[["circle",{cx:"11",cy:"4",r:"2",key:"vol9p0"}],["circle",{cx:"18",cy:"8",r:"2",key:"17gozi"}],["circle",{cx:"20",cy:"16",r:"2",key:"1v9bxh"}],["path",{d:"M9 10a5 5 0 0 1 5 5v3.5a3.5 3.5 0 0 1-6.84 1.045Q6.52 17.48 4.46 16.84A3.5 3.5 0 0 1 5.5 10Z",key:"1ydw1z"}]]);const nb=i("pc-case",[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",key:"1uq1d7"}],["path",{d:"M15 14h.01",key:"1kp3bh"}],["path",{d:"M9 6h6",key:"dgm16u"}],["path",{d:"M9 10h6",key:"9gxzsh"}]]);const Rr=i("pen-line",[["path",{d:"M13 21h8",key:"1jsn5i"}],["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}]]);const ab=i("pen-off",[["path",{d:"m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982",key:"bjo8r8"}],["path",{d:"m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353",key:"16h5ne"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const rb=i("pen-tool",[["path",{d:"M15.707 21.293a1 1 0 0 1-1.414 0l-1.586-1.586a1 1 0 0 1 0-1.414l5.586-5.586a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414z",key:"nt11vn"}],["path",{d:"m18 13-1.375-6.874a1 1 0 0 0-.746-.776L3.235 2.028a1 1 0 0 0-1.207 1.207L5.35 15.879a1 1 0 0 0 .776.746L13 18",key:"15qc1e"}],["path",{d:"m2.3 2.3 7.286 7.286",key:"1wuzzi"}],["circle",{cx:"11",cy:"11",r:"2",key:"xmgehs"}]]);const Gr=i("pen",[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}]]);const ib=i("pencil-line",[["path",{d:"M13 21h8",key:"1jsn5i"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}],["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}]]);const cb=i("pencil-off",[["path",{d:"m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982",key:"bjo8r8"}],["path",{d:"m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353",key:"16h5ne"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const sb=i("pencil-ruler",[["path",{d:"M13 7 8.7 2.7a2.41 2.41 0 0 0-3.4 0L2.7 5.3a2.41 2.41 0 0 0 0 3.4L7 13",key:"orapub"}],["path",{d:"m8 6 2-2",key:"115y1s"}],["path",{d:"m18 16 2-2",key:"ee94s4"}],["path",{d:"m17 11 4.3 4.3c.94.94.94 2.46 0 3.4l-2.6 2.6c-.94.94-2.46.94-3.4 0L11 17",key:"cfq27r"}],["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}]]);const db=i("pencil",[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}]]);const lb=i("pentagon",[["path",{d:"M10.83 2.38a2 2 0 0 1 2.34 0l8 5.74a2 2 0 0 1 .73 2.25l-3.04 9.26a2 2 0 0 1-1.9 1.37H7.04a2 2 0 0 1-1.9-1.37L2.1 10.37a2 2 0 0 1 .73-2.25z",key:"2hea0t"}]]);const ub=i("percent",[["line",{x1:"19",x2:"5",y1:"5",y2:"19",key:"1x9vlm"}],["circle",{cx:"6.5",cy:"6.5",r:"2.5",key:"4mh3h7"}],["circle",{cx:"17.5",cy:"17.5",r:"2.5",key:"1mdrzq"}]]);const hb=i("person-standing",[["circle",{cx:"12",cy:"5",r:"1",key:"gxeob9"}],["path",{d:"m9 20 3-6 3 6",key:"se2kox"}],["path",{d:"m6 8 6 2 6-2",key:"4o3us4"}],["path",{d:"M12 10v4",key:"1kjpxc"}]]);const pb=i("philippine-peso",[["path",{d:"M20 11H4",key:"6ut86h"}],["path",{d:"M20 7H4",key:"zbl0bi"}],["path",{d:"M7 21V4a1 1 0 0 1 1-1h4a1 1 0 0 1 0 12H7",key:"1ana5r"}]]);const yb=i("phone-call",[["path",{d:"M13 2a9 9 0 0 1 9 9",key:"1itnx2"}],["path",{d:"M13 6a5 5 0 0 1 5 5",key:"11nki7"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",key:"9njp5v"}]]);const fb=i("phone-forwarded",[["path",{d:"M14 6h8",key:"yd68k4"}],["path",{d:"m18 2 4 4-4 4",key:"pucp1d"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",key:"9njp5v"}]]);const mb=i("phone-incoming",[["path",{d:"M16 2v6h6",key:"1mfrl5"}],["path",{d:"m22 2-6 6",key:"6f0sa0"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",key:"9njp5v"}]]);const kb=i("phone-missed",[["path",{d:"m16 2 6 6",key:"1gw87d"}],["path",{d:"m22 2-6 6",key:"6f0sa0"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",key:"9njp5v"}]]);const gb=i("phone-off",[["path",{d:"M10.1 13.9a14 14 0 0 0 3.732 2.668 1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2 18 18 0 0 1-12.728-5.272",key:"1wngk7"}],["path",{d:"M22 2 2 22",key:"y4kqgn"}],["path",{d:"M4.76 13.582A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 .244.473",key:"10hv5p"}]]);const vb=i("phone-outgoing",[["path",{d:"m16 8 6-6",key:"oawc05"}],["path",{d:"M22 8V2h-6",key:"oqy2zc"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",key:"9njp5v"}]]);const _b=i("phone",[["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",key:"9njp5v"}]]);const bb=i("pi",[["line",{x1:"9",x2:"9",y1:"4",y2:"20",key:"ovs5a5"}],["path",{d:"M4 7c0-1.7 1.3-3 3-3h13",key:"10pag4"}],["path",{d:"M18 20c-1.7 0-3-1.3-3-3V4",key:"1gaosr"}]]);const Mb=i("piano",[["path",{d:"M18.5 8c-1.4 0-2.6-.8-3.2-2A6.87 6.87 0 0 0 2 9v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-8.5C22 9.6 20.4 8 18.5 8",key:"lag0yf"}],["path",{d:"M2 14h20",key:"myj16y"}],["path",{d:"M6 14v4",key:"9ng0ue"}],["path",{d:"M10 14v4",key:"1v8uk5"}],["path",{d:"M14 14v4",key:"1tqops"}],["path",{d:"M18 14v4",key:"18uqwm"}]]);const wb=i("pickaxe",[["path",{d:"m14 13-8.381 8.38a1 1 0 0 1-3.001-3L11 9.999",key:"1lw9ds"}],["path",{d:"M15.973 4.027A13 13 0 0 0 5.902 2.373c-1.398.342-1.092 2.158.277 2.601a19.9 19.9 0 0 1 5.822 3.024",key:"ffj4ej"}],["path",{d:"M16.001 11.999a19.9 19.9 0 0 1 3.024 5.824c.444 1.369 2.26 1.676 2.603.278A13 13 0 0 0 20 8.069",key:"8tj4zw"}],["path",{d:"M18.352 3.352a1.205 1.205 0 0 0-1.704 0l-5.296 5.296a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l5.296-5.296a1.205 1.205 0 0 0 0-1.704z",key:"hh6h97"}]]);const xb=i("picture-in-picture-2",[["path",{d:"M21 9V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h4",key:"daa4of"}],["rect",{width:"10",height:"7",x:"12",y:"13",rx:"2",key:"1nb8gs"}]]);const Nb=i("picture-in-picture",[["path",{d:"M2 10h6V4",key:"zwrco"}],["path",{d:"m2 4 6 6",key:"ug085t"}],["path",{d:"M21 10V7a2 2 0 0 0-2-2h-7",key:"git5jr"}],["path",{d:"M3 14v2a2 2 0 0 0 2 2h3",key:"1f7fh3"}],["rect",{x:"12",y:"14",width:"10",height:"7",rx:"1",key:"1wjs3o"}]]);const Cb=i("piggy-bank",[["path",{d:"M11 17h3v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a3.16 3.16 0 0 0 2-2h1a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-1a5 5 0 0 0-2-4V3a4 4 0 0 0-3.2 1.6l-.3.4H11a6 6 0 0 0-6 6v1a5 5 0 0 0 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1z",key:"1piglc"}],["path",{d:"M16 10h.01",key:"1m94wz"}],["path",{d:"M2 8v1a2 2 0 0 0 2 2h1",key:"1env43"}]]);const $b=i("pilcrow-left",[["path",{d:"M14 3v11",key:"mlfb7b"}],["path",{d:"M14 9h-3a3 3 0 0 1 0-6h9",key:"1ulc19"}],["path",{d:"M18 3v11",key:"1phi0r"}],["path",{d:"M22 18H2l4-4",key:"yt65j9"}],["path",{d:"m6 22-4-4",key:"6jgyf5"}]]);const Sb=i("pilcrow-right",[["path",{d:"M10 3v11",key:"o3l5kj"}],["path",{d:"M10 9H7a1 1 0 0 1 0-6h8",key:"1wb1nc"}],["path",{d:"M14 3v11",key:"mlfb7b"}],["path",{d:"m18 14 4 4H2",key:"4r8io1"}],["path",{d:"m22 18-4 4",key:"1hjjrd"}]]);const Lb=i("pilcrow",[["path",{d:"M13 4v16",key:"8vvj80"}],["path",{d:"M17 4v16",key:"7dpous"}],["path",{d:"M19 4H9.5a4.5 4.5 0 0 0 0 9H13",key:"sh4n9v"}]]);const Ib=i("pill-bottle",[["path",{d:"M18 11h-4a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h4",key:"17ldeb"}],["path",{d:"M6 7v13a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7",key:"nc37y6"}],["rect",{width:"16",height:"5",x:"4",y:"2",rx:"1",key:"3jeezo"}]]);const Ab=i("pill",[["path",{d:"m10.5 20.5 10-10a4.95 4.95 0 1 0-7-7l-10 10a4.95 4.95 0 1 0 7 7Z",key:"wa1lgi"}],["path",{d:"m8.5 8.5 7 7",key:"rvfmvr"}]]);const Pb=i("pin-off",[["path",{d:"M12 17v5",key:"bb1du9"}],["path",{d:"M15 9.34V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H7.89",key:"znwnzq"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M9 9v1.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h11",key:"c9qhm2"}]]);const Tb=i("pin",[["path",{d:"M12 17v5",key:"bb1du9"}],["path",{d:"M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z",key:"1nkz8b"}]]);const Db=i("pipette",[["path",{d:"m12 9-8.414 8.414A2 2 0 0 0 3 18.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 3.828 21h1.344a2 2 0 0 0 1.414-.586L15 12",key:"1y3wsu"}],["path",{d:"m18 9 .4.4a1 1 0 1 1-3 3l-3.8-3.8a1 1 0 1 1 3-3l.4.4 3.4-3.4a1 1 0 1 1 3 3z",key:"110lr1"}],["path",{d:"m2 22 .414-.414",key:"jhxm08"}]]);const Eb=i("pizza",[["path",{d:"m12 14-1 1",key:"11onhr"}],["path",{d:"m13.75 18.25-1.25 1.42",key:"1yisr3"}],["path",{d:"M17.775 5.654a15.68 15.68 0 0 0-12.121 12.12",key:"1qtqk6"}],["path",{d:"M18.8 9.3a1 1 0 0 0 2.1 7.7",key:"fbbbr2"}],["path",{d:"M21.964 20.732a1 1 0 0 1-1.232 1.232l-18-5a1 1 0 0 1-.695-1.232A19.68 19.68 0 0 1 15.732 2.037a1 1 0 0 1 1.232.695z",key:"1hyfdd"}]]);const zb=i("plane-landing",[["path",{d:"M2 22h20",key:"272qi7"}],["path",{d:"M3.77 10.77 2 9l2-4.5 1.1.55c.55.28.9.84.9 1.45s.35 1.17.9 1.45L8 8.5l3-6 1.05.53a2 2 0 0 1 1.09 1.52l.72 5.4a2 2 0 0 0 1.09 1.52l4.4 2.2c.42.22.78.55 1.01.96l.6 1.03c.49.88-.06 1.98-1.06 2.1l-1.18.15c-.47.06-.95-.02-1.37-.24L4.29 11.15a2 2 0 0 1-.52-.38Z",key:"1ma21e"}]]);const Ob=i("plane-takeoff",[["path",{d:"M2 22h20",key:"272qi7"}],["path",{d:"M6.36 17.4 4 17l-2-4 1.1-.55a2 2 0 0 1 1.8 0l.17.1a2 2 0 0 0 1.8 0L8 12 5 6l.9-.45a2 2 0 0 1 2.09.2l4.02 3a2 2 0 0 0 2.1.2l4.19-2.06a2.41 2.41 0 0 1 1.73-.17L21 7a1.4 1.4 0 0 1 .87 1.99l-.38.76c-.23.46-.6.84-1.07 1.08L7.58 17.2a2 2 0 0 1-1.22.18Z",key:"fkigj9"}]]);const qb=i("plane",[["path",{d:"M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z",key:"1v9wt8"}]]);const jb=i("play",[["path",{d:"M5 5a2 2 0 0 1 3.008-1.728l11.997 6.998a2 2 0 0 1 .003 3.458l-12 7A2 2 0 0 1 5 19z",key:"10ikf1"}]]);const Hb=i("plug-2",[["path",{d:"M9 2v6",key:"17ngun"}],["path",{d:"M15 2v6",key:"s7yy2p"}],["path",{d:"M12 17v5",key:"bb1du9"}],["path",{d:"M5 8h14",key:"pcz4l3"}],["path",{d:"M6 11V8h12v3a6 6 0 1 1-12 0Z",key:"wtfw2c"}]]);const Kr=i("plug-zap",[["path",{d:"M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z",key:"goz73y"}],["path",{d:"m2 22 3-3",key:"19mgm9"}],["path",{d:"M7.5 13.5 10 11",key:"7xgeeb"}],["path",{d:"M10.5 16.5 13 14",key:"10btkg"}],["path",{d:"m18 3-4 4h6l-4 4",key:"16psg9"}]]);const Vb=i("plug",[["path",{d:"M12 22v-5",key:"1ega77"}],["path",{d:"M15 8V2",key:"18g5xt"}],["path",{d:"M17 8a1 1 0 0 1 1 1v4a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1z",key:"1xoxul"}],["path",{d:"M9 8V2",key:"14iosj"}]]);const es=i("plus",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]]);const Fb=i("pocket",[["path",{d:"M20 3a2 2 0 0 1 2 2v6a1 1 0 0 1-20 0V5a2 2 0 0 1 2-2z",key:"1uodqw"}],["path",{d:"m8 10 4 4 4-4",key:"1mxd5q"}]]);const Bb=i("pocket-knife",[["path",{d:"M3 2v1c0 1 2 1 2 2S3 6 3 7s2 1 2 2-2 1-2 2 2 1 2 2",key:"19w3oe"}],["path",{d:"M18 6h.01",key:"1v4wsw"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"M20.83 8.83a4 4 0 0 0-5.66-5.66l-12 12a4 4 0 1 0 5.66 5.66Z",key:"6fykxj"}],["path",{d:"M18 11.66V22a4 4 0 0 0 4-4V6",key:"1utzek"}]]);const Wb=i("podcast",[["path",{d:"M13 17a1 1 0 1 0-2 0l.5 4.5a0.5 0.5 0 0 0 1 0z",fill:"currentColor",key:"x1mxqr"}],["path",{d:"M16.85 18.58a9 9 0 1 0-9.7 0",key:"d71mpg"}],["path",{d:"M8 14a5 5 0 1 1 8 0",key:"fc81rn"}],["circle",{cx:"12",cy:"11",r:"1",fill:"currentColor",key:"vqiwd"}]]);const Ub=i("pointer-off",[["path",{d:"M10 4.5V4a2 2 0 0 0-2.41-1.957",key:"jsi14n"}],["path",{d:"M13.9 8.4a2 2 0 0 0-1.26-1.295",key:"hirc7f"}],["path",{d:"M21.7 16.2A8 8 0 0 0 22 14v-3a2 2 0 1 0-4 0v-1a2 2 0 0 0-3.63-1.158",key:"1jxb2e"}],["path",{d:"m7 15-1.8-1.8a2 2 0 0 0-2.79 2.86L6 19.7a7.74 7.74 0 0 0 6 2.3h2a8 8 0 0 0 5.657-2.343",key:"10r7hm"}],["path",{d:"M6 6v8",key:"tv5xkp"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const Rb=i("pointer",[["path",{d:"M22 14a8 8 0 0 1-8 8",key:"56vcr3"}],["path",{d:"M18 11v-1a2 2 0 0 0-2-2a2 2 0 0 0-2 2",key:"1agjmk"}],["path",{d:"M14 10V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1",key:"wdbh2u"}],["path",{d:"M10 9.5V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v10",key:"1ibuk9"}],["path",{d:"M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15",key:"g6ys72"}]]);const Gb=i("popcorn",[["path",{d:"M18 8a2 2 0 0 0 0-4 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0 0 4",key:"10td1f"}],["path",{d:"M10 22 9 8",key:"yjptiv"}],["path",{d:"m14 22 1-14",key:"8jwc8b"}],["path",{d:"M20 8c.5 0 .9.4.8 1l-2.6 12c-.1.5-.7 1-1.2 1H7c-.6 0-1.1-.4-1.2-1L3.2 9c-.1-.6.3-1 .8-1Z",key:"1qo33t"}]]);const Kb=i("popsicle",[["path",{d:"M18.6 14.4c.8-.8.8-2 0-2.8l-8.1-8.1a4.95 4.95 0 1 0-7.1 7.1l8.1 8.1c.9.7 2.1.7 2.9-.1Z",key:"1o68ps"}],["path",{d:"m22 22-5.5-5.5",key:"17o70y"}]]);const Yb=i("pound-sterling",[["path",{d:"M18 7c0-5.333-8-5.333-8 0",key:"1prm2n"}],["path",{d:"M10 7v14",key:"18tmcs"}],["path",{d:"M6 21h12",key:"4dkmi1"}],["path",{d:"M6 13h10",key:"ybwr4a"}]]);const Xb=i("power-off",[["path",{d:"M18.36 6.64A9 9 0 0 1 20.77 15",key:"dxknvb"}],["path",{d:"M6.16 6.16a9 9 0 1 0 12.68 12.68",key:"1x7qb5"}],["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const Zb=i("power",[["path",{d:"M12 2v10",key:"mnfbl"}],["path",{d:"M18.4 6.6a9 9 0 1 1-12.77.04",key:"obofu9"}]]);const Qb=i("presentation",[["path",{d:"M2 3h20",key:"91anmk"}],["path",{d:"M21 3v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3",key:"2k9sn8"}],["path",{d:"m7 21 5-5 5 5",key:"bip4we"}]]);const Jb=i("printer-check",[["path",{d:"M13.5 22H7a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v.5",key:"qeb09x"}],["path",{d:"m16 19 2 2 4-4",key:"1b14m6"}],["path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v2",key:"1md90i"}],["path",{d:"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6",key:"1itne7"}]]);const e6=i("printer-x",[["path",{d:"M12.531 22H7a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h6.377",key:"1w39xo"}],["path",{d:"m16.5 16.5 5 5",key:"zc9lw7"}],["path",{d:"m16.5 21.5 5-5",key:"1fr29m"}],["path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1.5",key:"18he39"}],["path",{d:"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6",key:"1itne7"}]]);const t6=i("projector",[["path",{d:"M5 7 3 5",key:"1yys58"}],["path",{d:"M9 6V3",key:"1ptz9u"}],["path",{d:"m13 7 2-2",key:"1w3vmq"}],["circle",{cx:"9",cy:"13",r:"3",key:"1mma13"}],["path",{d:"M11.83 12H20a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h2.17",key:"2frwzc"}],["path",{d:"M16 16h2",key:"dnq2od"}]]);const o6=i("printer",[["path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2",key:"143wyd"}],["path",{d:"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6",key:"1itne7"}],["rect",{x:"6",y:"14",width:"12",height:"8",rx:"1",key:"1ue0tg"}]]);const n6=i("proportions",[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M12 9v11",key:"1fnkrn"}],["path",{d:"M2 9h13a2 2 0 0 1 2 2v9",key:"11z3ex"}]]);const a6=i("puzzle",[["path",{d:"M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.014 3.015 1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.014 3.015 1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474 2.5 2.5 0 1 1-3.014-3.015 1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474 2.5 2.5 0 1 0 3.014-3.015 1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z",key:"w46dr5"}]]);const r6=i("pyramid",[["path",{d:"M2.5 16.88a1 1 0 0 1-.32-1.43l9-13.02a1 1 0 0 1 1.64 0l9 13.01a1 1 0 0 1-.32 1.44l-8.51 4.86a2 2 0 0 1-1.98 0Z",key:"aenxs0"}],["path",{d:"M12 2v20",key:"t6zp3m"}]]);const i6=i("qr-code",[["rect",{width:"5",height:"5",x:"3",y:"3",rx:"1",key:"1tu5fj"}],["rect",{width:"5",height:"5",x:"16",y:"3",rx:"1",key:"1v8r4q"}],["rect",{width:"5",height:"5",x:"3",y:"16",rx:"1",key:"1x03jg"}],["path",{d:"M21 16h-3a2 2 0 0 0-2 2v3",key:"177gqh"}],["path",{d:"M21 21v.01",key:"ents32"}],["path",{d:"M12 7v3a2 2 0 0 1-2 2H7",key:"8crl2c"}],["path",{d:"M3 12h.01",key:"nlz23k"}],["path",{d:"M12 3h.01",key:"n36tog"}],["path",{d:"M12 16v.01",key:"133mhm"}],["path",{d:"M16 12h1",key:"1slzba"}],["path",{d:"M21 12v.01",key:"1lwtk9"}],["path",{d:"M12 21v-1",key:"1880an"}]]);const c6=i("quote",[["path",{d:"M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z",key:"rib7q0"}],["path",{d:"M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z",key:"1ymkrd"}]]);const s6=i("rabbit",[["path",{d:"M13 16a3 3 0 0 1 2.24 5",key:"1epib5"}],["path",{d:"M18 12h.01",key:"yjnet6"}],["path",{d:"M18 21h-8a4 4 0 0 1-4-4 7 7 0 0 1 7-7h.2L9.6 6.4a1 1 0 1 1 2.8-2.8L15.8 7h.2c3.3 0 6 2.7 6 6v1a2 2 0 0 1-2 2h-1a3 3 0 0 0-3 3",key:"ue9ozu"}],["path",{d:"M20 8.54V4a2 2 0 1 0-4 0v3",key:"49iql8"}],["path",{d:"M7.612 12.524a3 3 0 1 0-1.6 4.3",key:"1e33i0"}]]);const d6=i("radar",[["path",{d:"M19.07 4.93A10 10 0 0 0 6.99 3.34",key:"z3du51"}],["path",{d:"M4 6h.01",key:"oypzma"}],["path",{d:"M2.29 9.62A10 10 0 1 0 21.31 8.35",key:"qzzz0"}],["path",{d:"M16.24 7.76A6 6 0 1 0 8.23 16.67",key:"1yjesh"}],["path",{d:"M12 18h.01",key:"mhygvu"}],["path",{d:"M17.99 11.66A6 6 0 0 1 15.77 16.67",key:"1u2y91"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}],["path",{d:"m13.41 10.59 5.66-5.66",key:"mhq4k0"}]]);const l6=i("radical",[["path",{d:"M3 12h3.28a1 1 0 0 1 .948.684l2.298 7.934a.5.5 0 0 0 .96-.044L13.82 4.771A1 1 0 0 1 14.792 4H21",key:"1mqj8i"}]]);const u6=i("radiation",[["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M14 15.4641a4 4 0 0 1-4 0L7.52786 19.74597 A 1 1 0 0 0 7.99303 21.16211 10 10 0 0 0 16.00697 21.16211 1 1 0 0 0 16.47214 19.74597z",key:"1y4lzb"}],["path",{d:"M16 12a4 4 0 0 0-2-3.464l2.472-4.282a1 1 0 0 1 1.46-.305 10 10 0 0 1 4.006 6.94A1 1 0 0 1 21 12z",key:"163ggk"}],["path",{d:"M8 12a4 4 0 0 1 2-3.464L7.528 4.254a1 1 0 0 0-1.46-.305 10 10 0 0 0-4.006 6.94A1 1 0 0 0 3 12z",key:"1l9i0b"}]]);const h6=i("radio-receiver",[["path",{d:"M5 16v2",key:"g5qcv5"}],["path",{d:"M19 16v2",key:"1gbaio"}],["rect",{width:"20",height:"8",x:"2",y:"8",rx:"2",key:"vjsjur"}],["path",{d:"M18 12h.01",key:"yjnet6"}]]);const p6=i("radio-tower",[["path",{d:"M4.9 16.1C1 12.2 1 5.8 4.9 1.9",key:"s0qx1y"}],["path",{d:"M7.8 4.7a6.14 6.14 0 0 0-.8 7.5",key:"1idnkw"}],["circle",{cx:"12",cy:"9",r:"2",key:"1092wv"}],["path",{d:"M16.2 4.8c2 2 2.26 5.11.8 7.47",key:"ojru2q"}],["path",{d:"M19.1 1.9a9.96 9.96 0 0 1 0 14.1",key:"rhi7fg"}],["path",{d:"M9.5 18h5",key:"mfy3pd"}],["path",{d:"m8 22 4-11 4 11",key:"25yftu"}]]);const y6=i("radio",[["path",{d:"M16.247 7.761a6 6 0 0 1 0 8.478",key:"1fwjs5"}],["path",{d:"M19.075 4.933a10 10 0 0 1 0 14.134",key:"ehdyv1"}],["path",{d:"M4.925 19.067a10 10 0 0 1 0-14.134",key:"1q22gi"}],["path",{d:"M7.753 16.239a6 6 0 0 1 0-8.478",key:"r2q7qm"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]]);const f6=i("radius",[["path",{d:"M20.34 17.52a10 10 0 1 0-2.82 2.82",key:"fydyku"}],["circle",{cx:"19",cy:"19",r:"2",key:"17f5cg"}],["path",{d:"m13.41 13.41 4.18 4.18",key:"1gqbwc"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]]);const m6=i("rainbow",[["path",{d:"M22 17a10 10 0 0 0-20 0",key:"ozegv"}],["path",{d:"M6 17a6 6 0 0 1 12 0",key:"5giftw"}],["path",{d:"M10 17a2 2 0 0 1 4 0",key:"gnsikk"}]]);const k6=i("rail-symbol",[["path",{d:"M5 15h14",key:"m0yey3"}],["path",{d:"M5 9h14",key:"7tsvo6"}],["path",{d:"m14 20-5-5 6-6-5-5",key:"1jo42i"}]]);const g6=i("rat",[["path",{d:"M13 22H4a2 2 0 0 1 0-4h12",key:"bt3f23"}],["path",{d:"M13.236 18a3 3 0 0 0-2.2-5",key:"1tbvmo"}],["path",{d:"M16 9h.01",key:"1bdo4e"}],["path",{d:"M16.82 3.94a3 3 0 1 1 3.237 4.868l1.815 2.587a1.5 1.5 0 0 1-1.5 2.1l-2.872-.453a3 3 0 0 0-3.5 3",key:"9ch7kn"}],["path",{d:"M17 4.988a3 3 0 1 0-5.2 2.052A7 7 0 0 0 4 14.015 4 4 0 0 0 8 18",key:"3s7e9i"}]]);const v6=i("ratio",[["rect",{width:"12",height:"20",x:"6",y:"2",rx:"2",key:"1oxtiu"}],["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2",key:"9lu3g6"}]]);const _6=i("receipt-cent",[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M12 6.5v11",key:"ecfhkf"}],["path",{d:"M15 9.4a4 4 0 1 0 0 5.2",key:"1makmb"}]]);const b6=i("receipt-euro",[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M8 12h5",key:"1g6qi8"}],["path",{d:"M16 9.5a4 4 0 1 0 0 5.2",key:"b2px4r"}]]);const M6=i("receipt-indian-rupee",[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M8 7h8",key:"i86dvs"}],["path",{d:"M12 17.5 8 15h1a4 4 0 0 0 0-8",key:"grpkl4"}],["path",{d:"M8 11h8",key:"vwpz6n"}]]);const w6=i("receipt-japanese-yen",[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"m12 10 3-3",key:"1mc12w"}],["path",{d:"m9 7 3 3v7.5",key:"39i0xv"}],["path",{d:"M9 11h6",key:"1fldmi"}],["path",{d:"M9 15h6",key:"cctwl0"}]]);const x6=i("receipt-pound-sterling",[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M8 13h5",key:"1k9z8w"}],["path",{d:"M10 17V9.5a2.5 2.5 0 0 1 5 0",key:"1dzgp0"}],["path",{d:"M8 17h7",key:"8mjdqu"}]]);const N6=i("receipt-russian-ruble",[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M8 15h5",key:"vxg57a"}],["path",{d:"M8 11h5a2 2 0 1 0 0-4h-3v10",key:"1usi5u"}]]);const C6=i("receipt-swiss-franc",[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M10 17V7h5",key:"k7jq18"}],["path",{d:"M10 11h4",key:"1i0mka"}],["path",{d:"M8 15h5",key:"vxg57a"}]]);const $6=i("receipt-text",[["path",{d:"M13 16H8",key:"wsln4y"}],["path",{d:"M14 8H8",key:"1l3xfs"}],["path",{d:"M16 12H8",key:"1fr5h0"}],["path",{d:"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z",key:"ycz6yz"}]]);const S6=i("receipt",[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8",key:"1h4pet"}],["path",{d:"M12 17.5v-11",key:"1jc1ny"}]]);const L6=i("receipt-turkish-lira",[["path",{d:"M10 6.5v11a5.5 5.5 0 0 0 5.5-5.5",key:"nw10mp"}],["path",{d:"m14 8-6 3",key:"2tb98i"}],["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1z",key:"io9ry0"}]]);const I6=i("rectangle-circle",[["path",{d:"M14 4v16H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1z",key:"1m5n7q"}],["circle",{cx:"14",cy:"12",r:"8",key:"1pag6k"}]]);const Yr=i("rectangle-ellipsis",[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2",key:"9lu3g6"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M17 12h.01",key:"1m0b6t"}],["path",{d:"M7 12h.01",key:"eqddd0"}]]);const A6=i("rectangle-goggles",[["path",{d:"M20 6a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-4a2 2 0 0 1-1.6-.8l-1.6-2.13a1 1 0 0 0-1.6 0L9.6 17.2A2 2 0 0 1 8 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z",key:"d5y1f"}]]);const P6=i("rectangle-horizontal",[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2",key:"9lu3g6"}]]);const T6=i("rectangle-vertical",[["rect",{width:"12",height:"20",x:"6",y:"2",rx:"2",key:"1oxtiu"}]]);const D6=i("redo-2",[["path",{d:"m15 14 5-5-5-5",key:"12vg1m"}],["path",{d:"M20 9H9.5A5.5 5.5 0 0 0 4 14.5A5.5 5.5 0 0 0 9.5 20H13",key:"6uklza"}]]);const E6=i("redo-dot",[["circle",{cx:"12",cy:"17",r:"1",key:"1ixnty"}],["path",{d:"M21 7v6h-6",key:"3ptur4"}],["path",{d:"M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7",key:"1kgawr"}]]);const z6=i("recycle",[["path",{d:"M7 19H4.815a1.83 1.83 0 0 1-1.57-.881 1.785 1.785 0 0 1-.004-1.784L7.196 9.5",key:"x6z5xu"}],["path",{d:"M11 19h8.203a1.83 1.83 0 0 0 1.556-.89 1.784 1.784 0 0 0 0-1.775l-1.226-2.12",key:"1x4zh5"}],["path",{d:"m14 16-3 3 3 3",key:"f6jyew"}],["path",{d:"M8.293 13.596 7.196 9.5 3.1 10.598",key:"wf1obh"}],["path",{d:"m9.344 5.811 1.093-1.892A1.83 1.83 0 0 1 11.985 3a1.784 1.784 0 0 1 1.546.888l3.943 6.843",key:"9tzpgr"}],["path",{d:"m13.378 9.633 4.096 1.098 1.097-4.096",key:"1oe83g"}]]);const O6=i("redo",[["path",{d:"M21 7v6h-6",key:"3ptur4"}],["path",{d:"M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7",key:"1kgawr"}]]);const q6=i("refresh-ccw-dot",[["path",{d:"M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"14sxne"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}],["path",{d:"M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16",key:"1hlbsb"}],["path",{d:"M16 16h5v5",key:"ccwih5"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}]]);const j6=i("refresh-ccw",[["path",{d:"M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"14sxne"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}],["path",{d:"M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16",key:"1hlbsb"}],["path",{d:"M16 16h5v5",key:"ccwih5"}]]);const H6=i("refresh-cw-off",[["path",{d:"M21 8L18.74 5.74A9.75 9.75 0 0 0 12 3C11 3 10.03 3.16 9.13 3.47",key:"1krf6h"}],["path",{d:"M8 16H3v5",key:"1cv678"}],["path",{d:"M3 12C3 9.51 4 7.26 5.64 5.64",key:"ruvoct"}],["path",{d:"m3 16 2.26 2.26A9.75 9.75 0 0 0 12 21c2.49 0 4.74-1 6.36-2.64",key:"19q130"}],["path",{d:"M21 12c0 1-.16 1.97-.47 2.87",key:"4w8emr"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}],["path",{d:"M22 22 2 2",key:"1r8tn9"}]]);const V6=i("refresh-cw",[["path",{d:"M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8",key:"v9h5vc"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}],["path",{d:"M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16",key:"3uifl3"}],["path",{d:"M8 16H3v5",key:"1cv678"}]]);const F6=i("refrigerator",[["path",{d:"M5 6a4 4 0 0 1 4-4h6a4 4 0 0 1 4 4v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6Z",key:"fpq118"}],["path",{d:"M5 10h14",key:"elsbfy"}],["path",{d:"M15 7v6",key:"1nx30x"}]]);const B6=i("regex",[["path",{d:"M17 3v10",key:"15fgeh"}],["path",{d:"m12.67 5.5 8.66 5",key:"1gpheq"}],["path",{d:"m12.67 10.5 8.66-5",key:"1dkfa6"}],["path",{d:"M9 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2z",key:"swwfx4"}]]);const W6=i("remove-formatting",[["path",{d:"M4 7V4h16v3",key:"9msm58"}],["path",{d:"M5 20h6",key:"1h6pxn"}],["path",{d:"M13 4 8 20",key:"kqq6aj"}],["path",{d:"m15 15 5 5",key:"me55sn"}],["path",{d:"m20 15-5 5",key:"11p7ol"}]]);const U6=i("repeat-1",[["path",{d:"m17 2 4 4-4 4",key:"nntrym"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14",key:"84bu3i"}],["path",{d:"m7 22-4-4 4-4",key:"1wqhfi"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3",key:"1rx37r"}],["path",{d:"M11 10h1v4",key:"70cz1p"}]]);const R6=i("repeat-2",[["path",{d:"m2 9 3-3 3 3",key:"1ltn5i"}],["path",{d:"M13 18H7a2 2 0 0 1-2-2V6",key:"1r6tfw"}],["path",{d:"m22 15-3 3-3-3",key:"4rnwn2"}],["path",{d:"M11 6h6a2 2 0 0 1 2 2v10",key:"2f72bc"}]]);const G6=i("repeat",[["path",{d:"m17 2 4 4-4 4",key:"nntrym"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14",key:"84bu3i"}],["path",{d:"m7 22-4-4 4-4",key:"1wqhfi"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3",key:"1rx37r"}]]);const K6=i("replace-all",[["path",{d:"M14 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1",key:"zg1ipl"}],["path",{d:"M14 4a1 1 0 0 1 1-1",key:"dhj8ez"}],["path",{d:"M15 10a1 1 0 0 1-1-1",key:"1mnyi5"}],["path",{d:"M19 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1",key:"txt6k4"}],["path",{d:"M21 4a1 1 0 0 0-1-1",key:"sfs9ap"}],["path",{d:"M21 9a1 1 0 0 1-1 1",key:"mp6qeo"}],["path",{d:"m3 7 3 3 3-3",key:"x25e72"}],["path",{d:"M6 10V5a2 2 0 0 1 2-2h2",key:"15xut4"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1",key:"1bkyp8"}]]);const Y6=i("replace",[["path",{d:"M14 4a1 1 0 0 1 1-1",key:"dhj8ez"}],["path",{d:"M15 10a1 1 0 0 1-1-1",key:"1mnyi5"}],["path",{d:"M21 4a1 1 0 0 0-1-1",key:"sfs9ap"}],["path",{d:"M21 9a1 1 0 0 1-1 1",key:"mp6qeo"}],["path",{d:"m3 7 3 3 3-3",key:"x25e72"}],["path",{d:"M6 10V5a2 2 0 0 1 2-2h2",key:"15xut4"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1",key:"1bkyp8"}]]);const X6=i("reply-all",[["path",{d:"m12 17-5-5 5-5",key:"1s3y5u"}],["path",{d:"M22 18v-2a4 4 0 0 0-4-4H7",key:"1fcyog"}],["path",{d:"m7 17-5-5 5-5",key:"1ed8i2"}]]);const Z6=i("reply",[["path",{d:"M20 18v-2a4 4 0 0 0-4-4H4",key:"5vmcpk"}],["path",{d:"m9 17-5-5 5-5",key:"nvlc11"}]]);const Q6=i("rewind",[["path",{d:"M12 6a2 2 0 0 0-3.414-1.414l-6 6a2 2 0 0 0 0 2.828l6 6A2 2 0 0 0 12 18z",key:"2a1g8i"}],["path",{d:"M22 6a2 2 0 0 0-3.414-1.414l-6 6a2 2 0 0 0 0 2.828l6 6A2 2 0 0 0 22 18z",key:"rg3s36"}]]);const J6=i("ribbon",[["path",{d:"M12 11.22C11 9.997 10 9 10 8a2 2 0 0 1 4 0c0 1-.998 2.002-2.01 3.22",key:"1rnhq3"}],["path",{d:"m12 18 2.57-3.5",key:"116vt7"}],["path",{d:"M6.243 9.016a7 7 0 0 1 11.507-.009",key:"10dq0b"}],["path",{d:"M9.35 14.53 12 11.22",key:"tdsyp2"}],["path",{d:"M9.35 14.53C7.728 12.246 6 10.221 6 7a6 5 0 0 1 12 0c-.005 3.22-1.778 5.235-3.43 7.5l3.557 4.527a1 1 0 0 1-.203 1.43l-1.894 1.36a1 1 0 0 1-1.384-.215L12 18l-2.679 3.593a1 1 0 0 1-1.39.213l-1.865-1.353a1 1 0 0 1-.203-1.422z",key:"nmifey"}]]);const rd=i("rocket",[["path",{d:"M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z",key:"m3kijz"}],["path",{d:"m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z",key:"1fmvmk"}],["path",{d:"M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0",key:"1f8sc4"}],["path",{d:"M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5",key:"qeys4"}]]);const eM=i("rocking-chair",[["polyline",{points:"3.5 2 6.5 12.5 18 12.5",key:"y3iy52"}],["line",{x1:"9.5",x2:"5.5",y1:"12.5",y2:"20",key:"19vg5i"}],["line",{x1:"15",x2:"18.5",y1:"12.5",y2:"20",key:"1inpmv"}],["path",{d:"M2.75 18a13 13 0 0 0 18.5 0",key:"1nquas"}]]);const tM=i("roller-coaster",[["path",{d:"M6 19V5",key:"1r845m"}],["path",{d:"M10 19V6.8",key:"9j2tfs"}],["path",{d:"M14 19v-7.8",key:"10s8qv"}],["path",{d:"M18 5v4",key:"1tajlv"}],["path",{d:"M18 19v-6",key:"ielfq3"}],["path",{d:"M22 19V9",key:"158nzp"}],["path",{d:"M2 19V9a4 4 0 0 1 4-4c2 0 4 1.33 6 4s4 4 6 4a4 4 0 1 0-3-6.65",key:"1930oh"}]]);const oM=i("rose",[["path",{d:"M17 10h-1a4 4 0 1 1 4-4v.534",key:"7qf5zm"}],["path",{d:"M17 6h1a4 4 0 0 1 1.42 7.74l-2.29.87a6 6 0 0 1-5.339-10.68l2.069-1.31",key:"1et29u"}],["path",{d:"M4.5 17c2.8-.5 4.4 0 5.5.8s1.8 2.2 2.3 3.7c-2 .4-3.5.4-4.8-.3-1.2-.6-2.3-1.9-3-4.2",key:"kiv2lz"}],["path",{d:"M9.77 12C4 15 2 22 2 22",key:"h28rw0"}],["circle",{cx:"17",cy:"8",r:"2",key:"1330xn"}]]);const Xr=i("rotate-3d",[["path",{d:"M16.466 7.5C15.643 4.237 13.952 2 12 2 9.239 2 7 6.477 7 12s2.239 10 5 10c.342 0 .677-.069 1-.2",key:"10n0gc"}],["path",{d:"m15.194 13.707 3.814 1.86-1.86 3.814",key:"16shm9"}],["path",{d:"M19 15.57c-1.804.885-4.274 1.43-7 1.43-5.523 0-10-2.239-10-5s4.477-5 10-5c4.838 0 8.873 1.718 9.8 4",key:"1lxi77"}]]);const nM=i("rotate-ccw-key",[["path",{d:"m14.5 9.5 1 1",key:"159eiq"}],["path",{d:"m15.5 8.5-4 4",key:"iirg3q"}],["path",{d:"M3 12a9 9 0 1 0 9-9 9.74 9.74 0 0 0-6.74 2.74L3 8",key:"g2jlw"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}],["circle",{cx:"10",cy:"14",r:"2",key:"1239so"}]]);const aM=i("rotate-ccw-square",[["path",{d:"M20 9V7a2 2 0 0 0-2-2h-6",key:"19z8uc"}],["path",{d:"m15 2-3 3 3 3",key:"177bxs"}],["path",{d:"M20 13v5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2",key:"d36hnl"}]]);const rM=i("rotate-ccw",[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}]]);const iM=i("rotate-cw-square",[["path",{d:"M12 5H6a2 2 0 0 0-2 2v3",key:"l96uqu"}],["path",{d:"m9 8 3-3-3-3",key:"1gzgc3"}],["path",{d:"M4 14v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2",key:"1w2k5h"}]]);const cM=i("rotate-cw",[["path",{d:"M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8",key:"1p45f6"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}]]);const sM=i("route-off",[["circle",{cx:"6",cy:"19",r:"3",key:"1kj8tv"}],["path",{d:"M9 19h8.5c.4 0 .9-.1 1.3-.2",key:"1effex"}],["path",{d:"M5.2 5.2A3.5 3.53 0 0 0 6.5 12H12",key:"k9y2ds"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M21 15.3a3.5 3.5 0 0 0-3.3-3.3",key:"11nlu2"}],["path",{d:"M15 5h-4.3",key:"6537je"}],["circle",{cx:"18",cy:"5",r:"3",key:"gq8acd"}]]);const dM=i("route",[["circle",{cx:"6",cy:"19",r:"3",key:"1kj8tv"}],["path",{d:"M9 19h8.5a3.5 3.5 0 0 0 0-7h-11a3.5 3.5 0 0 1 0-7H15",key:"1d8sl"}],["circle",{cx:"18",cy:"5",r:"3",key:"gq8acd"}]]);const lM=i("router",[["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",key:"w68u3i"}],["path",{d:"M6.01 18H6",key:"19vcac"}],["path",{d:"M10.01 18H10",key:"uamcmx"}],["path",{d:"M15 10v4",key:"qjz1xs"}],["path",{d:"M17.84 7.17a4 4 0 0 0-5.66 0",key:"1rif40"}],["path",{d:"M20.66 4.34a8 8 0 0 0-11.31 0",key:"6a5xfq"}]]);const Zr=i("rows-2",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 12h18",key:"1i2n21"}]]);const Qr=i("rows-3",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M21 9H3",key:"1338ky"}],["path",{d:"M21 15H3",key:"9uk58r"}]]);const uM=i("rows-4",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M21 7.5H3",key:"1hm9pq"}],["path",{d:"M21 12H3",key:"2avoz0"}],["path",{d:"M21 16.5H3",key:"n7jzkj"}]]);const hM=i("rss",[["path",{d:"M4 11a9 9 0 0 1 9 9",key:"pv89mb"}],["path",{d:"M4 4a16 16 0 0 1 16 16",key:"k0647b"}],["circle",{cx:"5",cy:"19",r:"1",key:"bfqh0e"}]]);const pM=i("ruler-dimension-line",[["path",{d:"M10 15v-3",key:"1pjskw"}],["path",{d:"M14 15v-3",key:"1o1mqj"}],["path",{d:"M18 15v-3",key:"cws6he"}],["path",{d:"M2 8V4",key:"3jv1jz"}],["path",{d:"M22 6H2",key:"1iqbfk"}],["path",{d:"M22 8V4",key:"16f4ou"}],["path",{d:"M6 15v-3",key:"1ij1qe"}],["rect",{x:"2",y:"12",width:"20",height:"8",rx:"2",key:"1tqiko"}]]);const yM=i("russian-ruble",[["path",{d:"M6 11h8a4 4 0 0 0 0-8H9v18",key:"18ai8t"}],["path",{d:"M6 15h8",key:"1y8f6l"}]]);const fM=i("sailboat",[["path",{d:"M10 2v15",key:"1qf71f"}],["path",{d:"M7 22a4 4 0 0 1-4-4 1 1 0 0 1 1-1h16a1 1 0 0 1 1 1 4 4 0 0 1-4 4z",key:"1pxcvx"}],["path",{d:"M9.159 2.46a1 1 0 0 1 1.521-.193l9.977 8.98A1 1 0 0 1 20 13H4a1 1 0 0 1-.824-1.567z",key:"5oog16"}]]);const mM=i("salad",[["path",{d:"M7 21h10",key:"1b0cd5"}],["path",{d:"M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z",key:"4rw317"}],["path",{d:"M11.38 12a2.4 2.4 0 0 1-.4-4.77 2.4 2.4 0 0 1 3.2-2.77 2.4 2.4 0 0 1 3.47-.63 2.4 2.4 0 0 1 3.37 3.37 2.4 2.4 0 0 1-1.1 3.7 2.51 2.51 0 0 1 .03 1.1",key:"10xrj0"}],["path",{d:"m13 12 4-4",key:"1hckqy"}],["path",{d:"M10.9 7.25A3.99 3.99 0 0 0 4 10c0 .73.2 1.41.54 2",key:"1p4srx"}]]);const kM=i("ruler",[["path",{d:"M21.3 15.3a2.4 2.4 0 0 1 0 3.4l-2.6 2.6a2.4 2.4 0 0 1-3.4 0L2.7 8.7a2.41 2.41 0 0 1 0-3.4l2.6-2.6a2.41 2.41 0 0 1 3.4 0Z",key:"icamh8"}],["path",{d:"m14.5 12.5 2-2",key:"inckbg"}],["path",{d:"m11.5 9.5 2-2",key:"fmmyf7"}],["path",{d:"m8.5 6.5 2-2",key:"vc6u1g"}],["path",{d:"m17.5 15.5 2-2",key:"wo5hmg"}]]);const gM=i("sandwich",[["path",{d:"m2.37 11.223 8.372-6.777a2 2 0 0 1 2.516 0l8.371 6.777",key:"f1wd0e"}],["path",{d:"M21 15a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5.25",key:"1pfu07"}],["path",{d:"M3 15a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h9",key:"1oq9qw"}],["path",{d:"m6.67 15 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2",key:"1fnwu5"}],["rect",{width:"20",height:"4",x:"2",y:"11",rx:"1",key:"itshg"}]]);const vM=i("satellite-dish",[["path",{d:"M4 10a7.31 7.31 0 0 0 10 10Z",key:"1fzpp3"}],["path",{d:"m9 15 3-3",key:"88sc13"}],["path",{d:"M17 13a6 6 0 0 0-6-6",key:"15cc6u"}],["path",{d:"M21 13A10 10 0 0 0 11 3",key:"11nf8s"}]]);const _M=i("satellite",[["path",{d:"m13.5 6.5-3.148-3.148a1.205 1.205 0 0 0-1.704 0L6.352 5.648a1.205 1.205 0 0 0 0 1.704L9.5 10.5",key:"dzhfyz"}],["path",{d:"M16.5 7.5 19 5",key:"1ltcjm"}],["path",{d:"m17.5 10.5 3.148 3.148a1.205 1.205 0 0 1 0 1.704l-2.296 2.296a1.205 1.205 0 0 1-1.704 0L13.5 14.5",key:"nfoymv"}],["path",{d:"M9 21a6 6 0 0 0-6-6",key:"1iajcf"}],["path",{d:"M9.352 10.648a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l4.296-4.296a1.205 1.205 0 0 0 0-1.704l-2.296-2.296a1.205 1.205 0 0 0-1.704 0z",key:"nv9zqy"}]]);const bM=i("saudi-riyal",[["path",{d:"m20 19.5-5.5 1.2",key:"1aenhr"}],["path",{d:"M14.5 4v11.22a1 1 0 0 0 1.242.97L20 15.2",key:"2rtezt"}],["path",{d:"m2.978 19.351 5.549-1.363A2 2 0 0 0 10 16V2",key:"1kbm92"}],["path",{d:"M20 10 4 13.5",key:"8nums9"}]]);const MM=i("save-off",[["path",{d:"M13 13H8a1 1 0 0 0-1 1v7",key:"h8g396"}],["path",{d:"M14 8h1",key:"1lfen6"}],["path",{d:"M17 21v-4",key:"1yknxs"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M20.41 20.41A2 2 0 0 1 19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 .59-1.41",key:"1t4vdl"}],["path",{d:"M29.5 11.5s5 5 4 5",key:"zzn4i6"}],["path",{d:"M9 3h6.2a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V15",key:"24cby9"}]]);const wM=i("save-all",[["path",{d:"M10 2v3a1 1 0 0 0 1 1h5",key:"1xspal"}],["path",{d:"M18 18v-6a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6",key:"1ra60u"}],["path",{d:"M18 22H4a2 2 0 0 1-2-2V6",key:"pblm9e"}],["path",{d:"M8 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9.172a2 2 0 0 1 1.414.586l2.828 2.828A2 2 0 0 1 22 6.828V16a2 2 0 0 1-2.01 2z",key:"1yve0x"}]]);const xM=i("save",[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",key:"1c8476"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",key:"1ydtos"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7",key:"t51u73"}]]);const Jr=i("scale-3d",[["path",{d:"M5 7v11a1 1 0 0 0 1 1h11",key:"13dt1j"}],["path",{d:"M5.293 18.707 11 13",key:"ezgbsx"}],["circle",{cx:"19",cy:"19",r:"2",key:"17f5cg"}],["circle",{cx:"5",cy:"5",r:"2",key:"1gwv83"}]]);const NM=i("scale",[["path",{d:"M12 3v18",key:"108xh3"}],["path",{d:"m19 8 3 8a5 5 0 0 1-6 0zV7",key:"zcdpyk"}],["path",{d:"M3 7h1a17 17 0 0 0 8-2 17 17 0 0 0 8 2h1",key:"1yorad"}],["path",{d:"m5 8 3 8a5 5 0 0 1-6 0zV7",key:"eua70x"}],["path",{d:"M7 21h10",key:"1b0cd5"}]]);const CM=i("scaling",[["path",{d:"M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7",key:"1m0v6g"}],["path",{d:"M14 15H9v-5",key:"pi4jk9"}],["path",{d:"M16 3h5v5",key:"1806ms"}],["path",{d:"M21 3 9 15",key:"15kdhq"}]]);const $M=i("scan-barcode",[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["path",{d:"M8 7v10",key:"23sfjj"}],["path",{d:"M12 7v10",key:"jspqdw"}],["path",{d:"M17 7v10",key:"578dap"}]]);const SM=i("scan-eye",[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["path",{d:"M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0",key:"11ak4c"}]]);const LM=i("scan-face",[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2",key:"1y1vjs"}],["path",{d:"M9 9h.01",key:"1q5me6"}],["path",{d:"M15 9h.01",key:"x1ddxp"}]]);const IM=i("scan-heart",[["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["path",{d:"M7.828 13.07A3 3 0 0 1 12 8.764a3 3 0 0 1 4.172 4.306l-3.447 3.62a1 1 0 0 1-1.449 0z",key:"1ak1ef"}]]);const AM=i("scan-line",[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["path",{d:"M7 12h10",key:"b7w52i"}]]);const PM=i("scan-qr-code",[["path",{d:"M17 12v4a1 1 0 0 1-1 1h-4",key:"uk4fdo"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M17 8V7",key:"q2g9wo"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M7 17h.01",key:"19xn7k"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["rect",{x:"7",y:"7",width:"5",height:"5",rx:"1",key:"m9kyts"}]]);const TM=i("scan-search",[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"m16 16-1.9-1.9",key:"1dq9hf"}]]);const DM=i("scan",[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}]]);const EM=i("scan-text",[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["path",{d:"M7 8h8",key:"1jbsf9"}],["path",{d:"M7 12h10",key:"b7w52i"}],["path",{d:"M7 16h6",key:"1vyc9m"}]]);const zM=i("scissors-line-dashed",[["path",{d:"M5.42 9.42 8 12",key:"12pkuq"}],["circle",{cx:"4",cy:"8",r:"2",key:"107mxr"}],["path",{d:"m14 6-8.58 8.58",key:"gvzu5l"}],["circle",{cx:"4",cy:"16",r:"2",key:"1ehqvc"}],["path",{d:"M10.8 14.8 14 18",key:"ax7m9r"}],["path",{d:"M16 12h-2",key:"10asgb"}],["path",{d:"M22 12h-2",key:"14jgyd"}]]);const OM=i("school",[["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3",key:"1rgiei"}],["path",{d:"M18 5v16",key:"1ethyx"}],["path",{d:"m4 6 7.106-3.79a2 2 0 0 1 1.788 0L20 6",key:"zywc2d"}],["path",{d:"m6 11-3.52 2.147a1 1 0 0 0-.48.854V19a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a1 1 0 0 0-.48-.853L18 11",key:"1d4ql0"}],["path",{d:"M6 5v16",key:"1sn0nx"}],["circle",{cx:"12",cy:"9",r:"2",key:"1092wv"}]]);const qM=i("scissors",[["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M8.12 8.12 12 12",key:"1alkpv"}],["path",{d:"M20 4 8.12 15.88",key:"xgtan2"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}],["path",{d:"M14.8 14.8 20 20",key:"ptml3r"}]]);const jM=i("scooter",[["path",{d:"M21 4h-3.5l2 11.05",key:"1gktiw"}],["path",{d:"M6.95 17h5.142c.523 0 .95-.406 1.063-.916a6.5 6.5 0 0 1 5.345-5.009",key:"1bq3u3"}],["circle",{cx:"19.5",cy:"17.5",r:"2.5",key:"e4zhv9"}],["circle",{cx:"4.5",cy:"17.5",r:"2.5",key:"50vk4p"}]]);const HM=i("screen-share-off",[["path",{d:"M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3",key:"i8wdob"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"m22 3-5 5",key:"12jva0"}],["path",{d:"m17 3 5 5",key:"k36vhe"}]]);const VM=i("screen-share",[["path",{d:"M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3",key:"i8wdob"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"m17 8 5-5",key:"fqif7o"}],["path",{d:"M17 3h5v5",key:"1o3tu8"}]]);const FM=i("scroll",[["path",{d:"M19 17V5a2 2 0 0 0-2-2H4",key:"zz82l3"}],["path",{d:"M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3",key:"1ph1d7"}]]);const BM=i("search-alert",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}],["path",{d:"M11 7v4",key:"m2edmq"}],["path",{d:"M11 15h.01",key:"k85uqc"}]]);const WM=i("scroll-text",[["path",{d:"M15 12h-5",key:"r7krc0"}],["path",{d:"M15 8h-5",key:"1khuty"}],["path",{d:"M19 17V5a2 2 0 0 0-2-2H4",key:"zz82l3"}],["path",{d:"M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3",key:"1ph1d7"}]]);const UM=i("search-check",[["path",{d:"m8 11 2 2 4-4",key:"1sed1v"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]]);const RM=i("search-code",[["path",{d:"m13 13.5 2-2.5-2-2.5",key:"1rvxrh"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}],["path",{d:"M9 8.5 7 11l2 2.5",key:"6ffwbx"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}]]);const GM=i("search-slash",[["path",{d:"m13.5 8.5-5 5",key:"1cs55j"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]]);const KM=i("search-x",[["path",{d:"m13.5 8.5-5 5",key:"1cs55j"}],["path",{d:"m8.5 8.5 5 5",key:"a8mexj"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]]);const cn=i("search",[["path",{d:"m21 21-4.34-4.34",key:"14j7rj"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}]]);const YM=i("section",[["path",{d:"M16 5a4 3 0 0 0-8 0c0 4 8 3 8 7a4 3 0 0 1-8 0",key:"vqan6v"}],["path",{d:"M8 19a4 3 0 0 0 8 0c0-4-8-3-8-7a4 3 0 0 1 8 0",key:"wdjd8o"}]]);const ei=i("send-horizontal",[["path",{d:"M3.714 3.048a.498.498 0 0 0-.683.627l2.843 7.627a2 2 0 0 1 0 1.396l-2.842 7.627a.498.498 0 0 0 .682.627l18-8.5a.5.5 0 0 0 0-.904z",key:"117uat"}],["path",{d:"M6 12h16",key:"s4cdu5"}]]);const XM=i("send-to-back",[["rect",{x:"14",y:"14",width:"8",height:"8",rx:"2",key:"1b0bso"}],["rect",{x:"2",y:"2",width:"8",height:"8",rx:"2",key:"1x09vl"}],["path",{d:"M7 14v1a2 2 0 0 0 2 2h1",key:"pao6x6"}],["path",{d:"M14 7h1a2 2 0 0 1 2 2v1",key:"19tdru"}]]);const ZM=i("send",[["path",{d:"M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z",key:"1ffxy3"}],["path",{d:"m21.854 2.147-10.94 10.939",key:"12cjpa"}]]);const QM=i("separator-horizontal",[["path",{d:"m16 16-4 4-4-4",key:"3dv8je"}],["path",{d:"M3 12h18",key:"1i2n21"}],["path",{d:"m8 8 4-4 4 4",key:"2bscm2"}]]);const JM=i("separator-vertical",[["path",{d:"M12 3v18",key:"108xh3"}],["path",{d:"m16 16 4-4-4-4",key:"1js579"}],["path",{d:"m8 8-4 4 4 4",key:"1whems"}]]);const e7=i("server-cog",[["path",{d:"m10.852 14.772-.383.923",key:"11vil6"}],["path",{d:"M13.148 14.772a3 3 0 1 0-2.296-5.544l-.383-.923",key:"1v3clb"}],["path",{d:"m13.148 9.228.383-.923",key:"t2zzyc"}],["path",{d:"m13.53 15.696-.382-.924a3 3 0 1 1-2.296-5.544",key:"1bxfiv"}],["path",{d:"m14.772 10.852.923-.383",key:"k9m8cz"}],["path",{d:"m14.772 13.148.923.383",key:"1xvhww"}],["path",{d:"M4.5 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-.5",key:"tn8das"}],["path",{d:"M4.5 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-.5",key:"1g2pve"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"M6 6h.01",key:"1utrut"}],["path",{d:"m9.228 10.852-.923-.383",key:"1wtb30"}],["path",{d:"m9.228 13.148-.923.383",key:"1a830x"}]]);const t7=i("server-crash",[["path",{d:"M6 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-2",key:"4b9dqc"}],["path",{d:"M6 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-2",key:"22nnkd"}],["path",{d:"M6 6h.01",key:"1utrut"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"m13 6-4 6h6l-4 6",key:"14hqih"}]]);const o7=i("server-off",[["path",{d:"M7 2h13a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-5",key:"bt2siv"}],["path",{d:"M10 10 2.5 2.5C2 2 2 2.5 2 5v3a2 2 0 0 0 2 2h6z",key:"1hjrv1"}],["path",{d:"M22 17v-1a2 2 0 0 0-2-2h-1",key:"1iynyr"}],["path",{d:"M4 14a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16.5l1-.5.5.5-8-8H4z",key:"161ggg"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const n7=i("server",[["rect",{width:"20",height:"8",x:"2",y:"2",rx:"2",ry:"2",key:"ngkwjq"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",ry:"2",key:"iecqi9"}],["line",{x1:"6",x2:"6.01",y1:"6",y2:"6",key:"16zg32"}],["line",{x1:"6",x2:"6.01",y1:"18",y2:"18",key:"nzw8ys"}]]);const a7=i("settings-2",[["path",{d:"M14 17H5",key:"gfn3mx"}],["path",{d:"M19 7h-9",key:"6i9tg"}],["circle",{cx:"17",cy:"17",r:"3",key:"18b49y"}],["circle",{cx:"7",cy:"7",r:"3",key:"dfmy0x"}]]);const r7=i("settings",[["path",{d:"M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915",key:"1i5ecw"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]]);const i7=i("shapes",[["path",{d:"M8.3 10a.7.7 0 0 1-.626-1.079L11.4 3a.7.7 0 0 1 1.198-.043L16.3 8.9a.7.7 0 0 1-.572 1.1Z",key:"1bo67w"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1",key:"1bkyp8"}],["circle",{cx:"17.5",cy:"17.5",r:"3.5",key:"w3z12y"}]]);const c7=i("share-2",[["circle",{cx:"18",cy:"5",r:"3",key:"gq8acd"}],["circle",{cx:"6",cy:"12",r:"3",key:"w7nqdw"}],["circle",{cx:"18",cy:"19",r:"3",key:"1xt0gg"}],["line",{x1:"8.59",x2:"15.42",y1:"13.51",y2:"17.49",key:"47mynk"}],["line",{x1:"15.41",x2:"8.59",y1:"6.51",y2:"10.49",key:"1n3mei"}]]);const s7=i("share",[["path",{d:"M12 2v13",key:"1km8f5"}],["path",{d:"m16 6-4-4-4 4",key:"13yo43"}],["path",{d:"M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8",key:"1b2hhj"}]]);const d7=i("sheet",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["line",{x1:"3",x2:"21",y1:"9",y2:"9",key:"1vqk6q"}],["line",{x1:"3",x2:"21",y1:"15",y2:"15",key:"o2sbyz"}],["line",{x1:"9",x2:"9",y1:"9",y2:"21",key:"1ib60c"}],["line",{x1:"15",x2:"15",y1:"9",y2:"21",key:"1n26ft"}]]);const l7=i("shell",[["path",{d:"M14 11a2 2 0 1 1-4 0 4 4 0 0 1 8 0 6 6 0 0 1-12 0 8 8 0 0 1 16 0 10 10 0 1 1-20 0 11.93 11.93 0 0 1 2.42-7.22 2 2 0 1 1 3.16 2.44",key:"1cn552"}]]);const u7=i("shield-alert",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]]);const h7=i("shield-ban",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m4.243 5.21 14.39 12.472",key:"1c9a7c"}]]);const p7=i("shield-check",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);const y7=i("shield-half",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 22V2",key:"zs6s6o"}]]);const f7=i("shield-ellipsis",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M8 12h.01",key:"czm47f"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M16 12h.01",key:"1l6xoz"}]]);const m7=i("shield-minus",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M9 12h6",key:"1c52cq"}]]);const k7=i("shield-off",[["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M5 5a1 1 0 0 0-1 1v7c0 5 3.5 7.5 7.67 8.94a1 1 0 0 0 .67.01c2.35-.82 4.48-1.97 5.9-3.71",key:"1jlk70"}],["path",{d:"M9.309 3.652A12.252 12.252 0 0 0 11.24 2.28a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1v7a9.784 9.784 0 0 1-.08 1.264",key:"18rp1v"}]]);const g7=i("shield-plus",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M9 12h6",key:"1c52cq"}],["path",{d:"M12 9v6",key:"199k2o"}]]);const ti=i("shield-question-mark",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3",key:"mhlwft"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);const v7=i("shield-user",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M6.376 18.91a6 6 0 0 1 11.249.003",key:"hnjrf2"}],["circle",{cx:"12",cy:"11",r:"4",key:"1gt34v"}]]);const oi=i("shield-x",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m14.5 9.5-5 5",key:"17q4r4"}],["path",{d:"m9.5 9.5 5 5",key:"18nt4w"}]]);const _7=i("shield",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}]]);const b7=i("ship-wheel",[["circle",{cx:"12",cy:"12",r:"8",key:"46899m"}],["path",{d:"M12 2v7.5",key:"1e5rl5"}],["path",{d:"m19 5-5.23 5.23",key:"1ezxxf"}],["path",{d:"M22 12h-7.5",key:"le1719"}],["path",{d:"m19 19-5.23-5.23",key:"p3fmgn"}],["path",{d:"M12 14.5V22",key:"dgcmos"}],["path",{d:"M10.23 13.77 5 19",key:"qwopd4"}],["path",{d:"M9.5 12H2",key:"r7bup8"}],["path",{d:"M10.23 10.23 5 5",key:"k2y7lj"}],["circle",{cx:"12",cy:"12",r:"2.5",key:"ix0uyj"}]]);const M7=i("ship",[["path",{d:"M12 10.189V14",key:"1p8cqu"}],["path",{d:"M12 2v3",key:"qbqxhf"}],["path",{d:"M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6",key:"qpkstq"}],["path",{d:"M19.38 20A11.6 11.6 0 0 0 21 14l-8.188-3.639a2 2 0 0 0-1.624 0L3 14a11.6 11.6 0 0 0 2.81 7.76",key:"7tigtc"}],["path",{d:"M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"1924j5"}]]);const w7=i("shirt",[["path",{d:"M20.38 3.46 16 2a4 4 0 0 1-8 0L3.62 3.46a2 2 0 0 0-1.34 2.23l.58 3.47a1 1 0 0 0 .99.84H6v10c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V10h2.15a1 1 0 0 0 .99-.84l.58-3.47a2 2 0 0 0-1.34-2.23z",key:"1wgbhj"}]]);const x7=i("shopping-bag",[["path",{d:"M16 10a4 4 0 0 1-8 0",key:"1ltviw"}],["path",{d:"M3.103 6.034h17.794",key:"awc11p"}],["path",{d:"M3.4 5.467a2 2 0 0 0-.4 1.2V20a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6.667a2 2 0 0 0-.4-1.2l-2-2.667A2 2 0 0 0 17 2H7a2 2 0 0 0-1.6.8z",key:"o988cm"}]]);const N7=i("shopping-basket",[["path",{d:"m15 11-1 9",key:"5wnq3a"}],["path",{d:"m19 11-4-7",key:"cnml18"}],["path",{d:"M2 11h20",key:"3eubbj"}],["path",{d:"m3.5 11 1.6 7.4a2 2 0 0 0 2 1.6h9.8a2 2 0 0 0 2-1.6l1.7-7.4",key:"yiazzp"}],["path",{d:"M4.5 15.5h15",key:"13mye1"}],["path",{d:"m5 11 4-7",key:"116ra9"}],["path",{d:"m9 11 1 9",key:"1ojof7"}]]);const C7=i("shopping-cart",[["circle",{cx:"8",cy:"21",r:"1",key:"jimo8o"}],["circle",{cx:"19",cy:"21",r:"1",key:"13723u"}],["path",{d:"M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12",key:"9zh506"}]]);const $7=i("shovel",[["path",{d:"M21.56 4.56a1.5 1.5 0 0 1 0 2.122l-.47.47a3 3 0 0 1-4.212-.03 3 3 0 0 1 0-4.243l.44-.44a1.5 1.5 0 0 1 2.121 0z",key:"1gcedi"}],["path",{d:"M3 22a1 1 0 0 1-1-1v-3.586a1 1 0 0 1 .293-.707l3.355-3.355a1.205 1.205 0 0 1 1.704 0l3.296 3.296a1.205 1.205 0 0 1 0 1.704l-3.355 3.355a1 1 0 0 1-.707.293z",key:"pg9kv3"}],["path",{d:"m9 15 7.879-7.878",key:"1o1zgh"}]]);const S7=i("shower-head",[["path",{d:"m4 4 2.5 2.5",key:"uv2vmf"}],["path",{d:"M13.5 6.5a4.95 4.95 0 0 0-7 7",key:"frdkwv"}],["path",{d:"M15 5 5 15",key:"1ag8rq"}],["path",{d:"M14 17v.01",key:"eokfpp"}],["path",{d:"M10 16v.01",key:"14uyyl"}],["path",{d:"M13 13v.01",key:"1v1k97"}],["path",{d:"M16 10v.01",key:"5169yg"}],["path",{d:"M11 20v.01",key:"cj92p8"}],["path",{d:"M17 14v.01",key:"11cswd"}],["path",{d:"M20 11v.01",key:"19e0od"}]]);const L7=i("shredder",[["path",{d:"M4 13V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v5",key:"1eob4r"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M10 22v-5",key:"sfixh4"}],["path",{d:"M14 19v-2",key:"pdve8j"}],["path",{d:"M18 20v-3",key:"uox2gk"}],["path",{d:"M2 13h20",key:"5evz65"}],["path",{d:"M6 20v-3",key:"c6pdcb"}]]);const I7=i("shrimp",[["path",{d:"M11 12h.01",key:"1lr4k6"}],["path",{d:"M13 22c.5-.5 1.12-1 2.5-1-1.38 0-2-.5-2.5-1",key:"fatpdi"}],["path",{d:"M14 2a3.28 3.28 0 0 1-3.227 1.798l-6.17-.561A2.387 2.387 0 1 0 4.387 8H15.5a1 1 0 0 1 0 13 1 1 0 0 0 0-5H12a7 7 0 0 1-7-7V8",key:"kehrqe"}],["path",{d:"M14 8a8.5 8.5 0 0 1 0 8",key:"1imjx2"}],["path",{d:"M16 16c2 0 4.5-4 4-6",key:"z0nejz"}]]);const A7=i("shrink",[["path",{d:"m15 15 6 6m-6-6v4.8m0-4.8h4.8",key:"17vawe"}],["path",{d:"M9 19.8V15m0 0H4.2M9 15l-6 6",key:"chjx8e"}],["path",{d:"M15 4.2V9m0 0h4.8M15 9l6-6",key:"lav6yq"}],["path",{d:"M9 4.2V9m0 0H4.2M9 9 3 3",key:"1pxi2q"}]]);const P7=i("shrub",[["path",{d:"M12 22v-5.172a2 2 0 0 0-.586-1.414L9.5 13.5",key:"1p17fm"}],["path",{d:"M14.5 14.5 12 17",key:"dy5w4y"}],["path",{d:"M17 8.8A6 6 0 0 1 13.8 20H10A6.5 6.5 0 0 1 7 8a5 5 0 0 1 10 0z",key:"6z7b3o"}]]);const T7=i("shuffle",[["path",{d:"m18 14 4 4-4 4",key:"10pe0f"}],["path",{d:"m18 2 4 4-4 4",key:"pucp1d"}],["path",{d:"M2 18h1.973a4 4 0 0 0 3.3-1.7l5.454-8.6a4 4 0 0 1 3.3-1.7H22",key:"1ailkh"}],["path",{d:"M2 6h1.972a4 4 0 0 1 3.6 2.2",key:"km57vx"}],["path",{d:"M22 18h-6.041a4 4 0 0 1-3.3-1.8l-.359-.45",key:"os18l9"}]]);const D7=i("sigma",[["path",{d:"M18 7V5a1 1 0 0 0-1-1H6.5a.5.5 0 0 0-.4.8l4.5 6a2 2 0 0 1 0 2.4l-4.5 6a.5.5 0 0 0 .4.8H17a1 1 0 0 0 1-1v-2",key:"wuwx1p"}]]);const E7=i("signal-high",[["path",{d:"M2 20h.01",key:"4haj6o"}],["path",{d:"M7 20v-4",key:"j294jx"}],["path",{d:"M12 20v-8",key:"i3yub9"}],["path",{d:"M17 20V8",key:"1tkaf5"}]]);const z7=i("signal-low",[["path",{d:"M2 20h.01",key:"4haj6o"}],["path",{d:"M7 20v-4",key:"j294jx"}]]);const O7=i("signal-medium",[["path",{d:"M2 20h.01",key:"4haj6o"}],["path",{d:"M7 20v-4",key:"j294jx"}],["path",{d:"M12 20v-8",key:"i3yub9"}]]);const q7=i("signal-zero",[["path",{d:"M2 20h.01",key:"4haj6o"}]]);const j7=i("signal",[["path",{d:"M2 20h.01",key:"4haj6o"}],["path",{d:"M7 20v-4",key:"j294jx"}],["path",{d:"M12 20v-8",key:"i3yub9"}],["path",{d:"M17 20V8",key:"1tkaf5"}],["path",{d:"M22 4v16",key:"sih9yq"}]]);const H7=i("signature",[["path",{d:"m21 17-2.156-1.868A.5.5 0 0 0 18 15.5v.5a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1c0-2.545-3.991-3.97-8.5-4a1 1 0 0 0 0 5c4.153 0 4.745-11.295 5.708-13.5a2.5 2.5 0 1 1 3.31 3.284",key:"y32ogt"}],["path",{d:"M3 21h18",key:"itz85i"}]]);const V7=i("signpost-big",[["path",{d:"M10 9H4L2 7l2-2h6",key:"1hq7x2"}],["path",{d:"M14 5h6l2 2-2 2h-6",key:"bv62ej"}],["path",{d:"M10 22V4a2 2 0 1 1 4 0v18",key:"eqpcf2"}],["path",{d:"M8 22h8",key:"rmew8v"}]]);const F7=i("signpost",[["path",{d:"M12 13v8",key:"1l5pq0"}],["path",{d:"M12 3v3",key:"1n5kay"}],["path",{d:"M18 6a2 2 0 0 1 1.387.56l2.307 2.22a1 1 0 0 1 0 1.44l-2.307 2.22A2 2 0 0 1 18 13H6a2 2 0 0 1-1.387-.56l-2.306-2.22a1 1 0 0 1 0-1.44l2.306-2.22A2 2 0 0 1 6 6z",key:"gqqp9m"}]]);const B7=i("siren",[["path",{d:"M7 18v-6a5 5 0 1 1 10 0v6",key:"pcx96s"}],["path",{d:"M5 21a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-1a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2z",key:"1b4s83"}],["path",{d:"M21 12h1",key:"jtio3y"}],["path",{d:"M18.5 4.5 18 5",key:"g5sp9y"}],["path",{d:"M2 12h1",key:"1uaihz"}],["path",{d:"M12 2v1",key:"11qlp1"}],["path",{d:"m4.929 4.929.707.707",key:"1i51kw"}],["path",{d:"M12 12v6",key:"3ahymv"}]]);const W7=i("skip-back",[["path",{d:"M17.971 4.285A2 2 0 0 1 21 6v12a2 2 0 0 1-3.029 1.715l-9.997-5.998a2 2 0 0 1-.003-3.432z",key:"15892j"}],["path",{d:"M3 20V4",key:"1ptbpl"}]]);const U7=i("skip-forward",[["path",{d:"M21 4v16",key:"7j8fe9"}],["path",{d:"M6.029 4.285A2 2 0 0 0 3 6v12a2 2 0 0 0 3.029 1.715l9.997-5.998a2 2 0 0 0 .003-3.432z",key:"zs4d6"}]]);const R7=i("skull",[["path",{d:"m12.5 17-.5-1-.5 1h1z",key:"3me087"}],["path",{d:"M15 22a1 1 0 0 0 1-1v-1a2 2 0 0 0 1.56-3.25 8 8 0 1 0-11.12 0A2 2 0 0 0 8 20v1a1 1 0 0 0 1 1z",key:"1o5pge"}],["circle",{cx:"15",cy:"12",r:"1",key:"1tmaij"}],["circle",{cx:"9",cy:"12",r:"1",key:"1vctgf"}]]);const G7=i("slack",[["rect",{width:"3",height:"8",x:"13",y:"2",rx:"1.5",key:"diqz80"}],["path",{d:"M19 8.5V10h1.5A1.5 1.5 0 1 0 19 8.5",key:"183iwg"}],["rect",{width:"3",height:"8",x:"8",y:"14",rx:"1.5",key:"hqg7r1"}],["path",{d:"M5 15.5V14H3.5A1.5 1.5 0 1 0 5 15.5",key:"76g71w"}],["rect",{width:"8",height:"3",x:"14",y:"13",rx:"1.5",key:"1kmz0a"}],["path",{d:"M15.5 19H14v1.5a1.5 1.5 0 1 0 1.5-1.5",key:"jc4sz0"}],["rect",{width:"8",height:"3",x:"2",y:"8",rx:"1.5",key:"1omvl4"}],["path",{d:"M8.5 5H10V3.5A1.5 1.5 0 1 0 8.5 5",key:"16f3cl"}]]);const K7=i("slash",[["path",{d:"M22 2 2 22",key:"y4kqgn"}]]);const Y7=i("slice",[["path",{d:"M11 16.586V19a1 1 0 0 1-1 1H2L18.37 3.63a1 1 0 1 1 3 3l-9.663 9.663a1 1 0 0 1-1.414 0L8 14",key:"1sllp5"}]]);const id=i("sliders-horizontal",[["path",{d:"M10 5H3",key:"1qgfaw"}],["path",{d:"M12 19H3",key:"yhmn1j"}],["path",{d:"M14 3v4",key:"1sua03"}],["path",{d:"M16 17v4",key:"1q0r14"}],["path",{d:"M21 12h-9",key:"1o4lsq"}],["path",{d:"M21 19h-5",key:"1rlt1p"}],["path",{d:"M21 5h-7",key:"1oszz2"}],["path",{d:"M8 10v4",key:"tgpxqk"}],["path",{d:"M8 12H3",key:"a7s4jb"}]]);const ni=i("sliders-vertical",[["path",{d:"M10 8h4",key:"1sr2af"}],["path",{d:"M12 21v-9",key:"17s77i"}],["path",{d:"M12 8V3",key:"13r4qs"}],["path",{d:"M17 16h4",key:"h1uq16"}],["path",{d:"M19 12V3",key:"o1uvq1"}],["path",{d:"M19 21v-5",key:"qua636"}],["path",{d:"M3 14h4",key:"bcjad9"}],["path",{d:"M5 10V3",key:"cb8scm"}],["path",{d:"M5 21v-7",key:"1w1uti"}]]);const X7=i("smartphone-charging",[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2",key:"1yt0o3"}],["path",{d:"M12.667 8 10 12h4l-2.667 4",key:"h9lk2d"}]]);const Z7=i("smartphone-nfc",[["rect",{width:"7",height:"12",x:"2",y:"6",rx:"1",key:"5nje8w"}],["path",{d:"M13 8.32a7.43 7.43 0 0 1 0 7.36",key:"1g306n"}],["path",{d:"M16.46 6.21a11.76 11.76 0 0 1 0 11.58",key:"uqvjvo"}],["path",{d:"M19.91 4.1a15.91 15.91 0 0 1 .01 15.8",key:"ujntz3"}]]);const Q7=i("smile-plus",[["path",{d:"M22 11v1a10 10 0 1 1-9-10",key:"ew0xw9"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2",key:"1y1vjs"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9",key:"yxxnd0"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9",key:"1p4y9e"}],["path",{d:"M16 5h6",key:"1vod17"}],["path",{d:"M19 2v6",key:"4bpg5p"}]]);const J7=i("smartphone",[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2",key:"1yt0o3"}],["path",{d:"M12 18h.01",key:"mhygvu"}]]);const ew=i("smile",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2",key:"1y1vjs"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9",key:"yxxnd0"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9",key:"1p4y9e"}]]);const tw=i("snail",[["path",{d:"M2 13a6 6 0 1 0 12 0 4 4 0 1 0-8 0 2 2 0 0 0 4 0",key:"hneq2s"}],["circle",{cx:"10",cy:"13",r:"8",key:"194lz3"}],["path",{d:"M2 21h12c4.4 0 8-3.6 8-8V7a2 2 0 1 0-4 0v6",key:"ixqyt7"}],["path",{d:"M18 3 19.1 5.2",key:"9tjm43"}],["path",{d:"M22 3 20.9 5.2",key:"j3odrs"}]]);const ow=i("snowflake",[["path",{d:"m10 20-1.25-2.5L6 18",key:"18frcb"}],["path",{d:"M10 4 8.75 6.5 6 6",key:"7mghy3"}],["path",{d:"m14 20 1.25-2.5L18 18",key:"1chtki"}],["path",{d:"m14 4 1.25 2.5L18 6",key:"1b4wsy"}],["path",{d:"m17 21-3-6h-4",key:"15hhxa"}],["path",{d:"m17 3-3 6 1.5 3",key:"11697g"}],["path",{d:"M2 12h6.5L10 9",key:"kv9z4n"}],["path",{d:"m20 10-1.5 2 1.5 2",key:"1swlpi"}],["path",{d:"M22 12h-6.5L14 15",key:"1mxi28"}],["path",{d:"m4 10 1.5 2L4 14",key:"k9enpj"}],["path",{d:"m7 21 3-6-1.5-3",key:"j8hb9u"}],["path",{d:"m7 3 3 6h4",key:"1otusx"}]]);const nw=i("soap-dispenser-droplet",[["path",{d:"M10.5 2v4",key:"1xt6in"}],["path",{d:"M14 2H7a2 2 0 0 0-2 2",key:"e6xig3"}],["path",{d:"M19.29 14.76A6.67 6.67 0 0 1 17 11a6.6 6.6 0 0 1-2.29 3.76c-1.15.92-1.71 2.04-1.71 3.19 0 2.22 1.8 4.05 4 4.05s4-1.83 4-4.05c0-1.16-.57-2.26-1.71-3.19",key:"adq7uc"}],["path",{d:"M9.607 21H6a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h7V7a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3",key:"t9hm96"}]]);const aw=i("sofa",[["path",{d:"M20 9V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3",key:"1dgpiv"}],["path",{d:"M2 16a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z",key:"xacw8m"}],["path",{d:"M4 18v2",key:"jwo5n2"}],["path",{d:"M20 18v2",key:"1ar1qi"}],["path",{d:"M12 4v9",key:"oqhhn3"}]]);const rw=i("solar-panel",[["path",{d:"M11 2h2",key:"isr7bz"}],["path",{d:"m14.28 14-4.56 8",key:"4anwcf"}],["path",{d:"m21 22-1.558-4H4.558",key:"enk13h"}],["path",{d:"M3 10v2",key:"w8mti9"}],["path",{d:"M6.245 15.04A2 2 0 0 1 8 14h12a1 1 0 0 1 .864 1.505l-3.11 5.457A2 2 0 0 1 16 22H4a1 1 0 0 1-.863-1.506z",key:"pouggg"}],["path",{d:"M7 2a4 4 0 0 1-4 4",key:"78s8of"}],["path",{d:"m8.66 7.66 1.41 1.41",key:"1vaqj8"}]]);const iw=i("soup",[["path",{d:"M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z",key:"4rw317"}],["path",{d:"M7 21h10",key:"1b0cd5"}],["path",{d:"M19.5 12 22 6",key:"shfsr5"}],["path",{d:"M16.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.73 1.62",key:"rpc6vp"}],["path",{d:"M11.25 3c.27.1.8.53.74 1.36-.05.83-.93 1.2-.98 2.02-.06.78.33 1.24.72 1.62",key:"1lf63m"}],["path",{d:"M6.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.74 1.62",key:"97tijn"}]]);const cw=i("space",[["path",{d:"M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1",key:"lt2kga"}]]);const sw=i("spade",[["path",{d:"M12 18v4",key:"jadmvz"}],["path",{d:"M2 14.499a5.5 5.5 0 0 0 9.591 3.675.6.6 0 0 1 .818.001A5.5 5.5 0 0 0 22 14.5c0-2.29-1.5-4-3-5.5l-5.492-5.312a2 2 0 0 0-3-.02L5 8.999c-1.5 1.5-3 3.2-3 5.5",key:"1aw2pz"}]]);const ai=i("sparkles",[["path",{d:"M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z",key:"1s2grr"}],["path",{d:"M20 2v4",key:"1rf3ol"}],["path",{d:"M22 4h-4",key:"gwowj6"}],["circle",{cx:"4",cy:"20",r:"2",key:"6kqj1y"}]]);const dw=i("sparkle",[["path",{d:"M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z",key:"1s2grr"}]]);const lw=i("speaker",[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",key:"1nb95v"}],["path",{d:"M12 6h.01",key:"1vi96p"}],["circle",{cx:"12",cy:"14",r:"4",key:"1jruaj"}],["path",{d:"M12 14h.01",key:"1etili"}]]);const uw=i("speech",[["path",{d:"M8.8 20v-4.1l1.9.2a2.3 2.3 0 0 0 2.164-2.1V8.3A5.37 5.37 0 0 0 2 8.25c0 2.8.656 3.054 1 4.55a5.77 5.77 0 0 1 .029 2.758L2 20",key:"11atix"}],["path",{d:"M19.8 17.8a7.5 7.5 0 0 0 .003-10.603",key:"yol142"}],["path",{d:"M17 15a3.5 3.5 0 0 0-.025-4.975",key:"ssbmkc"}]]);const hw=i("spell-check-2",[["path",{d:"m6 16 6-12 6 12",key:"1b4byz"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"M4 21c1.1 0 1.1-1 2.3-1s1.1 1 2.3 1c1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1",key:"8mdmtu"}]]);const pw=i("spell-check",[["path",{d:"m6 16 6-12 6 12",key:"1b4byz"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"m16 20 2 2 4-4",key:"13tcca"}]]);const yw=i("spline-pointer",[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z",key:"xwnzip"}],["path",{d:"M5 17A12 12 0 0 1 17 5",key:"1okkup"}],["circle",{cx:"19",cy:"5",r:"2",key:"mhkx31"}],["circle",{cx:"5",cy:"19",r:"2",key:"v8kfzx"}]]);const fw=i("spline",[["circle",{cx:"19",cy:"5",r:"2",key:"mhkx31"}],["circle",{cx:"5",cy:"19",r:"2",key:"v8kfzx"}],["path",{d:"M5 17A12 12 0 0 1 17 5",key:"1okkup"}]]);const mw=i("spool",[["path",{d:"M17 13.44 4.442 17.082A2 2 0 0 0 4.982 21H19a2 2 0 0 0 .558-3.921l-1.115-.32A2 2 0 0 1 17 14.837V7.66",key:"13vns8"}],["path",{d:"m7 10.56 12.558-3.642A2 2 0 0 0 19.018 3H5a2 2 0 0 0-.558 3.921l1.115.32A2 2 0 0 1 7 9.163v7.178",key:"s8x3u0"}]]);const kw=i("split",[["path",{d:"M16 3h5v5",key:"1806ms"}],["path",{d:"M8 3H3v5",key:"15dfkv"}],["path",{d:"M12 22v-8.3a4 4 0 0 0-1.172-2.872L3 3",key:"1qrqzj"}],["path",{d:"m15 9 6-6",key:"ko1vev"}]]);const gw=i("spotlight",[["path",{d:"M15.295 19.562 16 22",key:"31jsb7"}],["path",{d:"m17 16 3.758 2.098",key:"121ar7"}],["path",{d:"m19 12.5 3.026-.598",key:"19ukd3"}],["path",{d:"M7.61 6.3a3 3 0 0 0-3.92 1.3l-1.38 2.79a3 3 0 0 0 1.3 3.91l6.89 3.597a1 1 0 0 0 1.342-.447l3.106-6.211a1 1 0 0 0-.447-1.341z",key:"lwb9l9"}],["path",{d:"M8 9V2",key:"1xa0v7"}]]);const vw=i("spray-can",[["path",{d:"M3 3h.01",key:"159qn6"}],["path",{d:"M7 5h.01",key:"1hq22a"}],["path",{d:"M11 7h.01",key:"1osv80"}],["path",{d:"M3 7h.01",key:"1xzrh3"}],["path",{d:"M7 9h.01",key:"19b3jx"}],["path",{d:"M3 11h.01",key:"1eifu7"}],["rect",{width:"4",height:"4",x:"15",y:"5",key:"mri9e4"}],["path",{d:"m19 9 2 2v10c0 .6-.4 1-1 1h-6c-.6 0-1-.4-1-1V11l2-2",key:"aib6hk"}],["path",{d:"m13 14 8-2",key:"1d7bmk"}],["path",{d:"m13 19 8-2",key:"1y2vml"}]]);const _w=i("sprout",[["path",{d:"M14 9.536V7a4 4 0 0 1 4-4h1.5a.5.5 0 0 1 .5.5V5a4 4 0 0 1-4 4 4 4 0 0 0-4 4c0 2 1 3 1 5a5 5 0 0 1-1 3",key:"139s4v"}],["path",{d:"M4 9a5 5 0 0 1 8 4 5 5 0 0 1-8-4",key:"1dlkgp"}],["path",{d:"M5 21h14",key:"11awu3"}]]);const ri=i("square-activity",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M17 12h-2l-2 5-2-10-2 5H7",key:"15hlnc"}]]);const ii=i("square-arrow-down-left",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m16 8-8 8",key:"166keh"}],["path",{d:"M16 16H8V8",key:"1w2ppm"}]]);const ci=i("square-arrow-down",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M12 8v8",key:"napkw2"}],["path",{d:"m8 12 4 4 4-4",key:"k98ssh"}]]);const si=i("square-arrow-down-right",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m8 8 8 8",key:"1imecy"}],["path",{d:"M16 8v8H8",key:"1lbpgo"}]]);const di=i("square-arrow-left",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m12 8-4 4 4 4",key:"15vm53"}],["path",{d:"M16 12H8",key:"1fr5h0"}]]);const li=i("square-arrow-out-down-left",[["path",{d:"M13 21h6a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v6",key:"14qz4y"}],["path",{d:"m3 21 9-9",key:"1jfql5"}],["path",{d:"M9 21H3v-6",key:"wtvkvv"}]]);const ui=i("square-arrow-out-down-right",[["path",{d:"M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6",key:"14rsvq"}],["path",{d:"m21 21-9-9",key:"1et2py"}],["path",{d:"M21 15v6h-6",key:"1jko0i"}]]);const hi=i("square-arrow-out-up-left",[["path",{d:"M13 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-6",key:"14mv1t"}],["path",{d:"m3 3 9 9",key:"rks13r"}],["path",{d:"M3 9V3h6",key:"ira0h2"}]]);const pi=i("square-arrow-out-up-right",[["path",{d:"M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6",key:"y09zxi"}],["path",{d:"m21 3-9 9",key:"mpx6sq"}],["path",{d:"M15 3h6v6",key:"1q9fwt"}]]);const yi=i("square-arrow-right",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"m12 16 4-4-4-4",key:"1i9zcv"}]]);const fi=i("square-arrow-up-left",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 16V8h8",key:"19xb1h"}],["path",{d:"M16 16 8 8",key:"1qdy8n"}]]);const mi=i("square-arrow-up-right",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 8h8v8",key:"b65dnt"}],["path",{d:"m8 16 8-8",key:"13b9ih"}]]);const ki=i("square-arrow-up",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m16 12-4-4-4 4",key:"177agl"}],["path",{d:"M12 16V8",key:"1sbj14"}]]);const gi=i("square-asterisk",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M12 8v8",key:"napkw2"}],["path",{d:"m8.5 14 7-4",key:"12hpby"}],["path",{d:"m8.5 10 7 4",key:"wwy2dy"}]]);const vi=i("square-bottom-dashed-scissors",[["line",{x1:"5",y1:"3",x2:"19",y2:"3",key:"x74652"}],["line",{x1:"3",y1:"5",x2:"3",y2:"19",key:"31ivqu"}],["line",{x1:"21",y1:"5",x2:"21",y2:"19",key:"1am4cd"}],["line",{x1:"9",y1:"21",x2:"10",y2:"21",key:"sb02er"}],["line",{x1:"14",y1:"21",x2:"15",y2:"21",key:"1bvb1m"}],["path",{d:"M 3 5 A2 2 0 0 1 5 3",key:"dbypyf"}],["path",{d:"M 19 3 A2 2 0 0 1 21 5",key:"y6haui"}],["path",{d:"M 5 21 A2 2 0 0 1 3 19",key:"kb75wq"}],["path",{d:"M 21 19 A2 2 0 0 1 19 21",key:"1p3zbf"}],["circle",{cx:"8.5",cy:"8.5",r:"1.5",key:"cn5opk"}],["line",{x1:"9.56066",y1:"9.56066",x2:"12",y2:"12",key:"mksg6j"}],["line",{x1:"17",y1:"17",x2:"14.82",y2:"14.82",key:"1lwi1d"}],["circle",{cx:"8.5",cy:"15.5",r:"1.5",key:"12hfy1"}],["line",{x1:"9.56066",y1:"14.43934",x2:"17",y2:"7",key:"4jyfgs"}]]);const Jt=i("square-chart-gantt",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 8h7",key:"kbo1nt"}],["path",{d:"M8 12h6",key:"ikassy"}],["path",{d:"M11 16h5",key:"oq65wt"}]]);const _i=i("square-check-big",[["path",{d:"M21 10.656V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h12.344",key:"2acyp4"}],["path",{d:"m9 11 3 3L22 4",key:"1pflzl"}]]);const bi=i("square-check",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);const Mi=i("square-chevron-down",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m16 10-4 4-4-4",key:"894hmk"}]]);const wi=i("square-chevron-left",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m14 16-4-4 4-4",key:"ojs7w8"}]]);const xi=i("square-chevron-right",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m10 8 4 4-4 4",key:"1wy4r4"}]]);const Ni=i("square-chevron-up",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m8 14 4-4 4 4",key:"fy2ptz"}]]);const Ci=i("square-code",[["path",{d:"m10 9-3 3 3 3",key:"1oro0q"}],["path",{d:"m14 15 3-3-3-3",key:"bz13h7"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]]);const bw=i("square-dashed-bottom-code",[["path",{d:"M10 9.5 8 12l2 2.5",key:"3mjy60"}],["path",{d:"M14 21h1",key:"v9vybs"}],["path",{d:"m14 9.5 2 2.5-2 2.5",key:"1bir2l"}],["path",{d:"M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2",key:"as5y1o"}],["path",{d:"M9 21h1",key:"15o7lz"}]]);const Mw=i("square-dashed-bottom",[["path",{d:"M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2",key:"as5y1o"}],["path",{d:"M9 21h1",key:"15o7lz"}],["path",{d:"M14 21h1",key:"v9vybs"}]]);const $i=i("square-dashed-mouse-pointer",[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z",key:"xwnzip"}],["path",{d:"M5 3a2 2 0 0 0-2 2",key:"y57alp"}],["path",{d:"M19 3a2 2 0 0 1 2 2",key:"18rm91"}],["path",{d:"M5 21a2 2 0 0 1-2-2",key:"sbafld"}],["path",{d:"M9 3h1",key:"1yesri"}],["path",{d:"M9 21h2",key:"1qve2z"}],["path",{d:"M14 3h1",key:"1ec4yj"}],["path",{d:"M3 9v1",key:"1r0deq"}],["path",{d:"M21 9v2",key:"p14lih"}],["path",{d:"M3 14v1",key:"vnatye"}]]);const Si=i("square-dashed-kanban",[["path",{d:"M8 7v7",key:"1x2jlm"}],["path",{d:"M12 7v4",key:"xawao1"}],["path",{d:"M16 7v9",key:"1hp2iy"}],["path",{d:"M5 3a2 2 0 0 0-2 2",key:"y57alp"}],["path",{d:"M9 3h1",key:"1yesri"}],["path",{d:"M14 3h1",key:"1ec4yj"}],["path",{d:"M19 3a2 2 0 0 1 2 2",key:"18rm91"}],["path",{d:"M21 9v1",key:"mxsmne"}],["path",{d:"M21 14v1",key:"169vum"}],["path",{d:"M21 19a2 2 0 0 1-2 2",key:"1j7049"}],["path",{d:"M14 21h1",key:"v9vybs"}],["path",{d:"M9 21h1",key:"15o7lz"}],["path",{d:"M5 21a2 2 0 0 1-2-2",key:"sbafld"}],["path",{d:"M3 14v1",key:"vnatye"}],["path",{d:"M3 9v1",key:"1r0deq"}]]);const ww=i("square-dashed-top-solid",[["path",{d:"M14 21h1",key:"v9vybs"}],["path",{d:"M21 14v1",key:"169vum"}],["path",{d:"M21 19a2 2 0 0 1-2 2",key:"1j7049"}],["path",{d:"M21 9v1",key:"mxsmne"}],["path",{d:"M3 14v1",key:"vnatye"}],["path",{d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2",key:"89voep"}],["path",{d:"M3 9v1",key:"1r0deq"}],["path",{d:"M5 21a2 2 0 0 1-2-2",key:"sbafld"}],["path",{d:"M9 21h1",key:"15o7lz"}]]);const Li=i("square-dashed",[["path",{d:"M5 3a2 2 0 0 0-2 2",key:"y57alp"}],["path",{d:"M19 3a2 2 0 0 1 2 2",key:"18rm91"}],["path",{d:"M21 19a2 2 0 0 1-2 2",key:"1j7049"}],["path",{d:"M5 21a2 2 0 0 1-2-2",key:"sbafld"}],["path",{d:"M9 3h1",key:"1yesri"}],["path",{d:"M9 21h1",key:"15o7lz"}],["path",{d:"M14 3h1",key:"1ec4yj"}],["path",{d:"M14 21h1",key:"v9vybs"}],["path",{d:"M3 9v1",key:"1r0deq"}],["path",{d:"M21 9v1",key:"mxsmne"}],["path",{d:"M3 14v1",key:"vnatye"}],["path",{d:"M21 14v1",key:"169vum"}]]);const Ii=i("square-divide",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12",key:"1jonct"}],["line",{x1:"12",x2:"12",y1:"16",y2:"16",key:"aqc6ln"}],["line",{x1:"12",x2:"12",y1:"8",y2:"8",key:"1mkcni"}]]);const Ai=i("square-dot",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}]]);const Pi=i("square-equal",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 10h10",key:"1101jm"}],["path",{d:"M7 14h10",key:"1mhdw3"}]]);const Ti=i("square-function",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M9 17c2 0 2.8-1 2.8-2.8V10c0-2 1-3.3 3.2-3",key:"m1af9g"}],["path",{d:"M9 11.2h5.7",key:"3zgcl2"}]]);const Di=i("square-library",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 7v10",key:"d5nglc"}],["path",{d:"M11 7v10",key:"pptsnr"}],["path",{d:"m15 7 2 10",key:"1m7qm5"}]]);const Ei=i("square-kanban",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 7v7",key:"1x2jlm"}],["path",{d:"M12 7v4",key:"xawao1"}],["path",{d:"M16 7v9",key:"1hp2iy"}]]);const zi=i("square-m",[["path",{d:"M8 16V8.5a.5.5 0 0 1 .9-.3l2.7 3.599a.5.5 0 0 0 .8 0l2.7-3.6a.5.5 0 0 1 .9.3V16",key:"1ywlsj"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]]);const Oi=i("square-menu",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 8h10",key:"1jw688"}],["path",{d:"M7 12h10",key:"b7w52i"}],["path",{d:"M7 16h10",key:"wp8him"}]]);const qi=i("square-minus",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 12h8",key:"1wcyev"}]]);const ji=i("square-mouse-pointer",[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z",key:"xwnzip"}],["path",{d:"M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6",key:"14rsvq"}]]);const Hi=i("square-parking-off",[["path",{d:"M3.6 3.6A2 2 0 0 1 5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-.59 1.41",key:"9l1ft6"}],["path",{d:"M3 8.7V19a2 2 0 0 0 2 2h10.3",key:"17knke"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M13 13a3 3 0 1 0 0-6H9v2",key:"uoagbd"}],["path",{d:"M9 17v-2.3",key:"1jxgo2"}]]);const Vi=i("square-parking",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 17V7h4a3 3 0 0 1 0 6H9",key:"1dfk2c"}]]);const xw=i("square-pause",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["line",{x1:"10",x2:"10",y1:"15",y2:"9",key:"c1nkhi"}],["line",{x1:"14",x2:"14",y1:"15",y2:"9",key:"h65svq"}]]);const Nt=i("square-pen",[["path",{d:"M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7",key:"1m0v6g"}],["path",{d:"M18.375 2.625a1 1 0 0 1 3 3l-9.013 9.014a2 2 0 0 1-.853.505l-2.873.84a.5.5 0 0 1-.62-.62l.84-2.873a2 2 0 0 1 .506-.852z",key:"ohrbg2"}]]);const Fi=i("square-percent",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"M9 9h.01",key:"1q5me6"}],["path",{d:"M15 15h.01",key:"lqbp3k"}]]);const Bi=i("square-pi",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 7h10",key:"udp07y"}],["path",{d:"M10 7v10",key:"i1d9ee"}],["path",{d:"M16 17a2 2 0 0 1-2-2V7",key:"ftwdc7"}]]);const Wi=i("square-pilcrow",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M12 12H9.5a2.5 2.5 0 0 1 0-5H17",key:"1l9586"}],["path",{d:"M12 7v10",key:"jspqdw"}],["path",{d:"M16 7v10",key:"lavkr4"}]]);const Ui=i("square-play",[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}],["path",{d:"M9 9.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997A1 1 0 0 1 9 14.996z",key:"kmsa83"}]]);const Ri=i("square-plus",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"M12 8v8",key:"napkw2"}]]);const Gi=i("square-power",[["path",{d:"M12 7v4",key:"xawao1"}],["path",{d:"M7.998 9.003a5 5 0 1 0 8-.005",key:"1pek45"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]]);const Nw=i("square-radical",[["path",{d:"M7 12h2l2 5 2-10h4",key:"1fxv6h"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]]);const Cw=i("square-round-corner",[["path",{d:"M21 11a8 8 0 0 0-8-8",key:"1lxwo5"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4",key:"1dv2y5"}]]);const Ki=i("square-scissors",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["circle",{cx:"8.5",cy:"8.5",r:"1.5",key:"cn5opk"}],["line",{x1:"9.56066",y1:"9.56066",x2:"12",y2:"12",key:"mksg6j"}],["line",{x1:"17",y1:"17",x2:"14.82",y2:"14.82",key:"1lwi1d"}],["circle",{cx:"8.5",cy:"15.5",r:"1.5",key:"12hfy1"}],["line",{x1:"9.56066",y1:"14.43934",x2:"17",y2:"7",key:"4jyfgs"}]]);const Yi=i("square-sigma",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M16 8.9V7H8l4 5-4 5h8v-1.9",key:"9nih0i"}]]);const Xi=i("square-slash",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["line",{x1:"9",x2:"15",y1:"15",y2:"9",key:"1dfufj"}]]);const Zi=i("square-split-horizontal",[["path",{d:"M8 19H5c-1 0-2-1-2-2V7c0-1 1-2 2-2h3",key:"lubmu8"}],["path",{d:"M16 5h3c1 0 2 1 2 2v10c0 1-1 2-2 2h-3",key:"1ag34g"}],["line",{x1:"12",x2:"12",y1:"4",y2:"20",key:"1tx1rr"}]]);const Qi=i("square-split-vertical",[["path",{d:"M5 8V5c0-1 1-2 2-2h10c1 0 2 1 2 2v3",key:"1pi83i"}],["path",{d:"M19 16v3c0 1-1 2-2 2H7c-1 0-2-1-2-2v-3",key:"ido5k7"}],["line",{x1:"4",x2:"20",y1:"12",y2:"12",key:"1e0a9i"}]]);const $w=i("square-square",[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}],["rect",{x:"8",y:"8",width:"8",height:"8",rx:"1",key:"z9xiuo"}]]);const Sw=i("square-stack",[["path",{d:"M4 10c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2",key:"4i38lg"}],["path",{d:"M10 16c-1.1 0-2-.9-2-2v-4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2",key:"mlte4a"}],["rect",{width:"8",height:"8",x:"14",y:"14",rx:"2",key:"1fa9i4"}]]);const Lw=i("square-star",[["path",{d:"M11.035 7.69a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.866l-1.156-1.153a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z",key:"13edca"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]]);const Iw=i("square-stop",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["rect",{x:"9",y:"9",width:"6",height:"6",rx:"1",key:"1ssd4o"}]]);const Ji=i("square-terminal",[["path",{d:"m7 11 2-2-2-2",key:"1lz0vl"}],["path",{d:"M11 13h4",key:"1p7l4v"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}]]);const ec=i("square-user",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"M7 21v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2",key:"1m6ac2"}]]);const tc=i("square-user-round",[["path",{d:"M18 21a6 6 0 0 0-12 0",key:"kaz2du"}],["circle",{cx:"12",cy:"11",r:"4",key:"1gt34v"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]]);const oc=i("square-x",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"m9 9 6 6",key:"z0biqf"}]]);const Aw=i("square",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]]);const Pw=i("squares-exclude",[["path",{d:"M16 12v2a2 2 0 0 1-2 2H9a1 1 0 0 0-1 1v3a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2h0",key:"1mcohs"}],["path",{d:"M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 1-1 1h-5a2 2 0 0 0-2 2v2",key:"1r1efp"}]]);const Tw=i("squares-intersect",[["path",{d:"M10 22a2 2 0 0 1-2-2",key:"i7yj1i"}],["path",{d:"M14 2a2 2 0 0 1 2 2",key:"170a0m"}],["path",{d:"M16 22h-2",key:"18d249"}],["path",{d:"M2 10V8",key:"7yj4fe"}],["path",{d:"M2 4a2 2 0 0 1 2-2",key:"ddgnws"}],["path",{d:"M20 8a2 2 0 0 1 2 2",key:"1770vt"}],["path",{d:"M22 14v2",key:"iot8ja"}],["path",{d:"M22 20a2 2 0 0 1-2 2",key:"qj8q6g"}],["path",{d:"M4 16a2 2 0 0 1-2-2",key:"1dnafg"}],["path",{d:"M8 10a2 2 0 0 1 2-2h5a1 1 0 0 1 1 1v5a2 2 0 0 1-2 2H9a1 1 0 0 1-1-1z",key:"ci6f0b"}],["path",{d:"M8 2h2",key:"1gmkwm"}]]);const Dw=i("squares-unite",[["path",{d:"M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 0 1 1h3a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2v-3a1 1 0 0 0-1-1z",key:"17jnth"}]]);const Ew=i("squares-subtract",[["path",{d:"M10 22a2 2 0 0 1-2-2",key:"i7yj1i"}],["path",{d:"M16 22h-2",key:"18d249"}],["path",{d:"M16 4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h3a1 1 0 0 0 1-1v-5a2 2 0 0 1 2-2h5a1 1 0 0 0 1-1z",key:"1njgbb"}],["path",{d:"M20 8a2 2 0 0 1 2 2",key:"1770vt"}],["path",{d:"M22 14v2",key:"iot8ja"}],["path",{d:"M22 20a2 2 0 0 1-2 2",key:"qj8q6g"}]]);const zw=i("squircle-dashed",[["path",{d:"M13.77 3.043a34 34 0 0 0-3.54 0",key:"1oaobr"}],["path",{d:"M13.771 20.956a33 33 0 0 1-3.541.001",key:"95iq0j"}],["path",{d:"M20.18 17.74c-.51 1.15-1.29 1.93-2.439 2.44",key:"1u6qty"}],["path",{d:"M20.18 6.259c-.51-1.148-1.291-1.929-2.44-2.438",key:"1ew6g6"}],["path",{d:"M20.957 10.23a33 33 0 0 1 0 3.54",key:"1l9npr"}],["path",{d:"M3.043 10.23a34 34 0 0 0 .001 3.541",key:"1it6jm"}],["path",{d:"M6.26 20.179c-1.15-.508-1.93-1.29-2.44-2.438",key:"14uchd"}],["path",{d:"M6.26 3.82c-1.149.51-1.93 1.291-2.44 2.44",key:"8k4agb"}]]);const Ow=i("squircle",[["path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9-9 9-9-1.8-9-9 1.8-9 9-9",key:"garfkc"}]]);const qw=i("squirrel",[["path",{d:"M15.236 22a3 3 0 0 0-2.2-5",key:"21bitc"}],["path",{d:"M16 20a3 3 0 0 1 3-3h1a2 2 0 0 0 2-2v-2a4 4 0 0 0-4-4V4",key:"oh0fg0"}],["path",{d:"M18 13h.01",key:"9veqaj"}],["path",{d:"M18 6a4 4 0 0 0-4 4 7 7 0 0 0-7 7c0-5 4-5 4-10.5a4.5 4.5 0 1 0-9 0 2.5 2.5 0 0 0 5 0C7 10 3 11 3 17c0 2.8 2.2 5 5 5h10",key:"980v8a"}]]);const jw=i("stamp",[["path",{d:"M14 13V8.5C14 7 15 7 15 5a3 3 0 0 0-6 0c0 2 1 2 1 3.5V13",key:"i9gjdv"}],["path",{d:"M20 15.5a2.5 2.5 0 0 0-2.5-2.5h-11A2.5 2.5 0 0 0 4 15.5V17a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1z",key:"1vzg3v"}],["path",{d:"M5 22h14",key:"ehvnwv"}]]);const Hw=i("star-off",[["path",{d:"m10.344 4.688 1.181-2.393a.53.53 0 0 1 .95 0l2.31 4.679a2.12 2.12 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.237 3.152",key:"19ctli"}],["path",{d:"m17.945 17.945.43 2.505a.53.53 0 0 1-.771.56l-4.618-2.428a2.12 2.12 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.12 2.12 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a8 8 0 0 0 .4-.099",key:"ptqqvy"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const Vw=i("star-half",[["path",{d:"M12 18.338a2.1 2.1 0 0 0-.987.244L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.12 2.12 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.12 2.12 0 0 0 1.597-1.16l2.309-4.679A.53.53 0 0 1 12 2",key:"2ksp49"}]]);const Fw=i("star",[["path",{d:"M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z",key:"r04s7s"}]]);const Bw=i("step-back",[["path",{d:"M13.971 4.285A2 2 0 0 1 17 6v12a2 2 0 0 1-3.029 1.715l-9.997-5.998a2 2 0 0 1-.003-3.432z",key:"19qhus"}],["path",{d:"M21 20V4",key:"cb8qj8"}]]);const Ww=i("step-forward",[["path",{d:"M10.029 4.285A2 2 0 0 0 7 6v12a2 2 0 0 0 3.029 1.715l9.997-5.998a2 2 0 0 0 .003-3.432z",key:"1ystz2"}],["path",{d:"M3 4v16",key:"1ph11n"}]]);const Uw=i("stethoscope",[["path",{d:"M11 2v2",key:"1539x4"}],["path",{d:"M5 2v2",key:"1yf1q8"}],["path",{d:"M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1",key:"rb5t3r"}],["path",{d:"M8 15a6 6 0 0 0 12 0v-3",key:"x18d4x"}],["circle",{cx:"20",cy:"10",r:"2",key:"ts1r5v"}]]);const Rw=i("sticker",[["path",{d:"M21 9a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 15 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2z",key:"1dfntj"}],["path",{d:"M15 3v5a1 1 0 0 0 1 1h5",key:"6s6qgf"}],["path",{d:"M8 13h.01",key:"1sbv64"}],["path",{d:"M16 13h.01",key:"wip0gl"}],["path",{d:"M10 16s.8 1 2 1c1.3 0 2-1 2-1",key:"1vvgv3"}]]);const Gw=i("sticky-note",[["path",{d:"M21 9a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 15 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2z",key:"1dfntj"}],["path",{d:"M15 3v5a1 1 0 0 0 1 1h5",key:"6s6qgf"}]]);const Kw=i("stone",[["path",{d:"M11.264 2.205A4 4 0 0 0 6.42 4.211l-4 8a4 4 0 0 0 1.359 5.117l6 4a4 4 0 0 0 4.438 0l6-4a4 4 0 0 0 1.576-4.592l-2-6a4 4 0 0 0-2.53-2.53z",key:"1si4ox"}],["path",{d:"M11.99 22 14 12l7.822 3.184",key:"1u8to0"}],["path",{d:"M14 12 8.47 2.302",key:"guo3d5"}]]);const Yw=i("store",[["path",{d:"M15 21v-5a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v5",key:"slp6dd"}],["path",{d:"M17.774 10.31a1.12 1.12 0 0 0-1.549 0 2.5 2.5 0 0 1-3.451 0 1.12 1.12 0 0 0-1.548 0 2.5 2.5 0 0 1-3.452 0 1.12 1.12 0 0 0-1.549 0 2.5 2.5 0 0 1-3.77-3.248l2.889-4.184A2 2 0 0 1 7 2h10a2 2 0 0 1 1.653.873l2.895 4.192a2.5 2.5 0 0 1-3.774 3.244",key:"o0xfot"}],["path",{d:"M4 10.95V19a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8.05",key:"wn3emo"}]]);const Xw=i("stretch-horizontal",[["rect",{width:"20",height:"6",x:"2",y:"4",rx:"2",key:"qdearl"}],["rect",{width:"20",height:"6",x:"2",y:"14",rx:"2",key:"1xrn6j"}]]);const Zw=i("stretch-vertical",[["rect",{width:"6",height:"20",x:"4",y:"2",rx:"2",key:"19qu7m"}],["rect",{width:"6",height:"20",x:"14",y:"2",rx:"2",key:"24v0nk"}]]);const Qw=i("strikethrough",[["path",{d:"M16 4H9a3 3 0 0 0-2.83 4",key:"43sutm"}],["path",{d:"M14 12a4 4 0 0 1 0 8H6",key:"nlfj13"}],["line",{x1:"4",x2:"20",y1:"12",y2:"12",key:"1e0a9i"}]]);const Jw=i("subscript",[["path",{d:"m4 5 8 8",key:"1eunvl"}],["path",{d:"m12 5-8 8",key:"1ah0jp"}],["path",{d:"M20 19h-4c0-1.5.44-2 1.5-2.5S20 15.33 20 14c0-.47-.17-.93-.48-1.29a2.11 2.11 0 0 0-2.62-.44c-.42.24-.74.62-.9 1.07",key:"e8ta8j"}]]);const ex=i("sun-dim",[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M12 4h.01",key:"1ujb9j"}],["path",{d:"M20 12h.01",key:"1ykeid"}],["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M4 12h.01",key:"158zrr"}],["path",{d:"M17.657 6.343h.01",key:"31pqzk"}],["path",{d:"M17.657 17.657h.01",key:"jehnf4"}],["path",{d:"M6.343 17.657h.01",key:"gdk6ow"}],["path",{d:"M6.343 6.343h.01",key:"1uurf0"}]]);const tx=i("sun-moon",[["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M14.837 16.385a6 6 0 1 1-7.223-7.222c.624-.147.97.66.715 1.248a4 4 0 0 0 5.26 5.259c.589-.255 1.396.09 1.248.715",key:"xlf6rm"}],["path",{d:"M16 12a4 4 0 0 0-4-4",key:"6vsxu"}],["path",{d:"m19 5-1.256 1.256",key:"1yg6a6"}],["path",{d:"M20 12h2",key:"1q8mjw"}]]);const ox=i("sun-medium",[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M12 3v1",key:"1asbbs"}],["path",{d:"M12 20v1",key:"1wcdkc"}],["path",{d:"M3 12h1",key:"lp3yf2"}],["path",{d:"M20 12h1",key:"1vloll"}],["path",{d:"m18.364 5.636-.707.707",key:"1hakh0"}],["path",{d:"m6.343 17.657-.707.707",key:"18m9nf"}],["path",{d:"m5.636 5.636.707.707",key:"1xv1c5"}],["path",{d:"m17.657 17.657.707.707",key:"vl76zb"}]]);const nx=i("sun-snow",[["path",{d:"M10 21v-1",key:"1u8rkd"}],["path",{d:"M10 4V3",key:"pkzwkn"}],["path",{d:"M10 9a3 3 0 0 0 0 6",key:"gv75dk"}],["path",{d:"m14 20 1.25-2.5L18 18",key:"1chtki"}],["path",{d:"m14 4 1.25 2.5L18 6",key:"1b4wsy"}],["path",{d:"m17 21-3-6 1.5-3H22",key:"o5qa3v"}],["path",{d:"m17 3-3 6 1.5 3",key:"11697g"}],["path",{d:"M2 12h1",key:"1uaihz"}],["path",{d:"m20 10-1.5 2 1.5 2",key:"1swlpi"}],["path",{d:"m3.64 18.36.7-.7",key:"105rm9"}],["path",{d:"m4.34 6.34-.7-.7",key:"d3unjp"}]]);const ax=i("sun",[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"m4.93 4.93 1.41 1.41",key:"149t6j"}],["path",{d:"m17.66 17.66 1.41 1.41",key:"ptbguv"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"m6.34 17.66-1.41 1.41",key:"1m8zz5"}],["path",{d:"m19.07 4.93-1.41 1.41",key:"1shlcs"}]]);const rx=i("sunrise",[["path",{d:"M12 2v8",key:"1q4o3n"}],["path",{d:"m4.93 10.93 1.41 1.41",key:"2a7f42"}],["path",{d:"M2 18h2",key:"j10viu"}],["path",{d:"M20 18h2",key:"wocana"}],["path",{d:"m19.07 10.93-1.41 1.41",key:"15zs5n"}],["path",{d:"M22 22H2",key:"19qnx5"}],["path",{d:"m8 6 4-4 4 4",key:"ybng9g"}],["path",{d:"M16 18a4 4 0 0 0-8 0",key:"1lzouq"}]]);const ix=i("sunset",[["path",{d:"M12 10V2",key:"16sf7g"}],["path",{d:"m4.93 10.93 1.41 1.41",key:"2a7f42"}],["path",{d:"M2 18h2",key:"j10viu"}],["path",{d:"M20 18h2",key:"wocana"}],["path",{d:"m19.07 10.93-1.41 1.41",key:"15zs5n"}],["path",{d:"M22 22H2",key:"19qnx5"}],["path",{d:"m16 6-4 4-4-4",key:"6wukr"}],["path",{d:"M16 18a4 4 0 0 0-8 0",key:"1lzouq"}]]);const cx=i("superscript",[["path",{d:"m4 19 8-8",key:"hr47gm"}],["path",{d:"m12 19-8-8",key:"1dhhmo"}],["path",{d:"M20 12h-4c0-1.5.442-2 1.5-2.5S20 8.334 20 7.002c0-.472-.17-.93-.484-1.29a2.105 2.105 0 0 0-2.617-.436c-.42.239-.738.614-.899 1.06",key:"1dfcux"}]]);const sx=i("swatch-book",[["path",{d:"M11 17a4 4 0 0 1-8 0V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2Z",key:"1ldrpk"}],["path",{d:"M16.7 13H19a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H7",key:"11i5po"}],["path",{d:"M 7 17h.01",key:"1euzgo"}],["path",{d:"m11 8 2.3-2.3a2.4 2.4 0 0 1 3.404.004L18.6 7.6a2.4 2.4 0 0 1 .026 3.434L9.9 19.8",key:"o2gii7"}]]);const dx=i("swiss-franc",[["path",{d:"M10 21V3h8",key:"br2l0g"}],["path",{d:"M6 16h9",key:"2py0wn"}],["path",{d:"M10 9.5h7",key:"13dmhz"}]]);const lx=i("switch-camera",[["path",{d:"M11 19H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h5",key:"mtk2lu"}],["path",{d:"M13 5h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-5",key:"120jsl"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"m18 22-3-3 3-3",key:"kgdoj7"}],["path",{d:"m6 2 3 3-3 3",key:"1fnbkv"}]]);const ux=i("sword",[["path",{d:"m11 19-6-6",key:"s7kpr"}],["path",{d:"m5 21-2-2",key:"1kw20b"}],["path",{d:"m8 16-4 4",key:"1oqv8h"}],["path",{d:"M9.5 17.5 21 6V3h-3L6.5 14.5",key:"pkxemp"}]]);const hx=i("swords",[["polyline",{points:"14.5 17.5 3 6 3 3 6 3 17.5 14.5",key:"1hfsw2"}],["line",{x1:"13",x2:"19",y1:"19",y2:"13",key:"1vrmhu"}],["line",{x1:"16",x2:"20",y1:"16",y2:"20",key:"1bron3"}],["line",{x1:"19",x2:"21",y1:"21",y2:"19",key:"13pww6"}],["polyline",{points:"14.5 6.5 18 3 21 3 21 6 17.5 9.5",key:"hbey2j"}],["line",{x1:"5",x2:"9",y1:"14",y2:"18",key:"1hf58s"}],["line",{x1:"7",x2:"4",y1:"17",y2:"20",key:"pidxm4"}],["line",{x1:"3",x2:"5",y1:"19",y2:"21",key:"1pehsh"}]]);const px=i("syringe",[["path",{d:"m18 2 4 4",key:"22kx64"}],["path",{d:"m17 7 3-3",key:"1w1zoj"}],["path",{d:"M19 9 8.7 19.3c-1 1-2.5 1-3.4 0l-.6-.6c-1-1-1-2.5 0-3.4L15 5",key:"1exhtz"}],["path",{d:"m9 11 4 4",key:"rovt3i"}],["path",{d:"m5 19-3 3",key:"59f2uf"}],["path",{d:"m14 4 6 6",key:"yqp9t2"}]]);const yx=i("table-2",[["path",{d:"M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18",key:"gugj83"}]]);const fx=i("table-cells-merge",[["path",{d:"M12 21v-6",key:"lihzve"}],["path",{d:"M12 9V3",key:"da5inc"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"M3 9h18",key:"1pudct"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]]);const mx=i("table-cells-split",[["path",{d:"M12 15V9",key:"8c7uyn"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"M3 9h18",key:"1pudct"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]]);const kx=i("table-columns-split",[["path",{d:"M14 14v2",key:"w2a1xv"}],["path",{d:"M14 20v2",key:"1lq872"}],["path",{d:"M14 2v2",key:"6buw04"}],["path",{d:"M14 8v2",key:"i67w9a"}],["path",{d:"M2 15h8",key:"82wtch"}],["path",{d:"M2 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H2",key:"up0l64"}],["path",{d:"M2 9h8",key:"yelfik"}],["path",{d:"M22 15h-4",key:"1es58f"}],["path",{d:"M22 3h-2a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2",key:"pdjoqf"}],["path",{d:"M22 9h-4",key:"1luja7"}],["path",{d:"M5 3v18",key:"14hmio"}]]);const gx=i("table-properties",[["path",{d:"M15 3v18",key:"14nvp0"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M21 9H3",key:"1338ky"}],["path",{d:"M21 15H3",key:"9uk58r"}]]);const vx=i("table-rows-split",[["path",{d:"M14 10h2",key:"1lstlu"}],["path",{d:"M15 22v-8",key:"1fwwgm"}],["path",{d:"M15 2v4",key:"1044rn"}],["path",{d:"M2 10h2",key:"1r8dkt"}],["path",{d:"M20 10h2",key:"1ug425"}],["path",{d:"M3 19h18",key:"awlh7x"}],["path",{d:"M3 22v-6a2 2 135 0 1 2-2h14a2 2 45 0 1 2 2v6",key:"ibqhof"}],["path",{d:"M3 2v2a2 2 45 0 0 2 2h14a2 2 135 0 0 2-2V2",key:"1uenja"}],["path",{d:"M8 10h2",key:"66od0"}],["path",{d:"M9 22v-8",key:"fmnu31"}],["path",{d:"M9 2v4",key:"j1yeou"}]]);const _x=i("table-of-contents",[["path",{d:"M16 5H3",key:"m91uny"}],["path",{d:"M16 12H3",key:"1a2rj7"}],["path",{d:"M16 19H3",key:"zzsher"}],["path",{d:"M21 5h.01",key:"wa75ra"}],["path",{d:"M21 12h.01",key:"msek7k"}],["path",{d:"M21 19h.01",key:"qvbq2j"}]]);const bx=i("table",[["path",{d:"M12 3v18",key:"108xh3"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"M3 15h18",key:"5xshup"}]]);const Mx=i("tablet-smartphone",[["rect",{width:"10",height:"14",x:"3",y:"8",rx:"2",key:"1vrsiq"}],["path",{d:"M5 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2h-2.4",key:"1j4zmg"}],["path",{d:"M8 18h.01",key:"lrp35t"}]]);const wx=i("tablet",[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",ry:"2",key:"76otgf"}],["line",{x1:"12",x2:"12.01",y1:"18",y2:"18",key:"1dp563"}]]);const xx=i("tag",[["path",{d:"M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z",key:"vktsd0"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor",key:"kqv944"}]]);const Nx=i("tablets",[["circle",{cx:"7",cy:"7",r:"5",key:"x29byf"}],["circle",{cx:"17",cy:"17",r:"5",key:"1op1d2"}],["path",{d:"M12 17h10",key:"ls21zv"}],["path",{d:"m3.46 10.54 7.08-7.08",key:"1rehiu"}]]);const Cx=i("tags",[["path",{d:"M13.172 2a2 2 0 0 1 1.414.586l6.71 6.71a2.4 2.4 0 0 1 0 3.408l-4.592 4.592a2.4 2.4 0 0 1-3.408 0l-6.71-6.71A2 2 0 0 1 6 9.172V3a1 1 0 0 1 1-1z",key:"16rjxf"}],["path",{d:"M2 7v6.172a2 2 0 0 0 .586 1.414l6.71 6.71a2.4 2.4 0 0 0 3.191.193",key:"178nd4"}],["circle",{cx:"10.5",cy:"6.5",r:".5",fill:"currentColor",key:"12ikhr"}]]);const $x=i("tally-1",[["path",{d:"M4 4v16",key:"6qkkli"}]]);const Sx=i("tally-2",[["path",{d:"M4 4v16",key:"6qkkli"}],["path",{d:"M9 4v16",key:"81ygyz"}]]);const Lx=i("tally-3",[["path",{d:"M4 4v16",key:"6qkkli"}],["path",{d:"M9 4v16",key:"81ygyz"}],["path",{d:"M14 4v16",key:"12vmem"}]]);const Ix=i("tally-4",[["path",{d:"M4 4v16",key:"6qkkli"}],["path",{d:"M9 4v16",key:"81ygyz"}],["path",{d:"M14 4v16",key:"12vmem"}],["path",{d:"M19 4v16",key:"8ij5ei"}]]);const Ax=i("tally-5",[["path",{d:"M4 4v16",key:"6qkkli"}],["path",{d:"M9 4v16",key:"81ygyz"}],["path",{d:"M14 4v16",key:"12vmem"}],["path",{d:"M19 4v16",key:"8ij5ei"}],["path",{d:"M22 6 2 18",key:"h9moai"}]]);const Px=i("tangent",[["circle",{cx:"17",cy:"4",r:"2",key:"y5j2s2"}],["path",{d:"M15.59 5.41 5.41 15.59",key:"l0vprr"}],["circle",{cx:"4",cy:"17",r:"2",key:"9p4efm"}],["path",{d:"M12 22s-4-9-1.5-11.5S22 12 22 12",key:"1twk4o"}]]);const Tx=i("target",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"6",key:"1vlfrh"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]]);const Dx=i("telescope",[["path",{d:"m10.065 12.493-6.18 1.318a.934.934 0 0 1-1.108-.702l-.537-2.15a1.07 1.07 0 0 1 .691-1.265l13.504-4.44",key:"k4qptu"}],["path",{d:"m13.56 11.747 4.332-.924",key:"19l80z"}],["path",{d:"m16 21-3.105-6.21",key:"7oh9d"}],["path",{d:"M16.485 5.94a2 2 0 0 1 1.455-2.425l1.09-.272a1 1 0 0 1 1.212.727l1.515 6.06a1 1 0 0 1-.727 1.213l-1.09.272a2 2 0 0 1-2.425-1.455z",key:"m7xp4m"}],["path",{d:"m6.158 8.633 1.114 4.456",key:"74o979"}],["path",{d:"m8 21 3.105-6.21",key:"1fvxut"}],["circle",{cx:"12",cy:"13",r:"2",key:"1c1ljs"}]]);const Ex=i("tent-tree",[["circle",{cx:"4",cy:"4",r:"2",key:"bt5ra8"}],["path",{d:"m14 5 3-3 3 3",key:"1sorif"}],["path",{d:"m14 10 3-3 3 3",key:"1jyi9h"}],["path",{d:"M17 14V2",key:"8ymqnk"}],["path",{d:"M17 14H7l-5 8h20Z",key:"13ar7p"}],["path",{d:"M8 14v8",key:"1ghmqk"}],["path",{d:"m9 14 5 8",key:"13pgi6"}]]);const zx=i("tent",[["path",{d:"M3.5 21 14 3",key:"1szst5"}],["path",{d:"M20.5 21 10 3",key:"1310c3"}],["path",{d:"M15.5 21 12 15l-3.5 6",key:"1ddtfw"}],["path",{d:"M2 21h20",key:"1nyx9w"}]]);const Ox=i("terminal",[["path",{d:"M12 19h8",key:"baeox8"}],["path",{d:"m4 17 6-6-6-6",key:"1yngyt"}]]);const nc=i("test-tube-diagonal",[["path",{d:"M21 7 6.82 21.18a2.83 2.83 0 0 1-3.99-.01a2.83 2.83 0 0 1 0-4L17 3",key:"1ub6xw"}],["path",{d:"m16 2 6 6",key:"1gw87d"}],["path",{d:"M12 16H4",key:"1cjfip"}]]);const qx=i("test-tube",[["path",{d:"M14.5 2v17.5c0 1.4-1.1 2.5-2.5 2.5c-1.4 0-2.5-1.1-2.5-2.5V2",key:"125lnx"}],["path",{d:"M8.5 2h7",key:"csnxdl"}],["path",{d:"M14.5 16h-5",key:"1ox875"}]]);const jx=i("test-tubes",[["path",{d:"M9 2v17.5A2.5 2.5 0 0 1 6.5 22A2.5 2.5 0 0 1 4 19.5V2",key:"1hjrqt"}],["path",{d:"M20 2v17.5a2.5 2.5 0 0 1-2.5 2.5a2.5 2.5 0 0 1-2.5-2.5V2",key:"16lc8n"}],["path",{d:"M3 2h7",key:"7s29d5"}],["path",{d:"M14 2h7",key:"7sicin"}],["path",{d:"M9 16H4",key:"1bfye3"}],["path",{d:"M20 16h-5",key:"ddnjpe"}]]);const ac=i("text-align-center",[["path",{d:"M21 5H3",key:"1fi0y6"}],["path",{d:"M17 12H7",key:"16if0g"}],["path",{d:"M19 19H5",key:"vjpgq2"}]]);const rc=i("text-align-end",[["path",{d:"M21 5H3",key:"1fi0y6"}],["path",{d:"M21 12H9",key:"dn1m92"}],["path",{d:"M21 19H7",key:"4cu937"}]]);const ic=i("text-align-justify",[["path",{d:"M3 5h18",key:"1u36vt"}],["path",{d:"M3 12h18",key:"1i2n21"}],["path",{d:"M3 19h18",key:"awlh7x"}]]);const _o=i("text-align-start",[["path",{d:"M21 5H3",key:"1fi0y6"}],["path",{d:"M15 12H3",key:"6jk70r"}],["path",{d:"M17 19H3",key:"z6ezky"}]]);const Hx=i("text-cursor-input",[["path",{d:"M12 20h-1a2 2 0 0 1-2-2 2 2 0 0 1-2 2H6",key:"1528k5"}],["path",{d:"M13 8h7a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-7",key:"13ksps"}],["path",{d:"M5 16H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h1",key:"1n9rhb"}],["path",{d:"M6 4h1a2 2 0 0 1 2 2 2 2 0 0 1 2-2h1",key:"1mj8rg"}],["path",{d:"M9 6v12",key:"velyjx"}]]);const Vx=i("text-cursor",[["path",{d:"M17 22h-1a4 4 0 0 1-4-4V6a4 4 0 0 1 4-4h1",key:"uvaxm9"}],["path",{d:"M7 22h1a4 4 0 0 0 4-4v-1",key:"11xy8d"}],["path",{d:"M7 2h1a4 4 0 0 1 4 4v1",key:"1uw06m"}]]);const cc=i("text-initial",[["path",{d:"M15 5h6",key:"1pr8yx"}],["path",{d:"M15 12h6",key:"upa0zy"}],["path",{d:"M3 19h18",key:"awlh7x"}],["path",{d:"m3 12 3.553-7.724a.5.5 0 0 1 .894 0L11 12",key:"6lvno8"}],["path",{d:"M3.92 10h6.16",key:"1tl8ex"}]]);const Fx=i("text-quote",[["path",{d:"M17 5H3",key:"1cn7zz"}],["path",{d:"M21 12H8",key:"scolzb"}],["path",{d:"M21 19H8",key:"13qgcb"}],["path",{d:"M3 12v7",key:"1ri8j3"}]]);const Bx=i("text-search",[["path",{d:"M21 5H3",key:"1fi0y6"}],["path",{d:"M10 12H3",key:"1ulcyk"}],["path",{d:"M10 19H3",key:"108z41"}],["circle",{cx:"17",cy:"15",r:"3",key:"1upz2a"}],["path",{d:"m21 19-1.9-1.9",key:"dwi7p8"}]]);const sc=i("text-select",[["path",{d:"M14 21h1",key:"v9vybs"}],["path",{d:"M14 3h1",key:"1ec4yj"}],["path",{d:"M19 3a2 2 0 0 1 2 2",key:"18rm91"}],["path",{d:"M21 14v1",key:"169vum"}],["path",{d:"M21 19a2 2 0 0 1-2 2",key:"1j7049"}],["path",{d:"M21 9v1",key:"mxsmne"}],["path",{d:"M3 14v1",key:"vnatye"}],["path",{d:"M3 9v1",key:"1r0deq"}],["path",{d:"M5 21a2 2 0 0 1-2-2",key:"sbafld"}],["path",{d:"M5 3a2 2 0 0 0-2 2",key:"y57alp"}],["path",{d:"M7 12h10",key:"b7w52i"}],["path",{d:"M7 16h6",key:"1vyc9m"}],["path",{d:"M7 8h8",key:"1jbsf9"}],["path",{d:"M9 21h1",key:"15o7lz"}],["path",{d:"M9 3h1",key:"1yesri"}]]);const dc=i("text-wrap",[["path",{d:"m16 16-3 3 3 3",key:"117b85"}],["path",{d:"M3 12h14.5a1 1 0 0 1 0 7H13",key:"18xa6z"}],["path",{d:"M3 19h6",key:"1ygdsz"}],["path",{d:"M3 5h18",key:"1u36vt"}]]);const Wx=i("theater",[["path",{d:"M2 10s3-3 3-8",key:"3xiif0"}],["path",{d:"M22 10s-3-3-3-8",key:"ioaa5q"}],["path",{d:"M10 2c0 4.4-3.6 8-8 8",key:"16fkpi"}],["path",{d:"M14 2c0 4.4 3.6 8 8 8",key:"b9eulq"}],["path",{d:"M2 10s2 2 2 5",key:"1au1lb"}],["path",{d:"M22 10s-2 2-2 5",key:"qi2y5e"}],["path",{d:"M8 15h8",key:"45n4r"}],["path",{d:"M2 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1",key:"1vsc2m"}],["path",{d:"M14 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1",key:"hrha4u"}]]);const Ux=i("thermometer-snowflake",[["path",{d:"m10 20-1.25-2.5L6 18",key:"18frcb"}],["path",{d:"M10 4 8.75 6.5 6 6",key:"7mghy3"}],["path",{d:"M10.585 15H10",key:"4nqulp"}],["path",{d:"M2 12h6.5L10 9",key:"kv9z4n"}],["path",{d:"M20 14.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0z",key:"yu0u2z"}],["path",{d:"m4 10 1.5 2L4 14",key:"k9enpj"}],["path",{d:"m7 21 3-6-1.5-3",key:"j8hb9u"}],["path",{d:"m7 3 3 6h2",key:"1bbqgq"}]]);const Rx=i("thermometer-sun",[["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 8a4 4 0 0 0-1.645 7.647",key:"wz5p04"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"M20 14.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0z",key:"yu0u2z"}],["path",{d:"m4.93 4.93 1.41 1.41",key:"149t6j"}],["path",{d:"m6.34 17.66-1.41 1.41",key:"1m8zz5"}]]);const Gx=i("thermometer",[["path",{d:"M14 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z",key:"17jzev"}]]);const Kx=i("thumbs-down",[["path",{d:"M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z",key:"m61m77"}],["path",{d:"M17 14V2",key:"8ymqnk"}]]);const Yx=i("thumbs-up",[["path",{d:"M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z",key:"emmmcr"}],["path",{d:"M7 10v12",key:"1qc93n"}]]);const Xx=i("ticket-check",[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"qn84l0"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);const Zx=i("ticket-minus",[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"qn84l0"}],["path",{d:"M9 12h6",key:"1c52cq"}]]);const Qx=i("ticket-percent",[["path",{d:"M2 9a3 3 0 1 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 1 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"1l48ns"}],["path",{d:"M9 9h.01",key:"1q5me6"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"M15 15h.01",key:"lqbp3k"}]]);const Jx=i("ticket-plus",[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"qn84l0"}],["path",{d:"M9 12h6",key:"1c52cq"}],["path",{d:"M12 9v6",key:"199k2o"}]]);const e9=i("ticket-slash",[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"qn84l0"}],["path",{d:"m9.5 14.5 5-5",key:"qviqfa"}]]);const t9=i("ticket-x",[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"qn84l0"}],["path",{d:"m9.5 14.5 5-5",key:"qviqfa"}],["path",{d:"m9.5 9.5 5 5",key:"18nt4w"}]]);const o9=i("ticket",[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"qn84l0"}],["path",{d:"M13 5v2",key:"dyzc3o"}],["path",{d:"M13 17v2",key:"1ont0d"}],["path",{d:"M13 11v2",key:"1wjjxi"}]]);const n9=i("tickets-plane",[["path",{d:"M10.5 17h1.227a2 2 0 0 0 1.345-.52L18 12",key:"16muxl"}],["path",{d:"m12 13.5 3.794.506",key:"6v5z87"}],["path",{d:"m3.173 8.18 11-5a2 2 0 0 1 2.647.993L18.56 8",key:"15hfpj"}],["path",{d:"M6 10V8",key:"1y41hn"}],["path",{d:"M6 14v1",key:"cao2tf"}],["path",{d:"M6 19v2",key:"1loha6"}],["rect",{x:"2",y:"8",width:"20",height:"13",rx:"2",key:"p3bz5l"}]]);const a9=i("tickets",[["path",{d:"m3.173 8.18 11-5a2 2 0 0 1 2.647.993L18.56 8",key:"15hfpj"}],["path",{d:"M6 10V8",key:"1y41hn"}],["path",{d:"M6 14v1",key:"cao2tf"}],["path",{d:"M6 19v2",key:"1loha6"}],["rect",{x:"2",y:"8",width:"20",height:"13",rx:"2",key:"p3bz5l"}]]);const r9=i("timer-off",[["path",{d:"M10 2h4",key:"n1abiw"}],["path",{d:"M4.6 11a8 8 0 0 0 1.7 8.7 8 8 0 0 0 8.7 1.7",key:"10he05"}],["path",{d:"M7.4 7.4a8 8 0 0 1 10.3 1 8 8 0 0 1 .9 10.2",key:"15f7sh"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M12 12v-2",key:"fwoke6"}]]);const i9=i("timer",[["line",{x1:"10",x2:"14",y1:"2",y2:"2",key:"14vaq8"}],["line",{x1:"12",x2:"15",y1:"14",y2:"11",key:"17fdiu"}],["circle",{cx:"12",cy:"14",r:"8",key:"1e1u0o"}]]);const c9=i("timer-reset",[["path",{d:"M10 2h4",key:"n1abiw"}],["path",{d:"M12 14v-4",key:"1evpnu"}],["path",{d:"M4 13a8 8 0 0 1 8-7 8 8 0 1 1-5.3 14L4 17.6",key:"1ts96g"}],["path",{d:"M9 17H4v5",key:"8t5av"}]]);const s9=i("toggle-left",[["circle",{cx:"9",cy:"12",r:"3",key:"u3jwor"}],["rect",{width:"20",height:"14",x:"2",y:"5",rx:"7",key:"g7kal2"}]]);const d9=i("toggle-right",[["circle",{cx:"15",cy:"12",r:"3",key:"1afu0r"}],["rect",{width:"20",height:"14",x:"2",y:"5",rx:"7",key:"g7kal2"}]]);const l9=i("toilet",[["path",{d:"M7 12h13a1 1 0 0 1 1 1 5 5 0 0 1-5 5h-.598a.5.5 0 0 0-.424.765l1.544 2.47a.5.5 0 0 1-.424.765H5.402a.5.5 0 0 1-.424-.765L7 18",key:"kc4kqr"}],["path",{d:"M8 18a5 5 0 0 1-5-5V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8",key:"1tqs57"}]]);const u9=i("tool-case",[["path",{d:"M10 15h4",key:"192ueg"}],["path",{d:"m14.817 10.995-.971-1.45 1.034-1.232a2 2 0 0 0-2.025-3.238l-1.82.364L9.91 3.885a2 2 0 0 0-3.625.748L6.141 6.55l-1.725.426a2 2 0 0 0-.19 3.756l.657.27",key:"xbnumr"}],["path",{d:"m18.822 10.995 2.26-5.38a1 1 0 0 0-.557-1.318L16.954 2.9a1 1 0 0 0-1.281.533l-.924 2.122",key:"eaw7gc"}],["path",{d:"M4 12.006A1 1 0 0 1 4.994 11H19a1 1 0 0 1 1 1v7a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z",key:"1vaooh"}]]);const h9=i("tornado",[["path",{d:"M21 4H3",key:"1hwok0"}],["path",{d:"M18 8H6",key:"41n648"}],["path",{d:"M19 12H9",key:"1g4lpz"}],["path",{d:"M16 16h-6",key:"1j5d54"}],["path",{d:"M11 20H9",key:"39obr8"}]]);const p9=i("toolbox",[["path",{d:"M16 12v4",key:"vf1vip"}],["path",{d:"M16 6a2 2 0 0 1 1.414.586l4 4A2 2 0 0 1 22 12v7a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 .586-1.414l4-4A2 2 0 0 1 8 6z",key:"1h1rvn"}],["path",{d:"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2",key:"1ksdt3"}],["path",{d:"M2 14h20",key:"myj16y"}],["path",{d:"M8 12v4",key:"1w4uao"}]]);const y9=i("torus",[["ellipse",{cx:"12",cy:"11",rx:"3",ry:"2",key:"1b2qxu"}],["ellipse",{cx:"12",cy:"12.5",rx:"10",ry:"8.5",key:"h8emeu"}]]);const f9=i("touchpad-off",[["path",{d:"M12 20v-6",key:"1rm09r"}],["path",{d:"M19.656 14H22",key:"170xzr"}],["path",{d:"M2 14h12",key:"d8icqz"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2",key:"s23sx2"}],["path",{d:"M9.656 4H20a2 2 0 0 1 2 2v10.344",key:"ovjcvl"}]]);const m9=i("touchpad",[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M2 14h20",key:"myj16y"}],["path",{d:"M12 20v-6",key:"1rm09r"}]]);const k9=i("tower-control",[["path",{d:"M18.2 12.27 20 6H4l1.8 6.27a1 1 0 0 0 .95.73h10.5a1 1 0 0 0 .96-.73Z",key:"1pledb"}],["path",{d:"M8 13v9",key:"hmv0ci"}],["path",{d:"M16 22v-9",key:"ylnf1u"}],["path",{d:"m9 6 1 7",key:"dpdgam"}],["path",{d:"m15 6-1 7",key:"ls7zgu"}],["path",{d:"M12 6V2",key:"1pj48d"}],["path",{d:"M13 2h-2",key:"mj6ths"}]]);const g9=i("toy-brick",[["rect",{width:"18",height:"12",x:"3",y:"8",rx:"1",key:"158fvp"}],["path",{d:"M10 8V5c0-.6-.4-1-1-1H6a1 1 0 0 0-1 1v3",key:"s0042v"}],["path",{d:"M19 8V5c0-.6-.4-1-1-1h-3a1 1 0 0 0-1 1v3",key:"9wmeh2"}]]);const v9=i("tractor",[["path",{d:"m10 11 11 .9a1 1 0 0 1 .8 1.1l-.665 4.158a1 1 0 0 1-.988.842H20",key:"she1j9"}],["path",{d:"M16 18h-5",key:"bq60fd"}],["path",{d:"M18 5a1 1 0 0 0-1 1v5.573",key:"1kv8ia"}],["path",{d:"M3 4h8.129a1 1 0 0 1 .99.863L13 11.246",key:"1q1ert"}],["path",{d:"M4 11V4",key:"9ft8pt"}],["path",{d:"M7 15h.01",key:"k5ht0j"}],["path",{d:"M8 10.1V4",key:"1jgyzo"}],["circle",{cx:"18",cy:"18",r:"2",key:"1emm8v"}],["circle",{cx:"7",cy:"15",r:"5",key:"ddtuc"}]]);const _9=i("traffic-cone",[["path",{d:"M16.05 10.966a5 2.5 0 0 1-8.1 0",key:"m5jpwb"}],["path",{d:"m16.923 14.049 4.48 2.04a1 1 0 0 1 .001 1.831l-8.574 3.9a2 2 0 0 1-1.66 0l-8.574-3.91a1 1 0 0 1 0-1.83l4.484-2.04",key:"rbg3g8"}],["path",{d:"M16.949 14.14a5 2.5 0 1 1-9.9 0L10.063 3.5a2 2 0 0 1 3.874 0z",key:"vap8c8"}],["path",{d:"M9.194 6.57a5 2.5 0 0 0 5.61 0",key:"15hn5c"}]]);const b9=i("train-front-tunnel",[["path",{d:"M2 22V12a10 10 0 1 1 20 0v10",key:"o0fyp0"}],["path",{d:"M15 6.8v1.4a3 2.8 0 1 1-6 0V6.8",key:"m8q3n9"}],["path",{d:"M10 15h.01",key:"44in9x"}],["path",{d:"M14 15h.01",key:"5mohn5"}],["path",{d:"M10 19a4 4 0 0 1-4-4v-3a6 6 0 1 1 12 0v3a4 4 0 0 1-4 4Z",key:"hckbmu"}],["path",{d:"m9 19-2 3",key:"iij7hm"}],["path",{d:"m15 19 2 3",key:"npx8sa"}]]);const M9=i("train-front",[["path",{d:"M8 3.1V7a4 4 0 0 0 8 0V3.1",key:"1v71zp"}],["path",{d:"m9 15-1-1",key:"1yrq24"}],["path",{d:"m15 15 1-1",key:"1t0d6s"}],["path",{d:"M9 19c-2.8 0-5-2.2-5-5v-4a8 8 0 0 1 16 0v4c0 2.8-2.2 5-5 5Z",key:"1p0hjs"}],["path",{d:"m8 19-2 3",key:"13i0xs"}],["path",{d:"m16 19 2 3",key:"xo31yx"}]]);const w9=i("train-track",[["path",{d:"M2 17 17 2",key:"18b09t"}],["path",{d:"m2 14 8 8",key:"1gv9hu"}],["path",{d:"m5 11 8 8",key:"189pqp"}],["path",{d:"m8 8 8 8",key:"1imecy"}],["path",{d:"m11 5 8 8",key:"ummqn6"}],["path",{d:"m14 2 8 8",key:"1vk7dn"}],["path",{d:"M7 22 22 7",key:"15mb1i"}]]);const lc=i("tram-front",[["rect",{width:"16",height:"16",x:"4",y:"3",rx:"2",key:"1wxw4b"}],["path",{d:"M4 11h16",key:"mpoxn0"}],["path",{d:"M12 3v8",key:"1h2ygw"}],["path",{d:"m8 19-2 3",key:"13i0xs"}],["path",{d:"m18 22-2-3",key:"1p0ohu"}],["path",{d:"M8 15h.01",key:"a7atzg"}],["path",{d:"M16 15h.01",key:"rnfrdf"}]]);const x9=i("transgender",[["path",{d:"M12 16v6",key:"c8a4gj"}],["path",{d:"M14 20h-4",key:"m8m19d"}],["path",{d:"M18 2h4v4",key:"1341mj"}],["path",{d:"m2 2 7.17 7.17",key:"13q8l2"}],["path",{d:"M2 5.355V2h3.357",key:"18136r"}],["path",{d:"m22 2-7.17 7.17",key:"1epvy4"}],["path",{d:"M8 5 5 8",key:"mgbjhz"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}]]);const ts=i("trash-2",[["path",{d:"M10 11v6",key:"nco0om"}],["path",{d:"M14 11v6",key:"outv1u"}],["path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6",key:"miytrc"}],["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2",key:"e791ji"}]]);const N9=i("trash",[["path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6",key:"miytrc"}],["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2",key:"e791ji"}]]);const C9=i("tree-deciduous",[["path",{d:"M8 19a4 4 0 0 1-2.24-7.32A3.5 3.5 0 0 1 9 6.03V6a3 3 0 1 1 6 0v.04a3.5 3.5 0 0 1 3.24 5.65A4 4 0 0 1 16 19Z",key:"oadzkq"}],["path",{d:"M12 19v3",key:"npa21l"}]]);const uc=i("tree-palm",[["path",{d:"M13 8c0-2.76-2.46-5-5.5-5S2 5.24 2 8h2l1-1 1 1h4",key:"foxbe7"}],["path",{d:"M13 7.14A5.82 5.82 0 0 1 16.5 6c3.04 0 5.5 2.24 5.5 5h-3l-1-1-1 1h-3",key:"18arnh"}],["path",{d:"M5.89 9.71c-2.15 2.15-2.3 5.47-.35 7.43l4.24-4.25.7-.7.71-.71 2.12-2.12c-1.95-1.96-5.27-1.8-7.42.35",key:"ywahnh"}],["path",{d:"M11 15.5c.5 2.5-.17 4.5-1 6.5h4c2-5.5-.5-12-1-14",key:"ft0feo"}]]);const $9=i("tree-pine",[["path",{d:"m17 14 3 3.3a1 1 0 0 1-.7 1.7H4.7a1 1 0 0 1-.7-1.7L7 14h-.3a1 1 0 0 1-.7-1.7L9 9h-.2A1 1 0 0 1 8 7.3L12 3l4 4.3a1 1 0 0 1-.8 1.7H15l3 3.3a1 1 0 0 1-.7 1.7H17Z",key:"cpyugq"}],["path",{d:"M12 22v-3",key:"kmzjlo"}]]);const S9=i("trees",[["path",{d:"M10 10v.2A3 3 0 0 1 8.9 16H5a3 3 0 0 1-1-5.8V10a3 3 0 0 1 6 0Z",key:"1l6gj6"}],["path",{d:"M7 16v6",key:"1a82de"}],["path",{d:"M13 19v3",key:"13sx9i"}],["path",{d:"M12 19h8.3a1 1 0 0 0 .7-1.7L18 14h.3a1 1 0 0 0 .7-1.7L16 9h.2a1 1 0 0 0 .8-1.7L13 3l-1.4 1.5",key:"1sj9kv"}]]);const L9=i("trello",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["rect",{width:"3",height:"9",x:"7",y:"7",key:"14n3xi"}],["rect",{width:"3",height:"5",x:"14",y:"7",key:"s4azjd"}]]);const cd=i("trending-down",[["path",{d:"M16 17h6v-6",key:"t6n2it"}],["path",{d:"m22 17-8.5-8.5-5 5L2 7",key:"x473p"}]]);const I9=i("trending-up-down",[["path",{d:"M14.828 14.828 21 21",key:"ar5fw7"}],["path",{d:"M21 16v5h-5",key:"1ck2sf"}],["path",{d:"m21 3-9 9-4-4-6 6",key:"1h02xo"}],["path",{d:"M21 8V3h-5",key:"1qoq8a"}]]);const sd=i("trending-up",[["path",{d:"M16 7h6v6",key:"box55l"}],["path",{d:"m22 7-8.5 8.5-5-5L2 17",key:"1t1m79"}]]);const sn=i("triangle-alert",[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",key:"wmoenq"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);const A9=i("triangle-dashed",[["path",{d:"M10.17 4.193a2 2 0 0 1 3.666.013",key:"pltmmw"}],["path",{d:"M14 21h2",key:"v4qezv"}],["path",{d:"m15.874 7.743 1 1.732",key:"10m0iw"}],["path",{d:"m18.849 12.952 1 1.732",key:"zadnam"}],["path",{d:"M21.824 18.18a2 2 0 0 1-1.835 2.824",key:"fvwuk4"}],["path",{d:"M4.024 21a2 2 0 0 1-1.839-2.839",key:"1e1kah"}],["path",{d:"m5.136 12.952-1 1.732",key:"1u4ldi"}],["path",{d:"M8 21h2",key:"i9zjee"}],["path",{d:"m8.102 7.743-1 1.732",key:"1zzo4u"}]]);const P9=i("triangle-right",[["path",{d:"M22 18a2 2 0 0 1-2 2H3c-1.1 0-1.3-.6-.4-1.3L20.4 4.3c.9-.7 1.6-.4 1.6.7Z",key:"183wce"}]]);const T9=i("triangle",[["path",{d:"M13.73 4a2 2 0 0 0-3.46 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z",key:"14u9p9"}]]);const D9=i("trophy",[["path",{d:"M10 14.66v1.626a2 2 0 0 1-.976 1.696A5 5 0 0 0 7 21.978",key:"1n3hpd"}],["path",{d:"M14 14.66v1.626a2 2 0 0 0 .976 1.696A5 5 0 0 1 17 21.978",key:"rfe1zi"}],["path",{d:"M18 9h1.5a1 1 0 0 0 0-5H18",key:"7xy6bh"}],["path",{d:"M4 22h16",key:"57wxv0"}],["path",{d:"M6 9a6 6 0 0 0 12 0V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1z",key:"1mhfuq"}],["path",{d:"M6 9H4.5a1 1 0 0 1 0-5H6",key:"tex48p"}]]);const E9=i("truck-electric",[["path",{d:"M14 19V7a2 2 0 0 0-2-2H9",key:"15peso"}],["path",{d:"M15 19H9",key:"18q6dt"}],["path",{d:"M19 19h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.62L18.3 9.38a1 1 0 0 0-.78-.38H14",key:"1dkp3j"}],["path",{d:"M2 13v5a1 1 0 0 0 1 1h2",key:"pkmmzz"}],["path",{d:"M4 3 2.15 5.15a.495.495 0 0 0 .35.86h2.15a.47.47 0 0 1 .35.86L3 9.02",key:"1n26pd"}],["circle",{cx:"17",cy:"19",r:"2",key:"1nxcgd"}],["circle",{cx:"7",cy:"19",r:"2",key:"gzo7y7"}]]);const z9=i("truck",[["path",{d:"M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2",key:"wrbu53"}],["path",{d:"M15 18H9",key:"1lyqi6"}],["path",{d:"M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14",key:"lysw3i"}],["circle",{cx:"17",cy:"18",r:"2",key:"332jqn"}],["circle",{cx:"7",cy:"18",r:"2",key:"19iecd"}]]);const O9=i("turkish-lira",[["path",{d:"M15 4 5 9",key:"14bkc9"}],["path",{d:"m15 8.5-10 5",key:"1grtsx"}],["path",{d:"M18 12a9 9 0 0 1-9 9V3",key:"1sst7f"}]]);const q9=i("turntable",[["path",{d:"M10 12.01h.01",key:"7rp0yl"}],["path",{d:"M18 8v4a8 8 0 0 1-1.07 4",key:"1st48v"}],["circle",{cx:"10",cy:"12",r:"4",key:"19levz"}],["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2",key:"izxlao"}]]);const j9=i("turtle",[["path",{d:"m12 10 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a8 8 0 1 0-16 0v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3l2-4h4Z",key:"1lbbv7"}],["path",{d:"M4.82 7.9 8 10",key:"m9wose"}],["path",{d:"M15.18 7.9 12 10",key:"p8dp2u"}],["path",{d:"M16.93 10H20a2 2 0 0 1 0 4H2",key:"12nsm7"}]]);const H9=i("tv-minimal-play",[["path",{d:"M15.033 9.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56V7.648a.645.645 0 0 1 .967-.56z",key:"vbtd3f"}],["path",{d:"M7 21h10",key:"1b0cd5"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}]]);const hc=i("tv-minimal",[["path",{d:"M7 21h10",key:"1b0cd5"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}]]);const V9=i("tv",[["path",{d:"m17 2-5 5-5-5",key:"16satq"}],["rect",{width:"20",height:"15",x:"2",y:"7",rx:"2",key:"1e6viu"}]]);const F9=i("twitch",[["path",{d:"M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7",key:"c0yzno"}]]);const B9=i("twitter",[["path",{d:"M22 4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2.1 4.4-.6 6-2C3 15.5.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4-.9-4.2 4-6.6 7-3.8 1.1 0 3-1.2 3-1.2z",key:"pff0z6"}]]);const W9=i("type",[["path",{d:"M12 4v16",key:"1654pz"}],["path",{d:"M4 7V5a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2",key:"e0r10z"}],["path",{d:"M9 20h6",key:"s66wpe"}]]);const U9=i("type-outline",[["path",{d:"M14 16.5a.5.5 0 0 0 .5.5h.5a2 2 0 0 1 0 4H9a2 2 0 0 1 0-4h.5a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5V8a2 2 0 0 1-4 0V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v3a2 2 0 0 1-4 0v-.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5Z",key:"1reda3"}]]);const R9=i("umbrella-off",[["path",{d:"M12 13v7a2 2 0 0 0 4 0",key:"rpgb42"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M18.656 13h2.336a1 1 0 0 0 .97-1.274 10.284 10.284 0 0 0-12.07-7.51",key:"yawknk"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M5.961 5.957a10.28 10.28 0 0 0-3.922 5.769A1 1 0 0 0 3 13h10",key:"5sfalc"}]]);const G9=i("umbrella",[["path",{d:"M12 13v7a2 2 0 0 0 4 0",key:"rpgb42"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M20.992 13a1 1 0 0 0 .97-1.274 10.284 10.284 0 0 0-19.923 0A1 1 0 0 0 3 13z",key:"124nyo"}]]);const K9=i("underline",[["path",{d:"M6 4v6a6 6 0 0 0 12 0V4",key:"9kb039"}],["line",{x1:"4",x2:"20",y1:"20",y2:"20",key:"nun2al"}]]);const Y9=i("undo-2",[["path",{d:"M9 14 4 9l5-5",key:"102s5s"}],["path",{d:"M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5a5.5 5.5 0 0 1-5.5 5.5H11",key:"f3b9sd"}]]);const X9=i("undo-dot",[["path",{d:"M21 17a9 9 0 0 0-15-6.7L3 13",key:"8mp6z9"}],["path",{d:"M3 7v6h6",key:"1v2h90"}],["circle",{cx:"12",cy:"17",r:"1",key:"1ixnty"}]]);const Z9=i("undo",[["path",{d:"M3 7v6h6",key:"1v2h90"}],["path",{d:"M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13",key:"1r6uu6"}]]);const Q9=i("unfold-horizontal",[["path",{d:"M16 12h6",key:"15xry1"}],["path",{d:"M8 12H2",key:"1jqql6"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 8v2",key:"1woqiv"}],["path",{d:"M12 14v2",key:"8jcxud"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"m19 15 3-3-3-3",key:"wjy7rq"}],["path",{d:"m5 9-3 3 3 3",key:"j64kie"}]]);const J9=i("unfold-vertical",[["path",{d:"M12 22v-6",key:"6o8u61"}],["path",{d:"M12 8V2",key:"1wkif3"}],["path",{d:"M4 12H2",key:"rhcxmi"}],["path",{d:"M10 12H8",key:"s88cx1"}],["path",{d:"M16 12h-2",key:"10asgb"}],["path",{d:"M22 12h-2",key:"14jgyd"}],["path",{d:"m15 19-3 3-3-3",key:"11eu04"}],["path",{d:"m15 5-3-3-3 3",key:"itvq4r"}]]);const eN=i("ungroup",[["rect",{width:"8",height:"6",x:"5",y:"4",rx:"1",key:"nzclkv"}],["rect",{width:"8",height:"6",x:"11",y:"14",rx:"1",key:"4tytwb"}]]);const pc=i("university",[["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3",key:"1rgiei"}],["path",{d:"M18 12h.01",key:"yjnet6"}],["path",{d:"M18 16h.01",key:"plv8zi"}],["path",{d:"M22 7a1 1 0 0 0-1-1h-2a2 2 0 0 1-1.143-.359L13.143 2.36a2 2 0 0 0-2.286-.001L6.143 5.64A2 2 0 0 1 5 6H3a1 1 0 0 0-1 1v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2z",key:"1ogmi3"}],["path",{d:"M6 12h.01",key:"c2rlol"}],["path",{d:"M6 16h.01",key:"1pmjb7"}],["circle",{cx:"12",cy:"10",r:"2",key:"1yojzk"}]]);const tN=i("unlink-2",[["path",{d:"M15 7h2a5 5 0 0 1 0 10h-2m-6 0H7A5 5 0 0 1 7 7h2",key:"1re2ne"}]]);const oN=i("unlink",[["path",{d:"m18.84 12.25 1.72-1.71h-.02a5.004 5.004 0 0 0-.12-7.07 5.006 5.006 0 0 0-6.95 0l-1.72 1.71",key:"yqzxt4"}],["path",{d:"m5.17 11.75-1.71 1.71a5.004 5.004 0 0 0 .12 7.07 5.006 5.006 0 0 0 6.95 0l1.71-1.71",key:"4qinb0"}],["line",{x1:"8",x2:"8",y1:"2",y2:"5",key:"1041cp"}],["line",{x1:"2",x2:"5",y1:"8",y2:"8",key:"14m1p5"}],["line",{x1:"16",x2:"16",y1:"19",y2:"22",key:"rzdirn"}],["line",{x1:"19",x2:"22",y1:"16",y2:"16",key:"ox905f"}]]);const nN=i("unplug",[["path",{d:"m19 5 3-3",key:"yk6iyv"}],["path",{d:"m2 22 3-3",key:"19mgm9"}],["path",{d:"M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z",key:"goz73y"}],["path",{d:"M7.5 13.5 10 11",key:"7xgeeb"}],["path",{d:"M10.5 16.5 13 14",key:"10btkg"}],["path",{d:"m12 6 6 6 2.3-2.3a2.4 2.4 0 0 0 0-3.4l-2.6-2.6a2.4 2.4 0 0 0-3.4 0Z",key:"1snsnr"}]]);const dd=i("upload",[["path",{d:"M12 3v12",key:"1x0j5s"}],["path",{d:"m17 8-5-5-5 5",key:"7q97r8"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}]]);const aN=i("usb",[["circle",{cx:"10",cy:"7",r:"1",key:"dypaad"}],["circle",{cx:"4",cy:"20",r:"1",key:"22iqad"}],["path",{d:"M4.7 19.3 19 5",key:"1enqfc"}],["path",{d:"m21 3-3 1 2 2Z",key:"d3ov82"}],["path",{d:"M9.26 7.68 5 12l2 5",key:"1esawj"}],["path",{d:"m10 14 5 2 3.5-3.5",key:"v8oal5"}],["path",{d:"m18 12 1-1 1 1-1 1Z",key:"1bh22v"}]]);const rN=i("user-check",[["path",{d:"m16 11 2 2 4-4",key:"9rsbq5"}],["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}]]);const iN=i("user-cog",[["path",{d:"M10 15H6a4 4 0 0 0-4 4v2",key:"1nfge6"}],["path",{d:"m14.305 16.53.923-.382",key:"1itpsq"}],["path",{d:"m15.228 13.852-.923-.383",key:"eplpkm"}],["path",{d:"m16.852 12.228-.383-.923",key:"13v3q0"}],["path",{d:"m16.852 17.772-.383.924",key:"1i8mnm"}],["path",{d:"m19.148 12.228.383-.923",key:"1q8j1v"}],["path",{d:"m19.53 18.696-.382-.924",key:"vk1qj3"}],["path",{d:"m20.772 13.852.924-.383",key:"n880s0"}],["path",{d:"m20.772 16.148.924.383",key:"1g6xey"}],["circle",{cx:"18",cy:"15",r:"3",key:"gjjjvw"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}]]);const cN=i("user-lock",[["circle",{cx:"10",cy:"7",r:"4",key:"e45bow"}],["path",{d:"M10.3 15H7a4 4 0 0 0-4 4v2",key:"3bnktk"}],["path",{d:"M15 15.5V14a2 2 0 0 1 4 0v1.5",key:"12ym5i"}],["rect",{width:"8",height:"5",x:"13",y:"16",rx:".899",key:"4p176n"}]]);const sN=i("user-minus",[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}],["line",{x1:"22",x2:"16",y1:"11",y2:"11",key:"1shjgl"}]]);const dN=i("user-pen",[["path",{d:"M11.5 15H7a4 4 0 0 0-4 4v2",key:"15lzij"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"1817ys"}],["circle",{cx:"10",cy:"7",r:"4",key:"e45bow"}]]);const lN=i("user-plus",[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}],["line",{x1:"19",x2:"19",y1:"8",y2:"14",key:"1bvyxn"}],["line",{x1:"22",x2:"16",y1:"11",y2:"11",key:"1shjgl"}]]);const yc=i("user-round-check",[["path",{d:"M2 21a8 8 0 0 1 13.292-6",key:"bjp14o"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"m16 19 2 2 4-4",key:"1b14m6"}]]);const fc=i("user-round-cog",[["path",{d:"m14.305 19.53.923-.382",key:"3m78fa"}],["path",{d:"m15.228 16.852-.923-.383",key:"npixar"}],["path",{d:"m16.852 15.228-.383-.923",key:"5xggr7"}],["path",{d:"m16.852 20.772-.383.924",key:"dpfhf9"}],["path",{d:"m19.148 15.228.383-.923",key:"1reyyz"}],["path",{d:"m19.53 21.696-.382-.924",key:"1goivc"}],["path",{d:"M2 21a8 8 0 0 1 10.434-7.62",key:"1yezr2"}],["path",{d:"m20.772 16.852.924-.383",key:"htqkph"}],["path",{d:"m20.772 19.148.924.383",key:"9w9pjp"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}]]);const mc=i("user-round-minus",[["path",{d:"M2 21a8 8 0 0 1 13.292-6",key:"bjp14o"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"M22 19h-6",key:"vcuq98"}]]);const uN=i("user-round-pen",[["path",{d:"M2 21a8 8 0 0 1 10.821-7.487",key:"1c8h7z"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"1817ys"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}]]);const kc=i("user-round-plus",[["path",{d:"M2 21a8 8 0 0 1 13.292-6",key:"bjp14o"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"M19 16v6",key:"tddt3s"}],["path",{d:"M22 19h-6",key:"vcuq98"}]]);const hN=i("user-round-search",[["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"M2 21a8 8 0 0 1 10.434-7.62",key:"1yezr2"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["path",{d:"m22 22-1.9-1.9",key:"1e5ubv"}]]);const gc=i("user-round-x",[["path",{d:"M2 21a8 8 0 0 1 11.873-7",key:"74fkxq"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"m17 17 5 5",key:"p7ous7"}],["path",{d:"m22 17-5 5",key:"gqnmv0"}]]);const vc=i("user-round",[["circle",{cx:"12",cy:"8",r:"5",key:"1hypcn"}],["path",{d:"M20 21a8 8 0 0 0-16 0",key:"rfgkzh"}]]);const pN=i("user-search",[["circle",{cx:"10",cy:"7",r:"4",key:"e45bow"}],["path",{d:"M10.3 15H7a4 4 0 0 0-4 4v2",key:"3bnktk"}],["circle",{cx:"17",cy:"17",r:"3",key:"18b49y"}],["path",{d:"m21 21-1.9-1.9",key:"1g2n9r"}]]);const yN=i("user-star",[["path",{d:"M16.051 12.616a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.866l-1.156-1.153a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z",key:"1m8t9f"}],["path",{d:"M8 15H7a4 4 0 0 0-4 4v2",key:"l9tmp8"}],["circle",{cx:"10",cy:"7",r:"4",key:"e45bow"}]]);const fN=i("user-x",[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}],["line",{x1:"17",x2:"22",y1:"8",y2:"13",key:"3nzzx3"}],["line",{x1:"22",x2:"17",y1:"8",y2:"13",key:"1swrse"}]]);const mN=i("user",[["path",{d:"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2",key:"975kel"}],["circle",{cx:"12",cy:"7",r:"4",key:"17ys0d"}]]);const _c=i("users-round",[["path",{d:"M18 21a8 8 0 0 0-16 0",key:"3ypg7q"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"M22 20c0-3.37-2-6.5-4-8a5 5 0 0 0-.45-8.3",key:"10s06x"}]]);const bc=i("utensils-crossed",[["path",{d:"m16 2-2.3 2.3a3 3 0 0 0 0 4.2l1.8 1.8a3 3 0 0 0 4.2 0L22 8",key:"n7qcjb"}],["path",{d:"M15 15 3.3 3.3a4.2 4.2 0 0 0 0 6l7.3 7.3c.7.7 2 .7 2.8 0L15 15Zm0 0 7 7",key:"d0u48b"}],["path",{d:"m2.1 21.8 6.4-6.3",key:"yn04lh"}],["path",{d:"m19 5-7 7",key:"194lzd"}]]);const kN=i("users",[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["path",{d:"M16 3.128a4 4 0 0 1 0 7.744",key:"16gr8j"}],["path",{d:"M22 21v-2a4 4 0 0 0-3-3.87",key:"kshegd"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}]]);const Mc=i("utensils",[["path",{d:"M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2",key:"cjf0a3"}],["path",{d:"M7 2v20",key:"1473qp"}],["path",{d:"M21 15V2a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7",key:"j28e5"}]]);const gN=i("utility-pole",[["path",{d:"M12 2v20",key:"t6zp3m"}],["path",{d:"M2 5h20",key:"1fs1ex"}],["path",{d:"M3 3v2",key:"9imdir"}],["path",{d:"M7 3v2",key:"n0os7"}],["path",{d:"M17 3v2",key:"1l2re6"}],["path",{d:"M21 3v2",key:"1duuac"}],["path",{d:"m19 5-7 7-7-7",key:"133zxf"}]]);const vN=i("van",[["path",{d:"M13 6v5a1 1 0 0 0 1 1h6.102a1 1 0 0 1 .712.298l.898.91a1 1 0 0 1 .288.702V17a1 1 0 0 1-1 1h-3",key:"k3s650"}],["path",{d:"M5 18H3a1 1 0 0 1-1-1V8a2 2 0 0 1 2-2h12c1.1 0 2.1.8 2.4 1.8l1.176 4.2",key:"fnd93u"}],["path",{d:"M9 18h5",key:"lrx6i"}],["circle",{cx:"16",cy:"18",r:"2",key:"1v4tcr"}],["circle",{cx:"7",cy:"18",r:"2",key:"19iecd"}]]);const _N=i("variable",[["path",{d:"M8 21s-4-3-4-9 4-9 4-9",key:"uto9ud"}],["path",{d:"M16 3s4 3 4 9-4 9-4 9",key:"4w2vsq"}],["line",{x1:"15",x2:"9",y1:"9",y2:"15",key:"f7djnv"}],["line",{x1:"9",x2:"15",y1:"9",y2:"15",key:"1shsy8"}]]);const bN=i("vault",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor",key:"kqv944"}],["path",{d:"m7.9 7.9 2.7 2.7",key:"hpeyl3"}],["circle",{cx:"16.5",cy:"7.5",r:".5",fill:"currentColor",key:"w0ekpg"}],["path",{d:"m13.4 10.6 2.7-2.7",key:"264c1n"}],["circle",{cx:"7.5",cy:"16.5",r:".5",fill:"currentColor",key:"nkw3mc"}],["path",{d:"m7.9 16.1 2.7-2.7",key:"p81g5e"}],["circle",{cx:"16.5",cy:"16.5",r:".5",fill:"currentColor",key:"fubopw"}],["path",{d:"m13.4 13.4 2.7 2.7",key:"abhel3"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]]);const MN=i("vector-square",[["path",{d:"M19.5 7a24 24 0 0 1 0 10",key:"8n60xe"}],["path",{d:"M4.5 7a24 24 0 0 0 0 10",key:"2lmadr"}],["path",{d:"M7 19.5a24 24 0 0 0 10 0",key:"1q94o2"}],["path",{d:"M7 4.5a24 24 0 0 1 10 0",key:"2z8ypa"}],["rect",{x:"17",y:"17",width:"5",height:"5",rx:"1",key:"1ac74s"}],["rect",{x:"17",y:"2",width:"5",height:"5",rx:"1",key:"1e7h5j"}],["rect",{x:"2",y:"17",width:"5",height:"5",rx:"1",key:"1t4eah"}],["rect",{x:"2",y:"2",width:"5",height:"5",rx:"1",key:"940dhs"}]]);const wN=i("vegan",[["path",{d:"M16 8q6 0 6-6-6 0-6 6",key:"qsyyc4"}],["path",{d:"M17.41 3.59a10 10 0 1 0 3 3",key:"41m9h7"}],["path",{d:"M2 2a26.6 26.6 0 0 1 10 20c.9-6.82 1.5-9.5 4-14",key:"qiv7li"}]]);const xN=i("venetian-mask",[["path",{d:"M18 11c-1.5 0-2.5.5-3 2",key:"1fod00"}],["path",{d:"M4 6a2 2 0 0 0-2 2v4a5 5 0 0 0 5 5 8 8 0 0 1 5 2 8 8 0 0 1 5-2 5 5 0 0 0 5-5V8a2 2 0 0 0-2-2h-3a8 8 0 0 0-5 2 8 8 0 0 0-5-2z",key:"d70hit"}],["path",{d:"M6 11c1.5 0 2.5.5 3 2",key:"136fht"}]]);const NN=i("venus-and-mars",[["path",{d:"M10 20h4",key:"ni2waw"}],["path",{d:"M12 16v6",key:"c8a4gj"}],["path",{d:"M17 2h4v4",key:"vhe59"}],["path",{d:"m21 2-5.46 5.46",key:"19kypf"}],["circle",{cx:"12",cy:"11",r:"5",key:"16gxyc"}]]);const CN=i("venus",[["path",{d:"M12 15v7",key:"t2xh3l"}],["path",{d:"M9 19h6",key:"456am0"}],["circle",{cx:"12",cy:"9",r:"6",key:"1nw4tq"}]]);const $N=i("vibrate-off",[["path",{d:"m2 8 2 2-2 2 2 2-2 2",key:"sv1b1"}],["path",{d:"m22 8-2 2 2 2-2 2 2 2",key:"101i4y"}],["path",{d:"M8 8v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2",key:"1hbad5"}],["path",{d:"M16 10.34V6c0-.55-.45-1-1-1h-4.34",key:"1x5tf0"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]]);const SN=i("vibrate",[["path",{d:"m2 8 2 2-2 2 2 2-2 2",key:"sv1b1"}],["path",{d:"m22 8-2 2 2 2-2 2 2 2",key:"101i4y"}],["rect",{width:"8",height:"14",x:"8",y:"5",rx:"1",key:"1oyrl4"}]]);const LN=i("video-off",[["path",{d:"M10.66 6H14a2 2 0 0 1 2 2v2.5l5.248-3.062A.5.5 0 0 1 22 7.87v8.196",key:"w8jjjt"}],["path",{d:"M16 16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2",key:"1xawa7"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const IN=i("videotape",[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M2 8h20",key:"d11cs7"}],["circle",{cx:"8",cy:"14",r:"2",key:"1k2qr5"}],["path",{d:"M8 12h8",key:"1wcyev"}],["circle",{cx:"16",cy:"14",r:"2",key:"14k7lr"}]]);const AN=i("video",[["path",{d:"m16 13 5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5",key:"ftymec"}],["rect",{x:"2",y:"6",width:"14",height:"12",rx:"2",key:"158x01"}]]);const PN=i("view",[["path",{d:"M21 17v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2",key:"mrq65r"}],["path",{d:"M21 7V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2",key:"be3xqs"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["path",{d:"M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0",key:"11ak4c"}]]);const TN=i("voicemail",[["circle",{cx:"6",cy:"12",r:"4",key:"1ehtga"}],["circle",{cx:"18",cy:"12",r:"4",key:"4vafl8"}],["line",{x1:"6",x2:"18",y1:"16",y2:"16",key:"pmt8us"}]]);const DN=i("volleyball",[["path",{d:"M11.1 7.1a16.55 16.55 0 0 1 10.9 4",key:"2880wi"}],["path",{d:"M12 12a12.6 12.6 0 0 1-8.7 5",key:"113sja"}],["path",{d:"M16.8 13.6a16.55 16.55 0 0 1-9 7.5",key:"1qmsgl"}],["path",{d:"M20.7 17a12.8 12.8 0 0 0-8.7-5 13.3 13.3 0 0 1 0-10",key:"1bmeqp"}],["path",{d:"M6.3 3.8a16.55 16.55 0 0 0 1.9 11.5",key:"iekzv9"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);const EN=i("volume-1",[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",key:"uqj9uw"}],["path",{d:"M16 9a5 5 0 0 1 0 6",key:"1q6k2b"}]]);const zN=i("volume-2",[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",key:"uqj9uw"}],["path",{d:"M16 9a5 5 0 0 1 0 6",key:"1q6k2b"}],["path",{d:"M19.364 18.364a9 9 0 0 0 0-12.728",key:"ijwkga"}]]);const ON=i("volume-off",[["path",{d:"M16 9a5 5 0 0 1 .95 2.293",key:"1fgyg8"}],["path",{d:"M19.364 5.636a9 9 0 0 1 1.889 9.96",key:"l3zxae"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"m7 7-.587.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298V11",key:"1gbwow"}],["path",{d:"M9.828 4.172A.686.686 0 0 1 11 4.657v.686",key:"s2je0y"}]]);const qN=i("volume-x",[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",key:"uqj9uw"}],["line",{x1:"22",x2:"16",y1:"9",y2:"15",key:"1ewh16"}],["line",{x1:"16",x2:"22",y1:"9",y2:"15",key:"5ykzw1"}]]);const jN=i("volume",[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",key:"uqj9uw"}]]);const HN=i("vote",[["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}],["path",{d:"M5 7c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v12H5V7Z",key:"1ezoue"}],["path",{d:"M22 19H2",key:"nuriw5"}]]);const VN=i("wallet-cards",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2",key:"4125el"}],["path",{d:"M3 11h3c.8 0 1.6.3 2.1.9l1.1.9c1.6 1.6 4.1 1.6 5.7 0l1.1-.9c.5-.5 1.3-.9 2.1-.9H21",key:"1dpki6"}]]);const wc=i("wallet-minimal",[["path",{d:"M17 14h.01",key:"7oqj8z"}],["path",{d:"M7 7h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14",key:"u1rqew"}]]);const FN=i("wallet",[["path",{d:"M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1",key:"18etb6"}],["path",{d:"M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4",key:"xoc0q4"}]]);const BN=i("wallpaper",[["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["path",{d:"m9 17 6.1-6.1a2 2 0 0 1 2.81.01L22 15",key:"1sl52q"}],["circle",{cx:"8",cy:"9",r:"2",key:"gjzl9d"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2",key:"x3v2xh"}]]);const xc=i("wand-sparkles",[["path",{d:"m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.2 1.2 0 0 0 1.72 0L21.64 5.36a1.2 1.2 0 0 0 0-1.72",key:"ul74o6"}],["path",{d:"m14 7 3 3",key:"1r5n42"}],["path",{d:"M5 6v4",key:"ilb8ba"}],["path",{d:"M19 14v4",key:"blhpug"}],["path",{d:"M10 2v2",key:"7u0qdc"}],["path",{d:"M7 8H3",key:"zfb6yr"}],["path",{d:"M21 16h-4",key:"1cnmox"}],["path",{d:"M11 3H9",key:"1obp7u"}]]);const WN=i("wand",[["path",{d:"M15 4V2",key:"z1p9b7"}],["path",{d:"M15 16v-2",key:"px0unx"}],["path",{d:"M8 9h2",key:"1g203m"}],["path",{d:"M20 9h2",key:"19tzq7"}],["path",{d:"M17.8 11.8 19 13",key:"yihg8r"}],["path",{d:"M15 9h.01",key:"x1ddxp"}],["path",{d:"M17.8 6.2 19 5",key:"fd4us0"}],["path",{d:"m3 21 9-9",key:"1jfql5"}],["path",{d:"M12.2 6.2 11 5",key:"i3da3b"}]]);const UN=i("warehouse",[["path",{d:"M18 21V10a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v11",key:"pb2vm6"}],["path",{d:"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 1.132-1.803l7.95-3.974a2 2 0 0 1 1.837 0l7.948 3.974A2 2 0 0 1 22 8z",key:"doq5xv"}],["path",{d:"M6 13h12",key:"yf64js"}],["path",{d:"M6 17h12",key:"1jwigz"}]]);const RN=i("washing-machine",[["path",{d:"M3 6h3",key:"155dbl"}],["path",{d:"M17 6h.01",key:"e2y6kg"}],["rect",{width:"18",height:"20",x:"3",y:"2",rx:"2",key:"od3kk9"}],["circle",{cx:"12",cy:"13",r:"5",key:"nlbqau"}],["path",{d:"M12 18a2.5 2.5 0 0 0 0-5 2.5 2.5 0 0 1 0-5",key:"17lach"}]]);const GN=i("waves-arrow-down",[["path",{d:"M12 10L12 2",key:"jvb0aw"}],["path",{d:"M16 6L12 10L8 6",key:"9j6vje"}],["path",{d:"M2 15C2.6 15.5 3.2 16 4.5 16C7 16 7 14 9.5 14C12.1 14 11.9 16 14.5 16C17 16 17 14 19.5 14C20.8 14 21.4 14.5 22 15",key:"s2zepw"}],["path",{d:"M2 21C2.6 21.5 3.2 22 4.5 22C7 22 7 20 9.5 20C12.1 20 11.9 22 14.5 22C17 22 17 20 19.5 20C20.8 20 21.4 20.5 22 21",key:"u68omc"}]]);const KN=i("watch",[["path",{d:"M12 10v2.2l1.6 1",key:"n3r21l"}],["path",{d:"m16.13 7.66-.81-4.05a2 2 0 0 0-2-1.61h-2.68a2 2 0 0 0-2 1.61l-.78 4.05",key:"18k57s"}],["path",{d:"m7.88 16.36.8 4a2 2 0 0 0 2 1.61h2.72a2 2 0 0 0 2-1.61l.81-4.05",key:"16ny36"}],["circle",{cx:"12",cy:"12",r:"6",key:"1vlfrh"}]]);const YN=i("waves-arrow-up",[["path",{d:"M12 2v8",key:"1q4o3n"}],["path",{d:"M2 15c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"1p9f19"}],["path",{d:"M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"vbxynw"}],["path",{d:"m8 6 4-4 4 4",key:"ybng9g"}]]);const XN=i("waves-ladder",[["path",{d:"M19 5a2 2 0 0 0-2 2v11",key:"s41o68"}],["path",{d:"M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"rd2r6e"}],["path",{d:"M7 13h10",key:"1rwob1"}],["path",{d:"M7 9h10",key:"12czzb"}],["path",{d:"M9 5a2 2 0 0 0-2 2v11",key:"x0q4gh"}]]);const ZN=i("waves",[["path",{d:"M2 6c.6.5 1.2 1 2.5 1C7 7 7 5 9.5 5c2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"knzxuh"}],["path",{d:"M2 12c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"2jd2cc"}],["path",{d:"M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"rd2r6e"}]]);const QN=i("waypoints",[["path",{d:"m10.586 5.414-5.172 5.172",key:"4mc350"}],["path",{d:"m18.586 13.414-5.172 5.172",key:"8c96vv"}],["path",{d:"M6 12h12",key:"8npq4p"}],["circle",{cx:"12",cy:"20",r:"2",key:"144qzu"}],["circle",{cx:"12",cy:"4",r:"2",key:"muu5ef"}],["circle",{cx:"20",cy:"12",r:"2",key:"1xzzfp"}],["circle",{cx:"4",cy:"12",r:"2",key:"1hvhnz"}]]);const JN=i("webcam",[["circle",{cx:"12",cy:"10",r:"8",key:"1gshiw"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"M7 22h10",key:"10w4w3"}],["path",{d:"M12 22v-4",key:"1utk9m"}]]);const eC=i("webhook-off",[["path",{d:"M17 17h-5c-1.09-.02-1.94.92-2.5 1.9A3 3 0 1 1 2.57 15",key:"1tvl6x"}],["path",{d:"M9 3.4a4 4 0 0 1 6.52.66",key:"q04jfq"}],["path",{d:"m6 17 3.1-5.8a2.5 2.5 0 0 0 .057-2.05",key:"azowf0"}],["path",{d:"M20.3 20.3a4 4 0 0 1-2.3.7",key:"5joiws"}],["path",{d:"M18.6 13a4 4 0 0 1 3.357 3.414",key:"cangb8"}],["path",{d:"m12 6 .6 1",key:"tpjl1n"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const tC=i("webhook",[["path",{d:"M18 16.98h-5.99c-1.1 0-1.95.94-2.48 1.9A4 4 0 0 1 2 17c.01-.7.2-1.4.57-2",key:"q3hayz"}],["path",{d:"m6 17 3.13-5.78c.53-.97.1-2.18-.5-3.1a4 4 0 1 1 6.89-4.06",key:"1go1hn"}],["path",{d:"m12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8",key:"qlwsc0"}]]);const oC=i("weight-tilde",[["path",{d:"M6.5 8a2 2 0 0 0-1.906 1.46L2.1 18.5A2 2 0 0 0 4 21h16a2 2 0 0 0 1.925-2.54L19.4 9.5A2 2 0 0 0 17.48 8z",key:"1wl739"}],["path",{d:"M7.999 15a2.5 2.5 0 0 1 4 0 2.5 2.5 0 0 0 4 0",key:"1egezo"}],["circle",{cx:"12",cy:"5",r:"3",key:"rqqgnr"}]]);const nC=i("weight",[["circle",{cx:"12",cy:"5",r:"3",key:"rqqgnr"}],["path",{d:"M6.5 8a2 2 0 0 0-1.905 1.46L2.1 18.5A2 2 0 0 0 4 21h16a2 2 0 0 0 1.925-2.54L19.4 9.5A2 2 0 0 0 17.48 8Z",key:"56o5sh"}]]);const aC=i("wheat-off",[["path",{d:"m2 22 10-10",key:"28ilpk"}],["path",{d:"m16 8-1.17 1.17",key:"1qqm82"}],["path",{d:"M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z",key:"1rdhi6"}],["path",{d:"m8 8-.53.53a3.5 3.5 0 0 0 0 4.94L9 15l1.53-1.53c.55-.55.88-1.25.98-1.97",key:"4wz8re"}],["path",{d:"M10.91 5.26c.15-.26.34-.51.56-.73L13 3l1.53 1.53a3.5 3.5 0 0 1 .28 4.62",key:"rves66"}],["path",{d:"M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z",key:"19rau1"}],["path",{d:"M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",key:"tc8ph9"}],["path",{d:"m16 16-.53.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.49 3.49 0 0 1 1.97-.98",key:"ak46r"}],["path",{d:"M18.74 13.09c.26-.15.51-.34.73-.56L21 11l-1.53-1.53a3.5 3.5 0 0 0-4.62-.28",key:"1tw520"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]]);const rC=i("wheat",[["path",{d:"M2 22 16 8",key:"60hf96"}],["path",{d:"M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z",key:"1rdhi6"}],["path",{d:"M7.47 8.53 9 7l1.53 1.53a3.5 3.5 0 0 1 0 4.94L9 15l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z",key:"1sdzmb"}],["path",{d:"M11.47 4.53 13 3l1.53 1.53a3.5 3.5 0 0 1 0 4.94L13 11l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z",key:"eoatbi"}],["path",{d:"M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z",key:"19rau1"}],["path",{d:"M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",key:"tc8ph9"}],["path",{d:"M15.47 13.47 17 15l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",key:"2m8kc5"}],["path",{d:"M19.47 9.47 21 11l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L13 11l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",key:"vex3ng"}]]);const iC=i("whole-word",[["circle",{cx:"7",cy:"12",r:"3",key:"12clwm"}],["path",{d:"M10 9v6",key:"17i7lo"}],["circle",{cx:"17",cy:"12",r:"3",key:"gl7c2s"}],["path",{d:"M14 7v8",key:"dl84cr"}],["path",{d:"M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1",key:"lt2kga"}]]);const cC=i("wifi-cog",[["path",{d:"m14.305 19.53.923-.382",key:"3m78fa"}],["path",{d:"m15.228 16.852-.923-.383",key:"npixar"}],["path",{d:"m16.852 15.228-.383-.923",key:"5xggr7"}],["path",{d:"m16.852 20.772-.383.924",key:"dpfhf9"}],["path",{d:"m19.148 15.228.383-.923",key:"1reyyz"}],["path",{d:"m19.53 21.696-.382-.924",key:"1goivc"}],["path",{d:"M2 7.82a15 15 0 0 1 20 0",key:"1ovjuk"}],["path",{d:"m20.772 16.852.924-.383",key:"htqkph"}],["path",{d:"m20.772 19.148.924.383",key:"9w9pjp"}],["path",{d:"M5 11.858a10 10 0 0 1 11.5-1.785",key:"3sn16i"}],["path",{d:"M8.5 15.429a5 5 0 0 1 2.413-1.31",key:"1pxovh"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}]]);const sC=i("wifi-high",[["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M5 12.859a10 10 0 0 1 14 0",key:"1x1e6c"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0",key:"1bycff"}]]);const dC=i("wifi-low",[["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0",key:"1bycff"}]]);const lC=i("wifi-off",[["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0",key:"1bycff"}],["path",{d:"M5 12.859a10 10 0 0 1 5.17-2.69",key:"1dl1wf"}],["path",{d:"M19 12.859a10 10 0 0 0-2.007-1.523",key:"4k23kn"}],["path",{d:"M2 8.82a15 15 0 0 1 4.177-2.643",key:"1grhjp"}],["path",{d:"M22 8.82a15 15 0 0 0-11.288-3.764",key:"z3jwby"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const uC=i("wifi-pen",[["path",{d:"M2 8.82a15 15 0 0 1 20 0",key:"dnpr2z"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"1817ys"}],["path",{d:"M5 12.859a10 10 0 0 1 10.5-2.222",key:"rpb7oy"}],["path",{d:"M8.5 16.429a5 5 0 0 1 3-1.406",key:"r8bmzl"}]]);const hC=i("wifi-sync",[["path",{d:"M11.965 10.105v4L13.5 12.5a5 5 0 0 1 8 1.5",key:"1immaq"}],["path",{d:"M11.965 14.105h4",key:"uejny8"}],["path",{d:"M17.965 18.105h4L20.43 19.71a5 5 0 0 1-8-1.5",key:"1i3a7e"}],["path",{d:"M2 8.82a15 15 0 0 1 20 0",key:"dnpr2z"}],["path",{d:"M21.965 22.105v-4",key:"1ku6vx"}],["path",{d:"M5 12.86a10 10 0 0 1 3-2.032",key:"pemdtu"}],["path",{d:"M8.5 16.429h.01",key:"2bm739"}]]);const pC=i("wifi-zero",[["path",{d:"M12 20h.01",key:"zekei9"}]]);const yC=i("wifi",[["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M2 8.82a15 15 0 0 1 20 0",key:"dnpr2z"}],["path",{d:"M5 12.859a10 10 0 0 1 14 0",key:"1x1e6c"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0",key:"1bycff"}]]);const fC=i("wind-arrow-down",[["path",{d:"M10 2v8",key:"d4bbey"}],["path",{d:"M12.8 21.6A2 2 0 1 0 14 18H2",key:"19kp1d"}],["path",{d:"M17.5 10a2.5 2.5 0 1 1 2 4H2",key:"19kpjc"}],["path",{d:"m6 6 4 4 4-4",key:"k13n16"}]]);const mC=i("wind",[["path",{d:"M12.8 19.6A2 2 0 1 0 14 16H2",key:"148xed"}],["path",{d:"M17.5 8a2.5 2.5 0 1 1 2 4H2",key:"1u4tom"}],["path",{d:"M9.8 4.4A2 2 0 1 1 11 8H2",key:"75valh"}]]);const kC=i("wine-off",[["path",{d:"M8 22h8",key:"rmew8v"}],["path",{d:"M7 10h3m7 0h-1.343",key:"v48bem"}],["path",{d:"M12 15v7",key:"t2xh3l"}],["path",{d:"M7.307 7.307A12.33 12.33 0 0 0 7 10a5 5 0 0 0 7.391 4.391M8.638 2.981C8.75 2.668 8.872 2.34 9 2h6c1.5 4 2 6 2 8 0 .407-.05.809-.145 1.198",key:"1ymjlu"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]]);const gC=i("wine",[["path",{d:"M8 22h8",key:"rmew8v"}],["path",{d:"M7 10h10",key:"1101jm"}],["path",{d:"M12 15v7",key:"t2xh3l"}],["path",{d:"M12 15a5 5 0 0 0 5-5c0-2-.5-4-2-8H9c-1.5 4-2 6-2 8a5 5 0 0 0 5 5Z",key:"10ffi3"}]]);const vC=i("workflow",[["rect",{width:"8",height:"8",x:"3",y:"3",rx:"2",key:"by2w9f"}],["path",{d:"M7 11v4a2 2 0 0 0 2 2h4",key:"xkn7yn"}],["rect",{width:"8",height:"8",x:"13",y:"13",rx:"2",key:"1cgmvn"}]]);const _C=i("worm",[["path",{d:"m19 12-1.5 3",key:"9bcu4o"}],["path",{d:"M19.63 18.81 22 20",key:"121v98"}],["path",{d:"M6.47 8.23a1.68 1.68 0 0 1 2.44 1.93l-.64 2.08a6.76 6.76 0 0 0 10.16 7.67l.42-.27a1 1 0 1 0-2.73-4.21l-.42.27a1.76 1.76 0 0 1-2.63-1.99l.64-2.08A6.66 6.66 0 0 0 3.94 3.9l-.7.4a1 1 0 1 0 2.55 4.34z",key:"1tij6q"}]]);const bC=i("wrench",[["path",{d:"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.106-3.105c.32-.322.863-.22.983.218a6 6 0 0 1-8.259 7.057l-7.91 7.91a1 1 0 0 1-2.999-3l7.91-7.91a6 6 0 0 1 7.057-8.259c.438.12.54.662.219.984z",key:"1ngwbx"}]]);const bo=i("x",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]);const MC=i("zap-off",[["path",{d:"M10.513 4.856 13.12 2.17a.5.5 0 0 1 .86.46l-1.377 4.317",key:"193nxd"}],["path",{d:"M15.656 10H20a1 1 0 0 1 .78 1.63l-1.72 1.773",key:"27a7lr"}],["path",{d:"M16.273 16.273 10.88 21.83a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14H4a1 1 0 0 1-.78-1.63l4.507-4.643",key:"1e0qe9"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);const wC=i("youtube",[["path",{d:"M2.5 17a24.12 24.12 0 0 1 0-10 2 2 0 0 1 1.4-1.4 49.56 49.56 0 0 1 16.2 0A2 2 0 0 1 21.5 7a24.12 24.12 0 0 1 0 10 2 2 0 0 1-1.4 1.4 49.55 49.55 0 0 1-16.2 0A2 2 0 0 1 2.5 17",key:"1q2vi4"}],["path",{d:"m10 15 5-3-5-3z",key:"1jp15x"}]]);const xC=i("zap",[["path",{d:"M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z",key:"1xq2db"}]]);const NC=i("zoom-in",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65",key:"13gj7c"}],["line",{x1:"11",x2:"11",y1:"8",y2:"14",key:"1vmskp"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11",key:"durymu"}]]);const CC=i("zoom-out",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65",key:"13gj7c"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11",key:"durymu"}]]);const zS=Object.freeze(Object.defineProperty({__proto__:null,AArrowDown:L1,AArrowUp:I1,ALargeSmall:A1,Accessibility:P1,Activity:Fs,AirVent:T1,Airplay:D1,AlarmClock:z1,AlarmClockCheck:xn,AlarmClockMinus:Nn,AlarmClockOff:E1,AlarmClockPlus:Cn,AlarmSmoke:O1,Album:q1,AlignCenterHorizontal:j1,AlignCenterVertical:H1,AlignEndHorizontal:V1,AlignEndVertical:F1,AlignHorizontalDistributeCenter:B1,AlignHorizontalDistributeEnd:W1,AlignHorizontalDistributeStart:U1,AlignHorizontalJustifyCenter:R1,AlignHorizontalJustifyEnd:G1,AlignHorizontalJustifyStart:K1,AlignHorizontalSpaceAround:Y1,AlignHorizontalSpaceBetween:X1,AlignStartHorizontal:Z1,AlignStartVertical:Q1,AlignVerticalDistributeCenter:J1,AlignVerticalDistributeEnd:el,AlignVerticalDistributeStart:tl,AlignVerticalJustifyCenter:nl,AlignVerticalJustifyEnd:ol,AlignVerticalJustifyStart:al,AlignVerticalSpaceAround:rl,AlignVerticalSpaceBetween:il,Ambulance:cl,Ampersand:sl,Ampersands:dl,Amphora:ll,Anchor:hl,Angry:ul,Annoyed:pl,Antenna:yl,Anvil:fl,Aperture:ml,AppWindow:gl,AppWindowMac:kl,Apple:vl,Archive:Ml,ArchiveRestore:_l,ArchiveX:bl,Armchair:wl,ArrowBigDown:Nl,ArrowBigDownDash:xl,ArrowBigLeft:$l,ArrowBigLeftDash:Cl,ArrowBigRight:Ll,ArrowBigRightDash:Sl,ArrowBigUp:Al,ArrowBigUpDash:Il,ArrowDown:Vl,ArrowDown01:Pl,ArrowDown10:Tl,ArrowDownAZ:$n,ArrowDownFromLine:Dl,ArrowDownLeft:El,ArrowDownNarrowWide:zl,ArrowDownRight:Ol,ArrowDownToDot:ql,ArrowDownToLine:jl,ArrowDownUp:Hl,ArrowDownWideNarrow:Sn,ArrowDownZA:Ln,ArrowLeft:Bs,ArrowLeftFromLine:Fl,ArrowLeftRight:Bl,ArrowLeftToLine:Wl,ArrowRight:Ws,ArrowRightFromLine:Ul,ArrowRightLeft:Rl,ArrowRightToLine:Gl,ArrowUp:o2,ArrowUp01:Kl,ArrowUp10:Yl,ArrowUpAZ:In,ArrowUpDown:Us,ArrowUpFromDot:Xl,ArrowUpFromLine:Zl,ArrowUpLeft:Ql,ArrowUpNarrowWide:An,ArrowUpRight:Jl,ArrowUpToLine:e2,ArrowUpWideNarrow:t2,ArrowUpZA:Pn,ArrowsUpFromLine:n2,Asterisk:a2,AtSign:r2,Atom:i2,AudioLines:c2,AudioWaveform:s2,Award:d2,Axe:l2,Axis3d:Tn,Baby:h2,Backpack:u2,Badge:L2,BadgeAlert:p2,BadgeCent:y2,BadgeCheck:Dn,BadgeDollarSign:f2,BadgeEuro:m2,BadgeIndianRupee:k2,BadgeInfo:g2,BadgeJapaneseYen:v2,BadgeMinus:_2,BadgePercent:b2,BadgePlus:M2,BadgePoundSterling:w2,BadgeQuestionMark:En,BadgeRussianRuble:x2,BadgeSwissFranc:N2,BadgeTurkishLira:C2,BadgeX:$2,BaggageClaim:S2,Balloon:I2,Ban:A2,Banana:P2,Bandage:D2,Banknote:q2,BanknoteArrowDown:T2,BanknoteArrowUp:E2,BanknoteX:z2,Barcode:O2,Barrel:j2,Baseline:H2,Bath:V2,Battery:Y2,BatteryCharging:F2,BatteryFull:B2,BatteryLow:W2,BatteryMedium:U2,BatteryPlus:R2,BatteryWarning:G2,Beaker:K2,Bean:Z2,BeanOff:X2,Bed:e0,BedDouble:Q2,BedSingle:J2,Beef:t0,Beer:a0,BeerOff:o0,Bell:l0,BellDot:n0,BellElectric:r0,BellMinus:i0,BellOff:c0,BellPlus:s0,BellRing:d0,BetweenHorizontalEnd:zn,BetweenHorizontalStart:On,BetweenVerticalEnd:u0,BetweenVerticalStart:h0,BicepsFlexed:p0,Bike:y0,Binary:f0,Binoculars:m0,Biohazard:k0,Bird:g0,Birdhouse:v0,Bitcoin:_0,Blend:b0,Blinds:M0,Blocks:w0,Bluetooth:S0,BluetoothConnected:x0,BluetoothOff:N0,BluetoothSearching:C0,Bold:$0,Bolt:L0,Bomb:A0,Bone:I0,Book:ou,BookA:P0,BookAlert:T0,BookAudio:D0,BookCheck:E0,BookCopy:z0,BookDashed:qn,BookDown:O0,BookHeadphones:q0,BookHeart:j0,BookImage:H0,BookKey:V0,BookLock:F0,BookMarked:W0,BookMinus:B0,BookOpen:R0,BookOpenCheck:U0,BookOpenText:G0,BookPlus:K0,BookSearch:Y0,BookText:X0,BookType:Z0,BookUp:J0,BookUp2:Q0,BookUser:eu,BookX:tu,Bookmark:cu,BookmarkCheck:nu,BookmarkMinus:au,BookmarkPlus:ru,BookmarkX:iu,BoomBox:su,Bot:uu,BotMessageSquare:du,BotOff:lu,BottleWine:pu,BowArrow:hu,Box:yu,Boxes:fu,Braces:jn,Brackets:mu,Brain:vu,BrainCircuit:ku,BrainCog:gu,BrickWall:Mu,BrickWallFire:_u,BrickWallShield:bu,Briefcase:Cu,BriefcaseBusiness:wu,BriefcaseConveyorBelt:xu,BriefcaseMedical:Nu,BringToFront:$u,Brush:Su,BrushCleaning:Lu,Bubbles:Iu,Bug:Tu,BugOff:Au,BugPlay:Pu,Building:Eu,Building2:Du,Bus:Ou,BusFront:zu,Cable:ju,CableCar:qu,Cake:Vu,CakeSlice:Hu,Calculator:Fu,Calendar:Xc,Calendar1:Bu,CalendarArrowDown:Wu,CalendarArrowUp:Uu,CalendarCheck:Ku,CalendarCheck2:Ru,CalendarClock:Gu,CalendarCog:Yu,CalendarDays:Xu,CalendarFold:Zu,CalendarHeart:Qu,CalendarMinus:eh,CalendarMinus2:Ju,CalendarOff:th,CalendarPlus:nh,CalendarPlus2:oh,CalendarRange:ah,CalendarSearch:rh,CalendarSync:ch,CalendarX:sh,CalendarX2:ih,Calendars:dh,Camera:uh,CameraOff:lh,Candy:yh,CandyCane:ph,CandyOff:hh,Cannabis:mh,CannabisOff:fh,Captions:Hn,CaptionsOff:kh,Car:vh,CarFront:gh,CarTaxiFront:_h,Caravan:Mh,CardSim:bh,Carrot:wh,CaseLower:xh,CaseSensitive:Nh,CaseUpper:Ch,CassetteTape:$h,Cast:Sh,Castle:Lh,Cat:Ih,Cctv:Ah,ChartArea:Vn,ChartBar:Bn,ChartBarBig:Fn,ChartBarDecreasing:Ph,ChartBarIncreasing:Th,ChartBarStacked:Dh,ChartCandlestick:Wn,ChartColumn:Gn,ChartColumnBig:Un,ChartColumnDecreasing:Eh,ChartColumnIncreasing:Rn,ChartColumnStacked:zh,ChartGantt:Oh,ChartLine:Kn,ChartNetwork:qh,ChartNoAxesColumn:Xn,ChartNoAxesColumnDecreasing:jh,ChartNoAxesColumnIncreasing:Yn,ChartNoAxesCombined:Hh,ChartNoAxesGantt:Zn,ChartPie:Qn,ChartScatter:Jn,ChartSpline:Vh,Check:yo,CheckCheck:Fh,CheckLine:Bh,ChefHat:Wh,Cherry:Uh,ChessBishop:Rh,ChessKing:Gh,ChessKnight:Kh,ChessPawn:Yh,ChessQueen:Xh,ChessRook:Zh,ChevronDown:Zt,ChevronFirst:Qh,ChevronLast:Jh,ChevronLeft:ea,ChevronRight:Ot,ChevronUp:Zc,ChevronsDown:tp,ChevronsDownUp:ep,ChevronsLeft:Rs,ChevronsLeftRight:np,ChevronsLeftRightEllipsis:op,ChevronsRight:Gs,ChevronsRightLeft:ap,ChevronsUp:rp,ChevronsUpDown:Qc,Chromium:ta,Church:ip,Cigarette:sp,CigaretteOff:cp,Circle:on,CircleAlert:tn,CircleArrowDown:oa,CircleArrowLeft:na,CircleArrowOutDownLeft:aa,CircleArrowOutDownRight:ra,CircleArrowOutUpLeft:ia,CircleArrowOutUpRight:ca,CircleArrowRight:sa,CircleArrowUp:da,CircleCheck:Vo,CircleCheckBig:la,CircleChevronDown:ua,CircleChevronLeft:ha,CircleChevronRight:pa,CircleChevronUp:ya,CircleDashed:dp,CircleDivide:fa,CircleDollarSign:lp,CircleDot:hp,CircleDotDashed:up,CircleEllipsis:pp,CircleEqual:yp,CircleFadingArrowUp:fp,CircleFadingPlus:mp,CircleGauge:ma,CircleMinus:ka,CircleOff:kp,CircleParking:va,CircleParkingOff:ga,CirclePause:_a,CirclePercent:ba,CirclePile:gp,CirclePlay:wa,CirclePlus:Ma,CirclePoundSterling:vp,CirclePower:xa,CircleQuestionMark:fo,CircleSlash:_p,CircleSlash2:Na,CircleSmall:Mp,CircleStar:bp,CircleStop:Ca,CircleUser:Sa,CircleUserRound:$a,CircleX:La,CircuitBoard:wp,Citrus:xp,Clapperboard:Np,Clipboard:Ep,ClipboardCheck:Cp,ClipboardClock:$p,ClipboardCopy:Sp,ClipboardList:Lp,ClipboardMinus:Ip,ClipboardPaste:Ap,ClipboardPen:Aa,ClipboardPenLine:Ia,ClipboardPlus:Pp,ClipboardType:Tp,ClipboardX:Dp,Clock:ey,Clock1:zp,Clock10:Op,Clock11:qp,Clock12:jp,Clock2:Hp,Clock3:Vp,Clock4:Fp,Clock5:Bp,Clock6:Wp,Clock7:Up,Clock8:Rp,Clock9:Gp,ClockAlert:Kp,ClockArrowDown:Yp,ClockArrowUp:Xp,ClockCheck:Zp,ClockFading:Qp,ClockPlus:Jp,ClosedCaption:ty,Cloud:vy,CloudAlert:oy,CloudBackup:ny,CloudCheck:ay,CloudCog:ry,CloudDownload:Pa,CloudDrizzle:iy,CloudFog:cy,CloudHail:sy,CloudLightning:dy,CloudMoon:uy,CloudMoonRain:ly,CloudOff:hy,CloudRain:yy,CloudRainWind:py,CloudSnow:fy,CloudSun:ky,CloudSunRain:my,CloudSync:gy,CloudUpload:Ta,Cloudy:by,Clover:_y,Club:My,Code:wy,CodeXml:Da,Codepen:xy,Codesandbox:Ny,Coffee:Cy,Cog:$y,Coins:Sy,Columns2:Ea,Columns3:za,Columns3Cog:mo,Columns4:Ly,Combine:Iy,Command:Ay,Compass:Py,Component:Ty,Computer:Dy,ConciergeBell:Ey,Cone:zy,Construction:Oy,Contact:qy,ContactRound:Oa,Container:jy,Contrast:Hy,Cookie:Vy,CookingPot:Fy,Copy:Yy,CopyCheck:By,CopyMinus:Wy,CopyPlus:Uy,CopySlash:Ry,CopyX:Gy,Copyleft:Ky,Copyright:Xy,CornerDownLeft:Zy,CornerDownRight:Qy,CornerLeftDown:Jy,CornerLeftUp:ef,CornerRightDown:tf,CornerRightUp:of,CornerUpLeft:nf,CornerUpRight:af,Cpu:rf,CreativeCommons:cf,CreditCard:sf,Croissant:df,Crop:lf,Cross:uf,Crosshair:pf,Crown:hf,Cuboid:yf,CupSoda:ff,Currency:mf,Cylinder:kf,Dam:gf,Database:bf,DatabaseBackup:vf,DatabaseZap:_f,DecimalsArrowLeft:Mf,DecimalsArrowRight:wf,Delete:xf,Dessert:Nf,Diameter:Cf,Diamond:Lf,DiamondMinus:$f,DiamondPercent:qa,DiamondPlus:Sf,Dice1:If,Dice2:Af,Dice3:Pf,Dice4:Tf,Dice5:Df,Dice6:Ef,Dices:zf,Diff:Of,Disc:Vf,Disc2:qf,Disc3:jf,DiscAlbum:Hf,Divide:Ff,Dna:Wf,DnaOff:Bf,Dock:Uf,Dog:Rf,DollarSign:Gf,Donut:Kf,DoorClosed:Xf,DoorClosedLocked:Yf,DoorOpen:Zf,Dot:Ks,Download:Ys,DraftingCompass:Qf,Drama:Jf,Dribbble:tm,Drill:em,Drone:om,Droplet:am,DropletOff:nm,Droplets:rm,Drum:im,Drumstick:cm,Dumbbell:sm,Ear:dm,EarOff:lm,Earth:ja,EarthLock:um,Eclipse:hm,Egg:fm,EggFried:pm,EggOff:ym,Ellipsis:nn,EllipsisVertical:Ha,Equal:gm,EqualApproximately:mm,EqualNot:km,Eraser:vm,EthernetPort:_m,Euro:bm,EvCharger:Mm,Expand:wm,ExternalLink:xm,Eye:$m,EyeClosed:Nm,EyeOff:Cm,Facebook:Sm,Factory:Lm,Fan:Im,FastForward:Am,Feather:Pm,Fence:Tm,FerrisWheel:Dm,Figma:Em,File:Xs,FileArchive:zm,FileAxis3d:Va,FileBadge:Fa,FileBox:Om,FileBraces:Wa,FileBracesCorner:Ba,FileChartColumn:Ua,FileChartColumnIncreasing:Ra,FileChartLine:Ga,FileChartPie:Ka,FileCheck:qm,FileCheckCorner:Ya,FileClock:jm,FileCode:Hm,FileCodeCorner:Xa,FileCog:Za,FileDiff:Bm,FileDigit:Vm,FileDown:Fm,FileExclamationPoint:Qa,FileHeadphone:ko,FileHeart:Wm,FileImage:Um,FileInput:Rm,FileKey:Ja,FileLock:er,FileMinus:Gm,FileMinusCorner:tr,FileMusic:Km,FileOutput:Ym,FilePen:nr,FilePenLine:or,FilePlay:ar,FilePlus:Xm,FilePlusCorner:rr,FileQuestionMark:ir,FileScan:Zm,FileSearch:Qm,FileSearchCorner:cr,FileSignal:sr,FileSliders:Jm,FileSpreadsheet:ek,FileStack:tk,FileSymlink:ok,FileTerminal:nk,FileText:ak,FileType:rk,FileTypeCorner:dr,FileUp:ik,FileUser:ck,FileVideoCamera:lr,FileVolume:sk,FileX:dk,FileXCorner:ur,Files:lk,Film:uk,FingerprintPattern:hr,FireExtinguisher:hk,Fish:fk,FishOff:pk,FishSymbol:yk,FishingHook:mk,Flag:_k,FlagOff:kk,FlagTriangleLeft:gk,FlagTriangleRight:vk,Flame:Mk,FlameKindling:bk,Flashlight:xk,FlashlightOff:wk,FlaskConical:Ck,FlaskConicalOff:Nk,FlaskRound:$k,FlipHorizontal:Lk,FlipHorizontal2:Sk,FlipVertical:Ak,FlipVertical2:Ik,Flower:Tk,Flower2:Pk,Focus:Dk,FoldHorizontal:zk,FoldVertical:Ek,Folder:Qs,FolderArchive:Ok,FolderCheck:qk,FolderClock:jk,FolderClosed:Hk,FolderCode:Vk,FolderCog:pr,FolderDot:Fk,FolderDown:Bk,FolderGit:Uk,FolderGit2:Wk,FolderHeart:Rk,FolderInput:Gk,FolderKanban:Yk,FolderKey:Kk,FolderLock:Xk,FolderMinus:Zk,FolderOpen:Zs,FolderOpenDot:Qk,FolderOutput:Jk,FolderPen:yr,FolderPlus:eg,FolderRoot:tg,FolderSearch:ng,FolderSearch2:og,FolderSymlink:ag,FolderSync:rg,FolderTree:ig,FolderUp:cg,FolderX:dg,Folders:sg,Footprints:lg,Forklift:ug,Form:hg,Forward:pg,Frame:yg,Framer:fg,Frown:mg,Fuel:kg,Fullscreen:gg,Funnel:mr,FunnelPlus:vg,FunnelX:fr,GalleryHorizontal:bg,GalleryHorizontalEnd:_g,GalleryThumbnails:Mg,GalleryVertical:xg,GalleryVerticalEnd:wg,Gamepad:$g,Gamepad2:Ng,GamepadDirectional:Cg,Gauge:Sg,Gavel:Ig,Gem:Lg,GeorgianLari:Pg,Ghost:Ag,Gift:Tg,GitBranch:zg,GitBranchMinus:Dg,GitBranchPlus:Eg,GitCommitHorizontal:kr,GitCommitVertical:Og,GitCompare:jg,GitCompareArrows:qg,GitFork:Hg,GitGraph:Vg,GitMerge:Fg,GitPullRequest:Kg,GitPullRequestArrow:Bg,GitPullRequestClosed:Wg,GitPullRequestCreate:Rg,GitPullRequestCreateArrow:Ug,GitPullRequestDraft:Gg,Github:Yg,Gitlab:Xg,GlassWater:Zg,Glasses:Qg,Globe:t4,GlobeLock:Jg,GlobeX:e4,Goal:n4,Gpu:o4,GraduationCap:a4,Grape:r4,Grid2x2:br,Grid2x2Check:gr,Grid2x2Plus:vr,Grid2x2X:_r,Grid3x2:i4,Grid3x3:Qt,Grip:s4,GripHorizontal:c4,GripVertical:Jc,Group:d4,Guitar:l4,Ham:u4,Hamburger:h4,Hammer:p4,Hand:v4,HandCoins:y4,HandFist:f4,HandGrab:Mr,HandHeart:m4,HandHelping:wr,HandMetal:k4,HandPlatter:g4,Handbag:_4,Handshake:b4,HardDrive:N4,HardDriveDownload:M4,HardDriveUpload:w4,HardHat:x4,Hash:C4,HatGlasses:$4,Haze:S4,Hd:L4,HdmiPort:I4,Heading:O4,Heading1:A4,Heading2:P4,Heading3:T4,Heading4:D4,Heading5:E4,Heading6:z4,HeadphoneOff:q4,Headphones:j4,Headset:H4,Heart:G4,HeartCrack:V4,HeartHandshake:F4,HeartMinus:B4,HeartOff:W4,HeartPlus:U4,HeartPulse:R4,Heater:K4,Helicopter:Y4,Hexagon:X4,Highlighter:Z4,History:Q4,Hop:e5,HopOff:J4,Hospital:t5,Hotel:o5,Hourglass:n5,House:xr,HouseHeart:a5,HousePlug:r5,HousePlus:i5,HouseWifi:c5,IceCreamBowl:Nr,IceCreamCone:Cr,IdCard:d5,IdCardLanyard:s5,Image:k5,ImageDown:l5,ImageMinus:u5,ImageOff:h5,ImagePlay:p5,ImagePlus:y5,ImageUp:f5,ImageUpscale:m5,Images:Js,Import:g5,Inbox:ed,IndianRupee:v5,Infinity:_5,Info:td,InspectionPanel:b5,Instagram:M5,Italic:w5,IterationCcw:x5,IterationCw:N5,JapaneseYen:C5,Joystick:$5,Kanban:S5,Kayak:L5,Key:P5,KeyRound:I5,KeySquare:A5,Keyboard:E5,KeyboardMusic:T5,KeyboardOff:D5,Lamp:V5,LampCeiling:z5,LampDesk:O5,LampFloor:q5,LampWallDown:j5,LampWallUp:H5,LandPlot:F5,Landmark:B5,Languages:W5,Laptop:R5,LaptopMinimal:$r,LaptopMinimalCheck:U5,Lasso:K5,LassoSelect:G5,Laugh:Y5,Layers:Sr,Layers2:X5,LayersPlus:Z5,LayoutDashboard:Q5,LayoutGrid:od,LayoutList:J5,LayoutPanelLeft:ev,LayoutPanelTop:tv,LayoutTemplate:ov,Leaf:nv,LeafyGreen:av,Lectern:rv,Library:cv,LibraryBig:iv,LifeBuoy:sv,Ligature:dv,Lightbulb:uv,LightbulbOff:lv,LineSquiggle:hv,Link:fv,Link2:yv,Link2Off:pv,Linkedin:mv,List:Ev,ListCheck:kv,ListChecks:gv,ListChevronsDownUp:vv,ListChevronsUpDown:_v,ListCollapse:bv,ListEnd:Mv,ListFilter:xv,ListFilterPlus:wv,ListIndentDecrease:go,ListIndentIncrease:vo,ListMinus:Nv,ListMusic:Cv,ListOrdered:$v,ListPlus:Sv,ListRestart:Lv,ListStart:Iv,ListTodo:Av,ListTree:Pv,ListVideo:Tv,ListX:Dv,Loader:Ov,LoaderCircle:qt,LoaderPinwheel:zv,Locate:Hv,LocateFixed:qv,LocateOff:jv,Lock:Fv,LockKeyhole:Vv,LockKeyholeOpen:Lr,LockOpen:Ir,LogIn:Bv,LogOut:Wv,Logs:Uv,Lollipop:Rv,Luggage:Gv,Magnet:Kv,Mail:t3,MailCheck:Yv,MailMinus:Xv,MailOpen:Zv,MailPlus:Qv,MailQuestionMark:Ar,MailSearch:Jv,MailWarning:e3,MailX:o3,Mailbox:n3,Mails:a3,Map:nd,MapMinus:r3,MapPin:m3,MapPinCheck:c3,MapPinCheckInside:i3,MapPinHouse:s3,MapPinMinus:l3,MapPinMinusInside:d3,MapPinOff:u3,MapPinPen:Pr,MapPinPlus:p3,MapPinPlusInside:h3,MapPinX:f3,MapPinXInside:y3,MapPinned:k3,MapPlus:g3,Mars:_3,MarsStroke:v3,Martini:b3,Maximize:w3,Maximize2:M3,Medal:x3,Megaphone:C3,MegaphoneOff:N3,Meh:$3,MemoryStick:S3,Menu:L3,Merge:I3,MessageCircle:H3,MessageCircleCode:A3,MessageCircleDashed:P3,MessageCircleHeart:T3,MessageCircleMore:D3,MessageCircleOff:E3,MessageCirclePlus:z3,MessageCircleQuestionMark:Tr,MessageCircleReply:O3,MessageCircleWarning:q3,MessageCircleX:j3,MessageSquare:o_,MessageSquareCode:V3,MessageSquareDashed:F3,MessageSquareDiff:B3,MessageSquareDot:W3,MessageSquareHeart:U3,MessageSquareLock:R3,MessageSquareMore:K3,MessageSquareOff:G3,MessageSquarePlus:Y3,MessageSquareQuote:X3,MessageSquareReply:Z3,MessageSquareShare:J3,MessageSquareText:Q3,MessageSquareWarning:e_,MessageSquareX:t_,MessagesSquare:n_,Mic:r_,MicOff:a_,MicVocal:Dr,Microchip:i_,Microscope:c_,Microwave:s_,Milestone:d_,Milk:u_,MilkOff:l_,Minimize:p_,Minimize2:h_,Minus:ad,Monitor:S_,MonitorCheck:y_,MonitorCloud:f_,MonitorCog:m_,MonitorDot:k_,MonitorDown:g_,MonitorOff:v_,MonitorPause:__,MonitorPlay:b_,MonitorSmartphone:M_,MonitorSpeaker:w_,MonitorStop:x_,MonitorUp:C_,MonitorX:N_,Moon:L_,MoonStar:$_,Motorbike:I_,Mountain:P_,MountainSnow:A_,Mouse:j_,MouseOff:T_,MousePointer:q_,MousePointer2:E_,MousePointer2Off:D_,MousePointerBan:z_,MousePointerClick:O_,Move:Z_,Move3d:Er,MoveDiagonal:V_,MoveDiagonal2:H_,MoveDown:W_,MoveDownLeft:F_,MoveDownRight:B_,MoveHorizontal:U_,MoveLeft:R_,MoveRight:G_,MoveUp:Y_,MoveUpLeft:K_,MoveUpRight:X_,MoveVertical:Q_,Music:o8,Music2:J_,Music3:e8,Music4:t8,Navigation:i8,Navigation2:a8,Navigation2Off:n8,NavigationOff:r8,Network:c8,Newspaper:s8,Nfc:d8,NonBinary:l8,Notebook:y8,NotebookPen:u8,NotebookTabs:h8,NotebookText:p8,NotepadText:m8,NotepadTextDashed:f8,Nut:g8,NutOff:k8,Octagon:_8,OctagonAlert:zr,OctagonMinus:v8,OctagonPause:Or,OctagonX:an,Omega:b8,Option:M8,Orbit:w8,Origami:x8,Package:P8,Package2:N8,PackageCheck:C8,PackageMinus:$8,PackageOpen:S8,PackagePlus:L8,PackageSearch:I8,PackageX:A8,PaintBucket:T8,PaintRoller:D8,Paintbrush:E8,PaintbrushVertical:qr,Palette:z8,Panda:O8,PanelBottom:H8,PanelBottomClose:q8,PanelBottomDashed:jr,PanelBottomOpen:j8,PanelLeft:rn,PanelLeftClose:Hr,PanelLeftDashed:Vr,PanelLeftOpen:Fr,PanelLeftRightDashed:V8,PanelRight:W8,PanelRightClose:F8,PanelRightDashed:Br,PanelRightOpen:B8,PanelTop:K8,PanelTopBottomDashed:U8,PanelTopClose:R8,PanelTopDashed:Wr,PanelTopOpen:G8,PanelsLeftBottom:Y8,PanelsRightBottom:X8,PanelsTopLeft:Ur,Paperclip:Z8,Parentheses:Q8,ParkingMeter:J8,PartyPopper:eb,Pause:tb,PawPrint:ob,PcCase:nb,Pen:Gr,PenLine:Rr,PenOff:ab,PenTool:rb,Pencil:db,PencilLine:ib,PencilOff:cb,PencilRuler:sb,Pentagon:lb,Percent:ub,PersonStanding:hb,PhilippinePeso:pb,Phone:_b,PhoneCall:yb,PhoneForwarded:fb,PhoneIncoming:mb,PhoneMissed:kb,PhoneOff:gb,PhoneOutgoing:vb,Pi:bb,Piano:Mb,Pickaxe:wb,PictureInPicture:Nb,PictureInPicture2:xb,PiggyBank:Cb,Pilcrow:Lb,PilcrowLeft:$b,PilcrowRight:Sb,Pill:Ab,PillBottle:Ib,Pin:Tb,PinOff:Pb,Pipette:Db,Pizza:Eb,Plane:qb,PlaneLanding:zb,PlaneTakeoff:Ob,Play:jb,Plug:Vb,Plug2:Hb,PlugZap:Kr,Plus:es,Pocket:Fb,PocketKnife:Bb,Podcast:Wb,Pointer:Rb,PointerOff:Ub,Popcorn:Gb,Popsicle:Kb,PoundSterling:Yb,Power:Zb,PowerOff:Xb,Presentation:Qb,Printer:o6,PrinterCheck:Jb,PrinterX:e6,Projector:t6,Proportions:n6,Puzzle:a6,Pyramid:r6,QrCode:i6,Quote:c6,Rabbit:s6,Radar:d6,Radiation:u6,Radical:l6,Radio:y6,RadioReceiver:h6,RadioTower:p6,Radius:f6,RailSymbol:k6,Rainbow:m6,Rat:g6,Ratio:v6,Receipt:S6,ReceiptCent:_6,ReceiptEuro:b6,ReceiptIndianRupee:M6,ReceiptJapaneseYen:w6,ReceiptPoundSterling:x6,ReceiptRussianRuble:N6,ReceiptSwissFranc:C6,ReceiptText:$6,ReceiptTurkishLira:L6,RectangleCircle:I6,RectangleEllipsis:Yr,RectangleGoggles:A6,RectangleHorizontal:P6,RectangleVertical:T6,Recycle:z6,Redo:O6,Redo2:D6,RedoDot:E6,RefreshCcw:j6,RefreshCcwDot:q6,RefreshCw:V6,RefreshCwOff:H6,Refrigerator:F6,Regex:B6,RemoveFormatting:W6,Repeat:G6,Repeat1:U6,Repeat2:R6,Replace:Y6,ReplaceAll:K6,Reply:Z6,ReplyAll:X6,Rewind:Q6,Ribbon:J6,Rocket:rd,RockingChair:eM,RollerCoaster:tM,Rose:oM,Rotate3d:Xr,RotateCcw:rM,RotateCcwKey:nM,RotateCcwSquare:aM,RotateCw:cM,RotateCwSquare:iM,Route:dM,RouteOff:sM,Router:lM,Rows2:Zr,Rows3:Qr,Rows4:uM,Rss:hM,Ruler:kM,RulerDimensionLine:pM,RussianRuble:yM,Sailboat:fM,Salad:mM,Sandwich:gM,Satellite:_M,SatelliteDish:vM,SaudiRiyal:bM,Save:xM,SaveAll:wM,SaveOff:MM,Scale:NM,Scale3d:Jr,Scaling:CM,Scan:DM,ScanBarcode:$M,ScanEye:SM,ScanFace:LM,ScanHeart:IM,ScanLine:AM,ScanQrCode:PM,ScanSearch:TM,ScanText:EM,School:OM,Scissors:qM,ScissorsLineDashed:zM,Scooter:jM,ScreenShare:VM,ScreenShareOff:HM,Scroll:FM,ScrollText:WM,Search:cn,SearchAlert:BM,SearchCheck:UM,SearchCode:RM,SearchSlash:GM,SearchX:KM,Section:YM,Send:ZM,SendHorizontal:ei,SendToBack:XM,SeparatorHorizontal:QM,SeparatorVertical:JM,Server:n7,ServerCog:e7,ServerCrash:t7,ServerOff:o7,Settings:r7,Settings2:a7,Shapes:i7,Share:s7,Share2:c7,Sheet:d7,Shell:l7,Shield:_7,ShieldAlert:u7,ShieldBan:h7,ShieldCheck:p7,ShieldEllipsis:f7,ShieldHalf:y7,ShieldMinus:m7,ShieldOff:k7,ShieldPlus:g7,ShieldQuestionMark:ti,ShieldUser:v7,ShieldX:oi,Ship:M7,ShipWheel:b7,Shirt:w7,ShoppingBag:x7,ShoppingBasket:N7,ShoppingCart:C7,Shovel:$7,ShowerHead:S7,Shredder:L7,Shrimp:I7,Shrink:A7,Shrub:P7,Shuffle:T7,Sigma:D7,Signal:j7,SignalHigh:E7,SignalLow:z7,SignalMedium:O7,SignalZero:q7,Signature:H7,Signpost:F7,SignpostBig:V7,Siren:B7,SkipBack:W7,SkipForward:U7,Skull:R7,Slack:G7,Slash:K7,Slice:Y7,SlidersHorizontal:id,SlidersVertical:ni,Smartphone:J7,SmartphoneCharging:X7,SmartphoneNfc:Z7,Smile:ew,SmilePlus:Q7,Snail:tw,Snowflake:ow,SoapDispenserDroplet:nw,Sofa:aw,SolarPanel:rw,Soup:iw,Space:cw,Spade:sw,Sparkle:dw,Sparkles:ai,Speaker:lw,Speech:uw,SpellCheck:pw,SpellCheck2:hw,Spline:fw,SplinePointer:yw,Split:kw,Spool:mw,Spotlight:gw,SprayCan:vw,Sprout:_w,Square:Aw,SquareActivity:ri,SquareArrowDown:ci,SquareArrowDownLeft:ii,SquareArrowDownRight:si,SquareArrowLeft:di,SquareArrowOutDownLeft:li,SquareArrowOutDownRight:ui,SquareArrowOutUpLeft:hi,SquareArrowOutUpRight:pi,SquareArrowRight:yi,SquareArrowUp:ki,SquareArrowUpLeft:fi,SquareArrowUpRight:mi,SquareAsterisk:gi,SquareBottomDashedScissors:vi,SquareChartGantt:Jt,SquareCheck:bi,SquareCheckBig:_i,SquareChevronDown:Mi,SquareChevronLeft:wi,SquareChevronRight:xi,SquareChevronUp:Ni,SquareCode:Ci,SquareDashed:Li,SquareDashedBottom:Mw,SquareDashedBottomCode:bw,SquareDashedKanban:Si,SquareDashedMousePointer:$i,SquareDashedTopSolid:ww,SquareDivide:Ii,SquareDot:Ai,SquareEqual:Pi,SquareFunction:Ti,SquareKanban:Ei,SquareLibrary:Di,SquareM:zi,SquareMenu:Oi,SquareMinus:qi,SquareMousePointer:ji,SquareParking:Vi,SquareParkingOff:Hi,SquarePause:xw,SquarePen:Nt,SquarePercent:Fi,SquarePi:Bi,SquarePilcrow:Wi,SquarePlay:Ui,SquarePlus:Ri,SquarePower:Gi,SquareRadical:Nw,SquareRoundCorner:Cw,SquareScissors:Ki,SquareSigma:Yi,SquareSlash:Xi,SquareSplitHorizontal:Zi,SquareSplitVertical:Qi,SquareSquare:$w,SquareStack:Sw,SquareStar:Lw,SquareStop:Iw,SquareTerminal:Ji,SquareUser:ec,SquareUserRound:tc,SquareX:oc,SquaresExclude:Pw,SquaresIntersect:Tw,SquaresSubtract:Ew,SquaresUnite:Dw,Squircle:Ow,SquircleDashed:zw,Squirrel:qw,Stamp:jw,Star:Fw,StarHalf:Vw,StarOff:Hw,StepBack:Bw,StepForward:Ww,Stethoscope:Uw,Sticker:Rw,StickyNote:Gw,Stone:Kw,Store:Yw,StretchHorizontal:Xw,StretchVertical:Zw,Strikethrough:Qw,Subscript:Jw,Sun:ax,SunDim:ex,SunMedium:ox,SunMoon:tx,SunSnow:nx,Sunrise:rx,Sunset:ix,Superscript:cx,SwatchBook:sx,SwissFranc:dx,SwitchCamera:lx,Sword:ux,Swords:hx,Syringe:px,Table:bx,Table2:yx,TableCellsMerge:fx,TableCellsSplit:mx,TableColumnsSplit:kx,TableOfContents:_x,TableProperties:gx,TableRowsSplit:vx,Tablet:wx,TabletSmartphone:Mx,Tablets:Nx,Tag:xx,Tags:Cx,Tally1:$x,Tally2:Sx,Tally3:Lx,Tally4:Ix,Tally5:Ax,Tangent:Px,Target:Tx,Telescope:Dx,Tent:zx,TentTree:Ex,Terminal:Ox,TestTube:qx,TestTubeDiagonal:nc,TestTubes:jx,TextAlignCenter:ac,TextAlignEnd:rc,TextAlignJustify:ic,TextAlignStart:_o,TextCursor:Vx,TextCursorInput:Hx,TextInitial:cc,TextQuote:Fx,TextSearch:Bx,TextSelect:sc,TextWrap:dc,Theater:Wx,Thermometer:Gx,ThermometerSnowflake:Ux,ThermometerSun:Rx,ThumbsDown:Kx,ThumbsUp:Yx,Ticket:o9,TicketCheck:Xx,TicketMinus:Zx,TicketPercent:Qx,TicketPlus:Jx,TicketSlash:e9,TicketX:t9,Tickets:a9,TicketsPlane:n9,Timer:i9,TimerOff:r9,TimerReset:c9,ToggleLeft:s9,ToggleRight:d9,Toilet:l9,ToolCase:u9,Toolbox:p9,Tornado:h9,Torus:y9,Touchpad:m9,TouchpadOff:f9,TowerControl:k9,ToyBrick:g9,Tractor:v9,TrafficCone:_9,TrainFront:M9,TrainFrontTunnel:b9,TrainTrack:w9,TramFront:lc,Transgender:x9,Trash:N9,Trash2:ts,TreeDeciduous:C9,TreePalm:uc,TreePine:$9,Trees:S9,Trello:L9,TrendingDown:cd,TrendingUp:sd,TrendingUpDown:I9,Triangle:T9,TriangleAlert:sn,TriangleDashed:A9,TriangleRight:P9,Trophy:D9,Truck:z9,TruckElectric:E9,TurkishLira:O9,Turntable:q9,Turtle:j9,Tv:V9,TvMinimal:hc,TvMinimalPlay:H9,Twitch:F9,Twitter:B9,Type:W9,TypeOutline:U9,Umbrella:G9,UmbrellaOff:R9,Underline:K9,Undo:Z9,Undo2:Y9,UndoDot:X9,UnfoldHorizontal:Q9,UnfoldVertical:J9,Ungroup:eN,University:pc,Unlink:oN,Unlink2:tN,Unplug:nN,Upload:dd,Usb:aN,User:mN,UserCheck:rN,UserCog:iN,UserLock:cN,UserMinus:sN,UserPen:dN,UserPlus:lN,UserRound:vc,UserRoundCheck:yc,UserRoundCog:fc,UserRoundMinus:mc,UserRoundPen:uN,UserRoundPlus:kc,UserRoundSearch:hN,UserRoundX:gc,UserSearch:pN,UserStar:yN,UserX:fN,Users:kN,UsersRound:_c,Utensils:Mc,UtensilsCrossed:bc,UtilityPole:gN,Van:vN,Variable:_N,Vault:bN,VectorSquare:MN,Vegan:wN,VenetianMask:xN,Venus:CN,VenusAndMars:NN,Vibrate:SN,VibrateOff:$N,Video:AN,VideoOff:LN,Videotape:IN,View:PN,Voicemail:TN,Volleyball:DN,Volume:jN,Volume1:EN,Volume2:zN,VolumeOff:ON,VolumeX:qN,Vote:HN,Wallet:FN,WalletCards:VN,WalletMinimal:wc,Wallpaper:BN,Wand:WN,WandSparkles:xc,Warehouse:UN,WashingMachine:RN,Watch:KN,Waves:ZN,WavesArrowDown:GN,WavesArrowUp:YN,WavesLadder:XN,Waypoints:QN,Webcam:JN,Webhook:tC,WebhookOff:eC,Weight:nC,WeightTilde:oC,Wheat:rC,WheatOff:aC,WholeWord:iC,Wifi:yC,WifiCog:cC,WifiHigh:sC,WifiLow:dC,WifiOff:lC,WifiPen:uC,WifiSync:hC,WifiZero:pC,Wind:mC,WindArrowDown:fC,Wine:gC,WineOff:kC,Workflow:vC,Worm:_C,Wrench:bC,X:bo,Youtube:wC,Zap:xC,ZapOff:MC,ZoomIn:NC,ZoomOut:CC},Symbol.toStringTag,{value:"Module"}));const fD=Object.freeze(Object.defineProperty({__proto__:null,AArrowDown:L1,AArrowDownIcon:L1,AArrowUp:I1,AArrowUpIcon:I1,ALargeSmall:A1,ALargeSmallIcon:A1,Accessibility:P1,AccessibilityIcon:P1,Activity:Fs,ActivityIcon:Fs,ActivitySquare:ri,ActivitySquareIcon:ri,AirVent:T1,AirVentIcon:T1,Airplay:D1,AirplayIcon:D1,AlarmCheck:xn,AlarmCheckIcon:xn,AlarmClock:z1,AlarmClockCheck:xn,AlarmClockCheckIcon:xn,AlarmClockIcon:z1,AlarmClockMinus:Nn,AlarmClockMinusIcon:Nn,AlarmClockOff:E1,AlarmClockOffIcon:E1,AlarmClockPlus:Cn,AlarmClockPlusIcon:Cn,AlarmMinus:Nn,AlarmMinusIcon:Nn,AlarmPlus:Cn,AlarmPlusIcon:Cn,AlarmSmoke:O1,AlarmSmokeIcon:O1,Album:q1,AlbumIcon:q1,AlertCircle:tn,AlertCircleIcon:tn,AlertOctagon:zr,AlertOctagonIcon:zr,AlertTriangle:sn,AlertTriangleIcon:sn,AlignCenter:ac,AlignCenterHorizontal:j1,AlignCenterHorizontalIcon:j1,AlignCenterIcon:ac,AlignCenterVertical:H1,AlignCenterVerticalIcon:H1,AlignEndHorizontal:V1,AlignEndHorizontalIcon:V1,AlignEndVertical:F1,AlignEndVerticalIcon:F1,AlignHorizontalDistributeCenter:B1,AlignHorizontalDistributeCenterIcon:B1,AlignHorizontalDistributeEnd:W1,AlignHorizontalDistributeEndIcon:W1,AlignHorizontalDistributeStart:U1,AlignHorizontalDistributeStartIcon:U1,AlignHorizontalJustifyCenter:R1,AlignHorizontalJustifyCenterIcon:R1,AlignHorizontalJustifyEnd:G1,AlignHorizontalJustifyEndIcon:G1,AlignHorizontalJustifyStart:K1,AlignHorizontalJustifyStartIcon:K1,AlignHorizontalSpaceAround:Y1,AlignHorizontalSpaceAroundIcon:Y1,AlignHorizontalSpaceBetween:X1,AlignHorizontalSpaceBetweenIcon:X1,AlignJustify:ic,AlignJustifyIcon:ic,AlignLeft:_o,AlignLeftIcon:_o,AlignRight:rc,AlignRightIcon:rc,AlignStartHorizontal:Z1,AlignStartHorizontalIcon:Z1,AlignStartVertical:Q1,AlignStartVerticalIcon:Q1,AlignVerticalDistributeCenter:J1,AlignVerticalDistributeCenterIcon:J1,AlignVerticalDistributeEnd:el,AlignVerticalDistributeEndIcon:el,AlignVerticalDistributeStart:tl,AlignVerticalDistributeStartIcon:tl,AlignVerticalJustifyCenter:nl,AlignVerticalJustifyCenterIcon:nl,AlignVerticalJustifyEnd:ol,AlignVerticalJustifyEndIcon:ol,AlignVerticalJustifyStart:al,AlignVerticalJustifyStartIcon:al,AlignVerticalSpaceAround:rl,AlignVerticalSpaceAroundIcon:rl,AlignVerticalSpaceBetween:il,AlignVerticalSpaceBetweenIcon:il,Ambulance:cl,AmbulanceIcon:cl,Ampersand:sl,AmpersandIcon:sl,Ampersands:dl,AmpersandsIcon:dl,Amphora:ll,AmphoraIcon:ll,Anchor:hl,AnchorIcon:hl,Angry:ul,AngryIcon:ul,Annoyed:pl,AnnoyedIcon:pl,Antenna:yl,AntennaIcon:yl,Anvil:fl,AnvilIcon:fl,Aperture:ml,ApertureIcon:ml,AppWindow:gl,AppWindowIcon:gl,AppWindowMac:kl,AppWindowMacIcon:kl,Apple:vl,AppleIcon:vl,Archive:Ml,ArchiveIcon:Ml,ArchiveRestore:_l,ArchiveRestoreIcon:_l,ArchiveX:bl,ArchiveXIcon:bl,AreaChart:Vn,AreaChartIcon:Vn,Armchair:wl,ArmchairIcon:wl,ArrowBigDown:Nl,ArrowBigDownDash:xl,ArrowBigDownDashIcon:xl,ArrowBigDownIcon:Nl,ArrowBigLeft:$l,ArrowBigLeftDash:Cl,ArrowBigLeftDashIcon:Cl,ArrowBigLeftIcon:$l,ArrowBigRight:Ll,ArrowBigRightDash:Sl,ArrowBigRightDashIcon:Sl,ArrowBigRightIcon:Ll,ArrowBigUp:Al,ArrowBigUpDash:Il,ArrowBigUpDashIcon:Il,ArrowBigUpIcon:Al,ArrowDown:Vl,ArrowDown01:Pl,ArrowDown01Icon:Pl,ArrowDown10:Tl,ArrowDown10Icon:Tl,ArrowDownAZ:$n,ArrowDownAZIcon:$n,ArrowDownAz:$n,ArrowDownAzIcon:$n,ArrowDownCircle:oa,ArrowDownCircleIcon:oa,ArrowDownFromLine:Dl,ArrowDownFromLineIcon:Dl,ArrowDownIcon:Vl,ArrowDownLeft:El,ArrowDownLeftFromCircle:aa,ArrowDownLeftFromCircleIcon:aa,ArrowDownLeftFromSquare:li,ArrowDownLeftFromSquareIcon:li,ArrowDownLeftIcon:El,ArrowDownLeftSquare:ii,ArrowDownLeftSquareIcon:ii,ArrowDownNarrowWide:zl,ArrowDownNarrowWideIcon:zl,ArrowDownRight:Ol,ArrowDownRightFromCircle:ra,ArrowDownRightFromCircleIcon:ra,ArrowDownRightFromSquare:ui,ArrowDownRightFromSquareIcon:ui,ArrowDownRightIcon:Ol,ArrowDownRightSquare:si,ArrowDownRightSquareIcon:si,ArrowDownSquare:ci,ArrowDownSquareIcon:ci,ArrowDownToDot:ql,ArrowDownToDotIcon:ql,ArrowDownToLine:jl,ArrowDownToLineIcon:jl,ArrowDownUp:Hl,ArrowDownUpIcon:Hl,ArrowDownWideNarrow:Sn,ArrowDownWideNarrowIcon:Sn,ArrowDownZA:Ln,ArrowDownZAIcon:Ln,ArrowDownZa:Ln,ArrowDownZaIcon:Ln,ArrowLeft:Bs,ArrowLeftCircle:na,ArrowLeftCircleIcon:na,ArrowLeftFromLine:Fl,ArrowLeftFromLineIcon:Fl,ArrowLeftIcon:Bs,ArrowLeftRight:Bl,ArrowLeftRightIcon:Bl,ArrowLeftSquare:di,ArrowLeftSquareIcon:di,ArrowLeftToLine:Wl,ArrowLeftToLineIcon:Wl,ArrowRight:Ws,ArrowRightCircle:sa,ArrowRightCircleIcon:sa,ArrowRightFromLine:Ul,ArrowRightFromLineIcon:Ul,ArrowRightIcon:Ws,ArrowRightLeft:Rl,ArrowRightLeftIcon:Rl,ArrowRightSquare:yi,ArrowRightSquareIcon:yi,ArrowRightToLine:Gl,ArrowRightToLineIcon:Gl,ArrowUp:o2,ArrowUp01:Kl,ArrowUp01Icon:Kl,ArrowUp10:Yl,ArrowUp10Icon:Yl,ArrowUpAZ:In,ArrowUpAZIcon:In,ArrowUpAz:In,ArrowUpAzIcon:In,ArrowUpCircle:da,ArrowUpCircleIcon:da,ArrowUpDown:Us,ArrowUpDownIcon:Us,ArrowUpFromDot:Xl,ArrowUpFromDotIcon:Xl,ArrowUpFromLine:Zl,ArrowUpFromLineIcon:Zl,ArrowUpIcon:o2,ArrowUpLeft:Ql,ArrowUpLeftFromCircle:ia,ArrowUpLeftFromCircleIcon:ia,ArrowUpLeftFromSquare:hi,ArrowUpLeftFromSquareIcon:hi,ArrowUpLeftIcon:Ql,ArrowUpLeftSquare:fi,ArrowUpLeftSquareIcon:fi,ArrowUpNarrowWide:An,ArrowUpNarrowWideIcon:An,ArrowUpRight:Jl,ArrowUpRightFromCircle:ca,ArrowUpRightFromCircleIcon:ca,ArrowUpRightFromSquare:pi,ArrowUpRightFromSquareIcon:pi,ArrowUpRightIcon:Jl,ArrowUpRightSquare:mi,ArrowUpRightSquareIcon:mi,ArrowUpSquare:ki,ArrowUpSquareIcon:ki,ArrowUpToLine:e2,ArrowUpToLineIcon:e2,ArrowUpWideNarrow:t2,ArrowUpWideNarrowIcon:t2,ArrowUpZA:Pn,ArrowUpZAIcon:Pn,ArrowUpZa:Pn,ArrowUpZaIcon:Pn,ArrowsUpFromLine:n2,ArrowsUpFromLineIcon:n2,Asterisk:a2,AsteriskIcon:a2,AsteriskSquare:gi,AsteriskSquareIcon:gi,AtSign:r2,AtSignIcon:r2,Atom:i2,AtomIcon:i2,AudioLines:c2,AudioLinesIcon:c2,AudioWaveform:s2,AudioWaveformIcon:s2,Award:d2,AwardIcon:d2,Axe:l2,AxeIcon:l2,Axis3D:Tn,Axis3DIcon:Tn,Axis3d:Tn,Axis3dIcon:Tn,Baby:h2,BabyIcon:h2,Backpack:u2,BackpackIcon:u2,Badge:L2,BadgeAlert:p2,BadgeAlertIcon:p2,BadgeCent:y2,BadgeCentIcon:y2,BadgeCheck:Dn,BadgeCheckIcon:Dn,BadgeDollarSign:f2,BadgeDollarSignIcon:f2,BadgeEuro:m2,BadgeEuroIcon:m2,BadgeHelp:En,BadgeHelpIcon:En,BadgeIcon:L2,BadgeIndianRupee:k2,BadgeIndianRupeeIcon:k2,BadgeInfo:g2,BadgeInfoIcon:g2,BadgeJapaneseYen:v2,BadgeJapaneseYenIcon:v2,BadgeMinus:_2,BadgeMinusIcon:_2,BadgePercent:b2,BadgePercentIcon:b2,BadgePlus:M2,BadgePlusIcon:M2,BadgePoundSterling:w2,BadgePoundSterlingIcon:w2,BadgeQuestionMark:En,BadgeQuestionMarkIcon:En,BadgeRussianRuble:x2,BadgeRussianRubleIcon:x2,BadgeSwissFranc:N2,BadgeSwissFrancIcon:N2,BadgeTurkishLira:C2,BadgeTurkishLiraIcon:C2,BadgeX:$2,BadgeXIcon:$2,BaggageClaim:S2,BaggageClaimIcon:S2,Balloon:I2,BalloonIcon:I2,Ban:A2,BanIcon:A2,Banana:P2,BananaIcon:P2,Bandage:D2,BandageIcon:D2,Banknote:q2,BanknoteArrowDown:T2,BanknoteArrowDownIcon:T2,BanknoteArrowUp:E2,BanknoteArrowUpIcon:E2,BanknoteIcon:q2,BanknoteX:z2,BanknoteXIcon:z2,BarChart:Yn,BarChart2:Xn,BarChart2Icon:Xn,BarChart3:Gn,BarChart3Icon:Gn,BarChart4:Rn,BarChart4Icon:Rn,BarChartBig:Un,BarChartBigIcon:Un,BarChartHorizontal:Bn,BarChartHorizontalBig:Fn,BarChartHorizontalBigIcon:Fn,BarChartHorizontalIcon:Bn,BarChartIcon:Yn,Barcode:O2,BarcodeIcon:O2,Barrel:j2,BarrelIcon:j2,Baseline:H2,BaselineIcon:H2,Bath:V2,BathIcon:V2,Battery:Y2,BatteryCharging:F2,BatteryChargingIcon:F2,BatteryFull:B2,BatteryFullIcon:B2,BatteryIcon:Y2,BatteryLow:W2,BatteryLowIcon:W2,BatteryMedium:U2,BatteryMediumIcon:U2,BatteryPlus:R2,BatteryPlusIcon:R2,BatteryWarning:G2,BatteryWarningIcon:G2,Beaker:K2,BeakerIcon:K2,Bean:Z2,BeanIcon:Z2,BeanOff:X2,BeanOffIcon:X2,Bed:e0,BedDouble:Q2,BedDoubleIcon:Q2,BedIcon:e0,BedSingle:J2,BedSingleIcon:J2,Beef:t0,BeefIcon:t0,Beer:a0,BeerIcon:a0,BeerOff:o0,BeerOffIcon:o0,Bell:l0,BellDot:n0,BellDotIcon:n0,BellElectric:r0,BellElectricIcon:r0,BellIcon:l0,BellMinus:i0,BellMinusIcon:i0,BellOff:c0,BellOffIcon:c0,BellPlus:s0,BellPlusIcon:s0,BellRing:d0,BellRingIcon:d0,BetweenHorizonalEnd:zn,BetweenHorizonalEndIcon:zn,BetweenHorizonalStart:On,BetweenHorizonalStartIcon:On,BetweenHorizontalEnd:zn,BetweenHorizontalEndIcon:zn,BetweenHorizontalStart:On,BetweenHorizontalStartIcon:On,BetweenVerticalEnd:u0,BetweenVerticalEndIcon:u0,BetweenVerticalStart:h0,BetweenVerticalStartIcon:h0,BicepsFlexed:p0,BicepsFlexedIcon:p0,Bike:y0,BikeIcon:y0,Binary:f0,BinaryIcon:f0,Binoculars:m0,BinocularsIcon:m0,Biohazard:k0,BiohazardIcon:k0,Bird:g0,BirdIcon:g0,Birdhouse:v0,BirdhouseIcon:v0,Bitcoin:_0,BitcoinIcon:_0,Blend:b0,BlendIcon:b0,Blinds:M0,BlindsIcon:M0,Blocks:w0,BlocksIcon:w0,Bluetooth:S0,BluetoothConnected:x0,BluetoothConnectedIcon:x0,BluetoothIcon:S0,BluetoothOff:N0,BluetoothOffIcon:N0,BluetoothSearching:C0,BluetoothSearchingIcon:C0,Bold:$0,BoldIcon:$0,Bolt:L0,BoltIcon:L0,Bomb:A0,BombIcon:A0,Bone:I0,BoneIcon:I0,Book:ou,BookA:P0,BookAIcon:P0,BookAlert:T0,BookAlertIcon:T0,BookAudio:D0,BookAudioIcon:D0,BookCheck:E0,BookCheckIcon:E0,BookCopy:z0,BookCopyIcon:z0,BookDashed:qn,BookDashedIcon:qn,BookDown:O0,BookDownIcon:O0,BookHeadphones:q0,BookHeadphonesIcon:q0,BookHeart:j0,BookHeartIcon:j0,BookIcon:ou,BookImage:H0,BookImageIcon:H0,BookKey:V0,BookKeyIcon:V0,BookLock:F0,BookLockIcon:F0,BookMarked:W0,BookMarkedIcon:W0,BookMinus:B0,BookMinusIcon:B0,BookOpen:R0,BookOpenCheck:U0,BookOpenCheckIcon:U0,BookOpenIcon:R0,BookOpenText:G0,BookOpenTextIcon:G0,BookPlus:K0,BookPlusIcon:K0,BookSearch:Y0,BookSearchIcon:Y0,BookTemplate:qn,BookTemplateIcon:qn,BookText:X0,BookTextIcon:X0,BookType:Z0,BookTypeIcon:Z0,BookUp:J0,BookUp2:Q0,BookUp2Icon:Q0,BookUpIcon:J0,BookUser:eu,BookUserIcon:eu,BookX:tu,BookXIcon:tu,Bookmark:cu,BookmarkCheck:nu,BookmarkCheckIcon:nu,BookmarkIcon:cu,BookmarkMinus:au,BookmarkMinusIcon:au,BookmarkPlus:ru,BookmarkPlusIcon:ru,BookmarkX:iu,BookmarkXIcon:iu,BoomBox:su,BoomBoxIcon:su,Bot:uu,BotIcon:uu,BotMessageSquare:du,BotMessageSquareIcon:du,BotOff:lu,BotOffIcon:lu,BottleWine:pu,BottleWineIcon:pu,BowArrow:hu,BowArrowIcon:hu,Box:yu,BoxIcon:yu,BoxSelect:Li,BoxSelectIcon:Li,Boxes:fu,BoxesIcon:fu,Braces:jn,BracesIcon:jn,Brackets:mu,BracketsIcon:mu,Brain:vu,BrainCircuit:ku,BrainCircuitIcon:ku,BrainCog:gu,BrainCogIcon:gu,BrainIcon:vu,BrickWall:Mu,BrickWallFire:_u,BrickWallFireIcon:_u,BrickWallIcon:Mu,BrickWallShield:bu,BrickWallShieldIcon:bu,Briefcase:Cu,BriefcaseBusiness:wu,BriefcaseBusinessIcon:wu,BriefcaseConveyorBelt:xu,BriefcaseConveyorBeltIcon:xu,BriefcaseIcon:Cu,BriefcaseMedical:Nu,BriefcaseMedicalIcon:Nu,BringToFront:$u,BringToFrontIcon:$u,Brush:Su,BrushCleaning:Lu,BrushCleaningIcon:Lu,BrushIcon:Su,Bubbles:Iu,BubblesIcon:Iu,Bug:Tu,BugIcon:Tu,BugOff:Au,BugOffIcon:Au,BugPlay:Pu,BugPlayIcon:Pu,Building:Eu,Building2:Du,Building2Icon:Du,BuildingIcon:Eu,Bus:Ou,BusFront:zu,BusFrontIcon:zu,BusIcon:Ou,Cable:ju,CableCar:qu,CableCarIcon:qu,CableIcon:ju,Cake:Vu,CakeIcon:Vu,CakeSlice:Hu,CakeSliceIcon:Hu,Calculator:Fu,CalculatorIcon:Fu,Calendar:Xc,Calendar1:Bu,Calendar1Icon:Bu,CalendarArrowDown:Wu,CalendarArrowDownIcon:Wu,CalendarArrowUp:Uu,CalendarArrowUpIcon:Uu,CalendarCheck:Ku,CalendarCheck2:Ru,CalendarCheck2Icon:Ru,CalendarCheckIcon:Ku,CalendarClock:Gu,CalendarClockIcon:Gu,CalendarCog:Yu,CalendarCogIcon:Yu,CalendarDays:Xu,CalendarDaysIcon:Xu,CalendarFold:Zu,CalendarFoldIcon:Zu,CalendarHeart:Qu,CalendarHeartIcon:Qu,CalendarIcon:Xc,CalendarMinus:eh,CalendarMinus2:Ju,CalendarMinus2Icon:Ju,CalendarMinusIcon:eh,CalendarOff:th,CalendarOffIcon:th,CalendarPlus:nh,CalendarPlus2:oh,CalendarPlus2Icon:oh,CalendarPlusIcon:nh,CalendarRange:ah,CalendarRangeIcon:ah,CalendarSearch:rh,CalendarSearchIcon:rh,CalendarSync:ch,CalendarSyncIcon:ch,CalendarX:sh,CalendarX2:ih,CalendarX2Icon:ih,CalendarXIcon:sh,Calendars:dh,CalendarsIcon:dh,Camera:uh,CameraIcon:uh,CameraOff:lh,CameraOffIcon:lh,CandlestickChart:Wn,CandlestickChartIcon:Wn,Candy:yh,CandyCane:ph,CandyCaneIcon:ph,CandyIcon:yh,CandyOff:hh,CandyOffIcon:hh,Cannabis:mh,CannabisIcon:mh,CannabisOff:fh,CannabisOffIcon:fh,Captions:Hn,CaptionsIcon:Hn,CaptionsOff:kh,CaptionsOffIcon:kh,Car:vh,CarFront:gh,CarFrontIcon:gh,CarIcon:vh,CarTaxiFront:_h,CarTaxiFrontIcon:_h,Caravan:Mh,CaravanIcon:Mh,CardSim:bh,CardSimIcon:bh,Carrot:wh,CarrotIcon:wh,CaseLower:xh,CaseLowerIcon:xh,CaseSensitive:Nh,CaseSensitiveIcon:Nh,CaseUpper:Ch,CaseUpperIcon:Ch,CassetteTape:$h,CassetteTapeIcon:$h,Cast:Sh,CastIcon:Sh,Castle:Lh,CastleIcon:Lh,Cat:Ih,CatIcon:Ih,Cctv:Ah,CctvIcon:Ah,ChartArea:Vn,ChartAreaIcon:Vn,ChartBar:Bn,ChartBarBig:Fn,ChartBarBigIcon:Fn,ChartBarDecreasing:Ph,ChartBarDecreasingIcon:Ph,ChartBarIcon:Bn,ChartBarIncreasing:Th,ChartBarIncreasingIcon:Th,ChartBarStacked:Dh,ChartBarStackedIcon:Dh,ChartCandlestick:Wn,ChartCandlestickIcon:Wn,ChartColumn:Gn,ChartColumnBig:Un,ChartColumnBigIcon:Un,ChartColumnDecreasing:Eh,ChartColumnDecreasingIcon:Eh,ChartColumnIcon:Gn,ChartColumnIncreasing:Rn,ChartColumnIncreasingIcon:Rn,ChartColumnStacked:zh,ChartColumnStackedIcon:zh,ChartGantt:Oh,ChartGanttIcon:Oh,ChartLine:Kn,ChartLineIcon:Kn,ChartNetwork:qh,ChartNetworkIcon:qh,ChartNoAxesColumn:Xn,ChartNoAxesColumnDecreasing:jh,ChartNoAxesColumnDecreasingIcon:jh,ChartNoAxesColumnIcon:Xn,ChartNoAxesColumnIncreasing:Yn,ChartNoAxesColumnIncreasingIcon:Yn,ChartNoAxesCombined:Hh,ChartNoAxesCombinedIcon:Hh,ChartNoAxesGantt:Zn,ChartNoAxesGanttIcon:Zn,ChartPie:Qn,ChartPieIcon:Qn,ChartScatter:Jn,ChartScatterIcon:Jn,ChartSpline:Vh,ChartSplineIcon:Vh,Check:yo,CheckCheck:Fh,CheckCheckIcon:Fh,CheckCircle:la,CheckCircle2:Vo,CheckCircle2Icon:Vo,CheckCircleIcon:la,CheckIcon:yo,CheckLine:Bh,CheckLineIcon:Bh,CheckSquare:_i,CheckSquare2:bi,CheckSquare2Icon:bi,CheckSquareIcon:_i,ChefHat:Wh,ChefHatIcon:Wh,Cherry:Uh,CherryIcon:Uh,ChessBishop:Rh,ChessBishopIcon:Rh,ChessKing:Gh,ChessKingIcon:Gh,ChessKnight:Kh,ChessKnightIcon:Kh,ChessPawn:Yh,ChessPawnIcon:Yh,ChessQueen:Xh,ChessQueenIcon:Xh,ChessRook:Zh,ChessRookIcon:Zh,ChevronDown:Zt,ChevronDownCircle:ua,ChevronDownCircleIcon:ua,ChevronDownIcon:Zt,ChevronDownSquare:Mi,ChevronDownSquareIcon:Mi,ChevronFirst:Qh,ChevronFirstIcon:Qh,ChevronLast:Jh,ChevronLastIcon:Jh,ChevronLeft:ea,ChevronLeftCircle:ha,ChevronLeftCircleIcon:ha,ChevronLeftIcon:ea,ChevronLeftSquare:wi,ChevronLeftSquareIcon:wi,ChevronRight:Ot,ChevronRightCircle:pa,ChevronRightCircleIcon:pa,ChevronRightIcon:Ot,ChevronRightSquare:xi,ChevronRightSquareIcon:xi,ChevronUp:Zc,ChevronUpCircle:ya,ChevronUpCircleIcon:ya,ChevronUpIcon:Zc,ChevronUpSquare:Ni,ChevronUpSquareIcon:Ni,ChevronsDown:tp,ChevronsDownIcon:tp,ChevronsDownUp:ep,ChevronsDownUpIcon:ep,ChevronsLeft:Rs,ChevronsLeftIcon:Rs,ChevronsLeftRight:np,ChevronsLeftRightEllipsis:op,ChevronsLeftRightEllipsisIcon:op,ChevronsLeftRightIcon:np,ChevronsRight:Gs,ChevronsRightIcon:Gs,ChevronsRightLeft:ap,ChevronsRightLeftIcon:ap,ChevronsUp:rp,ChevronsUpDown:Qc,ChevronsUpDownIcon:Qc,ChevronsUpIcon:rp,Chrome:ta,ChromeIcon:ta,Chromium:ta,ChromiumIcon:ta,Church:ip,ChurchIcon:ip,Cigarette:sp,CigaretteIcon:sp,CigaretteOff:cp,CigaretteOffIcon:cp,Circle:on,CircleAlert:tn,CircleAlertIcon:tn,CircleArrowDown:oa,CircleArrowDownIcon:oa,CircleArrowLeft:na,CircleArrowLeftIcon:na,CircleArrowOutDownLeft:aa,CircleArrowOutDownLeftIcon:aa,CircleArrowOutDownRight:ra,CircleArrowOutDownRightIcon:ra,CircleArrowOutUpLeft:ia,CircleArrowOutUpLeftIcon:ia,CircleArrowOutUpRight:ca,CircleArrowOutUpRightIcon:ca,CircleArrowRight:sa,CircleArrowRightIcon:sa,CircleArrowUp:da,CircleArrowUpIcon:da,CircleCheck:Vo,CircleCheckBig:la,CircleCheckBigIcon:la,CircleCheckIcon:Vo,CircleChevronDown:ua,CircleChevronDownIcon:ua,CircleChevronLeft:ha,CircleChevronLeftIcon:ha,CircleChevronRight:pa,CircleChevronRightIcon:pa,CircleChevronUp:ya,CircleChevronUpIcon:ya,CircleDashed:dp,CircleDashedIcon:dp,CircleDivide:fa,CircleDivideIcon:fa,CircleDollarSign:lp,CircleDollarSignIcon:lp,CircleDot:hp,CircleDotDashed:up,CircleDotDashedIcon:up,CircleDotIcon:hp,CircleEllipsis:pp,CircleEllipsisIcon:pp,CircleEqual:yp,CircleEqualIcon:yp,CircleFadingArrowUp:fp,CircleFadingArrowUpIcon:fp,CircleFadingPlus:mp,CircleFadingPlusIcon:mp,CircleGauge:ma,CircleGaugeIcon:ma,CircleHelp:fo,CircleHelpIcon:fo,CircleIcon:on,CircleMinus:ka,CircleMinusIcon:ka,CircleOff:kp,CircleOffIcon:kp,CircleParking:va,CircleParkingIcon:va,CircleParkingOff:ga,CircleParkingOffIcon:ga,CirclePause:_a,CirclePauseIcon:_a,CirclePercent:ba,CirclePercentIcon:ba,CirclePile:gp,CirclePileIcon:gp,CirclePlay:wa,CirclePlayIcon:wa,CirclePlus:Ma,CirclePlusIcon:Ma,CirclePoundSterling:vp,CirclePoundSterlingIcon:vp,CirclePower:xa,CirclePowerIcon:xa,CircleQuestionMark:fo,CircleQuestionMarkIcon:fo,CircleSlash:_p,CircleSlash2:Na,CircleSlash2Icon:Na,CircleSlashIcon:_p,CircleSlashed:Na,CircleSlashedIcon:Na,CircleSmall:Mp,CircleSmallIcon:Mp,CircleStar:bp,CircleStarIcon:bp,CircleStop:Ca,CircleStopIcon:Ca,CircleUser:Sa,CircleUserIcon:Sa,CircleUserRound:$a,CircleUserRoundIcon:$a,CircleX:La,CircleXIcon:La,CircuitBoard:wp,CircuitBoardIcon:wp,Citrus:xp,CitrusIcon:xp,Clapperboard:Np,ClapperboardIcon:Np,Clipboard:Ep,ClipboardCheck:Cp,ClipboardCheckIcon:Cp,ClipboardClock:$p,ClipboardClockIcon:$p,ClipboardCopy:Sp,ClipboardCopyIcon:Sp,ClipboardEdit:Aa,ClipboardEditIcon:Aa,ClipboardIcon:Ep,ClipboardList:Lp,ClipboardListIcon:Lp,ClipboardMinus:Ip,ClipboardMinusIcon:Ip,ClipboardPaste:Ap,ClipboardPasteIcon:Ap,ClipboardPen:Aa,ClipboardPenIcon:Aa,ClipboardPenLine:Ia,ClipboardPenLineIcon:Ia,ClipboardPlus:Pp,ClipboardPlusIcon:Pp,ClipboardSignature:Ia,ClipboardSignatureIcon:Ia,ClipboardType:Tp,ClipboardTypeIcon:Tp,ClipboardX:Dp,ClipboardXIcon:Dp,Clock:ey,Clock1:zp,Clock10:Op,Clock10Icon:Op,Clock11:qp,Clock11Icon:qp,Clock12:jp,Clock12Icon:jp,Clock1Icon:zp,Clock2:Hp,Clock2Icon:Hp,Clock3:Vp,Clock3Icon:Vp,Clock4:Fp,Clock4Icon:Fp,Clock5:Bp,Clock5Icon:Bp,Clock6:Wp,Clock6Icon:Wp,Clock7:Up,Clock7Icon:Up,Clock8:Rp,Clock8Icon:Rp,Clock9:Gp,Clock9Icon:Gp,ClockAlert:Kp,ClockAlertIcon:Kp,ClockArrowDown:Yp,ClockArrowDownIcon:Yp,ClockArrowUp:Xp,ClockArrowUpIcon:Xp,ClockCheck:Zp,ClockCheckIcon:Zp,ClockFading:Qp,ClockFadingIcon:Qp,ClockIcon:ey,ClockPlus:Jp,ClockPlusIcon:Jp,ClosedCaption:ty,ClosedCaptionIcon:ty,Cloud:vy,CloudAlert:oy,CloudAlertIcon:oy,CloudBackup:ny,CloudBackupIcon:ny,CloudCheck:ay,CloudCheckIcon:ay,CloudCog:ry,CloudCogIcon:ry,CloudDownload:Pa,CloudDownloadIcon:Pa,CloudDrizzle:iy,CloudDrizzleIcon:iy,CloudFog:cy,CloudFogIcon:cy,CloudHail:sy,CloudHailIcon:sy,CloudIcon:vy,CloudLightning:dy,CloudLightningIcon:dy,CloudMoon:uy,CloudMoonIcon:uy,CloudMoonRain:ly,CloudMoonRainIcon:ly,CloudOff:hy,CloudOffIcon:hy,CloudRain:yy,CloudRainIcon:yy,CloudRainWind:py,CloudRainWindIcon:py,CloudSnow:fy,CloudSnowIcon:fy,CloudSun:ky,CloudSunIcon:ky,CloudSunRain:my,CloudSunRainIcon:my,CloudSync:gy,CloudSyncIcon:gy,CloudUpload:Ta,CloudUploadIcon:Ta,Cloudy:by,CloudyIcon:by,Clover:_y,CloverIcon:_y,Club:My,ClubIcon:My,Code:wy,Code2:Da,Code2Icon:Da,CodeIcon:wy,CodeSquare:Ci,CodeSquareIcon:Ci,CodeXml:Da,CodeXmlIcon:Da,Codepen:xy,CodepenIcon:xy,Codesandbox:Ny,CodesandboxIcon:Ny,Coffee:Cy,CoffeeIcon:Cy,Cog:$y,CogIcon:$y,Coins:Sy,CoinsIcon:Sy,Columns:Ea,Columns2:Ea,Columns2Icon:Ea,Columns3:za,Columns3Cog:mo,Columns3CogIcon:mo,Columns3Icon:za,Columns4:Ly,Columns4Icon:Ly,ColumnsIcon:Ea,ColumnsSettings:mo,ColumnsSettingsIcon:mo,Combine:Iy,CombineIcon:Iy,Command:Ay,CommandIcon:Ay,Compass:Py,CompassIcon:Py,Component:Ty,ComponentIcon:Ty,Computer:Dy,ComputerIcon:Dy,ConciergeBell:Ey,ConciergeBellIcon:Ey,Cone:zy,ConeIcon:zy,Construction:Oy,ConstructionIcon:Oy,Contact:qy,Contact2:Oa,Contact2Icon:Oa,ContactIcon:qy,ContactRound:Oa,ContactRoundIcon:Oa,Container:jy,ContainerIcon:jy,Contrast:Hy,ContrastIcon:Hy,Cookie:Vy,CookieIcon:Vy,CookingPot:Fy,CookingPotIcon:Fy,Copy:Yy,CopyCheck:By,CopyCheckIcon:By,CopyIcon:Yy,CopyMinus:Wy,CopyMinusIcon:Wy,CopyPlus:Uy,CopyPlusIcon:Uy,CopySlash:Ry,CopySlashIcon:Ry,CopyX:Gy,CopyXIcon:Gy,Copyleft:Ky,CopyleftIcon:Ky,Copyright:Xy,CopyrightIcon:Xy,CornerDownLeft:Zy,CornerDownLeftIcon:Zy,CornerDownRight:Qy,CornerDownRightIcon:Qy,CornerLeftDown:Jy,CornerLeftDownIcon:Jy,CornerLeftUp:ef,CornerLeftUpIcon:ef,CornerRightDown:tf,CornerRightDownIcon:tf,CornerRightUp:of,CornerRightUpIcon:of,CornerUpLeft:nf,CornerUpLeftIcon:nf,CornerUpRight:af,CornerUpRightIcon:af,Cpu:rf,CpuIcon:rf,CreativeCommons:cf,CreativeCommonsIcon:cf,CreditCard:sf,CreditCardIcon:sf,Croissant:df,CroissantIcon:df,Crop:lf,CropIcon:lf,Cross:uf,CrossIcon:uf,Crosshair:pf,CrosshairIcon:pf,Crown:hf,CrownIcon:hf,Cuboid:yf,CuboidIcon:yf,CupSoda:ff,CupSodaIcon:ff,CurlyBraces:jn,CurlyBracesIcon:jn,Currency:mf,CurrencyIcon:mf,Cylinder:kf,CylinderIcon:kf,Dam:gf,DamIcon:gf,Database:bf,DatabaseBackup:vf,DatabaseBackupIcon:vf,DatabaseIcon:bf,DatabaseZap:_f,DatabaseZapIcon:_f,DecimalsArrowLeft:Mf,DecimalsArrowLeftIcon:Mf,DecimalsArrowRight:wf,DecimalsArrowRightIcon:wf,Delete:xf,DeleteIcon:xf,Dessert:Nf,DessertIcon:Nf,Diameter:Cf,DiameterIcon:Cf,Diamond:Lf,DiamondIcon:Lf,DiamondMinus:$f,DiamondMinusIcon:$f,DiamondPercent:qa,DiamondPercentIcon:qa,DiamondPlus:Sf,DiamondPlusIcon:Sf,Dice1:If,Dice1Icon:If,Dice2:Af,Dice2Icon:Af,Dice3:Pf,Dice3Icon:Pf,Dice4:Tf,Dice4Icon:Tf,Dice5:Df,Dice5Icon:Df,Dice6:Ef,Dice6Icon:Ef,Dices:zf,DicesIcon:zf,Diff:Of,DiffIcon:Of,Disc:Vf,Disc2:qf,Disc2Icon:qf,Disc3:jf,Disc3Icon:jf,DiscAlbum:Hf,DiscAlbumIcon:Hf,DiscIcon:Vf,Divide:Ff,DivideCircle:fa,DivideCircleIcon:fa,DivideIcon:Ff,DivideSquare:Ii,DivideSquareIcon:Ii,Dna:Wf,DnaIcon:Wf,DnaOff:Bf,DnaOffIcon:Bf,Dock:Uf,DockIcon:Uf,Dog:Rf,DogIcon:Rf,DollarSign:Gf,DollarSignIcon:Gf,Donut:Kf,DonutIcon:Kf,DoorClosed:Xf,DoorClosedIcon:Xf,DoorClosedLocked:Yf,DoorClosedLockedIcon:Yf,DoorOpen:Zf,DoorOpenIcon:Zf,Dot:Ks,DotIcon:Ks,DotSquare:Ai,DotSquareIcon:Ai,Download:Ys,DownloadCloud:Pa,DownloadCloudIcon:Pa,DownloadIcon:Ys,DraftingCompass:Qf,DraftingCompassIcon:Qf,Drama:Jf,DramaIcon:Jf,Dribbble:tm,DribbbleIcon:tm,Drill:em,DrillIcon:em,Drone:om,DroneIcon:om,Droplet:am,DropletIcon:am,DropletOff:nm,DropletOffIcon:nm,Droplets:rm,DropletsIcon:rm,Drum:im,DrumIcon:im,Drumstick:cm,DrumstickIcon:cm,Dumbbell:sm,DumbbellIcon:sm,Ear:dm,EarIcon:dm,EarOff:lm,EarOffIcon:lm,Earth:ja,EarthIcon:ja,EarthLock:um,EarthLockIcon:um,Eclipse:hm,EclipseIcon:hm,Edit:Nt,Edit2:Gr,Edit2Icon:Gr,Edit3:Rr,Edit3Icon:Rr,EditIcon:Nt,Egg:fm,EggFried:pm,EggFriedIcon:pm,EggIcon:fm,EggOff:ym,EggOffIcon:ym,Ellipsis:nn,EllipsisIcon:nn,EllipsisVertical:Ha,EllipsisVerticalIcon:Ha,Equal:gm,EqualApproximately:mm,EqualApproximatelyIcon:mm,EqualIcon:gm,EqualNot:km,EqualNotIcon:km,EqualSquare:Pi,EqualSquareIcon:Pi,Eraser:vm,EraserIcon:vm,EthernetPort:_m,EthernetPortIcon:_m,Euro:bm,EuroIcon:bm,EvCharger:Mm,EvChargerIcon:Mm,Expand:wm,ExpandIcon:wm,ExternalLink:xm,ExternalLinkIcon:xm,Eye:$m,EyeClosed:Nm,EyeClosedIcon:Nm,EyeIcon:$m,EyeOff:Cm,EyeOffIcon:Cm,Facebook:Sm,FacebookIcon:Sm,Factory:Lm,FactoryIcon:Lm,Fan:Im,FanIcon:Im,FastForward:Am,FastForwardIcon:Am,Feather:Pm,FeatherIcon:Pm,Fence:Tm,FenceIcon:Tm,FerrisWheel:Dm,FerrisWheelIcon:Dm,Figma:Em,FigmaIcon:Em,File:Xs,FileArchive:zm,FileArchiveIcon:zm,FileAudio:ko,FileAudio2:ko,FileAudio2Icon:ko,FileAudioIcon:ko,FileAxis3D:Va,FileAxis3DIcon:Va,FileAxis3d:Va,FileAxis3dIcon:Va,FileBadge:Fa,FileBadge2:Fa,FileBadge2Icon:Fa,FileBadgeIcon:Fa,FileBarChart:Ra,FileBarChart2:Ua,FileBarChart2Icon:Ua,FileBarChartIcon:Ra,FileBox:Om,FileBoxIcon:Om,FileBraces:Wa,FileBracesCorner:Ba,FileBracesCornerIcon:Ba,FileBracesIcon:Wa,FileChartColumn:Ua,FileChartColumnIcon:Ua,FileChartColumnIncreasing:Ra,FileChartColumnIncreasingIcon:Ra,FileChartLine:Ga,FileChartLineIcon:Ga,FileChartPie:Ka,FileChartPieIcon:Ka,FileCheck:qm,FileCheck2:Ya,FileCheck2Icon:Ya,FileCheckCorner:Ya,FileCheckCornerIcon:Ya,FileCheckIcon:qm,FileClock:jm,FileClockIcon:jm,FileCode:Hm,FileCode2:Xa,FileCode2Icon:Xa,FileCodeCorner:Xa,FileCodeCornerIcon:Xa,FileCodeIcon:Hm,FileCog:Za,FileCog2:Za,FileCog2Icon:Za,FileCogIcon:Za,FileDiff:Bm,FileDiffIcon:Bm,FileDigit:Vm,FileDigitIcon:Vm,FileDown:Fm,FileDownIcon:Fm,FileEdit:nr,FileEditIcon:nr,FileExclamationPoint:Qa,FileExclamationPointIcon:Qa,FileHeadphone:ko,FileHeadphoneIcon:ko,FileHeart:Wm,FileHeartIcon:Wm,FileIcon:Xs,FileImage:Um,FileImageIcon:Um,FileInput:Rm,FileInputIcon:Rm,FileJson:Wa,FileJson2:Ba,FileJson2Icon:Ba,FileJsonIcon:Wa,FileKey:Ja,FileKey2:Ja,FileKey2Icon:Ja,FileKeyIcon:Ja,FileLineChart:Ga,FileLineChartIcon:Ga,FileLock:er,FileLock2:er,FileLock2Icon:er,FileLockIcon:er,FileMinus:Gm,FileMinus2:tr,FileMinus2Icon:tr,FileMinusCorner:tr,FileMinusCornerIcon:tr,FileMinusIcon:Gm,FileMusic:Km,FileMusicIcon:Km,FileOutput:Ym,FileOutputIcon:Ym,FilePen:nr,FilePenIcon:nr,FilePenLine:or,FilePenLineIcon:or,FilePieChart:Ka,FilePieChartIcon:Ka,FilePlay:ar,FilePlayIcon:ar,FilePlus:Xm,FilePlus2:rr,FilePlus2Icon:rr,FilePlusCorner:rr,FilePlusCornerIcon:rr,FilePlusIcon:Xm,FileQuestion:ir,FileQuestionIcon:ir,FileQuestionMark:ir,FileQuestionMarkIcon:ir,FileScan:Zm,FileScanIcon:Zm,FileSearch:Qm,FileSearch2:cr,FileSearch2Icon:cr,FileSearchCorner:cr,FileSearchCornerIcon:cr,FileSearchIcon:Qm,FileSignal:sr,FileSignalIcon:sr,FileSignature:or,FileSignatureIcon:or,FileSliders:Jm,FileSlidersIcon:Jm,FileSpreadsheet:ek,FileSpreadsheetIcon:ek,FileStack:tk,FileStackIcon:tk,FileSymlink:ok,FileSymlinkIcon:ok,FileTerminal:nk,FileTerminalIcon:nk,FileText:ak,FileTextIcon:ak,FileType:rk,FileType2:dr,FileType2Icon:dr,FileTypeCorner:dr,FileTypeCornerIcon:dr,FileTypeIcon:rk,FileUp:ik,FileUpIcon:ik,FileUser:ck,FileUserIcon:ck,FileVideo:ar,FileVideo2:lr,FileVideo2Icon:lr,FileVideoCamera:lr,FileVideoCameraIcon:lr,FileVideoIcon:ar,FileVolume:sk,FileVolume2:sr,FileVolume2Icon:sr,FileVolumeIcon:sk,FileWarning:Qa,FileWarningIcon:Qa,FileX:dk,FileX2:ur,FileX2Icon:ur,FileXCorner:ur,FileXCornerIcon:ur,FileXIcon:dk,Files:lk,FilesIcon:lk,Film:uk,FilmIcon:uk,Filter:mr,FilterIcon:mr,FilterX:fr,FilterXIcon:fr,Fingerprint:hr,FingerprintIcon:hr,FingerprintPattern:hr,FingerprintPatternIcon:hr,FireExtinguisher:hk,FireExtinguisherIcon:hk,Fish:fk,FishIcon:fk,FishOff:pk,FishOffIcon:pk,FishSymbol:yk,FishSymbolIcon:yk,FishingHook:mk,FishingHookIcon:mk,Flag:_k,FlagIcon:_k,FlagOff:kk,FlagOffIcon:kk,FlagTriangleLeft:gk,FlagTriangleLeftIcon:gk,FlagTriangleRight:vk,FlagTriangleRightIcon:vk,Flame:Mk,FlameIcon:Mk,FlameKindling:bk,FlameKindlingIcon:bk,Flashlight:xk,FlashlightIcon:xk,FlashlightOff:wk,FlashlightOffIcon:wk,FlaskConical:Ck,FlaskConicalIcon:Ck,FlaskConicalOff:Nk,FlaskConicalOffIcon:Nk,FlaskRound:$k,FlaskRoundIcon:$k,FlipHorizontal:Lk,FlipHorizontal2:Sk,FlipHorizontal2Icon:Sk,FlipHorizontalIcon:Lk,FlipVertical:Ak,FlipVertical2:Ik,FlipVertical2Icon:Ik,FlipVerticalIcon:Ak,Flower:Tk,Flower2:Pk,Flower2Icon:Pk,FlowerIcon:Tk,Focus:Dk,FocusIcon:Dk,FoldHorizontal:zk,FoldHorizontalIcon:zk,FoldVertical:Ek,FoldVerticalIcon:Ek,Folder:Qs,FolderArchive:Ok,FolderArchiveIcon:Ok,FolderCheck:qk,FolderCheckIcon:qk,FolderClock:jk,FolderClockIcon:jk,FolderClosed:Hk,FolderClosedIcon:Hk,FolderCode:Vk,FolderCodeIcon:Vk,FolderCog:pr,FolderCog2:pr,FolderCog2Icon:pr,FolderCogIcon:pr,FolderDot:Fk,FolderDotIcon:Fk,FolderDown:Bk,FolderDownIcon:Bk,FolderEdit:yr,FolderEditIcon:yr,FolderGit:Uk,FolderGit2:Wk,FolderGit2Icon:Wk,FolderGitIcon:Uk,FolderHeart:Rk,FolderHeartIcon:Rk,FolderIcon:Qs,FolderInput:Gk,FolderInputIcon:Gk,FolderKanban:Yk,FolderKanbanIcon:Yk,FolderKey:Kk,FolderKeyIcon:Kk,FolderLock:Xk,FolderLockIcon:Xk,FolderMinus:Zk,FolderMinusIcon:Zk,FolderOpen:Zs,FolderOpenDot:Qk,FolderOpenDotIcon:Qk,FolderOpenIcon:Zs,FolderOutput:Jk,FolderOutputIcon:Jk,FolderPen:yr,FolderPenIcon:yr,FolderPlus:eg,FolderPlusIcon:eg,FolderRoot:tg,FolderRootIcon:tg,FolderSearch:ng,FolderSearch2:og,FolderSearch2Icon:og,FolderSearchIcon:ng,FolderSymlink:ag,FolderSymlinkIcon:ag,FolderSync:rg,FolderSyncIcon:rg,FolderTree:ig,FolderTreeIcon:ig,FolderUp:cg,FolderUpIcon:cg,FolderX:dg,FolderXIcon:dg,Folders:sg,FoldersIcon:sg,Footprints:lg,FootprintsIcon:lg,ForkKnife:Mc,ForkKnifeCrossed:bc,ForkKnifeCrossedIcon:bc,ForkKnifeIcon:Mc,Forklift:ug,ForkliftIcon:ug,Form:hg,FormIcon:hg,FormInput:Yr,FormInputIcon:Yr,Forward:pg,ForwardIcon:pg,Frame:yg,FrameIcon:yg,Framer:fg,FramerIcon:fg,Frown:mg,FrownIcon:mg,Fuel:kg,FuelIcon:kg,Fullscreen:gg,FullscreenIcon:gg,FunctionSquare:Ti,FunctionSquareIcon:Ti,Funnel:mr,FunnelIcon:mr,FunnelPlus:vg,FunnelPlusIcon:vg,FunnelX:fr,FunnelXIcon:fr,GalleryHorizontal:bg,GalleryHorizontalEnd:_g,GalleryHorizontalEndIcon:_g,GalleryHorizontalIcon:bg,GalleryThumbnails:Mg,GalleryThumbnailsIcon:Mg,GalleryVertical:xg,GalleryVerticalEnd:wg,GalleryVerticalEndIcon:wg,GalleryVerticalIcon:xg,Gamepad:$g,Gamepad2:Ng,Gamepad2Icon:Ng,GamepadDirectional:Cg,GamepadDirectionalIcon:Cg,GamepadIcon:$g,GanttChart:Zn,GanttChartIcon:Zn,GanttChartSquare:Jt,GanttChartSquareIcon:Jt,Gauge:Sg,GaugeCircle:ma,GaugeCircleIcon:ma,GaugeIcon:Sg,Gavel:Ig,GavelIcon:Ig,Gem:Lg,GemIcon:Lg,GeorgianLari:Pg,GeorgianLariIcon:Pg,Ghost:Ag,GhostIcon:Ag,Gift:Tg,GiftIcon:Tg,GitBranch:zg,GitBranchIcon:zg,GitBranchMinus:Dg,GitBranchMinusIcon:Dg,GitBranchPlus:Eg,GitBranchPlusIcon:Eg,GitCommit:kr,GitCommitHorizontal:kr,GitCommitHorizontalIcon:kr,GitCommitIcon:kr,GitCommitVertical:Og,GitCommitVerticalIcon:Og,GitCompare:jg,GitCompareArrows:qg,GitCompareArrowsIcon:qg,GitCompareIcon:jg,GitFork:Hg,GitForkIcon:Hg,GitGraph:Vg,GitGraphIcon:Vg,GitMerge:Fg,GitMergeIcon:Fg,GitPullRequest:Kg,GitPullRequestArrow:Bg,GitPullRequestArrowIcon:Bg,GitPullRequestClosed:Wg,GitPullRequestClosedIcon:Wg,GitPullRequestCreate:Rg,GitPullRequestCreateArrow:Ug,GitPullRequestCreateArrowIcon:Ug,GitPullRequestCreateIcon:Rg,GitPullRequestDraft:Gg,GitPullRequestDraftIcon:Gg,GitPullRequestIcon:Kg,Github:Yg,GithubIcon:Yg,Gitlab:Xg,GitlabIcon:Xg,GlassWater:Zg,GlassWaterIcon:Zg,Glasses:Qg,GlassesIcon:Qg,Globe:t4,Globe2:ja,Globe2Icon:ja,GlobeIcon:t4,GlobeLock:Jg,GlobeLockIcon:Jg,GlobeX:e4,GlobeXIcon:e4,Goal:n4,GoalIcon:n4,Gpu:o4,GpuIcon:o4,Grab:Mr,GrabIcon:Mr,GraduationCap:a4,GraduationCapIcon:a4,Grape:r4,GrapeIcon:r4,Grid:Qt,Grid2X2:br,Grid2X2Check:gr,Grid2X2CheckIcon:gr,Grid2X2Icon:br,Grid2X2Plus:vr,Grid2X2PlusIcon:vr,Grid2X2X:_r,Grid2X2XIcon:_r,Grid2x2:br,Grid2x2Check:gr,Grid2x2CheckIcon:gr,Grid2x2Icon:br,Grid2x2Plus:vr,Grid2x2PlusIcon:vr,Grid2x2X:_r,Grid2x2XIcon:_r,Grid3X3:Qt,Grid3X3Icon:Qt,Grid3x2:i4,Grid3x2Icon:i4,Grid3x3:Qt,Grid3x3Icon:Qt,GridIcon:Qt,Grip:s4,GripHorizontal:c4,GripHorizontalIcon:c4,GripIcon:s4,GripVertical:Jc,GripVerticalIcon:Jc,Group:d4,GroupIcon:d4,Guitar:l4,GuitarIcon:l4,Ham:u4,HamIcon:u4,Hamburger:h4,HamburgerIcon:h4,Hammer:p4,HammerIcon:p4,Hand:v4,HandCoins:y4,HandCoinsIcon:y4,HandFist:f4,HandFistIcon:f4,HandGrab:Mr,HandGrabIcon:Mr,HandHeart:m4,HandHeartIcon:m4,HandHelping:wr,HandHelpingIcon:wr,HandIcon:v4,HandMetal:k4,HandMetalIcon:k4,HandPlatter:g4,HandPlatterIcon:g4,Handbag:_4,HandbagIcon:_4,Handshake:b4,HandshakeIcon:b4,HardDrive:N4,HardDriveDownload:M4,HardDriveDownloadIcon:M4,HardDriveIcon:N4,HardDriveUpload:w4,HardDriveUploadIcon:w4,HardHat:x4,HardHatIcon:x4,Hash:C4,HashIcon:C4,HatGlasses:$4,HatGlassesIcon:$4,Haze:S4,HazeIcon:S4,Hd:L4,HdIcon:L4,HdmiPort:I4,HdmiPortIcon:I4,Heading:O4,Heading1:A4,Heading1Icon:A4,Heading2:P4,Heading2Icon:P4,Heading3:T4,Heading3Icon:T4,Heading4:D4,Heading4Icon:D4,Heading5:E4,Heading5Icon:E4,Heading6:z4,Heading6Icon:z4,HeadingIcon:O4,HeadphoneOff:q4,HeadphoneOffIcon:q4,Headphones:j4,HeadphonesIcon:j4,Headset:H4,HeadsetIcon:H4,Heart:G4,HeartCrack:V4,HeartCrackIcon:V4,HeartHandshake:F4,HeartHandshakeIcon:F4,HeartIcon:G4,HeartMinus:B4,HeartMinusIcon:B4,HeartOff:W4,HeartOffIcon:W4,HeartPlus:U4,HeartPlusIcon:U4,HeartPulse:R4,HeartPulseIcon:R4,Heater:K4,HeaterIcon:K4,Helicopter:Y4,HelicopterIcon:Y4,HelpCircle:fo,HelpCircleIcon:fo,HelpingHand:wr,HelpingHandIcon:wr,Hexagon:X4,HexagonIcon:X4,Highlighter:Z4,HighlighterIcon:Z4,History:Q4,HistoryIcon:Q4,Home:xr,HomeIcon:xr,Hop:e5,HopIcon:e5,HopOff:J4,HopOffIcon:J4,Hospital:t5,HospitalIcon:t5,Hotel:o5,HotelIcon:o5,Hourglass:n5,HourglassIcon:n5,House:xr,HouseHeart:a5,HouseHeartIcon:a5,HouseIcon:xr,HousePlug:r5,HousePlugIcon:r5,HousePlus:i5,HousePlusIcon:i5,HouseWifi:c5,HouseWifiIcon:c5,IceCream:Cr,IceCream2:Nr,IceCream2Icon:Nr,IceCreamBowl:Nr,IceCreamBowlIcon:Nr,IceCreamCone:Cr,IceCreamConeIcon:Cr,IceCreamIcon:Cr,Icon:yD,IdCard:d5,IdCardIcon:d5,IdCardLanyard:s5,IdCardLanyardIcon:s5,Image:k5,ImageDown:l5,ImageDownIcon:l5,ImageIcon:k5,ImageMinus:u5,ImageMinusIcon:u5,ImageOff:h5,ImageOffIcon:h5,ImagePlay:p5,ImagePlayIcon:p5,ImagePlus:y5,ImagePlusIcon:y5,ImageUp:f5,ImageUpIcon:f5,ImageUpscale:m5,ImageUpscaleIcon:m5,Images:Js,ImagesIcon:Js,Import:g5,ImportIcon:g5,Inbox:ed,InboxIcon:ed,Indent:vo,IndentDecrease:go,IndentDecreaseIcon:go,IndentIcon:vo,IndentIncrease:vo,IndentIncreaseIcon:vo,IndianRupee:v5,IndianRupeeIcon:v5,Infinity:_5,InfinityIcon:_5,Info:td,InfoIcon:td,Inspect:ji,InspectIcon:ji,InspectionPanel:b5,InspectionPanelIcon:b5,Instagram:M5,InstagramIcon:M5,Italic:w5,ItalicIcon:w5,IterationCcw:x5,IterationCcwIcon:x5,IterationCw:N5,IterationCwIcon:N5,JapaneseYen:C5,JapaneseYenIcon:C5,Joystick:$5,JoystickIcon:$5,Kanban:S5,KanbanIcon:S5,KanbanSquare:Ei,KanbanSquareDashed:Si,KanbanSquareDashedIcon:Si,KanbanSquareIcon:Ei,Kayak:L5,KayakIcon:L5,Key:P5,KeyIcon:P5,KeyRound:I5,KeyRoundIcon:I5,KeySquare:A5,KeySquareIcon:A5,Keyboard:E5,KeyboardIcon:E5,KeyboardMusic:T5,KeyboardMusicIcon:T5,KeyboardOff:D5,KeyboardOffIcon:D5,Lamp:V5,LampCeiling:z5,LampCeilingIcon:z5,LampDesk:O5,LampDeskIcon:O5,LampFloor:q5,LampFloorIcon:q5,LampIcon:V5,LampWallDown:j5,LampWallDownIcon:j5,LampWallUp:H5,LampWallUpIcon:H5,LandPlot:F5,LandPlotIcon:F5,Landmark:B5,LandmarkIcon:B5,Languages:W5,LanguagesIcon:W5,Laptop:R5,Laptop2:$r,Laptop2Icon:$r,LaptopIcon:R5,LaptopMinimal:$r,LaptopMinimalCheck:U5,LaptopMinimalCheckIcon:U5,LaptopMinimalIcon:$r,Lasso:K5,LassoIcon:K5,LassoSelect:G5,LassoSelectIcon:G5,Laugh:Y5,LaughIcon:Y5,Layers:Sr,Layers2:X5,Layers2Icon:X5,Layers3:Sr,Layers3Icon:Sr,LayersIcon:Sr,LayersPlus:Z5,LayersPlusIcon:Z5,Layout:Ur,LayoutDashboard:Q5,LayoutDashboardIcon:Q5,LayoutGrid:od,LayoutGridIcon:od,LayoutIcon:Ur,LayoutList:J5,LayoutListIcon:J5,LayoutPanelLeft:ev,LayoutPanelLeftIcon:ev,LayoutPanelTop:tv,LayoutPanelTopIcon:tv,LayoutTemplate:ov,LayoutTemplateIcon:ov,Leaf:nv,LeafIcon:nv,LeafyGreen:av,LeafyGreenIcon:av,Lectern:rv,LecternIcon:rv,LetterText:cc,LetterTextIcon:cc,Library:cv,LibraryBig:iv,LibraryBigIcon:iv,LibraryIcon:cv,LibrarySquare:Di,LibrarySquareIcon:Di,LifeBuoy:sv,LifeBuoyIcon:sv,Ligature:dv,LigatureIcon:dv,Lightbulb:uv,LightbulbIcon:uv,LightbulbOff:lv,LightbulbOffIcon:lv,LineChart:Kn,LineChartIcon:Kn,LineSquiggle:hv,LineSquiggleIcon:hv,Link:fv,Link2:yv,Link2Icon:yv,Link2Off:pv,Link2OffIcon:pv,LinkIcon:fv,Linkedin:mv,LinkedinIcon:mv,List:Ev,ListCheck:kv,ListCheckIcon:kv,ListChecks:gv,ListChecksIcon:gv,ListChevronsDownUp:vv,ListChevronsDownUpIcon:vv,ListChevronsUpDown:_v,ListChevronsUpDownIcon:_v,ListCollapse:bv,ListCollapseIcon:bv,ListEnd:Mv,ListEndIcon:Mv,ListFilter:xv,ListFilterIcon:xv,ListFilterPlus:wv,ListFilterPlusIcon:wv,ListIcon:Ev,ListIndentDecrease:go,ListIndentDecreaseIcon:go,ListIndentIncrease:vo,ListIndentIncreaseIcon:vo,ListMinus:Nv,ListMinusIcon:Nv,ListMusic:Cv,ListMusicIcon:Cv,ListOrdered:$v,ListOrderedIcon:$v,ListPlus:Sv,ListPlusIcon:Sv,ListRestart:Lv,ListRestartIcon:Lv,ListStart:Iv,ListStartIcon:Iv,ListTodo:Av,ListTodoIcon:Av,ListTree:Pv,ListTreeIcon:Pv,ListVideo:Tv,ListVideoIcon:Tv,ListX:Dv,ListXIcon:Dv,Loader:Ov,Loader2:qt,Loader2Icon:qt,LoaderCircle:qt,LoaderCircleIcon:qt,LoaderIcon:Ov,LoaderPinwheel:zv,LoaderPinwheelIcon:zv,Locate:Hv,LocateFixed:qv,LocateFixedIcon:qv,LocateIcon:Hv,LocateOff:jv,LocateOffIcon:jv,LocationEdit:Pr,LocationEditIcon:Pr,Lock:Fv,LockIcon:Fv,LockKeyhole:Vv,LockKeyholeIcon:Vv,LockKeyholeOpen:Lr,LockKeyholeOpenIcon:Lr,LockOpen:Ir,LockOpenIcon:Ir,LogIn:Bv,LogInIcon:Bv,LogOut:Wv,LogOutIcon:Wv,Logs:Uv,LogsIcon:Uv,Lollipop:Rv,LollipopIcon:Rv,LucideAArrowDown:L1,LucideAArrowUp:I1,LucideALargeSmall:A1,LucideAccessibility:P1,LucideActivity:Fs,LucideActivitySquare:ri,LucideAirVent:T1,LucideAirplay:D1,LucideAlarmCheck:xn,LucideAlarmClock:z1,LucideAlarmClockCheck:xn,LucideAlarmClockMinus:Nn,LucideAlarmClockOff:E1,LucideAlarmClockPlus:Cn,LucideAlarmMinus:Nn,LucideAlarmPlus:Cn,LucideAlarmSmoke:O1,LucideAlbum:q1,LucideAlertCircle:tn,LucideAlertOctagon:zr,LucideAlertTriangle:sn,LucideAlignCenter:ac,LucideAlignCenterHorizontal:j1,LucideAlignCenterVertical:H1,LucideAlignEndHorizontal:V1,LucideAlignEndVertical:F1,LucideAlignHorizontalDistributeCenter:B1,LucideAlignHorizontalDistributeEnd:W1,LucideAlignHorizontalDistributeStart:U1,LucideAlignHorizontalJustifyCenter:R1,LucideAlignHorizontalJustifyEnd:G1,LucideAlignHorizontalJustifyStart:K1,LucideAlignHorizontalSpaceAround:Y1,LucideAlignHorizontalSpaceBetween:X1,LucideAlignJustify:ic,LucideAlignLeft:_o,LucideAlignRight:rc,LucideAlignStartHorizontal:Z1,LucideAlignStartVertical:Q1,LucideAlignVerticalDistributeCenter:J1,LucideAlignVerticalDistributeEnd:el,LucideAlignVerticalDistributeStart:tl,LucideAlignVerticalJustifyCenter:nl,LucideAlignVerticalJustifyEnd:ol,LucideAlignVerticalJustifyStart:al,LucideAlignVerticalSpaceAround:rl,LucideAlignVerticalSpaceBetween:il,LucideAmbulance:cl,LucideAmpersand:sl,LucideAmpersands:dl,LucideAmphora:ll,LucideAnchor:hl,LucideAngry:ul,LucideAnnoyed:pl,LucideAntenna:yl,LucideAnvil:fl,LucideAperture:ml,LucideAppWindow:gl,LucideAppWindowMac:kl,LucideApple:vl,LucideArchive:Ml,LucideArchiveRestore:_l,LucideArchiveX:bl,LucideAreaChart:Vn,LucideArmchair:wl,LucideArrowBigDown:Nl,LucideArrowBigDownDash:xl,LucideArrowBigLeft:$l,LucideArrowBigLeftDash:Cl,LucideArrowBigRight:Ll,LucideArrowBigRightDash:Sl,LucideArrowBigUp:Al,LucideArrowBigUpDash:Il,LucideArrowDown:Vl,LucideArrowDown01:Pl,LucideArrowDown10:Tl,LucideArrowDownAZ:$n,LucideArrowDownAz:$n,LucideArrowDownCircle:oa,LucideArrowDownFromLine:Dl,LucideArrowDownLeft:El,LucideArrowDownLeftFromCircle:aa,LucideArrowDownLeftFromSquare:li,LucideArrowDownLeftSquare:ii,LucideArrowDownNarrowWide:zl,LucideArrowDownRight:Ol,LucideArrowDownRightFromCircle:ra,LucideArrowDownRightFromSquare:ui,LucideArrowDownRightSquare:si,LucideArrowDownSquare:ci,LucideArrowDownToDot:ql,LucideArrowDownToLine:jl,LucideArrowDownUp:Hl,LucideArrowDownWideNarrow:Sn,LucideArrowDownZA:Ln,LucideArrowDownZa:Ln,LucideArrowLeft:Bs,LucideArrowLeftCircle:na,LucideArrowLeftFromLine:Fl,LucideArrowLeftRight:Bl,LucideArrowLeftSquare:di,LucideArrowLeftToLine:Wl,LucideArrowRight:Ws,LucideArrowRightCircle:sa,LucideArrowRightFromLine:Ul,LucideArrowRightLeft:Rl,LucideArrowRightSquare:yi,LucideArrowRightToLine:Gl,LucideArrowUp:o2,LucideArrowUp01:Kl,LucideArrowUp10:Yl,LucideArrowUpAZ:In,LucideArrowUpAz:In,LucideArrowUpCircle:da,LucideArrowUpDown:Us,LucideArrowUpFromDot:Xl,LucideArrowUpFromLine:Zl,LucideArrowUpLeft:Ql,LucideArrowUpLeftFromCircle:ia,LucideArrowUpLeftFromSquare:hi,LucideArrowUpLeftSquare:fi,LucideArrowUpNarrowWide:An,LucideArrowUpRight:Jl,LucideArrowUpRightFromCircle:ca,LucideArrowUpRightFromSquare:pi,LucideArrowUpRightSquare:mi,LucideArrowUpSquare:ki,LucideArrowUpToLine:e2,LucideArrowUpWideNarrow:t2,LucideArrowUpZA:Pn,LucideArrowUpZa:Pn,LucideArrowsUpFromLine:n2,LucideAsterisk:a2,LucideAsteriskSquare:gi,LucideAtSign:r2,LucideAtom:i2,LucideAudioLines:c2,LucideAudioWaveform:s2,LucideAward:d2,LucideAxe:l2,LucideAxis3D:Tn,LucideAxis3d:Tn,LucideBaby:h2,LucideBackpack:u2,LucideBadge:L2,LucideBadgeAlert:p2,LucideBadgeCent:y2,LucideBadgeCheck:Dn,LucideBadgeDollarSign:f2,LucideBadgeEuro:m2,LucideBadgeHelp:En,LucideBadgeIndianRupee:k2,LucideBadgeInfo:g2,LucideBadgeJapaneseYen:v2,LucideBadgeMinus:_2,LucideBadgePercent:b2,LucideBadgePlus:M2,LucideBadgePoundSterling:w2,LucideBadgeQuestionMark:En,LucideBadgeRussianRuble:x2,LucideBadgeSwissFranc:N2,LucideBadgeTurkishLira:C2,LucideBadgeX:$2,LucideBaggageClaim:S2,LucideBalloon:I2,LucideBan:A2,LucideBanana:P2,LucideBandage:D2,LucideBanknote:q2,LucideBanknoteArrowDown:T2,LucideBanknoteArrowUp:E2,LucideBanknoteX:z2,LucideBarChart:Yn,LucideBarChart2:Xn,LucideBarChart3:Gn,LucideBarChart4:Rn,LucideBarChartBig:Un,LucideBarChartHorizontal:Bn,LucideBarChartHorizontalBig:Fn,LucideBarcode:O2,LucideBarrel:j2,LucideBaseline:H2,LucideBath:V2,LucideBattery:Y2,LucideBatteryCharging:F2,LucideBatteryFull:B2,LucideBatteryLow:W2,LucideBatteryMedium:U2,LucideBatteryPlus:R2,LucideBatteryWarning:G2,LucideBeaker:K2,LucideBean:Z2,LucideBeanOff:X2,LucideBed:e0,LucideBedDouble:Q2,LucideBedSingle:J2,LucideBeef:t0,LucideBeer:a0,LucideBeerOff:o0,LucideBell:l0,LucideBellDot:n0,LucideBellElectric:r0,LucideBellMinus:i0,LucideBellOff:c0,LucideBellPlus:s0,LucideBellRing:d0,LucideBetweenHorizonalEnd:zn,LucideBetweenHorizonalStart:On,LucideBetweenHorizontalEnd:zn,LucideBetweenHorizontalStart:On,LucideBetweenVerticalEnd:u0,LucideBetweenVerticalStart:h0,LucideBicepsFlexed:p0,LucideBike:y0,LucideBinary:f0,LucideBinoculars:m0,LucideBiohazard:k0,LucideBird:g0,LucideBirdhouse:v0,LucideBitcoin:_0,LucideBlend:b0,LucideBlinds:M0,LucideBlocks:w0,LucideBluetooth:S0,LucideBluetoothConnected:x0,LucideBluetoothOff:N0,LucideBluetoothSearching:C0,LucideBold:$0,LucideBolt:L0,LucideBomb:A0,LucideBone:I0,LucideBook:ou,LucideBookA:P0,LucideBookAlert:T0,LucideBookAudio:D0,LucideBookCheck:E0,LucideBookCopy:z0,LucideBookDashed:qn,LucideBookDown:O0,LucideBookHeadphones:q0,LucideBookHeart:j0,LucideBookImage:H0,LucideBookKey:V0,LucideBookLock:F0,LucideBookMarked:W0,LucideBookMinus:B0,LucideBookOpen:R0,LucideBookOpenCheck:U0,LucideBookOpenText:G0,LucideBookPlus:K0,LucideBookSearch:Y0,LucideBookTemplate:qn,LucideBookText:X0,LucideBookType:Z0,LucideBookUp:J0,LucideBookUp2:Q0,LucideBookUser:eu,LucideBookX:tu,LucideBookmark:cu,LucideBookmarkCheck:nu,LucideBookmarkMinus:au,LucideBookmarkPlus:ru,LucideBookmarkX:iu,LucideBoomBox:su,LucideBot:uu,LucideBotMessageSquare:du,LucideBotOff:lu,LucideBottleWine:pu,LucideBowArrow:hu,LucideBox:yu,LucideBoxSelect:Li,LucideBoxes:fu,LucideBraces:jn,LucideBrackets:mu,LucideBrain:vu,LucideBrainCircuit:ku,LucideBrainCog:gu,LucideBrickWall:Mu,LucideBrickWallFire:_u,LucideBrickWallShield:bu,LucideBriefcase:Cu,LucideBriefcaseBusiness:wu,LucideBriefcaseConveyorBelt:xu,LucideBriefcaseMedical:Nu,LucideBringToFront:$u,LucideBrush:Su,LucideBrushCleaning:Lu,LucideBubbles:Iu,LucideBug:Tu,LucideBugOff:Au,LucideBugPlay:Pu,LucideBuilding:Eu,LucideBuilding2:Du,LucideBus:Ou,LucideBusFront:zu,LucideCable:ju,LucideCableCar:qu,LucideCake:Vu,LucideCakeSlice:Hu,LucideCalculator:Fu,LucideCalendar:Xc,LucideCalendar1:Bu,LucideCalendarArrowDown:Wu,LucideCalendarArrowUp:Uu,LucideCalendarCheck:Ku,LucideCalendarCheck2:Ru,LucideCalendarClock:Gu,LucideCalendarCog:Yu,LucideCalendarDays:Xu,LucideCalendarFold:Zu,LucideCalendarHeart:Qu,LucideCalendarMinus:eh,LucideCalendarMinus2:Ju,LucideCalendarOff:th,LucideCalendarPlus:nh,LucideCalendarPlus2:oh,LucideCalendarRange:ah,LucideCalendarSearch:rh,LucideCalendarSync:ch,LucideCalendarX:sh,LucideCalendarX2:ih,LucideCalendars:dh,LucideCamera:uh,LucideCameraOff:lh,LucideCandlestickChart:Wn,LucideCandy:yh,LucideCandyCane:ph,LucideCandyOff:hh,LucideCannabis:mh,LucideCannabisOff:fh,LucideCaptions:Hn,LucideCaptionsOff:kh,LucideCar:vh,LucideCarFront:gh,LucideCarTaxiFront:_h,LucideCaravan:Mh,LucideCardSim:bh,LucideCarrot:wh,LucideCaseLower:xh,LucideCaseSensitive:Nh,LucideCaseUpper:Ch,LucideCassetteTape:$h,LucideCast:Sh,LucideCastle:Lh,LucideCat:Ih,LucideCctv:Ah,LucideChartArea:Vn,LucideChartBar:Bn,LucideChartBarBig:Fn,LucideChartBarDecreasing:Ph,LucideChartBarIncreasing:Th,LucideChartBarStacked:Dh,LucideChartCandlestick:Wn,LucideChartColumn:Gn,LucideChartColumnBig:Un,LucideChartColumnDecreasing:Eh,LucideChartColumnIncreasing:Rn,LucideChartColumnStacked:zh,LucideChartGantt:Oh,LucideChartLine:Kn,LucideChartNetwork:qh,LucideChartNoAxesColumn:Xn,LucideChartNoAxesColumnDecreasing:jh,LucideChartNoAxesColumnIncreasing:Yn,LucideChartNoAxesCombined:Hh,LucideChartNoAxesGantt:Zn,LucideChartPie:Qn,LucideChartScatter:Jn,LucideChartSpline:Vh,LucideCheck:yo,LucideCheckCheck:Fh,LucideCheckCircle:la,LucideCheckCircle2:Vo,LucideCheckLine:Bh,LucideCheckSquare:_i,LucideCheckSquare2:bi,LucideChefHat:Wh,LucideCherry:Uh,LucideChessBishop:Rh,LucideChessKing:Gh,LucideChessKnight:Kh,LucideChessPawn:Yh,LucideChessQueen:Xh,LucideChessRook:Zh,LucideChevronDown:Zt,LucideChevronDownCircle:ua,LucideChevronDownSquare:Mi,LucideChevronFirst:Qh,LucideChevronLast:Jh,LucideChevronLeft:ea,LucideChevronLeftCircle:ha,LucideChevronLeftSquare:wi,LucideChevronRight:Ot,LucideChevronRightCircle:pa,LucideChevronRightSquare:xi,LucideChevronUp:Zc,LucideChevronUpCircle:ya,LucideChevronUpSquare:Ni,LucideChevronsDown:tp,LucideChevronsDownUp:ep,LucideChevronsLeft:Rs,LucideChevronsLeftRight:np,LucideChevronsLeftRightEllipsis:op,LucideChevronsRight:Gs,LucideChevronsRightLeft:ap,LucideChevronsUp:rp,LucideChevronsUpDown:Qc,LucideChrome:ta,LucideChromium:ta,LucideChurch:ip,LucideCigarette:sp,LucideCigaretteOff:cp,LucideCircle:on,LucideCircleAlert:tn,LucideCircleArrowDown:oa,LucideCircleArrowLeft:na,LucideCircleArrowOutDownLeft:aa,LucideCircleArrowOutDownRight:ra,LucideCircleArrowOutUpLeft:ia,LucideCircleArrowOutUpRight:ca,LucideCircleArrowRight:sa,LucideCircleArrowUp:da,LucideCircleCheck:Vo,LucideCircleCheckBig:la,LucideCircleChevronDown:ua,LucideCircleChevronLeft:ha,LucideCircleChevronRight:pa,LucideCircleChevronUp:ya,LucideCircleDashed:dp,LucideCircleDivide:fa,LucideCircleDollarSign:lp,LucideCircleDot:hp,LucideCircleDotDashed:up,LucideCircleEllipsis:pp,LucideCircleEqual:yp,LucideCircleFadingArrowUp:fp,LucideCircleFadingPlus:mp,LucideCircleGauge:ma,LucideCircleHelp:fo,LucideCircleMinus:ka,LucideCircleOff:kp,LucideCircleParking:va,LucideCircleParkingOff:ga,LucideCirclePause:_a,LucideCirclePercent:ba,LucideCirclePile:gp,LucideCirclePlay:wa,LucideCirclePlus:Ma,LucideCirclePoundSterling:vp,LucideCirclePower:xa,LucideCircleQuestionMark:fo,LucideCircleSlash:_p,LucideCircleSlash2:Na,LucideCircleSlashed:Na,LucideCircleSmall:Mp,LucideCircleStar:bp,LucideCircleStop:Ca,LucideCircleUser:Sa,LucideCircleUserRound:$a,LucideCircleX:La,LucideCircuitBoard:wp,LucideCitrus:xp,LucideClapperboard:Np,LucideClipboard:Ep,LucideClipboardCheck:Cp,LucideClipboardClock:$p,LucideClipboardCopy:Sp,LucideClipboardEdit:Aa,LucideClipboardList:Lp,LucideClipboardMinus:Ip,LucideClipboardPaste:Ap,LucideClipboardPen:Aa,LucideClipboardPenLine:Ia,LucideClipboardPlus:Pp,LucideClipboardSignature:Ia,LucideClipboardType:Tp,LucideClipboardX:Dp,LucideClock:ey,LucideClock1:zp,LucideClock10:Op,LucideClock11:qp,LucideClock12:jp,LucideClock2:Hp,LucideClock3:Vp,LucideClock4:Fp,LucideClock5:Bp,LucideClock6:Wp,LucideClock7:Up,LucideClock8:Rp,LucideClock9:Gp,LucideClockAlert:Kp,LucideClockArrowDown:Yp,LucideClockArrowUp:Xp,LucideClockCheck:Zp,LucideClockFading:Qp,LucideClockPlus:Jp,LucideClosedCaption:ty,LucideCloud:vy,LucideCloudAlert:oy,LucideCloudBackup:ny,LucideCloudCheck:ay,LucideCloudCog:ry,LucideCloudDownload:Pa,LucideCloudDrizzle:iy,LucideCloudFog:cy,LucideCloudHail:sy,LucideCloudLightning:dy,LucideCloudMoon:uy,LucideCloudMoonRain:ly,LucideCloudOff:hy,LucideCloudRain:yy,LucideCloudRainWind:py,LucideCloudSnow:fy,LucideCloudSun:ky,LucideCloudSunRain:my,LucideCloudSync:gy,LucideCloudUpload:Ta,LucideCloudy:by,LucideClover:_y,LucideClub:My,LucideCode:wy,LucideCode2:Da,LucideCodeSquare:Ci,LucideCodeXml:Da,LucideCodepen:xy,LucideCodesandbox:Ny,LucideCoffee:Cy,LucideCog:$y,LucideCoins:Sy,LucideColumns:Ea,LucideColumns2:Ea,LucideColumns3:za,LucideColumns3Cog:mo,LucideColumns4:Ly,LucideColumnsSettings:mo,LucideCombine:Iy,LucideCommand:Ay,LucideCompass:Py,LucideComponent:Ty,LucideComputer:Dy,LucideConciergeBell:Ey,LucideCone:zy,LucideConstruction:Oy,LucideContact:qy,LucideContact2:Oa,LucideContactRound:Oa,LucideContainer:jy,LucideContrast:Hy,LucideCookie:Vy,LucideCookingPot:Fy,LucideCopy:Yy,LucideCopyCheck:By,LucideCopyMinus:Wy,LucideCopyPlus:Uy,LucideCopySlash:Ry,LucideCopyX:Gy,LucideCopyleft:Ky,LucideCopyright:Xy,LucideCornerDownLeft:Zy,LucideCornerDownRight:Qy,LucideCornerLeftDown:Jy,LucideCornerLeftUp:ef,LucideCornerRightDown:tf,LucideCornerRightUp:of,LucideCornerUpLeft:nf,LucideCornerUpRight:af,LucideCpu:rf,LucideCreativeCommons:cf,LucideCreditCard:sf,LucideCroissant:df,LucideCrop:lf,LucideCross:uf,LucideCrosshair:pf,LucideCrown:hf,LucideCuboid:yf,LucideCupSoda:ff,LucideCurlyBraces:jn,LucideCurrency:mf,LucideCylinder:kf,LucideDam:gf,LucideDatabase:bf,LucideDatabaseBackup:vf,LucideDatabaseZap:_f,LucideDecimalsArrowLeft:Mf,LucideDecimalsArrowRight:wf,LucideDelete:xf,LucideDessert:Nf,LucideDiameter:Cf,LucideDiamond:Lf,LucideDiamondMinus:$f,LucideDiamondPercent:qa,LucideDiamondPlus:Sf,LucideDice1:If,LucideDice2:Af,LucideDice3:Pf,LucideDice4:Tf,LucideDice5:Df,LucideDice6:Ef,LucideDices:zf,LucideDiff:Of,LucideDisc:Vf,LucideDisc2:qf,LucideDisc3:jf,LucideDiscAlbum:Hf,LucideDivide:Ff,LucideDivideCircle:fa,LucideDivideSquare:Ii,LucideDna:Wf,LucideDnaOff:Bf,LucideDock:Uf,LucideDog:Rf,LucideDollarSign:Gf,LucideDonut:Kf,LucideDoorClosed:Xf,LucideDoorClosedLocked:Yf,LucideDoorOpen:Zf,LucideDot:Ks,LucideDotSquare:Ai,LucideDownload:Ys,LucideDownloadCloud:Pa,LucideDraftingCompass:Qf,LucideDrama:Jf,LucideDribbble:tm,LucideDrill:em,LucideDrone:om,LucideDroplet:am,LucideDropletOff:nm,LucideDroplets:rm,LucideDrum:im,LucideDrumstick:cm,LucideDumbbell:sm,LucideEar:dm,LucideEarOff:lm,LucideEarth:ja,LucideEarthLock:um,LucideEclipse:hm,LucideEdit:Nt,LucideEdit2:Gr,LucideEdit3:Rr,LucideEgg:fm,LucideEggFried:pm,LucideEggOff:ym,LucideEllipsis:nn,LucideEllipsisVertical:Ha,LucideEqual:gm,LucideEqualApproximately:mm,LucideEqualNot:km,LucideEqualSquare:Pi,LucideEraser:vm,LucideEthernetPort:_m,LucideEuro:bm,LucideEvCharger:Mm,LucideExpand:wm,LucideExternalLink:xm,LucideEye:$m,LucideEyeClosed:Nm,LucideEyeOff:Cm,LucideFacebook:Sm,LucideFactory:Lm,LucideFan:Im,LucideFastForward:Am,LucideFeather:Pm,LucideFence:Tm,LucideFerrisWheel:Dm,LucideFigma:Em,LucideFile:Xs,LucideFileArchive:zm,LucideFileAudio:ko,LucideFileAudio2:ko,LucideFileAxis3D:Va,LucideFileAxis3d:Va,LucideFileBadge:Fa,LucideFileBadge2:Fa,LucideFileBarChart:Ra,LucideFileBarChart2:Ua,LucideFileBox:Om,LucideFileBraces:Wa,LucideFileBracesCorner:Ba,LucideFileChartColumn:Ua,LucideFileChartColumnIncreasing:Ra,LucideFileChartLine:Ga,LucideFileChartPie:Ka,LucideFileCheck:qm,LucideFileCheck2:Ya,LucideFileCheckCorner:Ya,LucideFileClock:jm,LucideFileCode:Hm,LucideFileCode2:Xa,LucideFileCodeCorner:Xa,LucideFileCog:Za,LucideFileCog2:Za,LucideFileDiff:Bm,LucideFileDigit:Vm,LucideFileDown:Fm,LucideFileEdit:nr,LucideFileExclamationPoint:Qa,LucideFileHeadphone:ko,LucideFileHeart:Wm,LucideFileImage:Um,LucideFileInput:Rm,LucideFileJson:Wa,LucideFileJson2:Ba,LucideFileKey:Ja,LucideFileKey2:Ja,LucideFileLineChart:Ga,LucideFileLock:er,LucideFileLock2:er,LucideFileMinus:Gm,LucideFileMinus2:tr,LucideFileMinusCorner:tr,LucideFileMusic:Km,LucideFileOutput:Ym,LucideFilePen:nr,LucideFilePenLine:or,LucideFilePieChart:Ka,LucideFilePlay:ar,LucideFilePlus:Xm,LucideFilePlus2:rr,LucideFilePlusCorner:rr,LucideFileQuestion:ir,LucideFileQuestionMark:ir,LucideFileScan:Zm,LucideFileSearch:Qm,LucideFileSearch2:cr,LucideFileSearchCorner:cr,LucideFileSignal:sr,LucideFileSignature:or,LucideFileSliders:Jm,LucideFileSpreadsheet:ek,LucideFileStack:tk,LucideFileSymlink:ok,LucideFileTerminal:nk,LucideFileText:ak,LucideFileType:rk,LucideFileType2:dr,LucideFileTypeCorner:dr,LucideFileUp:ik,LucideFileUser:ck,LucideFileVideo:ar,LucideFileVideo2:lr,LucideFileVideoCamera:lr,LucideFileVolume:sk,LucideFileVolume2:sr,LucideFileWarning:Qa,LucideFileX:dk,LucideFileX2:ur,LucideFileXCorner:ur,LucideFiles:lk,LucideFilm:uk,LucideFilter:mr,LucideFilterX:fr,LucideFingerprint:hr,LucideFingerprintPattern:hr,LucideFireExtinguisher:hk,LucideFish:fk,LucideFishOff:pk,LucideFishSymbol:yk,LucideFishingHook:mk,LucideFlag:_k,LucideFlagOff:kk,LucideFlagTriangleLeft:gk,LucideFlagTriangleRight:vk,LucideFlame:Mk,LucideFlameKindling:bk,LucideFlashlight:xk,LucideFlashlightOff:wk,LucideFlaskConical:Ck,LucideFlaskConicalOff:Nk,LucideFlaskRound:$k,LucideFlipHorizontal:Lk,LucideFlipHorizontal2:Sk,LucideFlipVertical:Ak,LucideFlipVertical2:Ik,LucideFlower:Tk,LucideFlower2:Pk,LucideFocus:Dk,LucideFoldHorizontal:zk,LucideFoldVertical:Ek,LucideFolder:Qs,LucideFolderArchive:Ok,LucideFolderCheck:qk,LucideFolderClock:jk,LucideFolderClosed:Hk,LucideFolderCode:Vk,LucideFolderCog:pr,LucideFolderCog2:pr,LucideFolderDot:Fk,LucideFolderDown:Bk,LucideFolderEdit:yr,LucideFolderGit:Uk,LucideFolderGit2:Wk,LucideFolderHeart:Rk,LucideFolderInput:Gk,LucideFolderKanban:Yk,LucideFolderKey:Kk,LucideFolderLock:Xk,LucideFolderMinus:Zk,LucideFolderOpen:Zs,LucideFolderOpenDot:Qk,LucideFolderOutput:Jk,LucideFolderPen:yr,LucideFolderPlus:eg,LucideFolderRoot:tg,LucideFolderSearch:ng,LucideFolderSearch2:og,LucideFolderSymlink:ag,LucideFolderSync:rg,LucideFolderTree:ig,LucideFolderUp:cg,LucideFolderX:dg,LucideFolders:sg,LucideFootprints:lg,LucideForkKnife:Mc,LucideForkKnifeCrossed:bc,LucideForklift:ug,LucideForm:hg,LucideFormInput:Yr,LucideForward:pg,LucideFrame:yg,LucideFramer:fg,LucideFrown:mg,LucideFuel:kg,LucideFullscreen:gg,LucideFunctionSquare:Ti,LucideFunnel:mr,LucideFunnelPlus:vg,LucideFunnelX:fr,LucideGalleryHorizontal:bg,LucideGalleryHorizontalEnd:_g,LucideGalleryThumbnails:Mg,LucideGalleryVertical:xg,LucideGalleryVerticalEnd:wg,LucideGamepad:$g,LucideGamepad2:Ng,LucideGamepadDirectional:Cg,LucideGanttChart:Zn,LucideGanttChartSquare:Jt,LucideGauge:Sg,LucideGaugeCircle:ma,LucideGavel:Ig,LucideGem:Lg,LucideGeorgianLari:Pg,LucideGhost:Ag,LucideGift:Tg,LucideGitBranch:zg,LucideGitBranchMinus:Dg,LucideGitBranchPlus:Eg,LucideGitCommit:kr,LucideGitCommitHorizontal:kr,LucideGitCommitVertical:Og,LucideGitCompare:jg,LucideGitCompareArrows:qg,LucideGitFork:Hg,LucideGitGraph:Vg,LucideGitMerge:Fg,LucideGitPullRequest:Kg,LucideGitPullRequestArrow:Bg,LucideGitPullRequestClosed:Wg,LucideGitPullRequestCreate:Rg,LucideGitPullRequestCreateArrow:Ug,LucideGitPullRequestDraft:Gg,LucideGithub:Yg,LucideGitlab:Xg,LucideGlassWater:Zg,LucideGlasses:Qg,LucideGlobe:t4,LucideGlobe2:ja,LucideGlobeLock:Jg,LucideGlobeX:e4,LucideGoal:n4,LucideGpu:o4,LucideGrab:Mr,LucideGraduationCap:a4,LucideGrape:r4,LucideGrid:Qt,LucideGrid2X2:br,LucideGrid2X2Check:gr,LucideGrid2X2Plus:vr,LucideGrid2X2X:_r,LucideGrid2x2:br,LucideGrid2x2Check:gr,LucideGrid2x2Plus:vr,LucideGrid2x2X:_r,LucideGrid3X3:Qt,LucideGrid3x2:i4,LucideGrid3x3:Qt,LucideGrip:s4,LucideGripHorizontal:c4,LucideGripVertical:Jc,LucideGroup:d4,LucideGuitar:l4,LucideHam:u4,LucideHamburger:h4,LucideHammer:p4,LucideHand:v4,LucideHandCoins:y4,LucideHandFist:f4,LucideHandGrab:Mr,LucideHandHeart:m4,LucideHandHelping:wr,LucideHandMetal:k4,LucideHandPlatter:g4,LucideHandbag:_4,LucideHandshake:b4,LucideHardDrive:N4,LucideHardDriveDownload:M4,LucideHardDriveUpload:w4,LucideHardHat:x4,LucideHash:C4,LucideHatGlasses:$4,LucideHaze:S4,LucideHd:L4,LucideHdmiPort:I4,LucideHeading:O4,LucideHeading1:A4,LucideHeading2:P4,LucideHeading3:T4,LucideHeading4:D4,LucideHeading5:E4,LucideHeading6:z4,LucideHeadphoneOff:q4,LucideHeadphones:j4,LucideHeadset:H4,LucideHeart:G4,LucideHeartCrack:V4,LucideHeartHandshake:F4,LucideHeartMinus:B4,LucideHeartOff:W4,LucideHeartPlus:U4,LucideHeartPulse:R4,LucideHeater:K4,LucideHelicopter:Y4,LucideHelpCircle:fo,LucideHelpingHand:wr,LucideHexagon:X4,LucideHighlighter:Z4,LucideHistory:Q4,LucideHome:xr,LucideHop:e5,LucideHopOff:J4,LucideHospital:t5,LucideHotel:o5,LucideHourglass:n5,LucideHouse:xr,LucideHouseHeart:a5,LucideHousePlug:r5,LucideHousePlus:i5,LucideHouseWifi:c5,LucideIceCream:Cr,LucideIceCream2:Nr,LucideIceCreamBowl:Nr,LucideIceCreamCone:Cr,LucideIdCard:d5,LucideIdCardLanyard:s5,LucideImage:k5,LucideImageDown:l5,LucideImageMinus:u5,LucideImageOff:h5,LucideImagePlay:p5,LucideImagePlus:y5,LucideImageUp:f5,LucideImageUpscale:m5,LucideImages:Js,LucideImport:g5,LucideInbox:ed,LucideIndent:vo,LucideIndentDecrease:go,LucideIndentIncrease:vo,LucideIndianRupee:v5,LucideInfinity:_5,LucideInfo:td,LucideInspect:ji,LucideInspectionPanel:b5,LucideInstagram:M5,LucideItalic:w5,LucideIterationCcw:x5,LucideIterationCw:N5,LucideJapaneseYen:C5,LucideJoystick:$5,LucideKanban:S5,LucideKanbanSquare:Ei,LucideKanbanSquareDashed:Si,LucideKayak:L5,LucideKey:P5,LucideKeyRound:I5,LucideKeySquare:A5,LucideKeyboard:E5,LucideKeyboardMusic:T5,LucideKeyboardOff:D5,LucideLamp:V5,LucideLampCeiling:z5,LucideLampDesk:O5,LucideLampFloor:q5,LucideLampWallDown:j5,LucideLampWallUp:H5,LucideLandPlot:F5,LucideLandmark:B5,LucideLanguages:W5,LucideLaptop:R5,LucideLaptop2:$r,LucideLaptopMinimal:$r,LucideLaptopMinimalCheck:U5,LucideLasso:K5,LucideLassoSelect:G5,LucideLaugh:Y5,LucideLayers:Sr,LucideLayers2:X5,LucideLayers3:Sr,LucideLayersPlus:Z5,LucideLayout:Ur,LucideLayoutDashboard:Q5,LucideLayoutGrid:od,LucideLayoutList:J5,LucideLayoutPanelLeft:ev,LucideLayoutPanelTop:tv,LucideLayoutTemplate:ov,LucideLeaf:nv,LucideLeafyGreen:av,LucideLectern:rv,LucideLetterText:cc,LucideLibrary:cv,LucideLibraryBig:iv,LucideLibrarySquare:Di,LucideLifeBuoy:sv,LucideLigature:dv,LucideLightbulb:uv,LucideLightbulbOff:lv,LucideLineChart:Kn,LucideLineSquiggle:hv,LucideLink:fv,LucideLink2:yv,LucideLink2Off:pv,LucideLinkedin:mv,LucideList:Ev,LucideListCheck:kv,LucideListChecks:gv,LucideListChevronsDownUp:vv,LucideListChevronsUpDown:_v,LucideListCollapse:bv,LucideListEnd:Mv,LucideListFilter:xv,LucideListFilterPlus:wv,LucideListIndentDecrease:go,LucideListIndentIncrease:vo,LucideListMinus:Nv,LucideListMusic:Cv,LucideListOrdered:$v,LucideListPlus:Sv,LucideListRestart:Lv,LucideListStart:Iv,LucideListTodo:Av,LucideListTree:Pv,LucideListVideo:Tv,LucideListX:Dv,LucideLoader:Ov,LucideLoader2:qt,LucideLoaderCircle:qt,LucideLoaderPinwheel:zv,LucideLocate:Hv,LucideLocateFixed:qv,LucideLocateOff:jv,LucideLocationEdit:Pr,LucideLock:Fv,LucideLockKeyhole:Vv,LucideLockKeyholeOpen:Lr,LucideLockOpen:Ir,LucideLogIn:Bv,LucideLogOut:Wv,LucideLogs:Uv,LucideLollipop:Rv,LucideLuggage:Gv,LucideMSquare:zi,LucideMagnet:Kv,LucideMail:t3,LucideMailCheck:Yv,LucideMailMinus:Xv,LucideMailOpen:Zv,LucideMailPlus:Qv,LucideMailQuestion:Ar,LucideMailQuestionMark:Ar,LucideMailSearch:Jv,LucideMailWarning:e3,LucideMailX:o3,LucideMailbox:n3,LucideMails:a3,LucideMap:nd,LucideMapMinus:r3,LucideMapPin:m3,LucideMapPinCheck:c3,LucideMapPinCheckInside:i3,LucideMapPinHouse:s3,LucideMapPinMinus:l3,LucideMapPinMinusInside:d3,LucideMapPinOff:u3,LucideMapPinPen:Pr,LucideMapPinPlus:p3,LucideMapPinPlusInside:h3,LucideMapPinX:f3,LucideMapPinXInside:y3,LucideMapPinned:k3,LucideMapPlus:g3,LucideMars:_3,LucideMarsStroke:v3,LucideMartini:b3,LucideMaximize:w3,LucideMaximize2:M3,LucideMedal:x3,LucideMegaphone:C3,LucideMegaphoneOff:N3,LucideMeh:$3,LucideMemoryStick:S3,LucideMenu:L3,LucideMenuSquare:Oi,LucideMerge:I3,LucideMessageCircle:H3,LucideMessageCircleCode:A3,LucideMessageCircleDashed:P3,LucideMessageCircleHeart:T3,LucideMessageCircleMore:D3,LucideMessageCircleOff:E3,LucideMessageCirclePlus:z3,LucideMessageCircleQuestion:Tr,LucideMessageCircleQuestionMark:Tr,LucideMessageCircleReply:O3,LucideMessageCircleWarning:q3,LucideMessageCircleX:j3,LucideMessageSquare:o_,LucideMessageSquareCode:V3,LucideMessageSquareDashed:F3,LucideMessageSquareDiff:B3,LucideMessageSquareDot:W3,LucideMessageSquareHeart:U3,LucideMessageSquareLock:R3,LucideMessageSquareMore:K3,LucideMessageSquareOff:G3,LucideMessageSquarePlus:Y3,LucideMessageSquareQuote:X3,LucideMessageSquareReply:Z3,LucideMessageSquareShare:J3,LucideMessageSquareText:Q3,LucideMessageSquareWarning:e_,LucideMessageSquareX:t_,LucideMessagesSquare:n_,LucideMic:r_,LucideMic2:Dr,LucideMicOff:a_,LucideMicVocal:Dr,LucideMicrochip:i_,LucideMicroscope:c_,LucideMicrowave:s_,LucideMilestone:d_,LucideMilk:u_,LucideMilkOff:l_,LucideMinimize:p_,LucideMinimize2:h_,LucideMinus:ad,LucideMinusCircle:ka,LucideMinusSquare:qi,LucideMonitor:S_,LucideMonitorCheck:y_,LucideMonitorCloud:f_,LucideMonitorCog:m_,LucideMonitorDot:k_,LucideMonitorDown:g_,LucideMonitorOff:v_,LucideMonitorPause:__,LucideMonitorPlay:b_,LucideMonitorSmartphone:M_,LucideMonitorSpeaker:w_,LucideMonitorStop:x_,LucideMonitorUp:C_,LucideMonitorX:N_,LucideMoon:L_,LucideMoonStar:$_,LucideMoreHorizontal:nn,LucideMoreVertical:Ha,LucideMotorbike:I_,LucideMountain:P_,LucideMountainSnow:A_,LucideMouse:j_,LucideMouseOff:T_,LucideMousePointer:q_,LucideMousePointer2:E_,LucideMousePointer2Off:D_,LucideMousePointerBan:z_,LucideMousePointerClick:O_,LucideMousePointerSquareDashed:$i,LucideMove:Z_,LucideMove3D:Er,LucideMove3d:Er,LucideMoveDiagonal:V_,LucideMoveDiagonal2:H_,LucideMoveDown:W_,LucideMoveDownLeft:F_,LucideMoveDownRight:B_,LucideMoveHorizontal:U_,LucideMoveLeft:R_,LucideMoveRight:G_,LucideMoveUp:Y_,LucideMoveUpLeft:K_,LucideMoveUpRight:X_,LucideMoveVertical:Q_,LucideMusic:o8,LucideMusic2:J_,LucideMusic3:e8,LucideMusic4:t8,LucideNavigation:i8,LucideNavigation2:a8,LucideNavigation2Off:n8,LucideNavigationOff:r8,LucideNetwork:c8,LucideNewspaper:s8,LucideNfc:d8,LucideNonBinary:l8,LucideNotebook:y8,LucideNotebookPen:u8,LucideNotebookTabs:h8,LucideNotebookText:p8,LucideNotepadText:m8,LucideNotepadTextDashed:f8,LucideNut:g8,LucideNutOff:k8,LucideOctagon:_8,LucideOctagonAlert:zr,LucideOctagonMinus:v8,LucideOctagonPause:Or,LucideOctagonX:an,LucideOmega:b8,LucideOption:M8,LucideOrbit:w8,LucideOrigami:x8,LucideOutdent:go,LucidePackage:P8,LucidePackage2:N8,LucidePackageCheck:C8,LucidePackageMinus:$8,LucidePackageOpen:S8,LucidePackagePlus:L8,LucidePackageSearch:I8,LucidePackageX:A8,LucidePaintBucket:T8,LucidePaintRoller:D8,LucidePaintbrush:E8,LucidePaintbrush2:qr,LucidePaintbrushVertical:qr,LucidePalette:z8,LucidePalmtree:uc,LucidePanda:O8,LucidePanelBottom:H8,LucidePanelBottomClose:q8,LucidePanelBottomDashed:jr,LucidePanelBottomInactive:jr,LucidePanelBottomOpen:j8,LucidePanelLeft:rn,LucidePanelLeftClose:Hr,LucidePanelLeftDashed:Vr,LucidePanelLeftInactive:Vr,LucidePanelLeftOpen:Fr,LucidePanelLeftRightDashed:V8,LucidePanelRight:W8,LucidePanelRightClose:F8,LucidePanelRightDashed:Br,LucidePanelRightInactive:Br,LucidePanelRightOpen:B8,LucidePanelTop:K8,LucidePanelTopBottomDashed:U8,LucidePanelTopClose:R8,LucidePanelTopDashed:Wr,LucidePanelTopInactive:Wr,LucidePanelTopOpen:G8,LucidePanelsLeftBottom:Y8,LucidePanelsLeftRight:za,LucidePanelsRightBottom:X8,LucidePanelsTopBottom:Qr,LucidePanelsTopLeft:Ur,LucidePaperclip:Z8,LucideParentheses:Q8,LucideParkingCircle:va,LucideParkingCircleOff:ga,LucideParkingMeter:J8,LucideParkingSquare:Vi,LucideParkingSquareOff:Hi,LucidePartyPopper:eb,LucidePause:tb,LucidePauseCircle:_a,LucidePauseOctagon:Or,LucidePawPrint:ob,LucidePcCase:nb,LucidePen:Gr,LucidePenBox:Nt,LucidePenLine:Rr,LucidePenOff:ab,LucidePenSquare:Nt,LucidePenTool:rb,LucidePencil:db,LucidePencilLine:ib,LucidePencilOff:cb,LucidePencilRuler:sb,LucidePentagon:lb,LucidePercent:ub,LucidePercentCircle:ba,LucidePercentDiamond:qa,LucidePercentSquare:Fi,LucidePersonStanding:hb,LucidePhilippinePeso:pb,LucidePhone:_b,LucidePhoneCall:yb,LucidePhoneForwarded:fb,LucidePhoneIncoming:mb,LucidePhoneMissed:kb,LucidePhoneOff:gb,LucidePhoneOutgoing:vb,LucidePi:bb,LucidePiSquare:Bi,LucidePiano:Mb,LucidePickaxe:wb,LucidePictureInPicture:Nb,LucidePictureInPicture2:xb,LucidePieChart:Qn,LucidePiggyBank:Cb,LucidePilcrow:Lb,LucidePilcrowLeft:$b,LucidePilcrowRight:Sb,LucidePilcrowSquare:Wi,LucidePill:Ab,LucidePillBottle:Ib,LucidePin:Tb,LucidePinOff:Pb,LucidePipette:Db,LucidePizza:Eb,LucidePlane:qb,LucidePlaneLanding:zb,LucidePlaneTakeoff:Ob,LucidePlay:jb,LucidePlayCircle:wa,LucidePlaySquare:Ui,LucidePlug:Vb,LucidePlug2:Hb,LucidePlugZap:Kr,LucidePlugZap2:Kr,LucidePlus:es,LucidePlusCircle:Ma,LucidePlusSquare:Ri,LucidePocket:Fb,LucidePocketKnife:Bb,LucidePodcast:Wb,LucidePointer:Rb,LucidePointerOff:Ub,LucidePopcorn:Gb,LucidePopsicle:Kb,LucidePoundSterling:Yb,LucidePower:Zb,LucidePowerCircle:xa,LucidePowerOff:Xb,LucidePowerSquare:Gi,LucidePresentation:Qb,LucidePrinter:o6,LucidePrinterCheck:Jb,LucidePrinterX:e6,LucideProjector:t6,LucideProportions:n6,LucidePuzzle:a6,LucidePyramid:r6,LucideQrCode:i6,LucideQuote:c6,LucideRabbit:s6,LucideRadar:d6,LucideRadiation:u6,LucideRadical:l6,LucideRadio:y6,LucideRadioReceiver:h6,LucideRadioTower:p6,LucideRadius:f6,LucideRailSymbol:k6,LucideRainbow:m6,LucideRat:g6,LucideRatio:v6,LucideReceipt:S6,LucideReceiptCent:_6,LucideReceiptEuro:b6,LucideReceiptIndianRupee:M6,LucideReceiptJapaneseYen:w6,LucideReceiptPoundSterling:x6,LucideReceiptRussianRuble:N6,LucideReceiptSwissFranc:C6,LucideReceiptText:$6,LucideReceiptTurkishLira:L6,LucideRectangleCircle:I6,LucideRectangleEllipsis:Yr,LucideRectangleGoggles:A6,LucideRectangleHorizontal:P6,LucideRectangleVertical:T6,LucideRecycle:z6,LucideRedo:O6,LucideRedo2:D6,LucideRedoDot:E6,LucideRefreshCcw:j6,LucideRefreshCcwDot:q6,LucideRefreshCw:V6,LucideRefreshCwOff:H6,LucideRefrigerator:F6,LucideRegex:B6,LucideRemoveFormatting:W6,LucideRepeat:G6,LucideRepeat1:U6,LucideRepeat2:R6,LucideReplace:Y6,LucideReplaceAll:K6,LucideReply:Z6,LucideReplyAll:X6,LucideRewind:Q6,LucideRibbon:J6,LucideRocket:rd,LucideRockingChair:eM,LucideRollerCoaster:tM,LucideRose:oM,LucideRotate3D:Xr,LucideRotate3d:Xr,LucideRotateCcw:rM,LucideRotateCcwKey:nM,LucideRotateCcwSquare:aM,LucideRotateCw:cM,LucideRotateCwSquare:iM,LucideRoute:dM,LucideRouteOff:sM,LucideRouter:lM,LucideRows:Zr,LucideRows2:Zr,LucideRows3:Qr,LucideRows4:uM,LucideRss:hM,LucideRuler:kM,LucideRulerDimensionLine:pM,LucideRussianRuble:yM,LucideSailboat:fM,LucideSalad:mM,LucideSandwich:gM,LucideSatellite:_M,LucideSatelliteDish:vM,LucideSaudiRiyal:bM,LucideSave:xM,LucideSaveAll:wM,LucideSaveOff:MM,LucideScale:NM,LucideScale3D:Jr,LucideScale3d:Jr,LucideScaling:CM,LucideScan:DM,LucideScanBarcode:$M,LucideScanEye:SM,LucideScanFace:LM,LucideScanHeart:IM,LucideScanLine:AM,LucideScanQrCode:PM,LucideScanSearch:TM,LucideScanText:EM,LucideScatterChart:Jn,LucideSchool:OM,LucideSchool2:pc,LucideScissors:qM,LucideScissorsLineDashed:zM,LucideScissorsSquare:Ki,LucideScissorsSquareDashedBottom:vi,LucideScooter:jM,LucideScreenShare:VM,LucideScreenShareOff:HM,LucideScroll:FM,LucideScrollText:WM,LucideSearch:cn,LucideSearchAlert:BM,LucideSearchCheck:UM,LucideSearchCode:RM,LucideSearchSlash:GM,LucideSearchX:KM,LucideSection:YM,LucideSend:ZM,LucideSendHorizonal:ei,LucideSendHorizontal:ei,LucideSendToBack:XM,LucideSeparatorHorizontal:QM,LucideSeparatorVertical:JM,LucideServer:n7,LucideServerCog:e7,LucideServerCrash:t7,LucideServerOff:o7,LucideSettings:r7,LucideSettings2:a7,LucideShapes:i7,LucideShare:s7,LucideShare2:c7,LucideSheet:d7,LucideShell:l7,LucideShield:_7,LucideShieldAlert:u7,LucideShieldBan:h7,LucideShieldCheck:p7,LucideShieldClose:oi,LucideShieldEllipsis:f7,LucideShieldHalf:y7,LucideShieldMinus:m7,LucideShieldOff:k7,LucideShieldPlus:g7,LucideShieldQuestion:ti,LucideShieldQuestionMark:ti,LucideShieldUser:v7,LucideShieldX:oi,LucideShip:M7,LucideShipWheel:b7,LucideShirt:w7,LucideShoppingBag:x7,LucideShoppingBasket:N7,LucideShoppingCart:C7,LucideShovel:$7,LucideShowerHead:S7,LucideShredder:L7,LucideShrimp:I7,LucideShrink:A7,LucideShrub:P7,LucideShuffle:T7,LucideSidebar:rn,LucideSidebarClose:Hr,LucideSidebarOpen:Fr,LucideSigma:D7,LucideSigmaSquare:Yi,LucideSignal:j7,LucideSignalHigh:E7,LucideSignalLow:z7,LucideSignalMedium:O7,LucideSignalZero:q7,LucideSignature:H7,LucideSignpost:F7,LucideSignpostBig:V7,LucideSiren:B7,LucideSkipBack:W7,LucideSkipForward:U7,LucideSkull:R7,LucideSlack:G7,LucideSlash:K7,LucideSlashSquare:Xi,LucideSlice:Y7,LucideSliders:ni,LucideSlidersHorizontal:id,LucideSlidersVertical:ni,LucideSmartphone:J7,LucideSmartphoneCharging:X7,LucideSmartphoneNfc:Z7,LucideSmile:ew,LucideSmilePlus:Q7,LucideSnail:tw,LucideSnowflake:ow,LucideSoapDispenserDroplet:nw,LucideSofa:aw,LucideSolarPanel:rw,LucideSortAsc:An,LucideSortDesc:Sn,LucideSoup:iw,LucideSpace:cw,LucideSpade:sw,LucideSparkle:dw,LucideSparkles:ai,LucideSpeaker:lw,LucideSpeech:uw,LucideSpellCheck:pw,LucideSpellCheck2:hw,LucideSpline:fw,LucideSplinePointer:yw,LucideSplit:kw,LucideSplitSquareHorizontal:Zi,LucideSplitSquareVertical:Qi,LucideSpool:mw,LucideSpotlight:gw,LucideSprayCan:vw,LucideSprout:_w,LucideSquare:Aw,LucideSquareActivity:ri,LucideSquareArrowDown:ci,LucideSquareArrowDownLeft:ii,LucideSquareArrowDownRight:si,LucideSquareArrowLeft:di,LucideSquareArrowOutDownLeft:li,LucideSquareArrowOutDownRight:ui,LucideSquareArrowOutUpLeft:hi,LucideSquareArrowOutUpRight:pi,LucideSquareArrowRight:yi,LucideSquareArrowUp:ki,LucideSquareArrowUpLeft:fi,LucideSquareArrowUpRight:mi,LucideSquareAsterisk:gi,LucideSquareBottomDashedScissors:vi,LucideSquareChartGantt:Jt,LucideSquareCheck:bi,LucideSquareCheckBig:_i,LucideSquareChevronDown:Mi,LucideSquareChevronLeft:wi,LucideSquareChevronRight:xi,LucideSquareChevronUp:Ni,LucideSquareCode:Ci,LucideSquareDashed:Li,LucideSquareDashedBottom:Mw,LucideSquareDashedBottomCode:bw,LucideSquareDashedKanban:Si,LucideSquareDashedMousePointer:$i,LucideSquareDashedTopSolid:ww,LucideSquareDivide:Ii,LucideSquareDot:Ai,LucideSquareEqual:Pi,LucideSquareFunction:Ti,LucideSquareGanttChart:Jt,LucideSquareKanban:Ei,LucideSquareLibrary:Di,LucideSquareM:zi,LucideSquareMenu:Oi,LucideSquareMinus:qi,LucideSquareMousePointer:ji,LucideSquareParking:Vi,LucideSquareParkingOff:Hi,LucideSquarePause:xw,LucideSquarePen:Nt,LucideSquarePercent:Fi,LucideSquarePi:Bi,LucideSquarePilcrow:Wi,LucideSquarePlay:Ui,LucideSquarePlus:Ri,LucideSquarePower:Gi,LucideSquareRadical:Nw,LucideSquareRoundCorner:Cw,LucideSquareScissors:Ki,LucideSquareSigma:Yi,LucideSquareSlash:Xi,LucideSquareSplitHorizontal:Zi,LucideSquareSplitVertical:Qi,LucideSquareSquare:$w,LucideSquareStack:Sw,LucideSquareStar:Lw,LucideSquareStop:Iw,LucideSquareTerminal:Ji,LucideSquareUser:ec,LucideSquareUserRound:tc,LucideSquareX:oc,LucideSquaresExclude:Pw,LucideSquaresIntersect:Tw,LucideSquaresSubtract:Ew,LucideSquaresUnite:Dw,LucideSquircle:Ow,LucideSquircleDashed:zw,LucideSquirrel:qw,LucideStamp:jw,LucideStar:Fw,LucideStarHalf:Vw,LucideStarOff:Hw,LucideStars:ai,LucideStepBack:Bw,LucideStepForward:Ww,LucideStethoscope:Uw,LucideSticker:Rw,LucideStickyNote:Gw,LucideStone:Kw,LucideStopCircle:Ca,LucideStore:Yw,LucideStretchHorizontal:Xw,LucideStretchVertical:Zw,LucideStrikethrough:Qw,LucideSubscript:Jw,LucideSubtitles:Hn,LucideSun:ax,LucideSunDim:ex,LucideSunMedium:ox,LucideSunMoon:tx,LucideSunSnow:nx,LucideSunrise:rx,LucideSunset:ix,LucideSuperscript:cx,LucideSwatchBook:sx,LucideSwissFranc:dx,LucideSwitchCamera:lx,LucideSword:ux,LucideSwords:hx,LucideSyringe:px,LucideTable:bx,LucideTable2:yx,LucideTableCellsMerge:fx,LucideTableCellsSplit:mx,LucideTableColumnsSplit:kx,LucideTableConfig:mo,LucideTableOfContents:_x,LucideTableProperties:gx,LucideTableRowsSplit:vx,LucideTablet:wx,LucideTabletSmartphone:Mx,LucideTablets:Nx,LucideTag:xx,LucideTags:Cx,LucideTally1:$x,LucideTally2:Sx,LucideTally3:Lx,LucideTally4:Ix,LucideTally5:Ax,LucideTangent:Px,LucideTarget:Tx,LucideTelescope:Dx,LucideTent:zx,LucideTentTree:Ex,LucideTerminal:Ox,LucideTerminalSquare:Ji,LucideTestTube:qx,LucideTestTube2:nc,LucideTestTubeDiagonal:nc,LucideTestTubes:jx,LucideText:_o,LucideTextAlignCenter:ac,LucideTextAlignEnd:rc,LucideTextAlignJustify:ic,LucideTextAlignStart:_o,LucideTextCursor:Vx,LucideTextCursorInput:Hx,LucideTextInitial:cc,LucideTextQuote:Fx,LucideTextSearch:Bx,LucideTextSelect:sc,LucideTextSelection:sc,LucideTextWrap:dc,LucideTheater:Wx,LucideThermometer:Gx,LucideThermometerSnowflake:Ux,LucideThermometerSun:Rx,LucideThumbsDown:Kx,LucideThumbsUp:Yx,LucideTicket:o9,LucideTicketCheck:Xx,LucideTicketMinus:Zx,LucideTicketPercent:Qx,LucideTicketPlus:Jx,LucideTicketSlash:e9,LucideTicketX:t9,LucideTickets:a9,LucideTicketsPlane:n9,LucideTimer:i9,LucideTimerOff:r9,LucideTimerReset:c9,LucideToggleLeft:s9,LucideToggleRight:d9,LucideToilet:l9,LucideToolCase:u9,LucideToolbox:p9,LucideTornado:h9,LucideTorus:y9,LucideTouchpad:m9,LucideTouchpadOff:f9,LucideTowerControl:k9,LucideToyBrick:g9,LucideTractor:v9,LucideTrafficCone:_9,LucideTrain:lc,LucideTrainFront:M9,LucideTrainFrontTunnel:b9,LucideTrainTrack:w9,LucideTramFront:lc,LucideTransgender:x9,LucideTrash:N9,LucideTrash2:ts,LucideTreeDeciduous:C9,LucideTreePalm:uc,LucideTreePine:$9,LucideTrees:S9,LucideTrello:L9,LucideTrendingDown:cd,LucideTrendingUp:sd,LucideTrendingUpDown:I9,LucideTriangle:T9,LucideTriangleAlert:sn,LucideTriangleDashed:A9,LucideTriangleRight:P9,LucideTrophy:D9,LucideTruck:z9,LucideTruckElectric:E9,LucideTurkishLira:O9,LucideTurntable:q9,LucideTurtle:j9,LucideTv:V9,LucideTv2:hc,LucideTvMinimal:hc,LucideTvMinimalPlay:H9,LucideTwitch:F9,LucideTwitter:B9,LucideType:W9,LucideTypeOutline:U9,LucideUmbrella:G9,LucideUmbrellaOff:R9,LucideUnderline:K9,LucideUndo:Z9,LucideUndo2:Y9,LucideUndoDot:X9,LucideUnfoldHorizontal:Q9,LucideUnfoldVertical:J9,LucideUngroup:eN,LucideUniversity:pc,LucideUnlink:oN,LucideUnlink2:tN,LucideUnlock:Ir,LucideUnlockKeyhole:Lr,LucideUnplug:nN,LucideUpload:dd,LucideUploadCloud:Ta,LucideUsb:aN,LucideUser:mN,LucideUser2:vc,LucideUserCheck:rN,LucideUserCheck2:yc,LucideUserCircle:Sa,LucideUserCircle2:$a,LucideUserCog:iN,LucideUserCog2:fc,LucideUserLock:cN,LucideUserMinus:sN,LucideUserMinus2:mc,LucideUserPen:dN,LucideUserPlus:lN,LucideUserPlus2:kc,LucideUserRound:vc,LucideUserRoundCheck:yc,LucideUserRoundCog:fc,LucideUserRoundMinus:mc,LucideUserRoundPen:uN,LucideUserRoundPlus:kc,LucideUserRoundSearch:hN,LucideUserRoundX:gc,LucideUserSearch:pN,LucideUserSquare:ec,LucideUserSquare2:tc,LucideUserStar:yN,LucideUserX:fN,LucideUserX2:gc,LucideUsers:kN,LucideUsers2:_c,LucideUsersRound:_c,LucideUtensils:Mc,LucideUtensilsCrossed:bc,LucideUtilityPole:gN,LucideVan:vN,LucideVariable:_N,LucideVault:bN,LucideVectorSquare:MN,LucideVegan:wN,LucideVenetianMask:xN,LucideVenus:CN,LucideVenusAndMars:NN,LucideVerified:Dn,LucideVibrate:SN,LucideVibrateOff:$N,LucideVideo:AN,LucideVideoOff:LN,LucideVideotape:IN,LucideView:PN,LucideVoicemail:TN,LucideVolleyball:DN,LucideVolume:jN,LucideVolume1:EN,LucideVolume2:zN,LucideVolumeOff:ON,LucideVolumeX:qN,LucideVote:HN,LucideWallet:FN,LucideWallet2:wc,LucideWalletCards:VN,LucideWalletMinimal:wc,LucideWallpaper:BN,LucideWand:WN,LucideWand2:xc,LucideWandSparkles:xc,LucideWarehouse:UN,LucideWashingMachine:RN,LucideWatch:KN,LucideWaves:ZN,LucideWavesArrowDown:GN,LucideWavesArrowUp:YN,LucideWavesLadder:XN,LucideWaypoints:QN,LucideWebcam:JN,LucideWebhook:tC,LucideWebhookOff:eC,LucideWeight:nC,LucideWeightTilde:oC,LucideWheat:rC,LucideWheatOff:aC,LucideWholeWord:iC,LucideWifi:yC,LucideWifiCog:cC,LucideWifiHigh:sC,LucideWifiLow:dC,LucideWifiOff:lC,LucideWifiPen:uC,LucideWifiSync:hC,LucideWifiZero:pC,LucideWind:mC,LucideWindArrowDown:fC,LucideWine:gC,LucideWineOff:kC,LucideWorkflow:vC,LucideWorm:_C,LucideWrapText:dc,LucideWrench:bC,LucideX:bo,LucideXCircle:La,LucideXOctagon:an,LucideXSquare:oc,LucideYoutube:wC,LucideZap:xC,LucideZapOff:MC,LucideZoomIn:NC,LucideZoomOut:CC,Luggage:Gv,LuggageIcon:Gv,MSquare:zi,MSquareIcon:zi,Magnet:Kv,MagnetIcon:Kv,Mail:t3,MailCheck:Yv,MailCheckIcon:Yv,MailIcon:t3,MailMinus:Xv,MailMinusIcon:Xv,MailOpen:Zv,MailOpenIcon:Zv,MailPlus:Qv,MailPlusIcon:Qv,MailQuestion:Ar,MailQuestionIcon:Ar,MailQuestionMark:Ar,MailQuestionMarkIcon:Ar,MailSearch:Jv,MailSearchIcon:Jv,MailWarning:e3,MailWarningIcon:e3,MailX:o3,MailXIcon:o3,Mailbox:n3,MailboxIcon:n3,Mails:a3,MailsIcon:a3,Map:nd,MapIcon:nd,MapMinus:r3,MapMinusIcon:r3,MapPin:m3,MapPinCheck:c3,MapPinCheckIcon:c3,MapPinCheckInside:i3,MapPinCheckInsideIcon:i3,MapPinHouse:s3,MapPinHouseIcon:s3,MapPinIcon:m3,MapPinMinus:l3,MapPinMinusIcon:l3,MapPinMinusInside:d3,MapPinMinusInsideIcon:d3,MapPinOff:u3,MapPinOffIcon:u3,MapPinPen:Pr,MapPinPenIcon:Pr,MapPinPlus:p3,MapPinPlusIcon:p3,MapPinPlusInside:h3,MapPinPlusInsideIcon:h3,MapPinX:f3,MapPinXIcon:f3,MapPinXInside:y3,MapPinXInsideIcon:y3,MapPinned:k3,MapPinnedIcon:k3,MapPlus:g3,MapPlusIcon:g3,Mars:_3,MarsIcon:_3,MarsStroke:v3,MarsStrokeIcon:v3,Martini:b3,MartiniIcon:b3,Maximize:w3,Maximize2:M3,Maximize2Icon:M3,MaximizeIcon:w3,Medal:x3,MedalIcon:x3,Megaphone:C3,MegaphoneIcon:C3,MegaphoneOff:N3,MegaphoneOffIcon:N3,Meh:$3,MehIcon:$3,MemoryStick:S3,MemoryStickIcon:S3,Menu:L3,MenuIcon:L3,MenuSquare:Oi,MenuSquareIcon:Oi,Merge:I3,MergeIcon:I3,MessageCircle:H3,MessageCircleCode:A3,MessageCircleCodeIcon:A3,MessageCircleDashed:P3,MessageCircleDashedIcon:P3,MessageCircleHeart:T3,MessageCircleHeartIcon:T3,MessageCircleIcon:H3,MessageCircleMore:D3,MessageCircleMoreIcon:D3,MessageCircleOff:E3,MessageCircleOffIcon:E3,MessageCirclePlus:z3,MessageCirclePlusIcon:z3,MessageCircleQuestion:Tr,MessageCircleQuestionIcon:Tr,MessageCircleQuestionMark:Tr,MessageCircleQuestionMarkIcon:Tr,MessageCircleReply:O3,MessageCircleReplyIcon:O3,MessageCircleWarning:q3,MessageCircleWarningIcon:q3,MessageCircleX:j3,MessageCircleXIcon:j3,MessageSquare:o_,MessageSquareCode:V3,MessageSquareCodeIcon:V3,MessageSquareDashed:F3,MessageSquareDashedIcon:F3,MessageSquareDiff:B3,MessageSquareDiffIcon:B3,MessageSquareDot:W3,MessageSquareDotIcon:W3,MessageSquareHeart:U3,MessageSquareHeartIcon:U3,MessageSquareIcon:o_,MessageSquareLock:R3,MessageSquareLockIcon:R3,MessageSquareMore:K3,MessageSquareMoreIcon:K3,MessageSquareOff:G3,MessageSquareOffIcon:G3,MessageSquarePlus:Y3,MessageSquarePlusIcon:Y3,MessageSquareQuote:X3,MessageSquareQuoteIcon:X3,MessageSquareReply:Z3,MessageSquareReplyIcon:Z3,MessageSquareShare:J3,MessageSquareShareIcon:J3,MessageSquareText:Q3,MessageSquareTextIcon:Q3,MessageSquareWarning:e_,MessageSquareWarningIcon:e_,MessageSquareX:t_,MessageSquareXIcon:t_,MessagesSquare:n_,MessagesSquareIcon:n_,Mic:r_,Mic2:Dr,Mic2Icon:Dr,MicIcon:r_,MicOff:a_,MicOffIcon:a_,MicVocal:Dr,MicVocalIcon:Dr,Microchip:i_,MicrochipIcon:i_,Microscope:c_,MicroscopeIcon:c_,Microwave:s_,MicrowaveIcon:s_,Milestone:d_,MilestoneIcon:d_,Milk:u_,MilkIcon:u_,MilkOff:l_,MilkOffIcon:l_,Minimize:p_,Minimize2:h_,Minimize2Icon:h_,MinimizeIcon:p_,Minus:ad,MinusCircle:ka,MinusCircleIcon:ka,MinusIcon:ad,MinusSquare:qi,MinusSquareIcon:qi,Monitor:S_,MonitorCheck:y_,MonitorCheckIcon:y_,MonitorCloud:f_,MonitorCloudIcon:f_,MonitorCog:m_,MonitorCogIcon:m_,MonitorDot:k_,MonitorDotIcon:k_,MonitorDown:g_,MonitorDownIcon:g_,MonitorIcon:S_,MonitorOff:v_,MonitorOffIcon:v_,MonitorPause:__,MonitorPauseIcon:__,MonitorPlay:b_,MonitorPlayIcon:b_,MonitorSmartphone:M_,MonitorSmartphoneIcon:M_,MonitorSpeaker:w_,MonitorSpeakerIcon:w_,MonitorStop:x_,MonitorStopIcon:x_,MonitorUp:C_,MonitorUpIcon:C_,MonitorX:N_,MonitorXIcon:N_,Moon:L_,MoonIcon:L_,MoonStar:$_,MoonStarIcon:$_,MoreHorizontal:nn,MoreHorizontalIcon:nn,MoreVertical:Ha,MoreVerticalIcon:Ha,Motorbike:I_,MotorbikeIcon:I_,Mountain:P_,MountainIcon:P_,MountainSnow:A_,MountainSnowIcon:A_,Mouse:j_,MouseIcon:j_,MouseOff:T_,MouseOffIcon:T_,MousePointer:q_,MousePointer2:E_,MousePointer2Icon:E_,MousePointer2Off:D_,MousePointer2OffIcon:D_,MousePointerBan:z_,MousePointerBanIcon:z_,MousePointerClick:O_,MousePointerClickIcon:O_,MousePointerIcon:q_,MousePointerSquareDashed:$i,MousePointerSquareDashedIcon:$i,Move:Z_,Move3D:Er,Move3DIcon:Er,Move3d:Er,Move3dIcon:Er,MoveDiagonal:V_,MoveDiagonal2:H_,MoveDiagonal2Icon:H_,MoveDiagonalIcon:V_,MoveDown:W_,MoveDownIcon:W_,MoveDownLeft:F_,MoveDownLeftIcon:F_,MoveDownRight:B_,MoveDownRightIcon:B_,MoveHorizontal:U_,MoveHorizontalIcon:U_,MoveIcon:Z_,MoveLeft:R_,MoveLeftIcon:R_,MoveRight:G_,MoveRightIcon:G_,MoveUp:Y_,MoveUpIcon:Y_,MoveUpLeft:K_,MoveUpLeftIcon:K_,MoveUpRight:X_,MoveUpRightIcon:X_,MoveVertical:Q_,MoveVerticalIcon:Q_,Music:o8,Music2:J_,Music2Icon:J_,Music3:e8,Music3Icon:e8,Music4:t8,Music4Icon:t8,MusicIcon:o8,Navigation:i8,Navigation2:a8,Navigation2Icon:a8,Navigation2Off:n8,Navigation2OffIcon:n8,NavigationIcon:i8,NavigationOff:r8,NavigationOffIcon:r8,Network:c8,NetworkIcon:c8,Newspaper:s8,NewspaperIcon:s8,Nfc:d8,NfcIcon:d8,NonBinary:l8,NonBinaryIcon:l8,Notebook:y8,NotebookIcon:y8,NotebookPen:u8,NotebookPenIcon:u8,NotebookTabs:h8,NotebookTabsIcon:h8,NotebookText:p8,NotebookTextIcon:p8,NotepadText:m8,NotepadTextDashed:f8,NotepadTextDashedIcon:f8,NotepadTextIcon:m8,Nut:g8,NutIcon:g8,NutOff:k8,NutOffIcon:k8,Octagon:_8,OctagonAlert:zr,OctagonAlertIcon:zr,OctagonIcon:_8,OctagonMinus:v8,OctagonMinusIcon:v8,OctagonPause:Or,OctagonPauseIcon:Or,OctagonX:an,OctagonXIcon:an,Omega:b8,OmegaIcon:b8,Option:M8,OptionIcon:M8,Orbit:w8,OrbitIcon:w8,Origami:x8,OrigamiIcon:x8,Outdent:go,OutdentIcon:go,Package:P8,Package2:N8,Package2Icon:N8,PackageCheck:C8,PackageCheckIcon:C8,PackageIcon:P8,PackageMinus:$8,PackageMinusIcon:$8,PackageOpen:S8,PackageOpenIcon:S8,PackagePlus:L8,PackagePlusIcon:L8,PackageSearch:I8,PackageSearchIcon:I8,PackageX:A8,PackageXIcon:A8,PaintBucket:T8,PaintBucketIcon:T8,PaintRoller:D8,PaintRollerIcon:D8,Paintbrush:E8,Paintbrush2:qr,Paintbrush2Icon:qr,PaintbrushIcon:E8,PaintbrushVertical:qr,PaintbrushVerticalIcon:qr,Palette:z8,PaletteIcon:z8,Palmtree:uc,PalmtreeIcon:uc,Panda:O8,PandaIcon:O8,PanelBottom:H8,PanelBottomClose:q8,PanelBottomCloseIcon:q8,PanelBottomDashed:jr,PanelBottomDashedIcon:jr,PanelBottomIcon:H8,PanelBottomInactive:jr,PanelBottomInactiveIcon:jr,PanelBottomOpen:j8,PanelBottomOpenIcon:j8,PanelLeft:rn,PanelLeftClose:Hr,PanelLeftCloseIcon:Hr,PanelLeftDashed:Vr,PanelLeftDashedIcon:Vr,PanelLeftIcon:rn,PanelLeftInactive:Vr,PanelLeftInactiveIcon:Vr,PanelLeftOpen:Fr,PanelLeftOpenIcon:Fr,PanelLeftRightDashed:V8,PanelLeftRightDashedIcon:V8,PanelRight:W8,PanelRightClose:F8,PanelRightCloseIcon:F8,PanelRightDashed:Br,PanelRightDashedIcon:Br,PanelRightIcon:W8,PanelRightInactive:Br,PanelRightInactiveIcon:Br,PanelRightOpen:B8,PanelRightOpenIcon:B8,PanelTop:K8,PanelTopBottomDashed:U8,PanelTopBottomDashedIcon:U8,PanelTopClose:R8,PanelTopCloseIcon:R8,PanelTopDashed:Wr,PanelTopDashedIcon:Wr,PanelTopIcon:K8,PanelTopInactive:Wr,PanelTopInactiveIcon:Wr,PanelTopOpen:G8,PanelTopOpenIcon:G8,PanelsLeftBottom:Y8,PanelsLeftBottomIcon:Y8,PanelsLeftRight:za,PanelsLeftRightIcon:za,PanelsRightBottom:X8,PanelsRightBottomIcon:X8,PanelsTopBottom:Qr,PanelsTopBottomIcon:Qr,PanelsTopLeft:Ur,PanelsTopLeftIcon:Ur,Paperclip:Z8,PaperclipIcon:Z8,Parentheses:Q8,ParenthesesIcon:Q8,ParkingCircle:va,ParkingCircleIcon:va,ParkingCircleOff:ga,ParkingCircleOffIcon:ga,ParkingMeter:J8,ParkingMeterIcon:J8,ParkingSquare:Vi,ParkingSquareIcon:Vi,ParkingSquareOff:Hi,ParkingSquareOffIcon:Hi,PartyPopper:eb,PartyPopperIcon:eb,Pause:tb,PauseCircle:_a,PauseCircleIcon:_a,PauseIcon:tb,PauseOctagon:Or,PauseOctagonIcon:Or,PawPrint:ob,PawPrintIcon:ob,PcCase:nb,PcCaseIcon:nb,Pen:Gr,PenBox:Nt,PenBoxIcon:Nt,PenIcon:Gr,PenLine:Rr,PenLineIcon:Rr,PenOff:ab,PenOffIcon:ab,PenSquare:Nt,PenSquareIcon:Nt,PenTool:rb,PenToolIcon:rb,Pencil:db,PencilIcon:db,PencilLine:ib,PencilLineIcon:ib,PencilOff:cb,PencilOffIcon:cb,PencilRuler:sb,PencilRulerIcon:sb,Pentagon:lb,PentagonIcon:lb,Percent:ub,PercentCircle:ba,PercentCircleIcon:ba,PercentDiamond:qa,PercentDiamondIcon:qa,PercentIcon:ub,PercentSquare:Fi,PercentSquareIcon:Fi,PersonStanding:hb,PersonStandingIcon:hb,PhilippinePeso:pb,PhilippinePesoIcon:pb,Phone:_b,PhoneCall:yb,PhoneCallIcon:yb,PhoneForwarded:fb,PhoneForwardedIcon:fb,PhoneIcon:_b,PhoneIncoming:mb,PhoneIncomingIcon:mb,PhoneMissed:kb,PhoneMissedIcon:kb,PhoneOff:gb,PhoneOffIcon:gb,PhoneOutgoing:vb,PhoneOutgoingIcon:vb,Pi:bb,PiIcon:bb,PiSquare:Bi,PiSquareIcon:Bi,Piano:Mb,PianoIcon:Mb,Pickaxe:wb,PickaxeIcon:wb,PictureInPicture:Nb,PictureInPicture2:xb,PictureInPicture2Icon:xb,PictureInPictureIcon:Nb,PieChart:Qn,PieChartIcon:Qn,PiggyBank:Cb,PiggyBankIcon:Cb,Pilcrow:Lb,PilcrowIcon:Lb,PilcrowLeft:$b,PilcrowLeftIcon:$b,PilcrowRight:Sb,PilcrowRightIcon:Sb,PilcrowSquare:Wi,PilcrowSquareIcon:Wi,Pill:Ab,PillBottle:Ib,PillBottleIcon:Ib,PillIcon:Ab,Pin:Tb,PinIcon:Tb,PinOff:Pb,PinOffIcon:Pb,Pipette:Db,PipetteIcon:Db,Pizza:Eb,PizzaIcon:Eb,Plane:qb,PlaneIcon:qb,PlaneLanding:zb,PlaneLandingIcon:zb,PlaneTakeoff:Ob,PlaneTakeoffIcon:Ob,Play:jb,PlayCircle:wa,PlayCircleIcon:wa,PlayIcon:jb,PlaySquare:Ui,PlaySquareIcon:Ui,Plug:Vb,Plug2:Hb,Plug2Icon:Hb,PlugIcon:Vb,PlugZap:Kr,PlugZap2:Kr,PlugZap2Icon:Kr,PlugZapIcon:Kr,Plus:es,PlusCircle:Ma,PlusCircleIcon:Ma,PlusIcon:es,PlusSquare:Ri,PlusSquareIcon:Ri,Pocket:Fb,PocketIcon:Fb,PocketKnife:Bb,PocketKnifeIcon:Bb,Podcast:Wb,PodcastIcon:Wb,Pointer:Rb,PointerIcon:Rb,PointerOff:Ub,PointerOffIcon:Ub,Popcorn:Gb,PopcornIcon:Gb,Popsicle:Kb,PopsicleIcon:Kb,PoundSterling:Yb,PoundSterlingIcon:Yb,Power:Zb,PowerCircle:xa,PowerCircleIcon:xa,PowerIcon:Zb,PowerOff:Xb,PowerOffIcon:Xb,PowerSquare:Gi,PowerSquareIcon:Gi,Presentation:Qb,PresentationIcon:Qb,Printer:o6,PrinterCheck:Jb,PrinterCheckIcon:Jb,PrinterIcon:o6,PrinterX:e6,PrinterXIcon:e6,Projector:t6,ProjectorIcon:t6,Proportions:n6,ProportionsIcon:n6,Puzzle:a6,PuzzleIcon:a6,Pyramid:r6,PyramidIcon:r6,QrCode:i6,QrCodeIcon:i6,Quote:c6,QuoteIcon:c6,Rabbit:s6,RabbitIcon:s6,Radar:d6,RadarIcon:d6,Radiation:u6,RadiationIcon:u6,Radical:l6,RadicalIcon:l6,Radio:y6,RadioIcon:y6,RadioReceiver:h6,RadioReceiverIcon:h6,RadioTower:p6,RadioTowerIcon:p6,Radius:f6,RadiusIcon:f6,RailSymbol:k6,RailSymbolIcon:k6,Rainbow:m6,RainbowIcon:m6,Rat:g6,RatIcon:g6,Ratio:v6,RatioIcon:v6,Receipt:S6,ReceiptCent:_6,ReceiptCentIcon:_6,ReceiptEuro:b6,ReceiptEuroIcon:b6,ReceiptIcon:S6,ReceiptIndianRupee:M6,ReceiptIndianRupeeIcon:M6,ReceiptJapaneseYen:w6,ReceiptJapaneseYenIcon:w6,ReceiptPoundSterling:x6,ReceiptPoundSterlingIcon:x6,ReceiptRussianRuble:N6,ReceiptRussianRubleIcon:N6,ReceiptSwissFranc:C6,ReceiptSwissFrancIcon:C6,ReceiptText:$6,ReceiptTextIcon:$6,ReceiptTurkishLira:L6,ReceiptTurkishLiraIcon:L6,RectangleCircle:I6,RectangleCircleIcon:I6,RectangleEllipsis:Yr,RectangleEllipsisIcon:Yr,RectangleGoggles:A6,RectangleGogglesIcon:A6,RectangleHorizontal:P6,RectangleHorizontalIcon:P6,RectangleVertical:T6,RectangleVerticalIcon:T6,Recycle:z6,RecycleIcon:z6,Redo:O6,Redo2:D6,Redo2Icon:D6,RedoDot:E6,RedoDotIcon:E6,RedoIcon:O6,RefreshCcw:j6,RefreshCcwDot:q6,RefreshCcwDotIcon:q6,RefreshCcwIcon:j6,RefreshCw:V6,RefreshCwIcon:V6,RefreshCwOff:H6,RefreshCwOffIcon:H6,Refrigerator:F6,RefrigeratorIcon:F6,Regex:B6,RegexIcon:B6,RemoveFormatting:W6,RemoveFormattingIcon:W6,Repeat:G6,Repeat1:U6,Repeat1Icon:U6,Repeat2:R6,Repeat2Icon:R6,RepeatIcon:G6,Replace:Y6,ReplaceAll:K6,ReplaceAllIcon:K6,ReplaceIcon:Y6,Reply:Z6,ReplyAll:X6,ReplyAllIcon:X6,ReplyIcon:Z6,Rewind:Q6,RewindIcon:Q6,Ribbon:J6,RibbonIcon:J6,Rocket:rd,RocketIcon:rd,RockingChair:eM,RockingChairIcon:eM,RollerCoaster:tM,RollerCoasterIcon:tM,Rose:oM,RoseIcon:oM,Rotate3D:Xr,Rotate3DIcon:Xr,Rotate3d:Xr,Rotate3dIcon:Xr,RotateCcw:rM,RotateCcwIcon:rM,RotateCcwKey:nM,RotateCcwKeyIcon:nM,RotateCcwSquare:aM,RotateCcwSquareIcon:aM,RotateCw:cM,RotateCwIcon:cM,RotateCwSquare:iM,RotateCwSquareIcon:iM,Route:dM,RouteIcon:dM,RouteOff:sM,RouteOffIcon:sM,Router:lM,RouterIcon:lM,Rows:Zr,Rows2:Zr,Rows2Icon:Zr,Rows3:Qr,Rows3Icon:Qr,Rows4:uM,Rows4Icon:uM,RowsIcon:Zr,Rss:hM,RssIcon:hM,Ruler:kM,RulerDimensionLine:pM,RulerDimensionLineIcon:pM,RulerIcon:kM,RussianRuble:yM,RussianRubleIcon:yM,Sailboat:fM,SailboatIcon:fM,Salad:mM,SaladIcon:mM,Sandwich:gM,SandwichIcon:gM,Satellite:_M,SatelliteDish:vM,SatelliteDishIcon:vM,SatelliteIcon:_M,SaudiRiyal:bM,SaudiRiyalIcon:bM,Save:xM,SaveAll:wM,SaveAllIcon:wM,SaveIcon:xM,SaveOff:MM,SaveOffIcon:MM,Scale:NM,Scale3D:Jr,Scale3DIcon:Jr,Scale3d:Jr,Scale3dIcon:Jr,ScaleIcon:NM,Scaling:CM,ScalingIcon:CM,Scan:DM,ScanBarcode:$M,ScanBarcodeIcon:$M,ScanEye:SM,ScanEyeIcon:SM,ScanFace:LM,ScanFaceIcon:LM,ScanHeart:IM,ScanHeartIcon:IM,ScanIcon:DM,ScanLine:AM,ScanLineIcon:AM,ScanQrCode:PM,ScanQrCodeIcon:PM,ScanSearch:TM,ScanSearchIcon:TM,ScanText:EM,ScanTextIcon:EM,ScatterChart:Jn,ScatterChartIcon:Jn,School:OM,School2:pc,School2Icon:pc,SchoolIcon:OM,Scissors:qM,ScissorsIcon:qM,ScissorsLineDashed:zM,ScissorsLineDashedIcon:zM,ScissorsSquare:Ki,ScissorsSquareDashedBottom:vi,ScissorsSquareDashedBottomIcon:vi,ScissorsSquareIcon:Ki,Scooter:jM,ScooterIcon:jM,ScreenShare:VM,ScreenShareIcon:VM,ScreenShareOff:HM,ScreenShareOffIcon:HM,Scroll:FM,ScrollIcon:FM,ScrollText:WM,ScrollTextIcon:WM,Search:cn,SearchAlert:BM,SearchAlertIcon:BM,SearchCheck:UM,SearchCheckIcon:UM,SearchCode:RM,SearchCodeIcon:RM,SearchIcon:cn,SearchSlash:GM,SearchSlashIcon:GM,SearchX:KM,SearchXIcon:KM,Section:YM,SectionIcon:YM,Send:ZM,SendHorizonal:ei,SendHorizonalIcon:ei,SendHorizontal:ei,SendHorizontalIcon:ei,SendIcon:ZM,SendToBack:XM,SendToBackIcon:XM,SeparatorHorizontal:QM,SeparatorHorizontalIcon:QM,SeparatorVertical:JM,SeparatorVerticalIcon:JM,Server:n7,ServerCog:e7,ServerCogIcon:e7,ServerCrash:t7,ServerCrashIcon:t7,ServerIcon:n7,ServerOff:o7,ServerOffIcon:o7,Settings:r7,Settings2:a7,Settings2Icon:a7,SettingsIcon:r7,Shapes:i7,ShapesIcon:i7,Share:s7,Share2:c7,Share2Icon:c7,ShareIcon:s7,Sheet:d7,SheetIcon:d7,Shell:l7,ShellIcon:l7,Shield:_7,ShieldAlert:u7,ShieldAlertIcon:u7,ShieldBan:h7,ShieldBanIcon:h7,ShieldCheck:p7,ShieldCheckIcon:p7,ShieldClose:oi,ShieldCloseIcon:oi,ShieldEllipsis:f7,ShieldEllipsisIcon:f7,ShieldHalf:y7,ShieldHalfIcon:y7,ShieldIcon:_7,ShieldMinus:m7,ShieldMinusIcon:m7,ShieldOff:k7,ShieldOffIcon:k7,ShieldPlus:g7,ShieldPlusIcon:g7,ShieldQuestion:ti,ShieldQuestionIcon:ti,ShieldQuestionMark:ti,ShieldQuestionMarkIcon:ti,ShieldUser:v7,ShieldUserIcon:v7,ShieldX:oi,ShieldXIcon:oi,Ship:M7,ShipIcon:M7,ShipWheel:b7,ShipWheelIcon:b7,Shirt:w7,ShirtIcon:w7,ShoppingBag:x7,ShoppingBagIcon:x7,ShoppingBasket:N7,ShoppingBasketIcon:N7,ShoppingCart:C7,ShoppingCartIcon:C7,Shovel:$7,ShovelIcon:$7,ShowerHead:S7,ShowerHeadIcon:S7,Shredder:L7,ShredderIcon:L7,Shrimp:I7,ShrimpIcon:I7,Shrink:A7,ShrinkIcon:A7,Shrub:P7,ShrubIcon:P7,Shuffle:T7,ShuffleIcon:T7,Sidebar:rn,SidebarClose:Hr,SidebarCloseIcon:Hr,SidebarIcon:rn,SidebarOpen:Fr,SidebarOpenIcon:Fr,Sigma:D7,SigmaIcon:D7,SigmaSquare:Yi,SigmaSquareIcon:Yi,Signal:j7,SignalHigh:E7,SignalHighIcon:E7,SignalIcon:j7,SignalLow:z7,SignalLowIcon:z7,SignalMedium:O7,SignalMediumIcon:O7,SignalZero:q7,SignalZeroIcon:q7,Signature:H7,SignatureIcon:H7,Signpost:F7,SignpostBig:V7,SignpostBigIcon:V7,SignpostIcon:F7,Siren:B7,SirenIcon:B7,SkipBack:W7,SkipBackIcon:W7,SkipForward:U7,SkipForwardIcon:U7,Skull:R7,SkullIcon:R7,Slack:G7,SlackIcon:G7,Slash:K7,SlashIcon:K7,SlashSquare:Xi,SlashSquareIcon:Xi,Slice:Y7,SliceIcon:Y7,Sliders:ni,SlidersHorizontal:id,SlidersHorizontalIcon:id,SlidersIcon:ni,SlidersVertical:ni,SlidersVerticalIcon:ni,Smartphone:J7,SmartphoneCharging:X7,SmartphoneChargingIcon:X7,SmartphoneIcon:J7,SmartphoneNfc:Z7,SmartphoneNfcIcon:Z7,Smile:ew,SmileIcon:ew,SmilePlus:Q7,SmilePlusIcon:Q7,Snail:tw,SnailIcon:tw,Snowflake:ow,SnowflakeIcon:ow,SoapDispenserDroplet:nw,SoapDispenserDropletIcon:nw,Sofa:aw,SofaIcon:aw,SolarPanel:rw,SolarPanelIcon:rw,SortAsc:An,SortAscIcon:An,SortDesc:Sn,SortDescIcon:Sn,Soup:iw,SoupIcon:iw,Space:cw,SpaceIcon:cw,Spade:sw,SpadeIcon:sw,Sparkle:dw,SparkleIcon:dw,Sparkles:ai,SparklesIcon:ai,Speaker:lw,SpeakerIcon:lw,Speech:uw,SpeechIcon:uw,SpellCheck:pw,SpellCheck2:hw,SpellCheck2Icon:hw,SpellCheckIcon:pw,Spline:fw,SplineIcon:fw,SplinePointer:yw,SplinePointerIcon:yw,Split:kw,SplitIcon:kw,SplitSquareHorizontal:Zi,SplitSquareHorizontalIcon:Zi,SplitSquareVertical:Qi,SplitSquareVerticalIcon:Qi,Spool:mw,SpoolIcon:mw,Spotlight:gw,SpotlightIcon:gw,SprayCan:vw,SprayCanIcon:vw,Sprout:_w,SproutIcon:_w,Square:Aw,SquareActivity:ri,SquareActivityIcon:ri,SquareArrowDown:ci,SquareArrowDownIcon:ci,SquareArrowDownLeft:ii,SquareArrowDownLeftIcon:ii,SquareArrowDownRight:si,SquareArrowDownRightIcon:si,SquareArrowLeft:di,SquareArrowLeftIcon:di,SquareArrowOutDownLeft:li,SquareArrowOutDownLeftIcon:li,SquareArrowOutDownRight:ui,SquareArrowOutDownRightIcon:ui,SquareArrowOutUpLeft:hi,SquareArrowOutUpLeftIcon:hi,SquareArrowOutUpRight:pi,SquareArrowOutUpRightIcon:pi,SquareArrowRight:yi,SquareArrowRightIcon:yi,SquareArrowUp:ki,SquareArrowUpIcon:ki,SquareArrowUpLeft:fi,SquareArrowUpLeftIcon:fi,SquareArrowUpRight:mi,SquareArrowUpRightIcon:mi,SquareAsterisk:gi,SquareAsteriskIcon:gi,SquareBottomDashedScissors:vi,SquareBottomDashedScissorsIcon:vi,SquareChartGantt:Jt,SquareChartGanttIcon:Jt,SquareCheck:bi,SquareCheckBig:_i,SquareCheckBigIcon:_i,SquareCheckIcon:bi,SquareChevronDown:Mi,SquareChevronDownIcon:Mi,SquareChevronLeft:wi,SquareChevronLeftIcon:wi,SquareChevronRight:xi,SquareChevronRightIcon:xi,SquareChevronUp:Ni,SquareChevronUpIcon:Ni,SquareCode:Ci,SquareCodeIcon:Ci,SquareDashed:Li,SquareDashedBottom:Mw,SquareDashedBottomCode:bw,SquareDashedBottomCodeIcon:bw,SquareDashedBottomIcon:Mw,SquareDashedIcon:Li,SquareDashedKanban:Si,SquareDashedKanbanIcon:Si,SquareDashedMousePointer:$i,SquareDashedMousePointerIcon:$i,SquareDashedTopSolid:ww,SquareDashedTopSolidIcon:ww,SquareDivide:Ii,SquareDivideIcon:Ii,SquareDot:Ai,SquareDotIcon:Ai,SquareEqual:Pi,SquareEqualIcon:Pi,SquareFunction:Ti,SquareFunctionIcon:Ti,SquareGanttChart:Jt,SquareGanttChartIcon:Jt,SquareIcon:Aw,SquareKanban:Ei,SquareKanbanIcon:Ei,SquareLibrary:Di,SquareLibraryIcon:Di,SquareM:zi,SquareMIcon:zi,SquareMenu:Oi,SquareMenuIcon:Oi,SquareMinus:qi,SquareMinusIcon:qi,SquareMousePointer:ji,SquareMousePointerIcon:ji,SquareParking:Vi,SquareParkingIcon:Vi,SquareParkingOff:Hi,SquareParkingOffIcon:Hi,SquarePause:xw,SquarePauseIcon:xw,SquarePen:Nt,SquarePenIcon:Nt,SquarePercent:Fi,SquarePercentIcon:Fi,SquarePi:Bi,SquarePiIcon:Bi,SquarePilcrow:Wi,SquarePilcrowIcon:Wi,SquarePlay:Ui,SquarePlayIcon:Ui,SquarePlus:Ri,SquarePlusIcon:Ri,SquarePower:Gi,SquarePowerIcon:Gi,SquareRadical:Nw,SquareRadicalIcon:Nw,SquareRoundCorner:Cw,SquareRoundCornerIcon:Cw,SquareScissors:Ki,SquareScissorsIcon:Ki,SquareSigma:Yi,SquareSigmaIcon:Yi,SquareSlash:Xi,SquareSlashIcon:Xi,SquareSplitHorizontal:Zi,SquareSplitHorizontalIcon:Zi,SquareSplitVertical:Qi,SquareSplitVerticalIcon:Qi,SquareSquare:$w,SquareSquareIcon:$w,SquareStack:Sw,SquareStackIcon:Sw,SquareStar:Lw,SquareStarIcon:Lw,SquareStop:Iw,SquareStopIcon:Iw,SquareTerminal:Ji,SquareTerminalIcon:Ji,SquareUser:ec,SquareUserIcon:ec,SquareUserRound:tc,SquareUserRoundIcon:tc,SquareX:oc,SquareXIcon:oc,SquaresExclude:Pw,SquaresExcludeIcon:Pw,SquaresIntersect:Tw,SquaresIntersectIcon:Tw,SquaresSubtract:Ew,SquaresSubtractIcon:Ew,SquaresUnite:Dw,SquaresUniteIcon:Dw,Squircle:Ow,SquircleDashed:zw,SquircleDashedIcon:zw,SquircleIcon:Ow,Squirrel:qw,SquirrelIcon:qw,Stamp:jw,StampIcon:jw,Star:Fw,StarHalf:Vw,StarHalfIcon:Vw,StarIcon:Fw,StarOff:Hw,StarOffIcon:Hw,Stars:ai,StarsIcon:ai,StepBack:Bw,StepBackIcon:Bw,StepForward:Ww,StepForwardIcon:Ww,Stethoscope:Uw,StethoscopeIcon:Uw,Sticker:Rw,StickerIcon:Rw,StickyNote:Gw,StickyNoteIcon:Gw,Stone:Kw,StoneIcon:Kw,StopCircle:Ca,StopCircleIcon:Ca,Store:Yw,StoreIcon:Yw,StretchHorizontal:Xw,StretchHorizontalIcon:Xw,StretchVertical:Zw,StretchVerticalIcon:Zw,Strikethrough:Qw,StrikethroughIcon:Qw,Subscript:Jw,SubscriptIcon:Jw,Subtitles:Hn,SubtitlesIcon:Hn,Sun:ax,SunDim:ex,SunDimIcon:ex,SunIcon:ax,SunMedium:ox,SunMediumIcon:ox,SunMoon:tx,SunMoonIcon:tx,SunSnow:nx,SunSnowIcon:nx,Sunrise:rx,SunriseIcon:rx,Sunset:ix,SunsetIcon:ix,Superscript:cx,SuperscriptIcon:cx,SwatchBook:sx,SwatchBookIcon:sx,SwissFranc:dx,SwissFrancIcon:dx,SwitchCamera:lx,SwitchCameraIcon:lx,Sword:ux,SwordIcon:ux,Swords:hx,SwordsIcon:hx,Syringe:px,SyringeIcon:px,Table:bx,Table2:yx,Table2Icon:yx,TableCellsMerge:fx,TableCellsMergeIcon:fx,TableCellsSplit:mx,TableCellsSplitIcon:mx,TableColumnsSplit:kx,TableColumnsSplitIcon:kx,TableConfig:mo,TableConfigIcon:mo,TableIcon:bx,TableOfContents:_x,TableOfContentsIcon:_x,TableProperties:gx,TablePropertiesIcon:gx,TableRowsSplit:vx,TableRowsSplitIcon:vx,Tablet:wx,TabletIcon:wx,TabletSmartphone:Mx,TabletSmartphoneIcon:Mx,Tablets:Nx,TabletsIcon:Nx,Tag:xx,TagIcon:xx,Tags:Cx,TagsIcon:Cx,Tally1:$x,Tally1Icon:$x,Tally2:Sx,Tally2Icon:Sx,Tally3:Lx,Tally3Icon:Lx,Tally4:Ix,Tally4Icon:Ix,Tally5:Ax,Tally5Icon:Ax,Tangent:Px,TangentIcon:Px,Target:Tx,TargetIcon:Tx,Telescope:Dx,TelescopeIcon:Dx,Tent:zx,TentIcon:zx,TentTree:Ex,TentTreeIcon:Ex,Terminal:Ox,TerminalIcon:Ox,TerminalSquare:Ji,TerminalSquareIcon:Ji,TestTube:qx,TestTube2:nc,TestTube2Icon:nc,TestTubeDiagonal:nc,TestTubeDiagonalIcon:nc,TestTubeIcon:qx,TestTubes:jx,TestTubesIcon:jx,Text:_o,TextAlignCenter:ac,TextAlignCenterIcon:ac,TextAlignEnd:rc,TextAlignEndIcon:rc,TextAlignJustify:ic,TextAlignJustifyIcon:ic,TextAlignStart:_o,TextAlignStartIcon:_o,TextCursor:Vx,TextCursorIcon:Vx,TextCursorInput:Hx,TextCursorInputIcon:Hx,TextIcon:_o,TextInitial:cc,TextInitialIcon:cc,TextQuote:Fx,TextQuoteIcon:Fx,TextSearch:Bx,TextSearchIcon:Bx,TextSelect:sc,TextSelectIcon:sc,TextSelection:sc,TextSelectionIcon:sc,TextWrap:dc,TextWrapIcon:dc,Theater:Wx,TheaterIcon:Wx,Thermometer:Gx,ThermometerIcon:Gx,ThermometerSnowflake:Ux,ThermometerSnowflakeIcon:Ux,ThermometerSun:Rx,ThermometerSunIcon:Rx,ThumbsDown:Kx,ThumbsDownIcon:Kx,ThumbsUp:Yx,ThumbsUpIcon:Yx,Ticket:o9,TicketCheck:Xx,TicketCheckIcon:Xx,TicketIcon:o9,TicketMinus:Zx,TicketMinusIcon:Zx,TicketPercent:Qx,TicketPercentIcon:Qx,TicketPlus:Jx,TicketPlusIcon:Jx,TicketSlash:e9,TicketSlashIcon:e9,TicketX:t9,TicketXIcon:t9,Tickets:a9,TicketsIcon:a9,TicketsPlane:n9,TicketsPlaneIcon:n9,Timer:i9,TimerIcon:i9,TimerOff:r9,TimerOffIcon:r9,TimerReset:c9,TimerResetIcon:c9,ToggleLeft:s9,ToggleLeftIcon:s9,ToggleRight:d9,ToggleRightIcon:d9,Toilet:l9,ToiletIcon:l9,ToolCase:u9,ToolCaseIcon:u9,Toolbox:p9,ToolboxIcon:p9,Tornado:h9,TornadoIcon:h9,Torus:y9,TorusIcon:y9,Touchpad:m9,TouchpadIcon:m9,TouchpadOff:f9,TouchpadOffIcon:f9,TowerControl:k9,TowerControlIcon:k9,ToyBrick:g9,ToyBrickIcon:g9,Tractor:v9,TractorIcon:v9,TrafficCone:_9,TrafficConeIcon:_9,Train:lc,TrainFront:M9,TrainFrontIcon:M9,TrainFrontTunnel:b9,TrainFrontTunnelIcon:b9,TrainIcon:lc,TrainTrack:w9,TrainTrackIcon:w9,TramFront:lc,TramFrontIcon:lc,Transgender:x9,TransgenderIcon:x9,Trash:N9,Trash2:ts,Trash2Icon:ts,TrashIcon:N9,TreeDeciduous:C9,TreeDeciduousIcon:C9,TreePalm:uc,TreePalmIcon:uc,TreePine:$9,TreePineIcon:$9,Trees:S9,TreesIcon:S9,Trello:L9,TrelloIcon:L9,TrendingDown:cd,TrendingDownIcon:cd,TrendingUp:sd,TrendingUpDown:I9,TrendingUpDownIcon:I9,TrendingUpIcon:sd,Triangle:T9,TriangleAlert:sn,TriangleAlertIcon:sn,TriangleDashed:A9,TriangleDashedIcon:A9,TriangleIcon:T9,TriangleRight:P9,TriangleRightIcon:P9,Trophy:D9,TrophyIcon:D9,Truck:z9,TruckElectric:E9,TruckElectricIcon:E9,TruckIcon:z9,TurkishLira:O9,TurkishLiraIcon:O9,Turntable:q9,TurntableIcon:q9,Turtle:j9,TurtleIcon:j9,Tv:V9,Tv2:hc,Tv2Icon:hc,TvIcon:V9,TvMinimal:hc,TvMinimalIcon:hc,TvMinimalPlay:H9,TvMinimalPlayIcon:H9,Twitch:F9,TwitchIcon:F9,Twitter:B9,TwitterIcon:B9,Type:W9,TypeIcon:W9,TypeOutline:U9,TypeOutlineIcon:U9,Umbrella:G9,UmbrellaIcon:G9,UmbrellaOff:R9,UmbrellaOffIcon:R9,Underline:K9,UnderlineIcon:K9,Undo:Z9,Undo2:Y9,Undo2Icon:Y9,UndoDot:X9,UndoDotIcon:X9,UndoIcon:Z9,UnfoldHorizontal:Q9,UnfoldHorizontalIcon:Q9,UnfoldVertical:J9,UnfoldVerticalIcon:J9,Ungroup:eN,UngroupIcon:eN,University:pc,UniversityIcon:pc,Unlink:oN,Unlink2:tN,Unlink2Icon:tN,UnlinkIcon:oN,Unlock:Ir,UnlockIcon:Ir,UnlockKeyhole:Lr,UnlockKeyholeIcon:Lr,Unplug:nN,UnplugIcon:nN,Upload:dd,UploadCloud:Ta,UploadCloudIcon:Ta,UploadIcon:dd,Usb:aN,UsbIcon:aN,User:mN,User2:vc,User2Icon:vc,UserCheck:rN,UserCheck2:yc,UserCheck2Icon:yc,UserCheckIcon:rN,UserCircle:Sa,UserCircle2:$a,UserCircle2Icon:$a,UserCircleIcon:Sa,UserCog:iN,UserCog2:fc,UserCog2Icon:fc,UserCogIcon:iN,UserIcon:mN,UserLock:cN,UserLockIcon:cN,UserMinus:sN,UserMinus2:mc,UserMinus2Icon:mc,UserMinusIcon:sN,UserPen:dN,UserPenIcon:dN,UserPlus:lN,UserPlus2:kc,UserPlus2Icon:kc,UserPlusIcon:lN,UserRound:vc,UserRoundCheck:yc,UserRoundCheckIcon:yc,UserRoundCog:fc,UserRoundCogIcon:fc,UserRoundIcon:vc,UserRoundMinus:mc,UserRoundMinusIcon:mc,UserRoundPen:uN,UserRoundPenIcon:uN,UserRoundPlus:kc,UserRoundPlusIcon:kc,UserRoundSearch:hN,UserRoundSearchIcon:hN,UserRoundX:gc,UserRoundXIcon:gc,UserSearch:pN,UserSearchIcon:pN,UserSquare:ec,UserSquare2:tc,UserSquare2Icon:tc,UserSquareIcon:ec,UserStar:yN,UserStarIcon:yN,UserX:fN,UserX2:gc,UserX2Icon:gc,UserXIcon:fN,Users:kN,Users2:_c,Users2Icon:_c,UsersIcon:kN,UsersRound:_c,UsersRoundIcon:_c,Utensils:Mc,UtensilsCrossed:bc,UtensilsCrossedIcon:bc,UtensilsIcon:Mc,UtilityPole:gN,UtilityPoleIcon:gN,Van:vN,VanIcon:vN,Variable:_N,VariableIcon:_N,Vault:bN,VaultIcon:bN,VectorSquare:MN,VectorSquareIcon:MN,Vegan:wN,VeganIcon:wN,VenetianMask:xN,VenetianMaskIcon:xN,Venus:CN,VenusAndMars:NN,VenusAndMarsIcon:NN,VenusIcon:CN,Verified:Dn,VerifiedIcon:Dn,Vibrate:SN,VibrateIcon:SN,VibrateOff:$N,VibrateOffIcon:$N,Video:AN,VideoIcon:AN,VideoOff:LN,VideoOffIcon:LN,Videotape:IN,VideotapeIcon:IN,View:PN,ViewIcon:PN,Voicemail:TN,VoicemailIcon:TN,Volleyball:DN,VolleyballIcon:DN,Volume:jN,Volume1:EN,Volume1Icon:EN,Volume2:zN,Volume2Icon:zN,VolumeIcon:jN,VolumeOff:ON,VolumeOffIcon:ON,VolumeX:qN,VolumeXIcon:qN,Vote:HN,VoteIcon:HN,Wallet:FN,Wallet2:wc,Wallet2Icon:wc,WalletCards:VN,WalletCardsIcon:VN,WalletIcon:FN,WalletMinimal:wc,WalletMinimalIcon:wc,Wallpaper:BN,WallpaperIcon:BN,Wand:WN,Wand2:xc,Wand2Icon:xc,WandIcon:WN,WandSparkles:xc,WandSparklesIcon:xc,Warehouse:UN,WarehouseIcon:UN,WashingMachine:RN,WashingMachineIcon:RN,Watch:KN,WatchIcon:KN,Waves:ZN,WavesArrowDown:GN,WavesArrowDownIcon:GN,WavesArrowUp:YN,WavesArrowUpIcon:YN,WavesIcon:ZN,WavesLadder:XN,WavesLadderIcon:XN,Waypoints:QN,WaypointsIcon:QN,Webcam:JN,WebcamIcon:JN,Webhook:tC,WebhookIcon:tC,WebhookOff:eC,WebhookOffIcon:eC,Weight:nC,WeightIcon:nC,WeightTilde:oC,WeightTildeIcon:oC,Wheat:rC,WheatIcon:rC,WheatOff:aC,WheatOffIcon:aC,WholeWord:iC,WholeWordIcon:iC,Wifi:yC,WifiCog:cC,WifiCogIcon:cC,WifiHigh:sC,WifiHighIcon:sC,WifiIcon:yC,WifiLow:dC,WifiLowIcon:dC,WifiOff:lC,WifiOffIcon:lC,WifiPen:uC,WifiPenIcon:uC,WifiSync:hC,WifiSyncIcon:hC,WifiZero:pC,WifiZeroIcon:pC,Wind:mC,WindArrowDown:fC,WindArrowDownIcon:fC,WindIcon:mC,Wine:gC,WineIcon:gC,WineOff:kC,WineOffIcon:kC,Workflow:vC,WorkflowIcon:vC,Worm:_C,WormIcon:_C,WrapText:dc,WrapTextIcon:dc,Wrench:bC,WrenchIcon:bC,X:bo,XCircle:La,XCircleIcon:La,XIcon:bo,XOctagon:an,XOctagonIcon:an,XSquare:oc,XSquareIcon:oc,Youtube:wC,YoutubeIcon:wC,Zap:xC,ZapIcon:xC,ZapOff:MC,ZapOffIcon:MC,ZoomIn:NC,ZoomInIcon:NC,ZoomOut:CC,ZoomOutIcon:CC,createLucideIcon:i,icons:zS},Symbol.toStringTag,{value:"Module"})),CY=vY,mD=p.forwardRef(({className:e,...t},o)=>d.jsx(_Y,{ref:o,className:S("border-b",e),...t}));mD.displayName="AccordionItem";const kD=p.forwardRef(({className:e,children:t,...o},n)=>d.jsx(bY,{className:"flex",children:d.jsxs(lD,{ref:n,className:S("flex flex-1 items-center justify-between py-4 font-medium transition-all hover:underline [&[data-state=open]>svg]:rotate-180",e),...o,children:[t,d.jsx(Zt,{className:"h-4 w-4 shrink-0 transition-transform duration-200"})]})}));kD.displayName=lD.displayName;const gD=p.forwardRef(({className:e,children:t,...o},n)=>d.jsx(uD,{ref:n,className:"overflow-hidden text-sm transition-all data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down",...o,children:d.jsx("div",{className:S("pb-4 pt-0",e),children:t})}));gD.displayName=uD.displayName;function Ue(e){const t=p.useRef(e);return p.useEffect(()=>{t.current=e}),p.useMemo(()=>(...o)=>t.current?.(...o),[])}function $Y(e,t=globalThis?.document){const o=Ue(e);p.useEffect(()=>{const n=a=>{a.key==="Escape"&&o(a)};return t.addEventListener("keydown",n,{capture:!0}),()=>t.removeEventListener("keydown",n,{capture:!0})},[o,t])}var SY="DismissableLayer",OS="dismissableLayer.update",LY="dismissableLayer.pointerDownOutside",IY="dismissableLayer.focusOutside",vD,_D=p.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),dn=p.forwardRef((e,t)=>{const{disableOutsidePointerEvents:o=!1,onEscapeKeyDown:n,onPointerDownOutside:a,onFocusOutside:r,onInteractOutside:c,onDismiss:s,...l}=e,u=p.useContext(_D),[y,h]=p.useState(null),f=y?.ownerDocument??globalThis?.document,[,k]=p.useState({}),m=be(t,$=>h($)),g=Array.from(u.layers),[_]=[...u.layersWithOutsidePointerEventsDisabled].slice(-1),v=g.indexOf(_),b=y?g.indexOf(y):-1,M=u.layersWithOutsidePointerEventsDisabled.size>0,x=b>=v,N=TY($=>{const L=$.target,A=[...u.branches].some(q=>q.contains(L));!x||A||(a?.($),c?.($),$.defaultPrevented||s?.())},f),C=DY($=>{const L=$.target;[...u.branches].some(q=>q.contains(L))||(r?.($),c?.($),$.defaultPrevented||s?.())},f);return $Y($=>{b===u.layers.size-1&&(n?.($),!$.defaultPrevented&&s&&($.preventDefault(),s()))},f),p.useEffect(()=>{if(y)return o&&(u.layersWithOutsidePointerEventsDisabled.size===0&&(vD=f.body.style.pointerEvents,f.body.style.pointerEvents="none"),u.layersWithOutsidePointerEventsDisabled.add(y)),u.layers.add(y),bD(),()=>{o&&u.layersWithOutsidePointerEventsDisabled.size===1&&(f.body.style.pointerEvents=vD)}},[y,f,o,u]),p.useEffect(()=>()=>{y&&(u.layers.delete(y),u.layersWithOutsidePointerEventsDisabled.delete(y),bD())},[y,u]),p.useEffect(()=>{const $=()=>k({});return document.addEventListener(OS,$),()=>document.removeEventListener(OS,$)},[]),d.jsx(se.div,{...l,ref:m,style:{pointerEvents:M?x?"auto":"none":void 0,...e.style},onFocusCapture:X(e.onFocusCapture,C.onFocusCapture),onBlurCapture:X(e.onBlurCapture,C.onBlurCapture),onPointerDownCapture:X(e.onPointerDownCapture,N.onPointerDownCapture)})});dn.displayName=SY;var AY="DismissableLayerBranch",PY=p.forwardRef((e,t)=>{const o=p.useContext(_D),n=p.useRef(null),a=be(t,n);return p.useEffect(()=>{const r=n.current;if(r)return o.branches.add(r),()=>{o.branches.delete(r)}},[o.branches]),d.jsx(se.div,{...e,ref:a})});PY.displayName=AY;function TY(e,t=globalThis?.document){const o=Ue(e),n=p.useRef(!1),a=p.useRef(()=>{});return p.useEffect(()=>{const r=s=>{if(s.target&&!n.current){let l=function(){MD(LY,o,u,{discrete:!0})};const u={originalEvent:s};s.pointerType==="touch"?(t.removeEventListener("click",a.current),a.current=l,t.addEventListener("click",a.current,{once:!0})):l()}else t.removeEventListener("click",a.current);n.current=!1},c=window.setTimeout(()=>{t.addEventListener("pointerdown",r)},0);return()=>{window.clearTimeout(c),t.removeEventListener("pointerdown",r),t.removeEventListener("click",a.current)}},[t,o]),{onPointerDownCapture:()=>n.current=!0}}function DY(e,t=globalThis?.document){const o=Ue(e),n=p.useRef(!1);return p.useEffect(()=>{const a=r=>{r.target&&!n.current&&MD(IY,o,{originalEvent:r},{discrete:!1})};return t.addEventListener("focusin",a),()=>t.removeEventListener("focusin",a)},[t,o]),{onFocusCapture:()=>n.current=!0,onBlurCapture:()=>n.current=!1}}function bD(){const e=new CustomEvent(OS);document.dispatchEvent(e)}function MD(e,t,o,{discrete:n}){const a=o.originalEvent.target,r=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:o});t&&a.addEventListener(e,t,{once:!0}),n?w1(a,r):a.dispatchEvent(r)}var qS="focusScope.autoFocusOnMount",jS="focusScope.autoFocusOnUnmount",wD={bubbles:!1,cancelable:!0},EY="FocusScope",ld=p.forwardRef((e,t)=>{const{loop:o=!1,trapped:n=!1,onMountAutoFocus:a,onUnmountAutoFocus:r,...c}=e,[s,l]=p.useState(null),u=Ue(a),y=Ue(r),h=p.useRef(null),f=be(t,g=>l(g)),k=p.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;p.useEffect(()=>{if(n){let g=function(M){if(k.paused||!s)return;const x=M.target;s.contains(x)?h.current=x:ln(h.current,{select:!0})},_=function(M){if(k.paused||!s)return;const x=M.relatedTarget;x!==null&&(s.contains(x)||ln(h.current,{select:!0}))},v=function(M){if(document.activeElement===document.body)for(const N of M)N.removedNodes.length>0&&ln(s)};document.addEventListener("focusin",g),document.addEventListener("focusout",_);const b=new MutationObserver(v);return s&&b.observe(s,{childList:!0,subtree:!0}),()=>{document.removeEventListener("focusin",g),document.removeEventListener("focusout",_),b.disconnect()}}},[n,s,k.paused]),p.useEffect(()=>{if(s){CD.add(k);const g=document.activeElement;if(!s.contains(g)){const v=new CustomEvent(qS,wD);s.addEventListener(qS,u),s.dispatchEvent(v),v.defaultPrevented||(zY(VY(xD(s)),{select:!0}),document.activeElement===g&&ln(s))}return()=>{s.removeEventListener(qS,u),setTimeout(()=>{const v=new CustomEvent(jS,wD);s.addEventListener(jS,y),s.dispatchEvent(v),v.defaultPrevented||ln(g??document.body,{select:!0}),s.removeEventListener(jS,y),CD.remove(k)},0)}}},[s,u,y,k]);const m=p.useCallback(g=>{if(!o&&!n||k.paused)return;const _=g.key==="Tab"&&!g.altKey&&!g.ctrlKey&&!g.metaKey,v=document.activeElement;if(_&&v){const b=g.currentTarget,[M,x]=OY(b);M&&x?!g.shiftKey&&v===x?(g.preventDefault(),o&&ln(M,{select:!0})):g.shiftKey&&v===M&&(g.preventDefault(),o&&ln(x,{select:!0})):v===b&&g.preventDefault()}},[o,n,k.paused]);return d.jsx(se.div,{tabIndex:-1,...c,ref:f,onKeyDown:m})});ld.displayName=EY;function zY(e,{select:t=!1}={}){const o=document.activeElement;for(const n of e)if(ln(n,{select:t}),document.activeElement!==o)return}function OY(e){const t=xD(e),o=ND(t,e),n=ND(t.reverse(),e);return[o,n]}function xD(e){const t=[],o=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:n=>{const a=n.tagName==="INPUT"&&n.type==="hidden";return n.disabled||n.hidden||a?NodeFilter.FILTER_SKIP:n.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;o.nextNode();)t.push(o.currentNode);return t}function ND(e,t){for(const o of e)if(!qY(o,{upTo:t}))return o}function qY(e,{upTo:t}){if(getComputedStyle(e).visibility==="hidden")return!0;for(;e;){if(t!==void 0&&e===t)return!1;if(getComputedStyle(e).display==="none")return!0;e=e.parentElement}return!1}function jY(e){return e instanceof HTMLInputElement&&"select"in e}function ln(e,{select:t=!1}={}){if(e&&e.focus){const o=document.activeElement;e.focus({preventScroll:!0}),e!==o&&jY(e)&&t&&e.select()}}var CD=HY();function HY(){let e=[];return{add(t){const o=e[0];t!==o&&o?.pause(),e=$D(e,t),e.unshift(t)},remove(t){e=$D(e,t),e[0]?.resume()}}}function $D(e,t){const o=[...e],n=o.indexOf(t);return n!==-1&&o.splice(n,1),o}function VY(e){return e.filter(t=>t.tagName!=="A")}var FY="Portal",ud=p.forwardRef((e,t)=>{const{container:o,...n}=e,[a,r]=p.useState(!1);Ze(()=>r(!0),[]);const c=o||a&&globalThis?.document?.body;return c?h1.createPortal(d.jsx(se.div,{...n,ref:t}),c):null});ud.displayName=FY;var HS=0;function $C(){p.useEffect(()=>{const e=document.querySelectorAll("[data-radix-focus-guard]");return document.body.insertAdjacentElement("afterbegin",e[0]??SD()),document.body.insertAdjacentElement("beforeend",e[1]??SD()),HS++,()=>{HS===1&&document.querySelectorAll("[data-radix-focus-guard]").forEach(t=>t.remove()),HS--}},[])}function SD(){const e=document.createElement("span");return e.setAttribute("data-radix-focus-guard",""),e.tabIndex=0,e.style.outline="none",e.style.opacity="0",e.style.position="fixed",e.style.pointerEvents="none",e}var Mo=function(){return Mo=Object.assign||function(t){for(var o,n=1,a=arguments.length;n<a;n++){o=arguments[n];for(var r in o)Object.prototype.hasOwnProperty.call(o,r)&&(t[r]=o[r])}return t},Mo.apply(this,arguments)};function LD(e,t){var o={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(o[n]=e[n]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var a=0,n=Object.getOwnPropertySymbols(e);a<n.length;a++)t.indexOf(n[a])<0&&Object.prototype.propertyIsEnumerable.call(e,n[a])&&(o[n[a]]=e[n[a]]);return o}function BY(e,t,o){if(o||arguments.length===2)for(var n=0,a=t.length,r;n<a;n++)(r||!(n in t))&&(r||(r=Array.prototype.slice.call(t,0,n)),r[n]=t[n]);return e.concat(r||Array.prototype.slice.call(t))}typeof SuppressedError=="function"&&SuppressedError;var SC="right-scroll-bar-position",LC="width-before-scroll-bar",WY="with-scroll-bars-hidden",UY="--removed-body-scroll-bar-size";function VS(e,t){return typeof e=="function"?e(t):e&&(e.current=t),e}function RY(e,t){var o=w.useState(function(){return{value:e,callback:t,facade:{get current(){return o.value},set current(n){var a=o.value;a!==n&&(o.value=n,o.callback(n,a))}}}})[0];return o.callback=t,o.facade}var GY=typeof window<"u"?p.useLayoutEffect:p.useEffect,ID=new WeakMap;function KY(e,t){var o=RY(null,function(n){return e.forEach(function(a){return VS(a,n)})});return GY(function(){var n=ID.get(o);if(n){var a=new Set(n),r=new Set(e),c=o.current;a.forEach(function(s){r.has(s)||VS(s,null)}),r.forEach(function(s){a.has(s)||VS(s,c)})}ID.set(o,e)},[e]),o}function YY(e){return e}function XY(e,t){t===void 0&&(t=YY);var o=[],n=!1,a={read:function(){if(n)throw new Error("Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.");return o.length?o[o.length-1]:e},useMedium:function(r){var c=t(r,n);return o.push(c),function(){o=o.filter(function(s){return s!==c})}},assignSyncMedium:function(r){for(n=!0;o.length;){var c=o;o=[],c.forEach(r)}o={push:function(s){return r(s)},filter:function(){return o}}},assignMedium:function(r){n=!0;var c=[];if(o.length){var s=o;o=[],s.forEach(r),c=o}var l=function(){var y=c;c=[],y.forEach(r)},u=function(){return Promise.resolve().then(l)};u(),o={push:function(y){c.push(y),u()},filter:function(y){return c=c.filter(y),o}}}};return a}function ZY(e){e===void 0&&(e={});var t=XY(null);return t.options=Mo({async:!0,ssr:!1},e),t}var AD=function(e){var t=e.sideCar,o=LD(e,["sideCar"]);if(!t)throw new Error("Sidecar: please provide `sideCar` property to import the right car");var n=t.read();if(!n)throw new Error("Sidecar medium not found");return p.createElement(n,Mo({},o))};AD.isSideCarExport=!0;function QY(e,t){return e.useMedium(t),AD}var PD=ZY(),FS=function(){},IC=p.forwardRef(function(e,t){var o=p.useRef(null),n=p.useState({onScrollCapture:FS,onWheelCapture:FS,onTouchMoveCapture:FS}),a=n[0],r=n[1],c=e.forwardProps,s=e.children,l=e.className,u=e.removeScrollBar,y=e.enabled,h=e.shards,f=e.sideCar,k=e.noRelative,m=e.noIsolation,g=e.inert,_=e.allowPinchZoom,v=e.as,b=v===void 0?"div":v,M=e.gapMode,x=LD(e,["forwardProps","children","className","removeScrollBar","enabled","shards","sideCar","noRelative","noIsolation","inert","allowPinchZoom","as","gapMode"]),N=f,C=KY([o,t]),$=Mo(Mo({},x),a);return p.createElement(p.Fragment,null,y&&p.createElement(N,{sideCar:PD,removeScrollBar:u,shards:h,noRelative:k,noIsolation:m,inert:g,setCallbacks:r,allowPinchZoom:!!_,lockRef:o,gapMode:M}),c?p.cloneElement(p.Children.only(s),Mo(Mo({},$),{ref:C})):p.createElement(b,Mo({},$,{className:l,ref:C}),s))});IC.defaultProps={enabled:!0,removeScrollBar:!0,inert:!1},IC.classNames={fullWidth:LC,zeroRight:SC};var JY=function(){if(typeof __webpack_nonce__<"u")return __webpack_nonce__};function eX(){if(!document)return null;var e=document.createElement("style");e.type="text/css";var t=JY();return t&&e.setAttribute("nonce",t),e}function tX(e,t){e.styleSheet?e.styleSheet.cssText=t:e.appendChild(document.createTextNode(t))}function oX(e){var t=document.head||document.getElementsByTagName("head")[0];t.appendChild(e)}var nX=function(){var e=0,t=null;return{add:function(o){e==0&&(t=eX())&&(tX(t,o),oX(t)),e++},remove:function(){e--,!e&&t&&(t.parentNode&&t.parentNode.removeChild(t),t=null)}}},aX=function(){var e=nX();return function(t,o){p.useEffect(function(){return e.add(t),function(){e.remove()}},[t&&o])}},TD=function(){var e=aX(),t=function(o){var n=o.styles,a=o.dynamic;return e(n,a),null};return t},rX={left:0,top:0,right:0,gap:0},BS=function(e){return parseInt(e||"",10)||0},iX=function(e){var t=window.getComputedStyle(document.body),o=t[e==="padding"?"paddingLeft":"marginLeft"],n=t[e==="padding"?"paddingTop":"marginTop"],a=t[e==="padding"?"paddingRight":"marginRight"];return[BS(o),BS(n),BS(a)]},cX=function(e){if(e===void 0&&(e="margin"),typeof window>"u")return rX;var t=iX(e),o=document.documentElement.clientWidth,n=window.innerWidth;return{left:t[0],top:t[1],right:t[2],gap:Math.max(0,n-o+t[2]-t[0])}},sX=TD(),os="data-scroll-locked",dX=function(e,t,o,n){var a=e.left,r=e.top,c=e.right,s=e.gap;return o===void 0&&(o="margin"),`
8
+ .`.concat(WY,` {
9
+ overflow: hidden `).concat(n,`;
10
+ padding-right: `).concat(s,"px ").concat(n,`;
11
+ }
12
+ body[`).concat(os,`] {
13
+ overflow: hidden `).concat(n,`;
14
+ overscroll-behavior: contain;
15
+ `).concat([t&&"position: relative ".concat(n,";"),o==="margin"&&`
16
+ padding-left: `.concat(a,`px;
17
+ padding-top: `).concat(r,`px;
18
+ padding-right: `).concat(c,`px;
19
+ margin-left:0;
20
+ margin-top:0;
21
+ margin-right: `).concat(s,"px ").concat(n,`;
22
+ `),o==="padding"&&"padding-right: ".concat(s,"px ").concat(n,";")].filter(Boolean).join(""),`
23
+ }
24
+
25
+ .`).concat(SC,` {
26
+ right: `).concat(s,"px ").concat(n,`;
27
+ }
28
+
29
+ .`).concat(LC,` {
30
+ margin-right: `).concat(s,"px ").concat(n,`;
31
+ }
32
+
33
+ .`).concat(SC," .").concat(SC,` {
34
+ right: 0 `).concat(n,`;
35
+ }
36
+
37
+ .`).concat(LC," .").concat(LC,` {
38
+ margin-right: 0 `).concat(n,`;
39
+ }
40
+
41
+ body[`).concat(os,`] {
42
+ `).concat(UY,": ").concat(s,`px;
43
+ }
44
+ `)},DD=function(){var e=parseInt(document.body.getAttribute(os)||"0",10);return isFinite(e)?e:0},lX=function(){p.useEffect(function(){return document.body.setAttribute(os,(DD()+1).toString()),function(){var e=DD()-1;e<=0?document.body.removeAttribute(os):document.body.setAttribute(os,e.toString())}},[])},uX=function(e){var t=e.noRelative,o=e.noImportant,n=e.gapMode,a=n===void 0?"margin":n;lX();var r=p.useMemo(function(){return cX(a)},[a]);return p.createElement(sX,{styles:dX(r,!t,a,o?"":"!important")})},WS=!1;if(typeof window<"u")try{var AC=Object.defineProperty({},"passive",{get:function(){return WS=!0,!0}});window.addEventListener("test",AC,AC),window.removeEventListener("test",AC,AC)}catch{WS=!1}var ns=WS?{passive:!1}:!1,hX=function(e){return e.tagName==="TEXTAREA"},ED=function(e,t){if(!(e instanceof Element))return!1;var o=window.getComputedStyle(e);return o[t]!=="hidden"&&!(o.overflowY===o.overflowX&&!hX(e)&&o[t]==="visible")},pX=function(e){return ED(e,"overflowY")},yX=function(e){return ED(e,"overflowX")},zD=function(e,t){var o=t.ownerDocument,n=t;do{typeof ShadowRoot<"u"&&n instanceof ShadowRoot&&(n=n.host);var a=OD(e,n);if(a){var r=qD(e,n),c=r[1],s=r[2];if(c>s)return!0}n=n.parentNode}while(n&&n!==o.body);return!1},fX=function(e){var t=e.scrollTop,o=e.scrollHeight,n=e.clientHeight;return[t,o,n]},mX=function(e){var t=e.scrollLeft,o=e.scrollWidth,n=e.clientWidth;return[t,o,n]},OD=function(e,t){return e==="v"?pX(t):yX(t)},qD=function(e,t){return e==="v"?fX(t):mX(t)},kX=function(e,t){return e==="h"&&t==="rtl"?-1:1},gX=function(e,t,o,n,a){var r=kX(e,window.getComputedStyle(t).direction),c=r*n,s=o.target,l=t.contains(s),u=!1,y=c>0,h=0,f=0;do{if(!s)break;var k=qD(e,s),m=k[0],g=k[1],_=k[2],v=g-_-r*m;(m||v)&&OD(e,s)&&(h+=v,f+=m);var b=s.parentNode;s=b&&b.nodeType===Node.DOCUMENT_FRAGMENT_NODE?b.host:b}while(!l&&s!==document.body||l&&(t.contains(s)||t===s));return(y&&Math.abs(h)<1||!y&&Math.abs(f)<1)&&(u=!0),u},PC=function(e){return"changedTouches"in e?[e.changedTouches[0].clientX,e.changedTouches[0].clientY]:[0,0]},jD=function(e){return[e.deltaX,e.deltaY]},HD=function(e){return e&&"current"in e?e.current:e},vX=function(e,t){return e[0]===t[0]&&e[1]===t[1]},_X=function(e){return`
45
+ .block-interactivity-`.concat(e,` {pointer-events: none;}
46
+ .allow-interactivity-`).concat(e,` {pointer-events: all;}
47
+ `)},bX=0,as=[];function MX(e){var t=p.useRef([]),o=p.useRef([0,0]),n=p.useRef(),a=p.useState(bX++)[0],r=p.useState(TD)[0],c=p.useRef(e);p.useEffect(function(){c.current=e},[e]),p.useEffect(function(){if(e.inert){document.body.classList.add("block-interactivity-".concat(a));var g=BY([e.lockRef.current],(e.shards||[]).map(HD),!0).filter(Boolean);return g.forEach(function(_){return _.classList.add("allow-interactivity-".concat(a))}),function(){document.body.classList.remove("block-interactivity-".concat(a)),g.forEach(function(_){return _.classList.remove("allow-interactivity-".concat(a))})}}},[e.inert,e.lockRef.current,e.shards]);var s=p.useCallback(function(g,_){if("touches"in g&&g.touches.length===2||g.type==="wheel"&&g.ctrlKey)return!c.current.allowPinchZoom;var v=PC(g),b=o.current,M="deltaX"in g?g.deltaX:b[0]-v[0],x="deltaY"in g?g.deltaY:b[1]-v[1],N,C=g.target,$=Math.abs(M)>Math.abs(x)?"h":"v";if("touches"in g&&$==="h"&&C.type==="range")return!1;var L=window.getSelection(),A=L&&L.anchorNode,q=A?A===C||A.contains(C):!1;if(q)return!1;var z=zD($,C);if(!z)return!0;if(z?N=$:(N=$==="v"?"h":"v",z=zD($,C)),!z)return!1;if(!n.current&&"changedTouches"in g&&(M||x)&&(n.current=N),!N)return!0;var O=n.current||N;return gX(O,_,g,O==="h"?M:x)},[]),l=p.useCallback(function(g){var _=g;if(!(!as.length||as[as.length-1]!==r)){var v="deltaY"in _?jD(_):PC(_),b=t.current.filter(function(N){return N.name===_.type&&(N.target===_.target||_.target===N.shadowParent)&&vX(N.delta,v)})[0];if(b&&b.should){_.cancelable&&_.preventDefault();return}if(!b){var M=(c.current.shards||[]).map(HD).filter(Boolean).filter(function(N){return N.contains(_.target)}),x=M.length>0?s(_,M[0]):!c.current.noIsolation;x&&_.cancelable&&_.preventDefault()}}},[]),u=p.useCallback(function(g,_,v,b){var M={name:g,delta:_,target:v,should:b,shadowParent:wX(v)};t.current.push(M),setTimeout(function(){t.current=t.current.filter(function(x){return x!==M})},1)},[]),y=p.useCallback(function(g){o.current=PC(g),n.current=void 0},[]),h=p.useCallback(function(g){u(g.type,jD(g),g.target,s(g,e.lockRef.current))},[]),f=p.useCallback(function(g){u(g.type,PC(g),g.target,s(g,e.lockRef.current))},[]);p.useEffect(function(){return as.push(r),e.setCallbacks({onScrollCapture:h,onWheelCapture:h,onTouchMoveCapture:f}),document.addEventListener("wheel",l,ns),document.addEventListener("touchmove",l,ns),document.addEventListener("touchstart",y,ns),function(){as=as.filter(function(g){return g!==r}),document.removeEventListener("wheel",l,ns),document.removeEventListener("touchmove",l,ns),document.removeEventListener("touchstart",y,ns)}},[]);var k=e.removeScrollBar,m=e.inert;return p.createElement(p.Fragment,null,m?p.createElement(r,{styles:_X(a)}):null,k?p.createElement(uX,{noRelative:e.noRelative,gapMode:e.gapMode}):null)}function wX(e){for(var t=null;e!==null;)e instanceof ShadowRoot&&(t=e.host,e=e.host),e=e.parentNode;return t}const xX=QY(PD,MX);var hd=p.forwardRef(function(e,t){return p.createElement(IC,Mo({},e,{ref:t,sideCar:xX}))});hd.classNames=IC.classNames;var NX=function(e){if(typeof document>"u")return null;var t=Array.isArray(e)?e[0]:e;return t.ownerDocument.body},rs=new WeakMap,TC=new WeakMap,DC={},US=0,VD=function(e){return e&&(e.host||VD(e.parentNode))},CX=function(e,t){return t.map(function(o){if(e.contains(o))return o;var n=VD(o);return n&&e.contains(n)?n:(console.error("aria-hidden",o,"in not contained inside",e,". Doing nothing"),null)}).filter(function(o){return!!o})},$X=function(e,t,o,n){var a=CX(t,Array.isArray(e)?e:[e]);DC[o]||(DC[o]=new WeakMap);var r=DC[o],c=[],s=new Set,l=new Set(a),u=function(h){!h||s.has(h)||(s.add(h),u(h.parentNode))};a.forEach(u);var y=function(h){!h||l.has(h)||Array.prototype.forEach.call(h.children,function(f){if(s.has(f))y(f);else try{var k=f.getAttribute(n),m=k!==null&&k!=="false",g=(rs.get(f)||0)+1,_=(r.get(f)||0)+1;rs.set(f,g),r.set(f,_),c.push(f),g===1&&m&&TC.set(f,!0),_===1&&f.setAttribute(o,"true"),m||f.setAttribute(n,"true")}catch(v){console.error("aria-hidden: cannot operate on ",f,v)}})};return y(t),s.clear(),US++,function(){c.forEach(function(h){var f=rs.get(h)-1,k=r.get(h)-1;rs.set(h,f),r.set(h,k),f||(TC.has(h)||h.removeAttribute(n),TC.delete(h)),k||h.removeAttribute(o)}),US--,US||(rs=new WeakMap,rs=new WeakMap,TC=new WeakMap,DC={})}},EC=function(e,t,o){o===void 0&&(o="data-aria-hidden");var n=Array.from(Array.isArray(e)?e:[e]),a=NX(e);return a?(n.push.apply(n,Array.from(a.querySelectorAll("[aria-live], script"))),$X(n,a,o,"aria-hidden")):function(){return null}},zC="Dialog",[FD,BD]=Xe(zC),[SX,eo]=FD(zC),WD=e=>{const{__scopeDialog:t,children:o,open:n,defaultOpen:a,onOpenChange:r,modal:c=!0}=e,s=p.useRef(null),l=p.useRef(null),[u,y]=Ke({prop:n,defaultProp:a??!1,onChange:r,caller:zC});return d.jsx(SX,{scope:t,triggerRef:s,contentRef:l,contentId:We(),titleId:We(),descriptionId:We(),open:u,onOpenChange:y,onOpenToggle:p.useCallback(()=>y(h=>!h),[y]),modal:c,children:o})};WD.displayName=zC;var UD="DialogTrigger",RD=p.forwardRef((e,t)=>{const{__scopeDialog:o,...n}=e,a=eo(UD,o),r=be(t,a.triggerRef);return d.jsx(se.button,{type:"button","aria-haspopup":"dialog","aria-expanded":a.open,"aria-controls":a.contentId,"data-state":KS(a.open),...n,ref:r,onClick:X(e.onClick,a.onOpenToggle)})});RD.displayName=UD;var RS="DialogPortal",[LX,GD]=FD(RS,{forceMount:void 0}),KD=e=>{const{__scopeDialog:t,forceMount:o,children:n,container:a}=e,r=eo(RS,t);return d.jsx(LX,{scope:t,forceMount:o,children:p.Children.map(n,c=>d.jsx(Qe,{present:o||r.open,children:d.jsx(ud,{asChild:!0,container:a,children:c})}))})};KD.displayName=RS;var OC="DialogOverlay",YD=p.forwardRef((e,t)=>{const o=GD(OC,e.__scopeDialog),{forceMount:n=o.forceMount,...a}=e,r=eo(OC,e.__scopeDialog);return r.modal?d.jsx(Qe,{present:n||r.open,children:d.jsx(AX,{...a,ref:t})}):null});YD.displayName=OC;var IX=wn("DialogOverlay.RemoveScroll"),AX=p.forwardRef((e,t)=>{const{__scopeDialog:o,...n}=e,a=eo(OC,o);return d.jsx(hd,{as:IX,allowPinchZoom:!0,shards:[a.contentRef],children:d.jsx(se.div,{"data-state":KS(a.open),...n,ref:t,style:{pointerEvents:"auto",...n.style}})})}),Nc="DialogContent",XD=p.forwardRef((e,t)=>{const o=GD(Nc,e.__scopeDialog),{forceMount:n=o.forceMount,...a}=e,r=eo(Nc,e.__scopeDialog);return d.jsx(Qe,{present:n||r.open,children:r.modal?d.jsx(PX,{...a,ref:t}):d.jsx(TX,{...a,ref:t})})});XD.displayName=Nc;var PX=p.forwardRef((e,t)=>{const o=eo(Nc,e.__scopeDialog),n=p.useRef(null),a=be(t,o.contentRef,n);return p.useEffect(()=>{const r=n.current;if(r)return EC(r)},[]),d.jsx(ZD,{...e,ref:a,trapFocus:o.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:X(e.onCloseAutoFocus,r=>{r.preventDefault(),o.triggerRef.current?.focus()}),onPointerDownOutside:X(e.onPointerDownOutside,r=>{const c=r.detail.originalEvent,s=c.button===0&&c.ctrlKey===!0;(c.button===2||s)&&r.preventDefault()}),onFocusOutside:X(e.onFocusOutside,r=>r.preventDefault())})}),TX=p.forwardRef((e,t)=>{const o=eo(Nc,e.__scopeDialog),n=p.useRef(!1),a=p.useRef(!1);return d.jsx(ZD,{...e,ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:r=>{e.onCloseAutoFocus?.(r),r.defaultPrevented||(n.current||o.triggerRef.current?.focus(),r.preventDefault()),n.current=!1,a.current=!1},onInteractOutside:r=>{e.onInteractOutside?.(r),r.defaultPrevented||(n.current=!0,r.detail.originalEvent.type==="pointerdown"&&(a.current=!0));const c=r.target;o.triggerRef.current?.contains(c)&&r.preventDefault(),r.detail.originalEvent.type==="focusin"&&a.current&&r.preventDefault()}})}),ZD=p.forwardRef((e,t)=>{const{__scopeDialog:o,trapFocus:n,onOpenAutoFocus:a,onCloseAutoFocus:r,...c}=e,s=eo(Nc,o),l=p.useRef(null),u=be(t,l);return $C(),d.jsxs(d.Fragment,{children:[d.jsx(ld,{asChild:!0,loop:!0,trapped:n,onMountAutoFocus:a,onUnmountAutoFocus:r,children:d.jsx(dn,{role:"dialog",id:s.contentId,"aria-describedby":s.descriptionId,"aria-labelledby":s.titleId,"data-state":KS(s.open),...c,ref:u,onDismiss:()=>s.onOpenChange(!1)})}),d.jsxs(d.Fragment,{children:[d.jsx(EX,{titleId:s.titleId}),d.jsx(OX,{contentRef:l,descriptionId:s.descriptionId})]})]})}),GS="DialogTitle",QD=p.forwardRef((e,t)=>{const{__scopeDialog:o,...n}=e,a=eo(GS,o);return d.jsx(se.h2,{id:a.titleId,...n,ref:t})});QD.displayName=GS;var JD="DialogDescription",eE=p.forwardRef((e,t)=>{const{__scopeDialog:o,...n}=e,a=eo(JD,o);return d.jsx(se.p,{id:a.descriptionId,...n,ref:t})});eE.displayName=JD;var tE="DialogClose",oE=p.forwardRef((e,t)=>{const{__scopeDialog:o,...n}=e,a=eo(tE,o);return d.jsx(se.button,{type:"button",...n,ref:t,onClick:X(e.onClick,()=>a.onOpenChange(!1))})});oE.displayName=tE;function KS(e){return e?"open":"closed"}var nE="DialogTitleWarning",[DX,aE]=BK(nE,{contentName:Nc,titleName:GS,docsSlug:"dialog"}),EX=({titleId:e})=>{const t=aE(nE),o=`\`${t.contentName}\` requires a \`${t.titleName}\` for the component to be accessible for screen reader users.
48
+
49
+ If you want to hide the \`${t.titleName}\`, you can wrap it with our VisuallyHidden component.
50
+
51
+ For more information, see https://radix-ui.com/primitives/docs/components/${t.docsSlug}`;return p.useEffect(()=>{e&&(document.getElementById(e)||console.error(o))},[o,e]),null},zX="DialogDescriptionWarning",OX=({contentRef:e,descriptionId:t})=>{const n=`Warning: Missing \`Description\` or \`aria-describedby={undefined}\` for {${aE(zX).contentName}}.`;return p.useEffect(()=>{const a=e.current?.getAttribute("aria-describedby");t&&a&&(document.getElementById(t)||console.warn(n))},[n,e,t]),null},pd=WD,qC=RD,yd=KD,Cc=YD,$c=XD,is=QD,cs=eE,fd=oE,rE="AlertDialog",[qX]=Xe(rE,[BD]),Fo=BD(),iE=e=>{const{__scopeAlertDialog:t,...o}=e,n=Fo(t);return d.jsx(pd,{...n,...o,modal:!0})};iE.displayName=rE;var jX="AlertDialogTrigger",cE=p.forwardRef((e,t)=>{const{__scopeAlertDialog:o,...n}=e,a=Fo(o);return d.jsx(qC,{...a,...n,ref:t})});cE.displayName=jX;var HX="AlertDialogPortal",sE=e=>{const{__scopeAlertDialog:t,...o}=e,n=Fo(t);return d.jsx(yd,{...n,...o})};sE.displayName=HX;var VX="AlertDialogOverlay",dE=p.forwardRef((e,t)=>{const{__scopeAlertDialog:o,...n}=e,a=Fo(o);return d.jsx(Cc,{...a,...n,ref:t})});dE.displayName=VX;var ss="AlertDialogContent",[FX,BX]=qX(ss),WX=KT("AlertDialogContent"),lE=p.forwardRef((e,t)=>{const{__scopeAlertDialog:o,children:n,...a}=e,r=Fo(o),c=p.useRef(null),s=be(t,c),l=p.useRef(null);return d.jsx(DX,{contentName:ss,titleName:uE,docsSlug:"alert-dialog",children:d.jsx(FX,{scope:o,cancelRef:l,children:d.jsxs($c,{role:"alertdialog",...r,...a,ref:s,onOpenAutoFocus:X(a.onOpenAutoFocus,u=>{u.preventDefault(),l.current?.focus({preventScroll:!0})}),onPointerDownOutside:u=>u.preventDefault(),onInteractOutside:u=>u.preventDefault(),children:[d.jsx(WX,{children:n}),d.jsx(RX,{contentRef:c})]})})})});lE.displayName=ss;var uE="AlertDialogTitle",hE=p.forwardRef((e,t)=>{const{__scopeAlertDialog:o,...n}=e,a=Fo(o);return d.jsx(is,{...a,...n,ref:t})});hE.displayName=uE;var pE="AlertDialogDescription",yE=p.forwardRef((e,t)=>{const{__scopeAlertDialog:o,...n}=e,a=Fo(o);return d.jsx(cs,{...a,...n,ref:t})});yE.displayName=pE;var UX="AlertDialogAction",fE=p.forwardRef((e,t)=>{const{__scopeAlertDialog:o,...n}=e,a=Fo(o);return d.jsx(fd,{...a,...n,ref:t})});fE.displayName=UX;var mE="AlertDialogCancel",kE=p.forwardRef((e,t)=>{const{__scopeAlertDialog:o,...n}=e,{cancelRef:a}=BX(mE,o),r=Fo(o),c=be(t,a);return d.jsx(fd,{...r,...n,ref:c})});kE.displayName=mE;var RX=({contentRef:e})=>{const t=`\`${ss}\` requires a description for the component to be accessible for screen reader users.
52
+
53
+ You can add a description to the \`${ss}\` by passing a \`${pE}\` component as a child, which also benefits sighted users by adding visible context to the dialog.
54
+
55
+ Alternatively, you can use your own component as a description by assigning it an \`id\` and passing the same value to the \`aria-describedby\` prop in \`${ss}\`. If the description is confusing or duplicative for sighted users, you can use the \`@radix-ui/react-visually-hidden\` primitive as a wrapper around your description component.
56
+
57
+ For more information, see https://radix-ui.com/primitives/docs/components/alert-dialog`;return p.useEffect(()=>{document.getElementById(e.current?.getAttribute("aria-describedby"))||console.warn(t)},[t,e]),null},GX=iE,KX=cE,YX=sE,gE=dE,vE=lE,_E=fE,bE=kE,ME=hE,wE=yE,XX=Symbol.for("react.lazy"),jC=p[" use ".trim().toString()];function ZX(e){return typeof e=="object"&&e!==null&&"then"in e}function xE(e){return e!=null&&typeof e=="object"&&"$$typeof"in e&&e.$$typeof===XX&&"_payload"in e&&ZX(e._payload)}function NE(e){const t=QX(e),o=p.forwardRef((n,a)=>{let{children:r,...c}=n;xE(r)&&typeof jC=="function"&&(r=jC(r._payload));const s=p.Children.toArray(r),l=s.find(eZ);if(l){const u=l.props.children,y=s.map(h=>h===l?p.Children.count(u)>1?p.Children.only(null):p.isValidElement(u)?u.props.children:null:h);return d.jsx(t,{...c,ref:a,children:p.isValidElement(u)?p.cloneElement(u,void 0,y):null})}return d.jsx(t,{...c,ref:a,children:r})});return o.displayName=`${e}.Slot`,o}var Bo=NE("Slot");function QX(e){const t=p.forwardRef((o,n)=>{let{children:a,...r}=o;if(xE(a)&&typeof jC=="function"&&(a=jC(a._payload)),p.isValidElement(a)){const c=oZ(a),s=tZ(r,a.props);return a.type!==p.Fragment&&(s.ref=n?Kt(n,c):c),p.cloneElement(a,s)}return p.Children.count(a)>1?p.Children.only(null):null});return t.displayName=`${e}.SlotClone`,t}var JX=Symbol("radix.slottable");function eZ(e){return p.isValidElement(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===JX}function tZ(e,t){const o={...t};for(const n in t){const a=e[n],r=t[n];/^on[A-Z]/.test(n)?a&&r?o[n]=(...s)=>{const l=r(...s);return a(...s),l}:a&&(o[n]=a):n==="style"?o[n]={...a,...r}:n==="className"&&(o[n]=[a,r].filter(Boolean).join(" "))}return{...e,...o}}function oZ(e){let t=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,o=t&&"isReactWarning"in t&&t.isReactWarning;return o?e.ref:(t=Object.getOwnPropertyDescriptor(e,"ref")?.get,o=t&&"isReactWarning"in t&&t.isReactWarning,o?e.props.ref:e.props.ref||e.ref)}const CE=e=>typeof e=="boolean"?`${e}`:e===0?"0":e,$E=sS,Wo=(e,t)=>o=>{var n;if(t?.variants==null)return $E(e,o?.class,o?.className);const{variants:a,defaultVariants:r}=t,c=Object.keys(a).map(u=>{const y=o?.[u],h=r?.[u];if(y===null)return null;const f=CE(y)||CE(h);return a[u][f]}),s=o&&Object.entries(o).reduce((u,y)=>{let[h,f]=y;return f===void 0||(u[h]=f),u},{}),l=t==null||(n=t.compoundVariants)===null||n===void 0?void 0:n.reduce((u,y)=>{let{class:h,className:f,...k}=y;return Object.entries(k).every(m=>{let[g,_]=m;return Array.isArray(_)?_.includes({...r,...s}[g]):{...r,...s}[g]===_})?[...u,h,f]:u},[]);return $E(e,c,l,o?.class,o?.className)},ds=Wo("inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",{variants:{variant:{default:"bg-primary text-primary-foreground hover:bg-primary/90",destructive:"bg-destructive text-destructive-foreground hover:bg-destructive/90",outline:"border border-input bg-background hover:bg-accent hover:text-accent-foreground",secondary:"bg-secondary text-secondary-foreground hover:bg-secondary/80",ghost:"hover:bg-accent hover:text-accent-foreground",link:"text-primary underline-offset-4 hover:underline"},size:{default:"h-10 px-4 py-2",sm:"h-9 rounded-md px-3",lg:"h-11 rounded-md px-8",icon:"h-10 w-10","icon-sm":"h-8 w-8","icon-lg":"h-12 w-12"}},defaultVariants:{variant:"default",size:"default"}}),Ee=p.forwardRef(({className:e,variant:t,size:o,asChild:n=!1,...a},r)=>{const c=n?Bo:"button";return d.jsx(c,{className:S(ds({variant:t,size:o,className:e})),ref:r,...a})});Ee.displayName="Button";const nZ=GX,aZ=KX,rZ=YX,SE=p.forwardRef(({className:e,...t},o)=>d.jsx(gE,{className:S("fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",e),...t,ref:o}));SE.displayName=gE.displayName;const LE=p.forwardRef(({className:e,...t},o)=>d.jsxs(rZ,{children:[d.jsx(SE,{}),d.jsx(vE,{ref:o,className:S("fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",e),...t})]}));LE.displayName=vE.displayName;const IE=({className:e,...t})=>d.jsx("div",{className:S("flex flex-col space-y-2 text-center sm:text-left",e),...t});IE.displayName="AlertDialogHeader";const AE=({className:e,...t})=>d.jsx("div",{className:S("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",e),...t});AE.displayName="AlertDialogFooter";const PE=p.forwardRef(({className:e,...t},o)=>d.jsx(ME,{ref:o,className:S("text-lg font-semibold",e),...t}));PE.displayName=ME.displayName;const TE=p.forwardRef(({className:e,...t},o)=>d.jsx(wE,{ref:o,className:S("text-sm text-muted-foreground",e),...t}));TE.displayName=wE.displayName;const DE=p.forwardRef(({className:e,...t},o)=>d.jsx(_E,{ref:o,className:S(ds(),e),...t}));DE.displayName=_E.displayName;const EE=p.forwardRef(({className:e,...t},o)=>d.jsx(bE,{ref:o,className:S(ds({variant:"outline"}),"mt-2 sm:mt-0",e),...t}));EE.displayName=bE.displayName;const iZ=Wo("relative w-full rounded-lg border p-4 [&>svg~*]:pl-7 [&>svg+div]:translate-y-[-3px] [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg]:text-foreground",{variants:{variant:{default:"bg-background text-foreground",destructive:"border-destructive/50 text-destructive dark:border-destructive [&>svg]:text-destructive"}},defaultVariants:{variant:"default"}}),YS=p.forwardRef(({className:e,variant:t,...o},n)=>d.jsx("div",{ref:n,role:"alert",className:S(iZ({variant:t}),e),...o}));YS.displayName="Alert";const zE=p.forwardRef(({className:e,...t},o)=>d.jsx("h5",{ref:o,className:S("mb-1 font-medium leading-none tracking-tight",e),...t}));zE.displayName="AlertTitle";const XS=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,className:S("text-sm [&_p]:leading-relaxed",e),...t}));XS.displayName="AlertDescription";var cZ=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],ht=cZ.reduce((e,t)=>{const o=NE(`Primitive.${t}`),n=p.forwardRef((a,r)=>{const{asChild:c,...s}=a,l=c?o:t;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),d.jsx(l,{...s,ref:r})});return n.displayName=`Primitive.${t}`,{...e,[t]:n}},{}),sZ="AspectRatio",OE=p.forwardRef((e,t)=>{const{ratio:o=1/1,style:n,...a}=e;return d.jsx("div",{style:{position:"relative",width:"100%",paddingBottom:`${100/o}%`},"data-radix-aspect-ratio-wrapper":"",children:d.jsx(ht.div,{...a,ref:t,style:{...n,position:"absolute",top:0,right:0,bottom:0,left:0}})})});OE.displayName=sZ;var dZ=OE;const lZ=dZ;function qE(e,t=[]){let o=[];function n(r,c){const s=p.createContext(c);s.displayName=r+"Context";const l=o.length;o=[...o,c];const u=h=>{const{scope:f,children:k,...m}=h,g=f?.[e]?.[l]||s,_=p.useMemo(()=>m,Object.values(m));return d.jsx(g.Provider,{value:_,children:k})};u.displayName=r+"Provider";function y(h,f){const k=f?.[e]?.[l]||s,m=p.useContext(k);if(m)return m;if(c!==void 0)return c;throw new Error(`\`${h}\` must be used within \`${r}\``)}return[u,y]}const a=()=>{const r=o.map(c=>p.createContext(c));return function(s){const l=s?.[e]||r;return p.useMemo(()=>({[`__scope${e}`]:{...s,[e]:l}}),[s,l])}};return a.scopeName=e,[n,uZ(a,...t)]}function uZ(...e){const t=e[0];if(e.length===1)return t;const o=()=>{const n=e.map(a=>({useScope:a(),scopeName:a.scopeName}));return function(r){const c=n.reduce((s,{useScope:l,scopeName:u})=>{const h=l(r)[`__scope${u}`];return{...s,...h}},{});return p.useMemo(()=>({[`__scope${t.scopeName}`]:c}),[c])}};return o.scopeName=t.scopeName,o}var HC=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function jE(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var VC={exports:{}},ZS={};var HE;function hZ(){if(HE)return ZS;HE=1;var e=w;function t(h,f){return h===f&&(h!==0||1/h===1/f)||h!==h&&f!==f}var o=typeof Object.is=="function"?Object.is:t,n=e.useState,a=e.useEffect,r=e.useLayoutEffect,c=e.useDebugValue;function s(h,f){var k=f(),m=n({inst:{value:k,getSnapshot:f}}),g=m[0].inst,_=m[1];return r(function(){g.value=k,g.getSnapshot=f,l(g)&&_({inst:g})},[h,k,f]),a(function(){return l(g)&&_({inst:g}),h(function(){l(g)&&_({inst:g})})},[h]),c(k),k}function l(h){var f=h.getSnapshot;h=h.value;try{var k=f();return!o(h,k)}catch{return!0}}function u(h,f){return f()}var y=typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?u:s;return ZS.useSyncExternalStore=e.useSyncExternalStore!==void 0?e.useSyncExternalStore:y,ZS}var QS={};var VE;function pZ(){return VE||(VE=1,process.env.NODE_ENV!=="production"&&(function(){function e(k,m){return k===m&&(k!==0||1/k===1/m)||k!==k&&m!==m}function t(k,m){y||a.startTransition===void 0||(y=!0,console.error("You are using an outdated, pre-release alpha of React 18 that does not support useSyncExternalStore. The use-sync-external-store shim will not work correctly. Upgrade to a newer pre-release."));var g=m();if(!h){var _=m();r(g,_)||(console.error("The result of getSnapshot should be cached to avoid an infinite loop"),h=!0)}_=c({inst:{value:g,getSnapshot:m}});var v=_[0].inst,b=_[1];return l(function(){v.value=g,v.getSnapshot=m,o(v)&&b({inst:v})},[k,g,m]),s(function(){return o(v)&&b({inst:v}),k(function(){o(v)&&b({inst:v})})},[k]),u(g),g}function o(k){var m=k.getSnapshot;k=k.value;try{var g=m();return!r(k,g)}catch{return!0}}function n(k,m){return m()}typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart=="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());var a=w,r=typeof Object.is=="function"?Object.is:e,c=a.useState,s=a.useEffect,l=a.useLayoutEffect,u=a.useDebugValue,y=!1,h=!1,f=typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?n:t;QS.useSyncExternalStore=a.useSyncExternalStore!==void 0?a.useSyncExternalStore:f,typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop=="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error())})()),QS}var FE;function yZ(){return FE||(FE=1,process.env.NODE_ENV==="production"?VC.exports=hZ():VC.exports=pZ()),VC.exports}var fZ=yZ();function mZ(){return fZ.useSyncExternalStore(kZ,()=>!0,()=>!1)}function kZ(){return()=>{}}var JS="Avatar",[gZ]=qE(JS),[vZ,BE]=gZ(JS),WE=p.forwardRef((e,t)=>{const{__scopeAvatar:o,...n}=e,[a,r]=p.useState("idle");return d.jsx(vZ,{scope:o,imageLoadingStatus:a,onImageLoadingStatusChange:r,children:d.jsx(ht.span,{...n,ref:t})})});WE.displayName=JS;var UE="AvatarImage",RE=p.forwardRef((e,t)=>{const{__scopeAvatar:o,src:n,onLoadingStatusChange:a=()=>{},...r}=e,c=BE(UE,o),s=_Z(n,r),l=Ue(u=>{a(u),c.onImageLoadingStatusChange(u)});return Ze(()=>{s!=="idle"&&l(s)},[s,l]),s==="loaded"?d.jsx(ht.img,{...r,ref:t,src:n}):null});RE.displayName=UE;var GE="AvatarFallback",KE=p.forwardRef((e,t)=>{const{__scopeAvatar:o,delayMs:n,...a}=e,r=BE(GE,o),[c,s]=p.useState(n===void 0);return p.useEffect(()=>{if(n!==void 0){const l=window.setTimeout(()=>s(!0),n);return()=>window.clearTimeout(l)}},[n]),c&&r.imageLoadingStatus!=="loaded"?d.jsx(ht.span,{...a,ref:t}):null});KE.displayName=GE;function YE(e,t){return e?t?(e.src!==t&&(e.src=t),e.complete&&e.naturalWidth>0?"loaded":"loading"):"error":"idle"}function _Z(e,{referrerPolicy:t,crossOrigin:o}){const n=mZ(),a=p.useRef(null),r=n?(a.current||(a.current=new window.Image),a.current):null,[c,s]=p.useState(()=>YE(r,e));return Ze(()=>{s(YE(r,e))},[r,e]),Ze(()=>{const l=h=>()=>{s(h)};if(!r)return;const u=l("loaded"),y=l("error");return r.addEventListener("load",u),r.addEventListener("error",y),t&&(r.referrerPolicy=t),typeof o=="string"&&(r.crossOrigin=o),()=>{r.removeEventListener("load",u),r.removeEventListener("error",y)}},[r,o,t]),c}var XE=WE,ZE=RE,QE=KE;const JE=p.forwardRef(({className:e,...t},o)=>d.jsx(XE,{ref:o,className:S("relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full",e),...t}));JE.displayName=XE.displayName;const ez=p.forwardRef(({className:e,...t},o)=>d.jsx(ZE,{ref:o,className:S("aspect-square h-full w-full",e),...t}));ez.displayName=ZE.displayName;const tz=p.forwardRef(({className:e,...t},o)=>d.jsx(QE,{ref:o,className:S("flex h-full w-full items-center justify-center rounded-full bg-muted",e),...t}));tz.displayName=QE.displayName;const bZ=Wo("inline-flex items-center rounded-full border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2",{variants:{variant:{default:"border-transparent bg-primary text-primary-foreground hover:bg-primary/80",secondary:"border-transparent bg-secondary text-secondary-foreground hover:bg-secondary/80",destructive:"border-transparent bg-destructive text-destructive-foreground hover:bg-destructive/80",outline:"text-foreground"}},defaultVariants:{variant:"default"}});function MZ({className:e,variant:t,...o}){return d.jsx("div",{className:S(bZ({variant:t}),e),...o})}const eL=p.forwardRef(({...e},t)=>d.jsx("nav",{ref:t,"aria-label":"breadcrumb",...e}));eL.displayName="Breadcrumb";const tL=p.forwardRef(({className:e,...t},o)=>d.jsx("ol",{ref:o,className:S("flex flex-wrap items-center gap-1.5 break-words text-sm text-muted-foreground sm:gap-2.5",e),...t}));tL.displayName="BreadcrumbList";const oL=p.forwardRef(({className:e,...t},o)=>d.jsx("li",{ref:o,className:S("inline-flex items-center gap-1.5",e),...t}));oL.displayName="BreadcrumbItem";const nL=p.forwardRef(({asChild:e,className:t,...o},n)=>{const a=e?Bo:"a";return d.jsx(a,{ref:n,className:S("transition-colors hover:text-foreground",t),...o})});nL.displayName="BreadcrumbLink";const aL=p.forwardRef(({className:e,...t},o)=>d.jsx("span",{ref:o,role:"link","aria-disabled":"true","aria-current":"page",className:S("font-normal text-foreground",e),...t}));aL.displayName="BreadcrumbPage";const rL=({children:e,className:t,...o})=>d.jsx("li",{role:"presentation","aria-hidden":"true",className:S("[&>svg]:w-3.5 [&>svg]:h-3.5",t),...o,children:e??d.jsx(Ot,{})});rL.displayName="BreadcrumbSeparator";function wZ(e,t,o="long"){return new Intl.DateTimeFormat("en-US",{hour:"numeric",timeZone:e,timeZoneName:o}).format(t).split(/\s/g).slice(2).join(" ")}const xZ={},md={};function Sc(e,t){try{const n=(xZ[e]||=new Intl.DateTimeFormat("en-US",{timeZone:e,timeZoneName:"longOffset"}).format)(t).split("GMT")[1];return n in md?md[n]:oz(n,n.split(":"))}catch{if(e in md)return md[e];const o=e?.match(NZ);return o?oz(e,o.slice(1)):NaN}}const NZ=/([+-]\d\d):?(\d\d)?/;function oz(e,t){const o=+(t[0]||0),n=+(t[1]||0),a=+(t[2]||0)/60;return md[e]=o*60+n>0?o*60+n+a:o*60-n-a}class wo extends Date{constructor(...t){super(),t.length>1&&typeof t[t.length-1]=="string"&&(this.timeZone=t.pop()),this.internal=new Date,isNaN(Sc(this.timeZone,this))?this.setTime(NaN):t.length?typeof t[0]=="number"&&(t.length===1||t.length===2&&typeof t[1]!="number")?this.setTime(t[0]):typeof t[0]=="string"?this.setTime(+new Date(t[0])):t[0]instanceof Date?this.setTime(+t[0]):(this.setTime(+new Date(...t)),az(this),iL(this)):this.setTime(Date.now())}static tz(t,...o){return o.length?new wo(...o,t):new wo(Date.now(),t)}withTimeZone(t){return new wo(+this,t)}getTimezoneOffset(){const t=-Sc(this.timeZone,this);return t>0?Math.floor(t):Math.ceil(t)}setTime(t){return Date.prototype.setTime.apply(this,arguments),iL(this),+this}[Symbol.for("constructDateFrom")](t){return new wo(+new Date(t),this.timeZone)}}const nz=/^(get|set)(?!UTC)/;Object.getOwnPropertyNames(Date.prototype).forEach(e=>{if(!nz.test(e))return;const t=e.replace(nz,"$1UTC");wo.prototype[t]&&(e.startsWith("get")?wo.prototype[e]=function(){return this.internal[t]()}:(wo.prototype[e]=function(){return Date.prototype[t].apply(this.internal,arguments),CZ(this),+this},wo.prototype[t]=function(){return Date.prototype[t].apply(this,arguments),iL(this),+this}))});function iL(e){e.internal.setTime(+e),e.internal.setUTCSeconds(e.internal.getUTCSeconds()-Math.round(-Sc(e.timeZone,e)*60))}function CZ(e){Date.prototype.setFullYear.call(e,e.internal.getUTCFullYear(),e.internal.getUTCMonth(),e.internal.getUTCDate()),Date.prototype.setHours.call(e,e.internal.getUTCHours(),e.internal.getUTCMinutes(),e.internal.getUTCSeconds(),e.internal.getUTCMilliseconds()),az(e)}function az(e){const t=Sc(e.timeZone,e),o=t>0?Math.floor(t):Math.ceil(t),n=new Date(+e);n.setUTCHours(n.getUTCHours()-1);const a=-new Date(+e).getTimezoneOffset(),r=-new Date(+n).getTimezoneOffset(),c=a-r,s=Date.prototype.getHours.apply(e)!==e.internal.getUTCHours();c&&s&&e.internal.setUTCMinutes(e.internal.getUTCMinutes()+c);const l=a-o;l&&Date.prototype.setUTCMinutes.call(e,Date.prototype.getUTCMinutes.call(e)+l);const u=new Date(+e);u.setUTCSeconds(0);const y=a>0?u.getSeconds():(u.getSeconds()-60)%60,h=Math.round(-(Sc(e.timeZone,e)*60))%60;(h||y)&&(e.internal.setUTCSeconds(e.internal.getUTCSeconds()+h),Date.prototype.setUTCSeconds.call(e,Date.prototype.getUTCSeconds.call(e)+h+y));const f=Sc(e.timeZone,e),k=f>0?Math.floor(f):Math.ceil(f),g=-new Date(+e).getTimezoneOffset()-k,_=k!==o,v=g-l;if(_&&v){Date.prototype.setUTCMinutes.call(e,Date.prototype.getUTCMinutes.call(e)+v);const b=Sc(e.timeZone,e),M=b>0?Math.floor(b):Math.ceil(b),x=k-M;x&&(e.internal.setUTCMinutes(e.internal.getUTCMinutes()+x),Date.prototype.setUTCMinutes.call(e,Date.prototype.getUTCMinutes.call(e)+x))}}class pt extends wo{static tz(t,...o){return o.length?new pt(...o,t):new pt(Date.now(),t)}toISOString(){const[t,o,n]=this.tzComponents(),a=`${t}${o}:${n}`;return this.internal.toISOString().slice(0,-1)+a}toString(){return`${this.toDateString()} ${this.toTimeString()}`}toDateString(){const[t,o,n,a]=this.internal.toUTCString().split(" ");return`${t?.slice(0,-1)} ${n} ${o} ${a}`}toTimeString(){const t=this.internal.toUTCString().split(" ")[4],[o,n,a]=this.tzComponents();return`${t} GMT${o}${n}${a} (${wZ(this.timeZone,this)})`}toLocaleString(t,o){return Date.prototype.toLocaleString.call(this,t,{...o,timeZone:o?.timeZone||this.timeZone})}toLocaleDateString(t,o){return Date.prototype.toLocaleDateString.call(this,t,{...o,timeZone:o?.timeZone||this.timeZone})}toLocaleTimeString(t,o){return Date.prototype.toLocaleTimeString.call(this,t,{...o,timeZone:o?.timeZone||this.timeZone})}tzComponents(){const t=this.getTimezoneOffset(),o=t>0?"-":"+",n=String(Math.floor(Math.abs(t)/60)).padStart(2,"0"),a=String(Math.abs(t)%60).padStart(2,"0");return[o,n,a]}withTimeZone(t){return new pt(+this,t)}[Symbol.for("constructDateFrom")](t){return new pt(+new Date(t),this.timeZone)}}const rz=6048e5,$Z=864e5,iz=Symbol.for("constructDateFrom");function ct(e,t){return typeof e=="function"?e(t):e&&typeof e=="object"&&iz in e?e[iz](t):e instanceof Date?new e.constructor(t):new Date(t)}function Be(e,t){return ct(t||e,e)}function cz(e,t,o){const n=Be(e,o?.in);return isNaN(t)?ct(e,NaN):(t&&n.setDate(n.getDate()+t),n)}function sz(e,t,o){const n=Be(e,o?.in);if(isNaN(t))return ct(e,NaN);if(!t)return n;const a=n.getDate(),r=ct(e,n.getTime());r.setMonth(n.getMonth()+t+1,0);const c=r.getDate();return a>=c?r:(n.setFullYear(r.getFullYear(),r.getMonth(),a),n)}let SZ={};function kd(){return SZ}function ls(e,t){const o=kd(),n=t?.weekStartsOn??t?.locale?.options?.weekStartsOn??o.weekStartsOn??o.locale?.options?.weekStartsOn??0,a=Be(e,t?.in),r=a.getDay(),c=(r<n?7:0)+r-n;return a.setDate(a.getDate()-c),a.setHours(0,0,0,0),a}function gd(e,t){return ls(e,{...t,weekStartsOn:1})}function dz(e,t){const o=Be(e,t?.in),n=o.getFullYear(),a=ct(o,0);a.setFullYear(n+1,0,4),a.setHours(0,0,0,0);const r=gd(a),c=ct(o,0);c.setFullYear(n,0,4),c.setHours(0,0,0,0);const s=gd(c);return o.getTime()>=r.getTime()?n+1:o.getTime()>=s.getTime()?n:n-1}function lz(e){const t=Be(e),o=new Date(Date.UTC(t.getFullYear(),t.getMonth(),t.getDate(),t.getHours(),t.getMinutes(),t.getSeconds(),t.getMilliseconds()));return o.setUTCFullYear(t.getFullYear()),+e-+o}function us(e,...t){const o=ct.bind(null,t.find(n=>typeof n=="object"));return t.map(o)}function vd(e,t){const o=Be(e,t?.in);return o.setHours(0,0,0,0),o}function cL(e,t,o){const[n,a]=us(o?.in,e,t),r=vd(n),c=vd(a),s=+r-lz(r),l=+c-lz(c);return Math.round((s-l)/$Z)}function LZ(e,t){const o=dz(e,t),n=ct(e,0);return n.setFullYear(o,0,4),n.setHours(0,0,0,0),gd(n)}function IZ(e,t,o){return cz(e,t*7,o)}function AZ(e,t,o){return sz(e,t*12,o)}function PZ(e,t){let o,n=t?.in;return e.forEach(a=>{!n&&typeof a=="object"&&(n=ct.bind(null,a));const r=Be(a,n);(!o||o<r||isNaN(+r))&&(o=r)}),ct(n,o||NaN)}function TZ(e,t){let o,n=t?.in;return e.forEach(a=>{!n&&typeof a=="object"&&(n=ct.bind(null,a));const r=Be(a,n);(!o||o>r||isNaN(+r))&&(o=r)}),ct(n,o||NaN)}function DZ(e,t,o){const[n,a]=us(o?.in,e,t);return+vd(n)==+vd(a)}function uz(e){return e instanceof Date||typeof e=="object"&&Object.prototype.toString.call(e)==="[object Date]"}function EZ(e){return!(!uz(e)&&typeof e!="number"||isNaN(+Be(e)))}function hz(e,t,o){const[n,a]=us(o?.in,e,t),r=n.getFullYear()-a.getFullYear(),c=n.getMonth()-a.getMonth();return r*12+c}function zZ(e,t){const o=Be(e,t?.in),n=o.getMonth();return o.setFullYear(o.getFullYear(),n+1,0),o.setHours(23,59,59,999),o}function pz(e,t){const[o,n]=us(e,t.start,t.end);return{start:o,end:n}}function OZ(e,t){const{start:o,end:n}=pz(t?.in,e);let a=+o>+n;const r=a?+o:+n,c=a?n:o;c.setHours(0,0,0,0),c.setDate(1);let s=1;const l=[];for(;+c<=r;)l.push(ct(o,c)),c.setMonth(c.getMonth()+s);return a?l.reverse():l}function qZ(e,t){const o=Be(e,t?.in);return o.setDate(1),o.setHours(0,0,0,0),o}function jZ(e,t){const o=Be(e,t?.in),n=o.getFullYear();return o.setFullYear(n+1,0,0),o.setHours(23,59,59,999),o}function yz(e,t){const o=Be(e,t?.in);return o.setFullYear(o.getFullYear(),0,1),o.setHours(0,0,0,0),o}function HZ(e,t){const{start:o,end:n}=pz(t?.in,e);let a=+o>+n;const r=a?+o:+n,c=a?n:o;c.setHours(0,0,0,0),c.setMonth(0,1);let s=1;const l=[];for(;+c<=r;)l.push(ct(o,c)),c.setFullYear(c.getFullYear()+s);return a?l.reverse():l}function fz(e,t){const o=kd(),n=t?.weekStartsOn??t?.locale?.options?.weekStartsOn??o.weekStartsOn??o.locale?.options?.weekStartsOn??0,a=Be(e,t?.in),r=a.getDay(),c=(r<n?-7:0)+6-(r-n);return a.setDate(a.getDate()+c),a.setHours(23,59,59,999),a}function VZ(e,t){return fz(e,{...t,weekStartsOn:1})}const FZ={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}},BZ=(e,t,o)=>{let n;const a=FZ[e];return typeof a=="string"?n=a:t===1?n=a.one:n=a.other.replace("{{count}}",t.toString()),o?.addSuffix?o.comparison&&o.comparison>0?"in "+n:n+" ago":n};function sL(e){return(t={})=>{const o=t.width?String(t.width):e.defaultWidth;return e.formats[o]||e.formats[e.defaultWidth]}}const WZ={full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},UZ={full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},RZ={full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},GZ={date:sL({formats:WZ,defaultWidth:"full"}),time:sL({formats:UZ,defaultWidth:"full"}),dateTime:sL({formats:RZ,defaultWidth:"full"})},KZ={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"},YZ=(e,t,o,n)=>KZ[e];function _d(e){return(t,o)=>{const n=o?.context?String(o.context):"standalone";let a;if(n==="formatting"&&e.formattingValues){const c=e.defaultFormattingWidth||e.defaultWidth,s=o?.width?String(o.width):c;a=e.formattingValues[s]||e.formattingValues[c]}else{const c=e.defaultWidth,s=o?.width?String(o.width):e.defaultWidth;a=e.values[s]||e.values[c]}const r=e.argumentCallback?e.argumentCallback(t):t;return a[r]}}const XZ={narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},ZZ={narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},QZ={narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},JZ={narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},eQ={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},tQ={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},oQ={ordinalNumber:(e,t)=>{const o=Number(e),n=o%100;if(n>20||n<10)switch(n%10){case 1:return o+"st";case 2:return o+"nd";case 3:return o+"rd"}return o+"th"},era:_d({values:XZ,defaultWidth:"wide"}),quarter:_d({values:ZZ,defaultWidth:"wide",argumentCallback:e=>e-1}),month:_d({values:QZ,defaultWidth:"wide"}),day:_d({values:JZ,defaultWidth:"wide"}),dayPeriod:_d({values:eQ,defaultWidth:"wide",formattingValues:tQ,defaultFormattingWidth:"wide"})};function bd(e){return(t,o={})=>{const n=o.width,a=n&&e.matchPatterns[n]||e.matchPatterns[e.defaultMatchWidth],r=t.match(a);if(!r)return null;const c=r[0],s=n&&e.parsePatterns[n]||e.parsePatterns[e.defaultParseWidth],l=Array.isArray(s)?aQ(s,h=>h.test(c)):nQ(s,h=>h.test(c));let u;u=e.valueCallback?e.valueCallback(l):l,u=o.valueCallback?o.valueCallback(u):u;const y=t.slice(c.length);return{value:u,rest:y}}}function nQ(e,t){for(const o in e)if(Object.prototype.hasOwnProperty.call(e,o)&&t(e[o]))return o}function aQ(e,t){for(let o=0;o<e.length;o++)if(t(e[o]))return o}function rQ(e){return(t,o={})=>{const n=t.match(e.matchPattern);if(!n)return null;const a=n[0],r=t.match(e.parsePattern);if(!r)return null;let c=e.valueCallback?e.valueCallback(r[0]):r[0];c=o.valueCallback?o.valueCallback(c):c;const s=t.slice(a.length);return{value:c,rest:s}}}const iQ=/^(\d+)(th|st|nd|rd)?/i,cQ=/\d+/i,sQ={narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},dQ={any:[/^b/i,/^(a|c)/i]},lQ={narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},uQ={any:[/1/i,/2/i,/3/i,/4/i]},hQ={narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},pQ={narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},yQ={narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},fQ={narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},mQ={narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},kQ={any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},gQ={ordinalNumber:rQ({matchPattern:iQ,parsePattern:cQ,valueCallback:e=>parseInt(e,10)}),era:bd({matchPatterns:sQ,defaultMatchWidth:"wide",parsePatterns:dQ,defaultParseWidth:"any"}),quarter:bd({matchPatterns:lQ,defaultMatchWidth:"wide",parsePatterns:uQ,defaultParseWidth:"any",valueCallback:e=>e+1}),month:bd({matchPatterns:hQ,defaultMatchWidth:"wide",parsePatterns:pQ,defaultParseWidth:"any"}),day:bd({matchPatterns:yQ,defaultMatchWidth:"wide",parsePatterns:fQ,defaultParseWidth:"any"}),dayPeriod:bd({matchPatterns:mQ,defaultMatchWidth:"any",parsePatterns:kQ,defaultParseWidth:"any"})},hs={code:"en-US",formatDistance:BZ,formatLong:GZ,formatRelative:YZ,localize:oQ,match:gQ,options:{weekStartsOn:0,firstWeekContainsDate:1}};function vQ(e,t){const o=Be(e,t?.in);return cL(o,yz(o))+1}function dL(e,t){const o=Be(e,t?.in),n=+gd(o)-+LZ(o);return Math.round(n/rz)+1}function mz(e,t){const o=Be(e,t?.in),n=o.getFullYear(),a=kd(),r=t?.firstWeekContainsDate??t?.locale?.options?.firstWeekContainsDate??a.firstWeekContainsDate??a.locale?.options?.firstWeekContainsDate??1,c=ct(t?.in||e,0);c.setFullYear(n+1,0,r),c.setHours(0,0,0,0);const s=ls(c,t),l=ct(t?.in||e,0);l.setFullYear(n,0,r),l.setHours(0,0,0,0);const u=ls(l,t);return+o>=+s?n+1:+o>=+u?n:n-1}function _Q(e,t){const o=kd(),n=t?.firstWeekContainsDate??t?.locale?.options?.firstWeekContainsDate??o.firstWeekContainsDate??o.locale?.options?.firstWeekContainsDate??1,a=mz(e,t),r=ct(t?.in||e,0);return r.setFullYear(a,0,n),r.setHours(0,0,0,0),ls(r,t)}function lL(e,t){const o=Be(e,t?.in),n=+ls(o,t)-+_Q(o,t);return Math.round(n/rz)+1}function He(e,t){const o=e<0?"-":"",n=Math.abs(e).toString().padStart(t,"0");return o+n}const un={y(e,t){const o=e.getFullYear(),n=o>0?o:1-o;return He(t==="yy"?n%100:n,t.length)},M(e,t){const o=e.getMonth();return t==="M"?String(o+1):He(o+1,2)},d(e,t){return He(e.getDate(),t.length)},a(e,t){const o=e.getHours()/12>=1?"pm":"am";switch(t){case"a":case"aa":return o.toUpperCase();case"aaa":return o;case"aaaaa":return o[0];default:return o==="am"?"a.m.":"p.m."}},h(e,t){return He(e.getHours()%12||12,t.length)},H(e,t){return He(e.getHours(),t.length)},m(e,t){return He(e.getMinutes(),t.length)},s(e,t){return He(e.getSeconds(),t.length)},S(e,t){const o=t.length,n=e.getMilliseconds(),a=Math.trunc(n*Math.pow(10,o-3));return He(a,t.length)}},ps={midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},kz={G:function(e,t,o){const n=e.getFullYear()>0?1:0;switch(t){case"G":case"GG":case"GGG":return o.era(n,{width:"abbreviated"});case"GGGGG":return o.era(n,{width:"narrow"});default:return o.era(n,{width:"wide"})}},y:function(e,t,o){if(t==="yo"){const n=e.getFullYear(),a=n>0?n:1-n;return o.ordinalNumber(a,{unit:"year"})}return un.y(e,t)},Y:function(e,t,o,n){const a=mz(e,n),r=a>0?a:1-a;if(t==="YY"){const c=r%100;return He(c,2)}return t==="Yo"?o.ordinalNumber(r,{unit:"year"}):He(r,t.length)},R:function(e,t){const o=dz(e);return He(o,t.length)},u:function(e,t){const o=e.getFullYear();return He(o,t.length)},Q:function(e,t,o){const n=Math.ceil((e.getMonth()+1)/3);switch(t){case"Q":return String(n);case"QQ":return He(n,2);case"Qo":return o.ordinalNumber(n,{unit:"quarter"});case"QQQ":return o.quarter(n,{width:"abbreviated",context:"formatting"});case"QQQQQ":return o.quarter(n,{width:"narrow",context:"formatting"});default:return o.quarter(n,{width:"wide",context:"formatting"})}},q:function(e,t,o){const n=Math.ceil((e.getMonth()+1)/3);switch(t){case"q":return String(n);case"qq":return He(n,2);case"qo":return o.ordinalNumber(n,{unit:"quarter"});case"qqq":return o.quarter(n,{width:"abbreviated",context:"standalone"});case"qqqqq":return o.quarter(n,{width:"narrow",context:"standalone"});default:return o.quarter(n,{width:"wide",context:"standalone"})}},M:function(e,t,o){const n=e.getMonth();switch(t){case"M":case"MM":return un.M(e,t);case"Mo":return o.ordinalNumber(n+1,{unit:"month"});case"MMM":return o.month(n,{width:"abbreviated",context:"formatting"});case"MMMMM":return o.month(n,{width:"narrow",context:"formatting"});default:return o.month(n,{width:"wide",context:"formatting"})}},L:function(e,t,o){const n=e.getMonth();switch(t){case"L":return String(n+1);case"LL":return He(n+1,2);case"Lo":return o.ordinalNumber(n+1,{unit:"month"});case"LLL":return o.month(n,{width:"abbreviated",context:"standalone"});case"LLLLL":return o.month(n,{width:"narrow",context:"standalone"});default:return o.month(n,{width:"wide",context:"standalone"})}},w:function(e,t,o,n){const a=lL(e,n);return t==="wo"?o.ordinalNumber(a,{unit:"week"}):He(a,t.length)},I:function(e,t,o){const n=dL(e);return t==="Io"?o.ordinalNumber(n,{unit:"week"}):He(n,t.length)},d:function(e,t,o){return t==="do"?o.ordinalNumber(e.getDate(),{unit:"date"}):un.d(e,t)},D:function(e,t,o){const n=vQ(e);return t==="Do"?o.ordinalNumber(n,{unit:"dayOfYear"}):He(n,t.length)},E:function(e,t,o){const n=e.getDay();switch(t){case"E":case"EE":case"EEE":return o.day(n,{width:"abbreviated",context:"formatting"});case"EEEEE":return o.day(n,{width:"narrow",context:"formatting"});case"EEEEEE":return o.day(n,{width:"short",context:"formatting"});default:return o.day(n,{width:"wide",context:"formatting"})}},e:function(e,t,o,n){const a=e.getDay(),r=(a-n.weekStartsOn+8)%7||7;switch(t){case"e":return String(r);case"ee":return He(r,2);case"eo":return o.ordinalNumber(r,{unit:"day"});case"eee":return o.day(a,{width:"abbreviated",context:"formatting"});case"eeeee":return o.day(a,{width:"narrow",context:"formatting"});case"eeeeee":return o.day(a,{width:"short",context:"formatting"});default:return o.day(a,{width:"wide",context:"formatting"})}},c:function(e,t,o,n){const a=e.getDay(),r=(a-n.weekStartsOn+8)%7||7;switch(t){case"c":return String(r);case"cc":return He(r,t.length);case"co":return o.ordinalNumber(r,{unit:"day"});case"ccc":return o.day(a,{width:"abbreviated",context:"standalone"});case"ccccc":return o.day(a,{width:"narrow",context:"standalone"});case"cccccc":return o.day(a,{width:"short",context:"standalone"});default:return o.day(a,{width:"wide",context:"standalone"})}},i:function(e,t,o){const n=e.getDay(),a=n===0?7:n;switch(t){case"i":return String(a);case"ii":return He(a,t.length);case"io":return o.ordinalNumber(a,{unit:"day"});case"iii":return o.day(n,{width:"abbreviated",context:"formatting"});case"iiiii":return o.day(n,{width:"narrow",context:"formatting"});case"iiiiii":return o.day(n,{width:"short",context:"formatting"});default:return o.day(n,{width:"wide",context:"formatting"})}},a:function(e,t,o){const a=e.getHours()/12>=1?"pm":"am";switch(t){case"a":case"aa":return o.dayPeriod(a,{width:"abbreviated",context:"formatting"});case"aaa":return o.dayPeriod(a,{width:"abbreviated",context:"formatting"}).toLowerCase();case"aaaaa":return o.dayPeriod(a,{width:"narrow",context:"formatting"});default:return o.dayPeriod(a,{width:"wide",context:"formatting"})}},b:function(e,t,o){const n=e.getHours();let a;switch(n===12?a=ps.noon:n===0?a=ps.midnight:a=n/12>=1?"pm":"am",t){case"b":case"bb":return o.dayPeriod(a,{width:"abbreviated",context:"formatting"});case"bbb":return o.dayPeriod(a,{width:"abbreviated",context:"formatting"}).toLowerCase();case"bbbbb":return o.dayPeriod(a,{width:"narrow",context:"formatting"});default:return o.dayPeriod(a,{width:"wide",context:"formatting"})}},B:function(e,t,o){const n=e.getHours();let a;switch(n>=17?a=ps.evening:n>=12?a=ps.afternoon:n>=4?a=ps.morning:a=ps.night,t){case"B":case"BB":case"BBB":return o.dayPeriod(a,{width:"abbreviated",context:"formatting"});case"BBBBB":return o.dayPeriod(a,{width:"narrow",context:"formatting"});default:return o.dayPeriod(a,{width:"wide",context:"formatting"})}},h:function(e,t,o){if(t==="ho"){let n=e.getHours()%12;return n===0&&(n=12),o.ordinalNumber(n,{unit:"hour"})}return un.h(e,t)},H:function(e,t,o){return t==="Ho"?o.ordinalNumber(e.getHours(),{unit:"hour"}):un.H(e,t)},K:function(e,t,o){const n=e.getHours()%12;return t==="Ko"?o.ordinalNumber(n,{unit:"hour"}):He(n,t.length)},k:function(e,t,o){let n=e.getHours();return n===0&&(n=24),t==="ko"?o.ordinalNumber(n,{unit:"hour"}):He(n,t.length)},m:function(e,t,o){return t==="mo"?o.ordinalNumber(e.getMinutes(),{unit:"minute"}):un.m(e,t)},s:function(e,t,o){return t==="so"?o.ordinalNumber(e.getSeconds(),{unit:"second"}):un.s(e,t)},S:function(e,t){return un.S(e,t)},X:function(e,t,o){const n=e.getTimezoneOffset();if(n===0)return"Z";switch(t){case"X":return vz(n);case"XXXX":case"XX":return Lc(n);default:return Lc(n,":")}},x:function(e,t,o){const n=e.getTimezoneOffset();switch(t){case"x":return vz(n);case"xxxx":case"xx":return Lc(n);default:return Lc(n,":")}},O:function(e,t,o){const n=e.getTimezoneOffset();switch(t){case"O":case"OO":case"OOO":return"GMT"+gz(n,":");default:return"GMT"+Lc(n,":")}},z:function(e,t,o){const n=e.getTimezoneOffset();switch(t){case"z":case"zz":case"zzz":return"GMT"+gz(n,":");default:return"GMT"+Lc(n,":")}},t:function(e,t,o){const n=Math.trunc(+e/1e3);return He(n,t.length)},T:function(e,t,o){return He(+e,t.length)}};function gz(e,t=""){const o=e>0?"-":"+",n=Math.abs(e),a=Math.trunc(n/60),r=n%60;return r===0?o+String(a):o+String(a)+t+He(r,2)}function vz(e,t){return e%60===0?(e>0?"-":"+")+He(Math.abs(e)/60,2):Lc(e,t)}function Lc(e,t=""){const o=e>0?"-":"+",n=Math.abs(e),a=He(Math.trunc(n/60),2),r=He(n%60,2);return o+a+t+r}const _z=(e,t)=>{switch(e){case"P":return t.date({width:"short"});case"PP":return t.date({width:"medium"});case"PPP":return t.date({width:"long"});default:return t.date({width:"full"})}},bz=(e,t)=>{switch(e){case"p":return t.time({width:"short"});case"pp":return t.time({width:"medium"});case"ppp":return t.time({width:"long"});default:return t.time({width:"full"})}},bQ={p:bz,P:(e,t)=>{const o=e.match(/(P+)(p+)?/)||[],n=o[1],a=o[2];if(!a)return _z(e,t);let r;switch(n){case"P":r=t.dateTime({width:"short"});break;case"PP":r=t.dateTime({width:"medium"});break;case"PPP":r=t.dateTime({width:"long"});break;default:r=t.dateTime({width:"full"});break}return r.replace("{{date}}",_z(n,t)).replace("{{time}}",bz(a,t))}},MQ=/^D+$/,wQ=/^Y+$/,xQ=["D","DD","YY","YYYY"];function NQ(e){return MQ.test(e)}function CQ(e){return wQ.test(e)}function $Q(e,t,o){const n=SQ(e,t,o);if(console.warn(n),xQ.includes(e))throw new RangeError(n)}function SQ(e,t,o){const n=e[0]==="Y"?"years":"days of the month";return`Use \`${e.toLowerCase()}\` instead of \`${e}\` (in \`${t}\`) for formatting ${n} to the input \`${o}\`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`}const LQ=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,IQ=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,AQ=/^'([^]*?)'?$/,PQ=/''/g,TQ=/[a-zA-Z]/;function ys(e,t,o){const n=kd(),a=o?.locale??n.locale??hs,r=o?.firstWeekContainsDate??o?.locale?.options?.firstWeekContainsDate??n.firstWeekContainsDate??n.locale?.options?.firstWeekContainsDate??1,c=o?.weekStartsOn??o?.locale?.options?.weekStartsOn??n.weekStartsOn??n.locale?.options?.weekStartsOn??0,s=Be(e,o?.in);if(!EZ(s))throw new RangeError("Invalid time value");let l=t.match(IQ).map(y=>{const h=y[0];if(h==="p"||h==="P"){const f=bQ[h];return f(y,a.formatLong)}return y}).join("").match(LQ).map(y=>{if(y==="''")return{isToken:!1,value:"'"};const h=y[0];if(h==="'")return{isToken:!1,value:DQ(y)};if(kz[h])return{isToken:!0,value:y};if(h.match(TQ))throw new RangeError("Format string contains an unescaped latin alphabet character `"+h+"`");return{isToken:!1,value:y}});a.localize.preprocessor&&(l=a.localize.preprocessor(s,l));const u={firstWeekContainsDate:r,weekStartsOn:c,locale:a};return l.map(y=>{if(!y.isToken)return y.value;const h=y.value;(!o?.useAdditionalWeekYearTokens&&CQ(h)||!o?.useAdditionalDayOfYearTokens&&NQ(h))&&$Q(h,t,String(e));const f=kz[h[0]];return f(s,h,a.localize,u)}).join("")}function DQ(e){const t=e.match(AQ);return t?t[1].replace(PQ,"'"):e}function EQ(e,t){const o=Be(e,t?.in),n=o.getFullYear(),a=o.getMonth(),r=ct(o,0);return r.setFullYear(n,a+1,0),r.setHours(0,0,0,0),r.getDate()}function zQ(e,t){return Be(e,t?.in).getMonth()}function OQ(e,t){return Be(e,t?.in).getFullYear()}function qQ(e,t){return+Be(e)>+Be(t)}function jQ(e,t){return+Be(e)<+Be(t)}function HQ(e,t,o){const[n,a]=us(o?.in,e,t);return n.getFullYear()===a.getFullYear()&&n.getMonth()===a.getMonth()}function VQ(e,t,o){const[n,a]=us(o?.in,e,t);return n.getFullYear()===a.getFullYear()}function FQ(e,t,o){const n=Be(e,o?.in),a=n.getFullYear(),r=n.getDate(),c=ct(e,0);c.setFullYear(a,t,15),c.setHours(0,0,0,0);const s=EQ(c);return n.setMonth(t,Math.min(r,s)),n}function BQ(e,t,o){const n=Be(e,o?.in);return isNaN(+n)?ct(e,NaN):(n.setFullYear(t),n)}const Mz=5,WQ=4;function UQ(e,t){const o=t.startOfMonth(e),n=o.getDay()>0?o.getDay():7,a=t.addDays(e,-n+1),r=t.addDays(a,Mz*7-1);return t.getMonth(e)===t.getMonth(r)?Mz:WQ}function wz(e,t){const o=t.startOfMonth(e),n=o.getDay();return n===1?o:n===0?t.addDays(o,-6):t.addDays(o,-1*(n-1))}function RQ(e,t){const o=wz(e,t),n=UQ(e,t);return t.addDays(o,n*7-1)}const xz={...hs,labels:{labelDayButton:(e,t,o,n)=>{let a;n&&typeof n.format=="function"?a=n.format.bind(n):a=(c,s)=>ys(c,s,{locale:hs,...o});let r=a(e,"PPPP");return t.today&&(r=`Today, ${r}`),t.selected&&(r=`${r}, selected`),r},labelMonthDropdown:"Choose the Month",labelNext:"Go to the Next Month",labelPrevious:"Go to the Previous Month",labelWeekNumber:e=>`Week ${e}`,labelYearDropdown:"Choose the Year",labelGrid:(e,t,o)=>{let n;return o&&typeof o.format=="function"?n=o.format.bind(o):n=(a,r)=>ys(a,r,{locale:hs,...t}),n(e,"LLLL yyyy")},labelGridcell:(e,t,o,n)=>{let a;n&&typeof n.format=="function"?a=n.format.bind(n):a=(c,s)=>ys(c,s,{locale:hs,...o});let r=a(e,"PPPP");return t?.today&&(r=`Today, ${r}`),r},labelNav:"Navigation bar",labelWeekNumberHeader:"Week Number",labelWeekday:(e,t,o)=>{let n;return o&&typeof o.format=="function"?n=o.format.bind(o):n=(a,r)=>ys(a,r,{locale:hs,...t}),n(e,"cccc")}}};class Tt{constructor(t,o){this.Date=Date,this.today=()=>this.overrides?.today?this.overrides.today():this.options.timeZone?pt.tz(this.options.timeZone):new this.Date,this.newDate=(n,a,r)=>this.overrides?.newDate?this.overrides.newDate(n,a,r):this.options.timeZone?new pt(n,a,r,this.options.timeZone):new Date(n,a,r),this.addDays=(n,a)=>this.overrides?.addDays?this.overrides.addDays(n,a):cz(n,a),this.addMonths=(n,a)=>this.overrides?.addMonths?this.overrides.addMonths(n,a):sz(n,a),this.addWeeks=(n,a)=>this.overrides?.addWeeks?this.overrides.addWeeks(n,a):IZ(n,a),this.addYears=(n,a)=>this.overrides?.addYears?this.overrides.addYears(n,a):AZ(n,a),this.differenceInCalendarDays=(n,a)=>this.overrides?.differenceInCalendarDays?this.overrides.differenceInCalendarDays(n,a):cL(n,a),this.differenceInCalendarMonths=(n,a)=>this.overrides?.differenceInCalendarMonths?this.overrides.differenceInCalendarMonths(n,a):hz(n,a),this.eachMonthOfInterval=n=>this.overrides?.eachMonthOfInterval?this.overrides.eachMonthOfInterval(n):OZ(n),this.eachYearOfInterval=n=>{const a=this.overrides?.eachYearOfInterval?this.overrides.eachYearOfInterval(n):HZ(n),r=new Set(a.map(s=>this.getYear(s)));if(r.size===a.length)return a;const c=[];return r.forEach(s=>{c.push(new Date(s,0,1))}),c},this.endOfBroadcastWeek=n=>this.overrides?.endOfBroadcastWeek?this.overrides.endOfBroadcastWeek(n):RQ(n,this),this.endOfISOWeek=n=>this.overrides?.endOfISOWeek?this.overrides.endOfISOWeek(n):VZ(n),this.endOfMonth=n=>this.overrides?.endOfMonth?this.overrides.endOfMonth(n):zZ(n),this.endOfWeek=(n,a)=>this.overrides?.endOfWeek?this.overrides.endOfWeek(n,a):fz(n,this.options),this.endOfYear=n=>this.overrides?.endOfYear?this.overrides.endOfYear(n):jZ(n),this.format=(n,a,r)=>{const c=this.overrides?.format?this.overrides.format(n,a,this.options):ys(n,a,this.options);return this.options.numerals&&this.options.numerals!=="latn"?this.replaceDigits(c):c},this.getISOWeek=n=>this.overrides?.getISOWeek?this.overrides.getISOWeek(n):dL(n),this.getMonth=(n,a)=>this.overrides?.getMonth?this.overrides.getMonth(n,this.options):zQ(n,this.options),this.getYear=(n,a)=>this.overrides?.getYear?this.overrides.getYear(n,this.options):OQ(n,this.options),this.getWeek=(n,a)=>this.overrides?.getWeek?this.overrides.getWeek(n,this.options):lL(n,this.options),this.isAfter=(n,a)=>this.overrides?.isAfter?this.overrides.isAfter(n,a):qQ(n,a),this.isBefore=(n,a)=>this.overrides?.isBefore?this.overrides.isBefore(n,a):jQ(n,a),this.isDate=n=>this.overrides?.isDate?this.overrides.isDate(n):uz(n),this.isSameDay=(n,a)=>this.overrides?.isSameDay?this.overrides.isSameDay(n,a):DZ(n,a),this.isSameMonth=(n,a)=>this.overrides?.isSameMonth?this.overrides.isSameMonth(n,a):HQ(n,a),this.isSameYear=(n,a)=>this.overrides?.isSameYear?this.overrides.isSameYear(n,a):VQ(n,a),this.max=n=>this.overrides?.max?this.overrides.max(n):PZ(n),this.min=n=>this.overrides?.min?this.overrides.min(n):TZ(n),this.setMonth=(n,a)=>this.overrides?.setMonth?this.overrides.setMonth(n,a):FQ(n,a),this.setYear=(n,a)=>this.overrides?.setYear?this.overrides.setYear(n,a):BQ(n,a),this.startOfBroadcastWeek=(n,a)=>this.overrides?.startOfBroadcastWeek?this.overrides.startOfBroadcastWeek(n,this):wz(n,this),this.startOfDay=n=>this.overrides?.startOfDay?this.overrides.startOfDay(n):vd(n),this.startOfISOWeek=n=>this.overrides?.startOfISOWeek?this.overrides.startOfISOWeek(n):gd(n),this.startOfMonth=n=>this.overrides?.startOfMonth?this.overrides.startOfMonth(n):qZ(n),this.startOfWeek=(n,a)=>this.overrides?.startOfWeek?this.overrides.startOfWeek(n,this.options):ls(n,this.options),this.startOfYear=n=>this.overrides?.startOfYear?this.overrides.startOfYear(n):yz(n),this.options={locale:xz,...t},this.overrides=o}getDigitMap(){const{numerals:t="latn"}=this.options,o=new Intl.NumberFormat("en-US",{numberingSystem:t}),n={};for(let a=0;a<10;a++)n[a.toString()]=o.format(a);return n}replaceDigits(t){const o=this.getDigitMap();return t.replace(/\d/g,n=>o[n]||n)}formatNumber(t){return this.replaceDigits(t.toString())}getMonthYearOrder(){const t=this.options.locale?.code;return t&&Tt.yearFirstLocales.has(t)?"year-first":"month-first"}formatMonthYear(t){const{locale:o,timeZone:n,numerals:a}=this.options,r=o?.code;if(r&&Tt.yearFirstLocales.has(r))try{return new Intl.DateTimeFormat(r,{month:"long",year:"numeric",timeZone:n,numberingSystem:a}).format(t)}catch{}const c=this.getMonthYearOrder()==="year-first"?"y LLLL":"LLLL y";return this.format(t,c)}}Tt.yearFirstLocales=new Set(["eu","hu","ja","ja-Hira","ja-JP","ko","ko-KR","lt","lt-LT","lv","lv-LV","mn","mn-MN","zh","zh-CN","zh-HK","zh-TW"]);const xo=new Tt;class Nz{constructor(t,o,n=xo){this.date=t,this.displayMonth=o,this.outside=!!(o&&!n.isSameMonth(t,o)),this.dateLib=n,this.isoDate=n.format(t,"yyyy-MM-dd"),this.displayMonthId=n.format(o,"yyyy-MM"),this.dateMonthId=n.format(t,"yyyy-MM")}isEqualTo(t){return this.dateLib.isSameDay(t.date,this.date)&&this.dateLib.isSameMonth(t.displayMonth,this.displayMonth)}}class GQ{constructor(t,o){this.date=t,this.weeks=o}}class KQ{constructor(t,o){this.days=o,this.weekNumber=t}}function YQ(e){return w.createElement("button",{...e})}function XQ(e){return w.createElement("span",{...e})}function ZQ(e){const{size:t=24,orientation:o="left",className:n}=e;return w.createElement("svg",{className:n,width:t,height:t,viewBox:"0 0 24 24"},o==="up"&&w.createElement("polygon",{points:"6.77 17 12.5 11.43 18.24 17 20 15.28 12.5 8 5 15.28"}),o==="down"&&w.createElement("polygon",{points:"6.77 8 12.5 13.57 18.24 8 20 9.72 12.5 17 5 9.72"}),o==="left"&&w.createElement("polygon",{points:"16 18.112 9.81111111 12 16 5.87733333 14.0888889 4 6 12 14.0888889 20"}),o==="right"&&w.createElement("polygon",{points:"8 18.112 14.18888889 12 8 5.87733333 9.91111111 4 18 12 9.91111111 20"}))}function QQ(e){const{day:t,modifiers:o,...n}=e;return w.createElement("td",{...n})}function JQ(e){const{day:t,modifiers:o,...n}=e,a=w.useRef(null);return w.useEffect(()=>{o.focused&&a.current?.focus()},[o.focused]),w.createElement("button",{ref:a,...n})}var Me;(function(e){e.Root="root",e.Chevron="chevron",e.Day="day",e.DayButton="day_button",e.CaptionLabel="caption_label",e.Dropdowns="dropdowns",e.Dropdown="dropdown",e.DropdownRoot="dropdown_root",e.Footer="footer",e.MonthGrid="month_grid",e.MonthCaption="month_caption",e.MonthsDropdown="months_dropdown",e.Month="month",e.Months="months",e.Nav="nav",e.NextMonthButton="button_next",e.PreviousMonthButton="button_previous",e.Week="week",e.Weeks="weeks",e.Weekday="weekday",e.Weekdays="weekdays",e.WeekNumber="week_number",e.WeekNumberHeader="week_number_header",e.YearsDropdown="years_dropdown"})(Me||(Me={}));var Je;(function(e){e.disabled="disabled",e.hidden="hidden",e.outside="outside",e.focused="focused",e.today="today"})(Je||(Je={}));var to;(function(e){e.range_end="range_end",e.range_middle="range_middle",e.range_start="range_start",e.selected="selected"})(to||(to={}));var Dt;(function(e){e.weeks_before_enter="weeks_before_enter",e.weeks_before_exit="weeks_before_exit",e.weeks_after_enter="weeks_after_enter",e.weeks_after_exit="weeks_after_exit",e.caption_after_enter="caption_after_enter",e.caption_after_exit="caption_after_exit",e.caption_before_enter="caption_before_enter",e.caption_before_exit="caption_before_exit"})(Dt||(Dt={}));function eJ(e){const{options:t,className:o,components:n,classNames:a,...r}=e,c=[a[Me.Dropdown],o].join(" "),s=t?.find(({value:l})=>l===r.value);return w.createElement("span",{"data-disabled":r.disabled,className:a[Me.DropdownRoot]},w.createElement(n.Select,{className:c,...r},t?.map(({value:l,label:u,disabled:y})=>w.createElement(n.Option,{key:l,value:l,disabled:y},u))),w.createElement("span",{className:a[Me.CaptionLabel],"aria-hidden":!0},s?.label,w.createElement(n.Chevron,{orientation:"down",size:18,className:a[Me.Chevron]})))}function tJ(e){return w.createElement("div",{...e})}function oJ(e){return w.createElement("div",{...e})}function nJ(e){const{calendarMonth:t,displayIndex:o,...n}=e;return w.createElement("div",{...n},e.children)}function aJ(e){const{calendarMonth:t,displayIndex:o,...n}=e;return w.createElement("div",{...n})}function rJ(e){return w.createElement("table",{...e})}function iJ(e){return w.createElement("div",{...e})}const Cz=w.createContext(void 0);function Md(){const e=w.useContext(Cz);if(e===void 0)throw new Error("useDayPicker() must be used within a custom component.");return e}function cJ(e){const{components:t}=Md();return w.createElement(t.Dropdown,{...e})}function sJ(e){const{onPreviousClick:t,onNextClick:o,previousMonth:n,nextMonth:a,...r}=e,{components:c,classNames:s,labels:{labelPrevious:l,labelNext:u}}=Md(),y=w.useCallback(f=>{a&&o?.(f)},[a,o]),h=w.useCallback(f=>{n&&t?.(f)},[n,t]);return w.createElement("nav",{...r},w.createElement(c.PreviousMonthButton,{type:"button",className:s[Me.PreviousMonthButton],tabIndex:n?void 0:-1,"aria-disabled":n?void 0:!0,"aria-label":l(n),onClick:h},w.createElement(c.Chevron,{disabled:n?void 0:!0,className:s[Me.Chevron],orientation:"left"})),w.createElement(c.NextMonthButton,{type:"button",className:s[Me.NextMonthButton],tabIndex:a?void 0:-1,"aria-disabled":a?void 0:!0,"aria-label":u(a),onClick:y},w.createElement(c.Chevron,{disabled:a?void 0:!0,orientation:"right",className:s[Me.Chevron]})))}function dJ(e){const{components:t}=Md();return w.createElement(t.Button,{...e})}function lJ(e){return w.createElement("option",{...e})}function uJ(e){const{components:t}=Md();return w.createElement(t.Button,{...e})}function hJ(e){const{rootRef:t,...o}=e;return w.createElement("div",{...o,ref:t})}function pJ(e){return w.createElement("select",{...e})}function yJ(e){const{week:t,...o}=e;return w.createElement("tr",{...o})}function fJ(e){return w.createElement("th",{...e})}function mJ(e){return w.createElement("thead",{"aria-hidden":!0},w.createElement("tr",{...e}))}function kJ(e){const{week:t,...o}=e;return w.createElement("th",{...o})}function gJ(e){return w.createElement("th",{...e})}function vJ(e){return w.createElement("tbody",{...e})}function _J(e){const{components:t}=Md();return w.createElement(t.Dropdown,{...e})}const bJ=Object.freeze(Object.defineProperty({__proto__:null,Button:YQ,CaptionLabel:XQ,Chevron:ZQ,Day:QQ,DayButton:JQ,Dropdown:eJ,DropdownNav:tJ,Footer:oJ,Month:nJ,MonthCaption:aJ,MonthGrid:rJ,Months:iJ,MonthsDropdown:cJ,Nav:sJ,NextMonthButton:dJ,Option:lJ,PreviousMonthButton:uJ,Root:hJ,Select:pJ,Week:yJ,WeekNumber:kJ,WeekNumberHeader:gJ,Weekday:fJ,Weekdays:mJ,Weeks:vJ,YearsDropdown:_J},Symbol.toStringTag,{value:"Module"}));function Uo(e,t,o=!1,n=xo){let{from:a,to:r}=e;const{differenceInCalendarDays:c,isSameDay:s}=n;return a&&r?(c(r,a)<0&&([a,r]=[r,a]),c(t,a)>=(o?1:0)&&c(r,t)>=(o?1:0)):!o&&r?s(r,t):!o&&a?s(a,t):!1}function uL(e){return!!(e&&typeof e=="object"&&"before"in e&&"after"in e)}function FC(e){return!!(e&&typeof e=="object"&&"from"in e)}function hL(e){return!!(e&&typeof e=="object"&&"after"in e)}function pL(e){return!!(e&&typeof e=="object"&&"before"in e)}function $z(e){return!!(e&&typeof e=="object"&&"dayOfWeek"in e)}function Sz(e,t){return Array.isArray(e)&&e.every(t.isDate)}function Ro(e,t,o=xo){const n=Array.isArray(t)?t:[t],{isSameDay:a,differenceInCalendarDays:r,isAfter:c}=o;return n.some(s=>{if(typeof s=="boolean")return s;if(o.isDate(s))return a(e,s);if(Sz(s,o))return s.some(l=>a(e,l));if(FC(s))return Uo(s,e,!1,o);if($z(s))return Array.isArray(s.dayOfWeek)?s.dayOfWeek.includes(e.getDay()):s.dayOfWeek===e.getDay();if(uL(s)){const l=r(s.before,e),u=r(s.after,e),y=l>0,h=u<0;return c(s.before,s.after)?h&&y:y||h}return hL(s)?r(e,s.after)>0:pL(s)?r(s.before,e)>0:typeof s=="function"?s(e):!1})}function MJ(e,t,o,n,a){const{disabled:r,hidden:c,modifiers:s,showOutsideDays:l,broadcastCalendar:u,today:y=a.today()}=t,{isSameDay:h,isSameMonth:f,startOfMonth:k,isBefore:m,endOfMonth:g,isAfter:_}=a,v=o&&k(o),b=n&&g(n),M={[Je.focused]:[],[Je.outside]:[],[Je.disabled]:[],[Je.hidden]:[],[Je.today]:[]},x={};for(const N of e){const{date:C,displayMonth:$}=N,L=!!($&&!f(C,$)),A=!!(v&&m(C,v)),q=!!(b&&_(C,b)),z=!!(r&&Ro(C,r,a)),O=!!(c&&Ro(C,c,a))||A||q||!u&&!l&&L||u&&l===!1&&L,D=h(C,y);L&&M.outside.push(N),z&&M.disabled.push(N),O&&M.hidden.push(N),D&&M.today.push(N),s&&Object.keys(s).forEach(U=>{const G=s?.[U];G&&Ro(C,G,a)&&(x[U]?x[U].push(N):x[U]=[N])})}return N=>{const C={[Je.focused]:!1,[Je.disabled]:!1,[Je.hidden]:!1,[Je.outside]:!1,[Je.today]:!1},$={};for(const L in M){const A=M[L];C[L]=A.some(q=>q===N)}for(const L in x)$[L]=x[L].some(A=>A===N);return{...C,...$}}}function wJ(e,t,o={}){return Object.entries(e).filter(([,a])=>a===!0).reduce((a,[r])=>(o[r]?a.push(o[r]):t[Je[r]]?a.push(t[Je[r]]):t[to[r]]&&a.push(t[to[r]]),a),[t[Me.Day]])}function xJ(e){return{...bJ,...e}}function NJ(e){const t={"data-mode":e.mode??void 0,"data-required":"required"in e?e.required:void 0,"data-multiple-months":e.numberOfMonths&&e.numberOfMonths>1||void 0,"data-week-numbers":e.showWeekNumber||void 0,"data-broadcast-calendar":e.broadcastCalendar||void 0,"data-nav-layout":e.navLayout||void 0};return Object.entries(e).forEach(([o,n])=>{o.startsWith("data-")&&(t[o]=n)}),t}function yL(){const e={};for(const t in Me)e[Me[t]]=`rdp-${Me[t]}`;for(const t in Je)e[Je[t]]=`rdp-${Je[t]}`;for(const t in to)e[to[t]]=`rdp-${to[t]}`;for(const t in Dt)e[Dt[t]]=`rdp-${Dt[t]}`;return e}function Lz(e,t,o){return(o??new Tt(t)).formatMonthYear(e)}const CJ=Lz;function $J(e,t,o){return(o??new Tt(t)).format(e,"d")}function SJ(e,t=xo){return t.format(e,"LLLL")}function LJ(e,t,o){return(o??new Tt(t)).format(e,"cccccc")}function IJ(e,t=xo){return e<10?t.formatNumber(`0${e.toLocaleString()}`):t.formatNumber(`${e.toLocaleString()}`)}function AJ(){return""}function Iz(e,t=xo){return t.format(e,"yyyy")}const PJ=Object.freeze(Object.defineProperty({__proto__:null,formatCaption:Lz,formatDay:$J,formatMonthCaption:CJ,formatMonthDropdown:SJ,formatWeekNumber:IJ,formatWeekNumberHeader:AJ,formatWeekdayName:LJ,formatYearCaption:Iz,formatYearDropdown:Iz},Symbol.toStringTag,{value:"Module"}));function TJ(e){return e?.formatMonthCaption&&!e.formatCaption&&(e.formatCaption=e.formatMonthCaption),e?.formatYearCaption&&!e.formatYearDropdown&&(e.formatYearDropdown=e.formatYearCaption),{...PJ,...e}}function fL(e,t,o,n){let a=(n??new Tt(o)).format(e,"PPPP");return t.today&&(a=`Today, ${a}`),t.selected&&(a=`${a}, selected`),a}const DJ=fL;function mL(e,t,o){return(o??new Tt(t)).formatMonthYear(e)}const EJ=mL;function Az(e,t,o,n){let a=(n??new Tt(o)).format(e,"PPPP");return t?.today&&(a=`Today, ${a}`),a}function Pz(e){return"Choose the Month"}function Tz(){return""}const zJ="Go to the Next Month";function Dz(e,t){return zJ}function Ez(e){return"Go to the Previous Month"}function zz(e,t,o){return(o??new Tt(t)).format(e,"cccc")}function Oz(e,t){return`Week ${e}`}function qz(e){return"Week Number"}function jz(e){return"Choose the Year"}const OJ=Object.freeze(Object.defineProperty({__proto__:null,labelCaption:EJ,labelDay:DJ,labelDayButton:fL,labelGrid:mL,labelGridcell:Az,labelMonthDropdown:Pz,labelNav:Tz,labelNext:Dz,labelPrevious:Ez,labelWeekNumber:Oz,labelWeekNumberHeader:qz,labelWeekday:zz,labelYearDropdown:jz},Symbol.toStringTag,{value:"Module"})),oo=(e,t,o)=>t||(o?typeof o=="function"?o:(...n)=>o:e);function qJ(e,t){const o=t.locale?.labels??{};return{...OJ,...e??{},labelDayButton:oo(fL,e?.labelDayButton,o.labelDayButton),labelMonthDropdown:oo(Pz,e?.labelMonthDropdown,o.labelMonthDropdown),labelNext:oo(Dz,e?.labelNext,o.labelNext),labelPrevious:oo(Ez,e?.labelPrevious,o.labelPrevious),labelWeekNumber:oo(Oz,e?.labelWeekNumber,o.labelWeekNumber),labelYearDropdown:oo(jz,e?.labelYearDropdown,o.labelYearDropdown),labelGrid:oo(mL,e?.labelGrid,o.labelGrid),labelGridcell:oo(Az,e?.labelGridcell,o.labelGridcell),labelNav:oo(Tz,e?.labelNav,o.labelNav),labelWeekNumberHeader:oo(qz,e?.labelWeekNumberHeader,o.labelWeekNumberHeader),labelWeekday:oo(zz,e?.labelWeekday,o.labelWeekday)}}function jJ(e,t,o,n,a){const{startOfMonth:r,startOfYear:c,endOfYear:s,eachMonthOfInterval:l,getMonth:u}=a;return l({start:c(e),end:s(e)}).map(f=>{const k=n.formatMonthDropdown(f,a),m=u(f),g=t&&f<r(t)||o&&f>r(o)||!1;return{value:m,label:k,disabled:g}})}function HJ(e,t={},o={}){let n={...t?.[Me.Day]};return Object.entries(e).filter(([,a])=>a===!0).forEach(([a])=>{n={...n,...o?.[a]}}),n}function VJ(e,t,o,n){const a=n??e.today(),r=o?e.startOfBroadcastWeek(a,e):t?e.startOfISOWeek(a):e.startOfWeek(a),c=[];for(let s=0;s<7;s++){const l=e.addDays(r,s);c.push(l)}return c}function FJ(e,t,o,n,a=!1){if(!e||!t)return;const{startOfYear:r,endOfYear:c,eachYearOfInterval:s,getYear:l}=n,u=r(e),y=c(t),h=s({start:u,end:y});return a&&h.reverse(),h.map(f=>{const k=o.formatYearDropdown(f,n);return{value:l(f),label:k,disabled:!1}})}function BJ(e,t={}){const{weekStartsOn:o,locale:n}=t,a=o??n?.options?.weekStartsOn??0,r=s=>{const l=typeof s=="number"||typeof s=="string"?new Date(s):s;return new pt(l.getFullYear(),l.getMonth(),l.getDate(),12,0,0,e)},c=s=>{const l=r(s);return new Date(l.getFullYear(),l.getMonth(),l.getDate(),0,0,0,0)};return{today:()=>r(pt.tz(e)),newDate:(s,l,u)=>new pt(s,l,u,12,0,0,e),startOfDay:s=>r(s),startOfWeek:(s,l)=>{const u=r(s),y=l?.weekStartsOn??a,h=(u.getDay()-y+7)%7;return u.setDate(u.getDate()-h),u},startOfISOWeek:s=>{const l=r(s),u=(l.getDay()-1+7)%7;return l.setDate(l.getDate()-u),l},startOfMonth:s=>{const l=r(s);return l.setDate(1),l},startOfYear:s=>{const l=r(s);return l.setMonth(0,1),l},endOfWeek:(s,l)=>{const u=r(s),f=(((l?.weekStartsOn??a)+6)%7-u.getDay()+7)%7;return u.setDate(u.getDate()+f),u},endOfISOWeek:s=>{const l=r(s),u=(7-l.getDay())%7;return l.setDate(l.getDate()+u),l},endOfMonth:s=>{const l=r(s);return l.setMonth(l.getMonth()+1,0),l},endOfYear:s=>{const l=r(s);return l.setMonth(11,31),l},eachMonthOfInterval:s=>{const l=r(s.start),u=r(s.end),y=[],h=new pt(l.getFullYear(),l.getMonth(),1,12,0,0,e),f=u.getFullYear()*12+u.getMonth();for(;h.getFullYear()*12+h.getMonth()<=f;)y.push(new pt(h,e)),h.setMonth(h.getMonth()+1,1);return y},addDays:(s,l)=>{const u=r(s);return u.setDate(u.getDate()+l),u},addWeeks:(s,l)=>{const u=r(s);return u.setDate(u.getDate()+l*7),u},addMonths:(s,l)=>{const u=r(s);return u.setMonth(u.getMonth()+l),u},addYears:(s,l)=>{const u=r(s);return u.setFullYear(u.getFullYear()+l),u},eachYearOfInterval:s=>{const l=r(s.start),u=r(s.end),y=[],h=new pt(l.getFullYear(),0,1,12,0,0,e);for(;h.getFullYear()<=u.getFullYear();)y.push(new pt(h,e)),h.setFullYear(h.getFullYear()+1,0,1);return y},getWeek:(s,l)=>{const u=c(s);return lL(u,{weekStartsOn:l?.weekStartsOn??a,firstWeekContainsDate:l?.firstWeekContainsDate??n?.options?.firstWeekContainsDate??1})},getISOWeek:s=>{const l=c(s);return dL(l)},differenceInCalendarDays:(s,l)=>{const u=c(s),y=c(l);return cL(u,y)},differenceInCalendarMonths:(s,l)=>{const u=c(s),y=c(l);return hz(u,y)}}}const wd=e=>e instanceof HTMLElement?e:null,kL=e=>[...e.querySelectorAll("[data-animated-month]")??[]],WJ=e=>wd(e.querySelector("[data-animated-month]")),gL=e=>wd(e.querySelector("[data-animated-caption]")),vL=e=>wd(e.querySelector("[data-animated-weeks]")),UJ=e=>wd(e.querySelector("[data-animated-nav]")),RJ=e=>wd(e.querySelector("[data-animated-weekdays]"));function GJ(e,t,{classNames:o,months:n,focused:a,dateLib:r}){const c=w.useRef(null),s=w.useRef(n),l=w.useRef(!1);w.useLayoutEffect(()=>{const u=s.current;if(s.current=n,!t||!e.current||!(e.current instanceof HTMLElement)||n.length===0||u.length===0||n.length!==u.length)return;const y=r.isSameMonth(n[0].date,u[0].date),h=r.isAfter(n[0].date,u[0].date),f=h?o[Dt.caption_after_enter]:o[Dt.caption_before_enter],k=h?o[Dt.weeks_after_enter]:o[Dt.weeks_before_enter],m=c.current,g=e.current.cloneNode(!0);if(g instanceof HTMLElement?(kL(g).forEach(M=>{if(!(M instanceof HTMLElement))return;const x=WJ(M);x&&M.contains(x)&&M.removeChild(x);const N=gL(M);N&&N.classList.remove(f);const C=vL(M);C&&C.classList.remove(k)}),c.current=g):c.current=null,l.current||y||a)return;const _=m instanceof HTMLElement?kL(m):[],v=kL(e.current);if(v?.every(b=>b instanceof HTMLElement)&&_&&_.every(b=>b instanceof HTMLElement)){l.current=!0,e.current.style.isolation="isolate";const b=UJ(e.current);b&&(b.style.zIndex="1"),v.forEach((M,x)=>{const N=_[x];if(!N)return;M.style.position="relative",M.style.overflow="hidden";const C=gL(M);C&&C.classList.add(f);const $=vL(M);$&&$.classList.add(k);const L=()=>{l.current=!1,e.current&&(e.current.style.isolation=""),b&&(b.style.zIndex=""),C&&C.classList.remove(f),$&&$.classList.remove(k),M.style.position="",M.style.overflow="",M.contains(N)&&M.removeChild(N)};N.style.pointerEvents="none",N.style.position="absolute",N.style.overflow="hidden",N.setAttribute("aria-hidden","true");const A=RJ(N);A&&(A.style.opacity="0");const q=gL(N);q&&(q.classList.add(h?o[Dt.caption_before_exit]:o[Dt.caption_after_exit]),q.addEventListener("animationend",L));const z=vL(N);z&&z.classList.add(h?o[Dt.weeks_before_exit]:o[Dt.weeks_after_exit]),M.insertBefore(N,M.firstChild)})}})}function KJ(e,t,o,n){const a=e[0],r=e[e.length-1],{ISOWeek:c,fixedWeeks:s,broadcastCalendar:l}=o??{},{addDays:u,differenceInCalendarDays:y,differenceInCalendarMonths:h,endOfBroadcastWeek:f,endOfISOWeek:k,endOfMonth:m,endOfWeek:g,isAfter:_,startOfBroadcastWeek:v,startOfISOWeek:b,startOfWeek:M}=n,x=l?v(a,n):c?b(a):M(a),N=l?f(r):c?k(m(r)):g(m(r)),C=t&&(l?f(t):c?k(t):g(t)),$=C&&_(N,C)?C:N,L=y($,x),A=h(r,a)+1,q=[];for(let D=0;D<=L;D++){const U=u(x,D);q.push(U)}const O=(l?35:42)*A;if(s&&q.length<O){const D=O-q.length;for(let U=0;U<D;U++){const G=u(q[q.length-1],1);q.push(G)}}return q}function YJ(e){const t=[];return e.reduce((o,n)=>{const a=n.weeks.reduce((r,c)=>r.concat(c.days.slice()),t.slice());return o.concat(a.slice())},t.slice())}function XJ(e,t,o,n){const{numberOfMonths:a=1}=o,r=[];for(let c=0;c<a;c++){const s=n.addMonths(e,c);if(t&&s>t)break;r.push(s)}return r}function Hz(e,t,o,n){const{month:a,defaultMonth:r,today:c=n.today(),numberOfMonths:s=1}=e;let l=a||r||c;const{differenceInCalendarMonths:u,addMonths:y,startOfMonth:h}=n;if(o&&u(o,l)<s-1){const f=-1*(s-1);l=y(o,f)}return t&&u(l,t)<0&&(l=t),h(l)}function ZJ(e,t,o,n){const{addDays:a,endOfBroadcastWeek:r,endOfISOWeek:c,endOfMonth:s,endOfWeek:l,getISOWeek:u,getWeek:y,startOfBroadcastWeek:h,startOfISOWeek:f,startOfWeek:k}=n,m=e.reduce((g,_)=>{const v=o.broadcastCalendar?h(_,n):o.ISOWeek?f(_):k(_),b=o.broadcastCalendar?r(_):o.ISOWeek?c(s(_)):l(s(_)),M=t.filter($=>$>=v&&$<=b),x=o.broadcastCalendar?35:42;if(o.fixedWeeks&&M.length<x){const $=t.filter(L=>{const A=x-M.length;return L>b&&L<=a(b,A)});M.push(...$)}const N=M.reduce(($,L)=>{const A=o.ISOWeek?u(L):y(L),q=$.find(O=>O.weekNumber===A),z=new Nz(L,_,n);return q?q.days.push(z):$.push(new KQ(A,[z])),$},[]),C=new GQ(_,N);return g.push(C),g},[]);return o.reverseMonths?m.reverse():m}function QJ(e,t){let{startMonth:o,endMonth:n}=e;const{startOfYear:a,startOfDay:r,startOfMonth:c,endOfMonth:s,addYears:l,endOfYear:u,newDate:y,today:h}=t,{fromYear:f,toYear:k,fromMonth:m,toMonth:g}=e;!o&&m&&(o=m),!o&&f&&(o=t.newDate(f,0,1)),!n&&g&&(n=g),!n&&k&&(n=y(k,11,31));const _=e.captionLayout==="dropdown"||e.captionLayout==="dropdown-years";return o?o=c(o):f?o=y(f,0,1):!o&&_&&(o=a(l(e.today??h(),-100))),n?n=s(n):k?n=y(k,11,31):!n&&_&&(n=u(e.today??h())),[o&&r(o),n&&r(n)]}function JJ(e,t,o,n){if(o.disableNavigation)return;const{pagedNavigation:a,numberOfMonths:r=1}=o,{startOfMonth:c,addMonths:s,differenceInCalendarMonths:l}=n,u=a?r:1,y=c(e);if(!t)return s(y,u);if(!(l(t,e)<r))return s(y,u)}function eee(e,t,o,n){if(o.disableNavigation)return;const{pagedNavigation:a,numberOfMonths:r}=o,{startOfMonth:c,addMonths:s,differenceInCalendarMonths:l}=n,u=a?r??1:1,y=c(e);if(!t)return s(y,-u);if(!(l(y,t)<=0))return s(y,-u)}function tee(e){const t=[];return e.reduce((o,n)=>o.concat(n.weeks.slice()),t.slice())}function BC(e,t){const[o,n]=w.useState(e);return[t===void 0?o:t,n]}function oee(e,t){const[o,n]=QJ(e,t),{startOfMonth:a,endOfMonth:r}=t,c=Hz(e,o,n,t),[s,l]=BC(c,e.month?c:void 0);w.useEffect(()=>{const x=Hz(e,o,n,t);l(x)},[e.timeZone]);const{months:u,weeks:y,days:h,previousMonth:f,nextMonth:k}=w.useMemo(()=>{const x=XJ(s,n,{numberOfMonths:e.numberOfMonths},t),N=KJ(x,e.endMonth?r(e.endMonth):void 0,{ISOWeek:e.ISOWeek,fixedWeeks:e.fixedWeeks,broadcastCalendar:e.broadcastCalendar},t),C=ZJ(x,N,{broadcastCalendar:e.broadcastCalendar,fixedWeeks:e.fixedWeeks,ISOWeek:e.ISOWeek,reverseMonths:e.reverseMonths},t),$=tee(C),L=YJ(C),A=eee(s,o,e,t),q=JJ(s,n,e,t);return{months:C,weeks:$,days:L,previousMonth:A,nextMonth:q}},[t,s.getTime(),n?.getTime(),o?.getTime(),e.disableNavigation,e.broadcastCalendar,e.endMonth?.getTime(),e.fixedWeeks,e.ISOWeek,e.numberOfMonths,e.pagedNavigation,e.reverseMonths]),{disableNavigation:m,onMonthChange:g}=e,_=x=>y.some(N=>N.days.some(C=>C.isEqualTo(x))),v=x=>{if(m)return;let N=a(x);o&&N<a(o)&&(N=a(o)),n&&N>a(n)&&(N=a(n)),l(N),g?.(N)};return{months:u,weeks:y,days:h,navStart:o,navEnd:n,previousMonth:f,nextMonth:k,goToMonth:v,goToDay:x=>{_(x)||v(x.date)}}}var No;(function(e){e[e.Today=0]="Today",e[e.Selected=1]="Selected",e[e.LastFocused=2]="LastFocused",e[e.FocusedModifier=3]="FocusedModifier"})(No||(No={}));function Vz(e){return!e[Je.disabled]&&!e[Je.hidden]&&!e[Je.outside]}function nee(e,t,o,n){let a,r=-1;for(const c of e){const s=t(c);Vz(s)&&(s[Je.focused]&&r<No.FocusedModifier?(a=c,r=No.FocusedModifier):n?.isEqualTo(c)&&r<No.LastFocused?(a=c,r=No.LastFocused):o(c.date)&&r<No.Selected?(a=c,r=No.Selected):s[Je.today]&&r<No.Today&&(a=c,r=No.Today))}return a||(a=e.find(c=>Vz(t(c)))),a}function aee(e,t,o,n,a,r,c){const{ISOWeek:s,broadcastCalendar:l}=r,{addDays:u,addMonths:y,addWeeks:h,addYears:f,endOfBroadcastWeek:k,endOfISOWeek:m,endOfWeek:g,max:_,min:v,startOfBroadcastWeek:b,startOfISOWeek:M,startOfWeek:x}=c;let C={day:u,week:h,month:y,year:f,startOfWeek:$=>l?b($,c):s?M($):x($),endOfWeek:$=>l?k($):s?m($):g($)}[e](o,t==="after"?1:-1);return t==="before"&&n?C=_([n,C]):t==="after"&&a&&(C=v([a,C])),C}function Fz(e,t,o,n,a,r,c,s=0){if(s>365)return;const l=aee(e,t,o.date,n,a,r,c),u=!!(r.disabled&&Ro(l,r.disabled,c)),y=!!(r.hidden&&Ro(l,r.hidden,c)),h=l,f=new Nz(l,h,c);return!u&&!y?f:Fz(e,t,f,n,a,r,c,s+1)}function ree(e,t,o,n,a){const{autoFocus:r}=e,[c,s]=w.useState(),l=nee(t.days,o,n||(()=>!1),c),[u,y]=w.useState(r?l:void 0);return{isFocusTarget:g=>!!l?.isEqualTo(g),setFocused:y,focused:u,blur:()=>{s(u),y(void 0)},moveFocus:(g,_)=>{if(!u)return;const v=Fz(g,_,u,t.navStart,t.navEnd,e,a);v&&(e.disableNavigation&&!t.days.some(M=>M.isEqualTo(v))||(t.goToDay(v),y(v)))}}}function iee(e,t){const{selected:o,required:n,onSelect:a}=e,[r,c]=BC(o,a?o:void 0),s=a?o:r,{isSameDay:l}=t,u=k=>s?.some(m=>l(m,k))??!1,{min:y,max:h}=e;return{selected:s,select:(k,m,g)=>{let _=[...s??[]];if(u(k)){if(s?.length===y||n&&s?.length===1)return;_=s?.filter(v=>!l(v,k))}else s?.length===h?_=[k]:_=[..._,k];return a||c(_),a?.(_,k,m,g),_},isSelected:u}}function cee(e,t,o=0,n=0,a=!1,r=xo){const{from:c,to:s}=t||{},{isSameDay:l,isAfter:u,isBefore:y}=r;let h;if(!c&&!s)h={from:e,to:o>0?void 0:e};else if(c&&!s)l(c,e)?o===0?h={from:c,to:e}:a?h={from:c,to:void 0}:h=void 0:y(e,c)?h={from:e,to:c}:h={from:c,to:e};else if(c&&s)if(l(c,e)&&l(s,e))a?h={from:c,to:s}:h=void 0;else if(l(c,e))h={from:c,to:o>0?void 0:e};else if(l(s,e))h={from:e,to:o>0?void 0:e};else if(y(e,c))h={from:e,to:s};else if(u(e,c))h={from:c,to:e};else if(u(e,s))h={from:c,to:e};else throw new Error("Invalid range");if(h?.from&&h?.to){const f=r.differenceInCalendarDays(h.to,h.from);n>0&&f>n?h={from:e,to:void 0}:o>1&&f<o&&(h={from:e,to:void 0})}return h}function see(e,t,o=xo){const n=Array.isArray(t)?t:[t];let a=e.from;const r=o.differenceInCalendarDays(e.to,e.from),c=Math.min(r,6);for(let s=0;s<=c;s++){if(n.includes(a.getDay()))return!0;a=o.addDays(a,1)}return!1}function Bz(e,t,o=xo){return Uo(e,t.from,!1,o)||Uo(e,t.to,!1,o)||Uo(t,e.from,!1,o)||Uo(t,e.to,!1,o)}function dee(e,t,o=xo){const n=Array.isArray(t)?t:[t];if(n.filter(s=>typeof s!="function").some(s=>typeof s=="boolean"?s:o.isDate(s)?Uo(e,s,!1,o):Sz(s,o)?s.some(l=>Uo(e,l,!1,o)):FC(s)?s.from&&s.to?Bz(e,{from:s.from,to:s.to},o):!1:$z(s)?see(e,s.dayOfWeek,o):uL(s)?o.isAfter(s.before,s.after)?Bz(e,{from:o.addDays(s.after,1),to:o.addDays(s.before,-1)},o):Ro(e.from,s,o)||Ro(e.to,s,o):hL(s)||pL(s)?Ro(e.from,s,o)||Ro(e.to,s,o):!1))return!0;const c=n.filter(s=>typeof s=="function");if(c.length){let s=e.from;const l=o.differenceInCalendarDays(e.to,e.from);for(let u=0;u<=l;u++){if(c.some(y=>y(s)))return!0;s=o.addDays(s,1)}}return!1}function lee(e,t){const{disabled:o,excludeDisabled:n,selected:a,required:r,onSelect:c}=e,[s,l]=BC(a,c?a:void 0),u=c?a:s;return{selected:u,select:(f,k,m)=>{const{min:g,max:_}=e,v=f?cee(f,u,g,_,r,t):void 0;return n&&o&&v?.from&&v.to&&dee({from:v.from,to:v.to},o,t)&&(v.from=f,v.to=void 0),c||l(v),c?.(v,f,k,m),v},isSelected:f=>u&&Uo(u,f,!1,t)}}function uee(e,t){const{selected:o,required:n,onSelect:a}=e,[r,c]=BC(o,a?o:void 0),s=a?o:r,{isSameDay:l}=t;return{selected:s,select:(h,f,k)=>{let m=h;return!n&&s&&s&&l(h,s)&&(m=void 0),a||c(m),a?.(m,h,f,k),m},isSelected:h=>s?l(s,h):!1}}function hee(e,t){const o=uee(e,t),n=iee(e,t),a=lee(e,t);switch(e.mode){case"single":return o;case"multiple":return n;case"range":return a;default:return}}function jt(e,t){return e instanceof pt&&e.timeZone===t?e:new pt(e,t)}function fs(e,t,o){return jt(e,t)}function Wz(e,t,o){return typeof e=="boolean"||typeof e=="function"?e:e instanceof Date?fs(e,t):Array.isArray(e)?e.map(n=>n instanceof Date?fs(n,t):n):FC(e)?{...e,from:e.from?jt(e.from,t):e.from,to:e.to?jt(e.to,t):e.to}:uL(e)?{before:fs(e.before,t),after:fs(e.after,t)}:hL(e)?{after:fs(e.after,t)}:pL(e)?{before:fs(e.before,t)}:e}function _L(e,t,o){return e&&(Array.isArray(e)?e.map(n=>Wz(n,t)):Wz(e,t))}function pee(e){let t=e;const o=t.timeZone;if(o&&(t={...e,timeZone:o},t.today&&(t.today=jt(t.today,o)),t.month&&(t.month=jt(t.month,o)),t.defaultMonth&&(t.defaultMonth=jt(t.defaultMonth,o)),t.startMonth&&(t.startMonth=jt(t.startMonth,o)),t.endMonth&&(t.endMonth=jt(t.endMonth,o)),t.mode==="single"&&t.selected?t.selected=jt(t.selected,o):t.mode==="multiple"&&t.selected?t.selected=t.selected?.map(oe=>jt(oe,o)):t.mode==="range"&&t.selected&&(t.selected={from:t.selected.from?jt(t.selected.from,o):t.selected.from,to:t.selected.to?jt(t.selected.to,o):t.selected.to}),t.disabled!==void 0&&(t.disabled=_L(t.disabled,o)),t.hidden!==void 0&&(t.hidden=_L(t.hidden,o)),t.modifiers)){const oe={};Object.keys(t.modifiers).forEach(ve=>{oe[ve]=_L(t.modifiers?.[ve],o)}),t.modifiers=oe}const{components:n,formatters:a,labels:r,dateLib:c,locale:s,classNames:l}=w.useMemo(()=>{const oe={...xz,...t.locale},ve=t.broadcastCalendar?1:t.weekStartsOn,he=t.noonSafe&&t.timeZone?BJ(t.timeZone,{weekStartsOn:ve,locale:oe}):void 0,me=t.dateLib&&he?{...he,...t.dateLib}:t.dateLib??he,Le=new Tt({locale:oe,weekStartsOn:ve,firstWeekContainsDate:t.firstWeekContainsDate,useAdditionalWeekYearTokens:t.useAdditionalWeekYearTokens,useAdditionalDayOfYearTokens:t.useAdditionalDayOfYearTokens,timeZone:t.timeZone,numerals:t.numerals},me);return{dateLib:Le,components:xJ(t.components),formatters:TJ(t.formatters),labels:qJ(t.labels,Le.options),locale:oe,classNames:{...yL(),...t.classNames}}},[t.locale,t.broadcastCalendar,t.weekStartsOn,t.firstWeekContainsDate,t.useAdditionalWeekYearTokens,t.useAdditionalDayOfYearTokens,t.timeZone,t.numerals,t.dateLib,t.noonSafe,t.components,t.formatters,t.labels,t.classNames]);t.today||(t={...t,today:c.today()});const{captionLayout:u,mode:y,navLayout:h,numberOfMonths:f=1,onDayBlur:k,onDayClick:m,onDayFocus:g,onDayKeyDown:_,onDayMouseEnter:v,onDayMouseLeave:b,onNextClick:M,onPrevClick:x,showWeekNumber:N,styles:C}=t,{formatCaption:$,formatDay:L,formatMonthDropdown:A,formatWeekNumber:q,formatWeekNumberHeader:z,formatWeekdayName:O,formatYearDropdown:D}=a,U=oee(t,c),{days:G,months:H,navStart:Y,navEnd:P,previousMonth:F,nextMonth:ne,goToMonth:de}=U,B=MJ(G,t,Y,P,c),{isSelected:W,select:K,selected:R}=hee(t,c)??{},{blur:re,focused:V,isFocusTarget:te,moveFocus:fe,setFocused:pe}=ree(t,U,B,W??(()=>!1),c),{labelDayButton:le,labelGridcell:ee,labelGrid:_e,labelMonthDropdown:j,labelNav:ue,labelPrevious:xe,labelNext:Ce,labelWeekday:De,labelWeekNumber:$e,labelWeekNumberHeader:Pe,labelYearDropdown:T}=r,I=w.useMemo(()=>VJ(c,t.ISOWeek,t.broadcastCalendar,t.today),[c,t.ISOWeek,t.broadcastCalendar,t.today]),E=y!==void 0||m!==void 0,Q=w.useCallback(()=>{F&&(de(F),x?.(F))},[F,de,x]),Z=w.useCallback(()=>{ne&&(de(ne),M?.(ne))},[de,ne,M]),J=w.useCallback((oe,ve)=>he=>{he.preventDefault(),he.stopPropagation(),pe(oe),!ve.disabled&&(K?.(oe.date,ve,he),m?.(oe.date,ve,he))},[K,m,pe]),ae=w.useCallback((oe,ve)=>he=>{pe(oe),g?.(oe.date,ve,he)},[g,pe]),Ne=w.useCallback((oe,ve)=>he=>{re(),k?.(oe.date,ve,he)},[re,k]),Se=w.useCallback((oe,ve)=>he=>{const me={ArrowLeft:[he.shiftKey?"month":"day",t.dir==="rtl"?"after":"before"],ArrowRight:[he.shiftKey?"month":"day",t.dir==="rtl"?"before":"after"],ArrowDown:[he.shiftKey?"year":"week","after"],ArrowUp:[he.shiftKey?"year":"week","before"],PageUp:[he.shiftKey?"year":"month","before"],PageDown:[he.shiftKey?"year":"month","after"],Home:["startOfWeek","before"],End:["endOfWeek","after"]};if(me[he.key]){he.preventDefault(),he.stopPropagation();const[Le,ce]=me[he.key];fe(Le,ce)}_?.(oe.date,ve,he)},[fe,_,t.dir]),Te=w.useCallback((oe,ve)=>he=>{v?.(oe.date,ve,he)},[v]),dt=w.useCallback((oe,ve)=>he=>{b?.(oe.date,ve,he)},[b]),Ve=w.useCallback(oe=>ve=>{const he=Number(ve.target.value),me=c.setMonth(c.startOfMonth(oe),he);de(me)},[c,de]),nt=w.useCallback(oe=>ve=>{const he=Number(ve.target.value),me=c.setYear(c.startOfMonth(oe),he);de(me)},[c,de]),{className:wt,style:Lt}=w.useMemo(()=>({className:[l[Me.Root],t.className].filter(Boolean).join(" "),style:{...C?.[Me.Root],...t.style}}),[l,t.className,t.style,C]),qo=NJ(t),uo=w.useRef(null);GJ(uo,!!t.animate,{classNames:l,months:H,focused:V,dateLib:c});const ho={dayPickerProps:t,selected:R,select:K,isSelected:W,months:H,nextMonth:ne,previousMonth:F,goToMonth:de,getModifiers:B,components:n,classNames:l,styles:C,labels:r,formatters:a};return w.createElement(Cz.Provider,{value:ho},w.createElement(n.Root,{rootRef:t.animate?uo:void 0,className:wt,style:Lt,dir:t.dir,id:t.id,lang:t.lang,nonce:t.nonce,title:t.title,role:t.role,"aria-label":t["aria-label"],"aria-labelledby":t["aria-labelledby"],...qo},w.createElement(n.Months,{className:l[Me.Months],style:C?.[Me.Months]},!t.hideNavigation&&!h&&w.createElement(n.Nav,{"data-animated-nav":t.animate?"true":void 0,className:l[Me.Nav],style:C?.[Me.Nav],"aria-label":ue(),onPreviousClick:Q,onNextClick:Z,previousMonth:F,nextMonth:ne}),H.map((oe,ve)=>w.createElement(n.Month,{"data-animated-month":t.animate?"true":void 0,className:l[Me.Month],style:C?.[Me.Month],key:ve,displayIndex:ve,calendarMonth:oe},h==="around"&&!t.hideNavigation&&ve===0&&w.createElement(n.PreviousMonthButton,{type:"button",className:l[Me.PreviousMonthButton],tabIndex:F?void 0:-1,"aria-disabled":F?void 0:!0,"aria-label":xe(F),onClick:Q,"data-animated-button":t.animate?"true":void 0},w.createElement(n.Chevron,{disabled:F?void 0:!0,className:l[Me.Chevron],orientation:t.dir==="rtl"?"right":"left"})),w.createElement(n.MonthCaption,{"data-animated-caption":t.animate?"true":void 0,className:l[Me.MonthCaption],style:C?.[Me.MonthCaption],calendarMonth:oe,displayIndex:ve},u?.startsWith("dropdown")?w.createElement(n.DropdownNav,{className:l[Me.Dropdowns],style:C?.[Me.Dropdowns]},(()=>{const he=u==="dropdown"||u==="dropdown-months"?w.createElement(n.MonthsDropdown,{key:"month",className:l[Me.MonthsDropdown],"aria-label":j(),classNames:l,components:n,disabled:!!t.disableNavigation,onChange:Ve(oe.date),options:jJ(oe.date,Y,P,a,c),style:C?.[Me.Dropdown],value:c.getMonth(oe.date)}):w.createElement("span",{key:"month"},A(oe.date,c)),me=u==="dropdown"||u==="dropdown-years"?w.createElement(n.YearsDropdown,{key:"year",className:l[Me.YearsDropdown],"aria-label":T(c.options),classNames:l,components:n,disabled:!!t.disableNavigation,onChange:nt(oe.date),options:FJ(Y,P,a,c,!!t.reverseYears),style:C?.[Me.Dropdown],value:c.getYear(oe.date)}):w.createElement("span",{key:"year"},D(oe.date,c));return c.getMonthYearOrder()==="year-first"?[me,he]:[he,me]})(),w.createElement("span",{role:"status","aria-live":"polite",style:{border:0,clip:"rect(0 0 0 0)",height:"1px",margin:"-1px",overflow:"hidden",padding:0,position:"absolute",width:"1px",whiteSpace:"nowrap",wordWrap:"normal"}},$(oe.date,c.options,c))):w.createElement(n.CaptionLabel,{className:l[Me.CaptionLabel],role:"status","aria-live":"polite"},$(oe.date,c.options,c))),h==="around"&&!t.hideNavigation&&ve===f-1&&w.createElement(n.NextMonthButton,{type:"button",className:l[Me.NextMonthButton],tabIndex:ne?void 0:-1,"aria-disabled":ne?void 0:!0,"aria-label":Ce(ne),onClick:Z,"data-animated-button":t.animate?"true":void 0},w.createElement(n.Chevron,{disabled:ne?void 0:!0,className:l[Me.Chevron],orientation:t.dir==="rtl"?"left":"right"})),ve===f-1&&h==="after"&&!t.hideNavigation&&w.createElement(n.Nav,{"data-animated-nav":t.animate?"true":void 0,className:l[Me.Nav],style:C?.[Me.Nav],"aria-label":ue(),onPreviousClick:Q,onNextClick:Z,previousMonth:F,nextMonth:ne}),w.createElement(n.MonthGrid,{role:"grid","aria-multiselectable":y==="multiple"||y==="range","aria-label":_e(oe.date,c.options,c)||void 0,className:l[Me.MonthGrid],style:C?.[Me.MonthGrid]},!t.hideWeekdays&&w.createElement(n.Weekdays,{"data-animated-weekdays":t.animate?"true":void 0,className:l[Me.Weekdays],style:C?.[Me.Weekdays]},N&&w.createElement(n.WeekNumberHeader,{"aria-label":Pe(c.options),className:l[Me.WeekNumberHeader],style:C?.[Me.WeekNumberHeader],scope:"col"},z()),I.map(he=>w.createElement(n.Weekday,{"aria-label":De(he,c.options,c),className:l[Me.Weekday],key:String(he),style:C?.[Me.Weekday],scope:"col"},O(he,c.options,c)))),w.createElement(n.Weeks,{"data-animated-weeks":t.animate?"true":void 0,className:l[Me.Weeks],style:C?.[Me.Weeks]},oe.weeks.map(he=>w.createElement(n.Week,{className:l[Me.Week],key:he.weekNumber,style:C?.[Me.Week],week:he},N&&w.createElement(n.WeekNumber,{week:he,style:C?.[Me.WeekNumber],"aria-label":$e(he.weekNumber,{locale:s}),className:l[Me.WeekNumber],scope:"row",role:"rowheader"},q(he.weekNumber,c)),he.days.map(me=>{const{date:Le}=me,ce=B(me);if(ce[Je.focused]=!ce.hidden&&!!V?.isEqualTo(me),ce[to.selected]=W?.(Le)||ce.selected,FC(R)){const{from:gt,to:je}=R;ce[to.range_start]=!!(gt&&je&&c.isSameDay(Le,gt)),ce[to.range_end]=!!(gt&&je&&c.isSameDay(Le,je)),ce[to.range_middle]=Uo(R,Le,!0,c)}const Ae=HJ(ce,C,t.modifiersStyles),qe=wJ(ce,l,t.modifiersClassNames),Fe=!E&&!ce.hidden?ee(Le,ce,c.options,c):void 0;return w.createElement(n.Day,{key:`${me.isoDate}_${me.displayMonthId}`,day:me,modifiers:ce,className:qe.join(" "),style:Ae,role:"gridcell","aria-selected":ce.selected||void 0,"aria-label":Fe,"data-day":me.isoDate,"data-month":me.outside?me.dateMonthId:void 0,"data-selected":ce.selected||void 0,"data-disabled":ce.disabled||void 0,"data-hidden":ce.hidden||void 0,"data-outside":me.outside||void 0,"data-focused":ce.focused||void 0,"data-today":ce.today||void 0},!ce.hidden&&E?w.createElement(n.DayButton,{className:l[Me.DayButton],style:C?.[Me.DayButton],type:"button",day:me,modifiers:ce,disabled:!ce.focused&&ce.disabled||void 0,"aria-disabled":ce.focused&&ce.disabled||void 0,tabIndex:te(me)?0:-1,"aria-label":le(Le,ce,c.options,c),onClick:J(me,ce),onBlur:Ne(me,ce),onFocus:ae(me,ce),onKeyDown:Se(me,ce),onMouseEnter:Te(me,ce),onMouseLeave:dt(me,ce)},L(Le,c.options,c)):!ce.hidden&&L(me.date,c.options,c))})))))))),t.footer&&w.createElement(n.Footer,{className:l[Me.Footer],style:C?.[Me.Footer],role:"status","aria-live":"polite"},t.footer)))}function Uz({className:e,classNames:t,showOutsideDays:o=!0,captionLayout:n="label",buttonVariant:a="ghost",formatters:r,components:c,...s}){const l=yL();return d.jsx(pee,{showOutsideDays:o,className:S("bg-background group/calendar p-3 [--cell-size:2rem] [[data-slot=card-content]_&]:bg-transparent [[data-slot=popover-content]_&]:bg-transparent",String.raw`rtl:**:[.rdp-button\_next>svg]:rotate-180`,String.raw`rtl:**:[.rdp-button\_previous>svg]:rotate-180`,e),captionLayout:n,formatters:{formatMonthDropdown:u=>u.toLocaleString("default",{month:"short"}),...r},classNames:{root:S("w-fit",l.root),months:S("relative flex flex-col gap-4 md:flex-row",l.months),month:S("flex w-full flex-col gap-4",l.month),nav:S("absolute inset-x-0 top-0 flex w-full items-center justify-between gap-1",l.nav),button_previous:S(ds({variant:a}),"h-[--cell-size] w-[--cell-size] select-none p-0 aria-disabled:opacity-50",l.button_previous),button_next:S(ds({variant:a}),"h-[--cell-size] w-[--cell-size] select-none p-0 aria-disabled:opacity-50",l.button_next),month_caption:S("flex h-[--cell-size] w-full items-center justify-center px-[--cell-size]",l.month_caption),dropdowns:S("flex h-[--cell-size] w-full items-center justify-center gap-1.5 text-sm font-medium",l.dropdowns),dropdown_root:S("has-focus:border-ring border-input shadow-xs has-focus:ring-ring/50 has-focus:ring-[3px] relative rounded-md border",l.dropdown_root),dropdown:S("bg-popover absolute inset-0 opacity-0",l.dropdown),caption_label:S("select-none font-medium",n==="label"?"text-sm":"[&>svg]:text-muted-foreground flex h-8 items-center gap-1 rounded-md pl-2 pr-1 text-sm [&>svg]:size-3.5",l.caption_label),table:"w-full border-collapse",weekdays:S("flex",l.weekdays),weekday:S("text-muted-foreground flex-1 select-none rounded-md text-[0.8rem] font-normal",l.weekday),week:S("mt-2 flex w-full",l.week),week_number_header:S("w-[--cell-size] select-none",l.week_number_header),week_number:S("text-muted-foreground select-none text-[0.8rem]",l.week_number),day:S("group/day relative aspect-square h-full w-full select-none p-0 text-center [&:first-child[data-selected=true]_button]:rounded-l-md [&:last-child[data-selected=true]_button]:rounded-r-md",l.day),range_start:S("bg-accent rounded-l-md",l.range_start),range_middle:S("rounded-none",l.range_middle),range_end:S("bg-accent rounded-r-md",l.range_end),today:S("bg-accent text-accent-foreground rounded-md data-[selected=true]:rounded-none",l.today),outside:S("text-muted-foreground aria-selected:text-muted-foreground",l.outside),disabled:S("text-muted-foreground opacity-50",l.disabled),hidden:S("invisible",l.hidden),...t},components:{Root:({className:u,rootRef:y,...h})=>d.jsx("div",{"data-slot":"calendar",ref:y,className:S(u),...h}),Chevron:({className:u,orientation:y,...h})=>y==="left"?d.jsx(ea,{className:S("size-4",u),...h}):y==="right"?d.jsx(Ot,{className:S("size-4",u),...h}):d.jsx(Zt,{className:S("size-4",u),...h}),DayButton:yee,WeekNumber:({children:u,...y})=>d.jsx("td",{...y,children:d.jsx("div",{className:"flex size-[--cell-size] items-center justify-center text-center",children:u})}),...c},...s})}function yee({className:e,day:t,modifiers:o,...n}){const a=yL(),r=p.useRef(null);return p.useEffect(()=>{o.focused&&r.current?.focus()},[o.focused]),d.jsx(Ee,{ref:r,variant:"ghost",size:"icon","data-day":t.date.toLocaleDateString(),"data-selected-single":o.selected&&!o.range_start&&!o.range_end&&!o.range_middle,"data-range-start":o.range_start,"data-range-end":o.range_end,"data-range-middle":o.range_middle,className:S("data-[selected-single=true]:bg-primary data-[selected-single=true]:text-primary-foreground data-[range-middle=true]:bg-accent data-[range-middle=true]:text-accent-foreground data-[range-start=true]:bg-primary data-[range-start=true]:text-primary-foreground data-[range-end=true]:bg-primary data-[range-end=true]:text-primary-foreground group-data-[focused=true]/day:border-ring group-data-[focused=true]/day:ring-ring/50 flex aspect-square h-auto w-full min-w-[--cell-size] flex-col gap-1 font-normal leading-none data-[range-end=true]:rounded-md data-[range-middle=true]:rounded-none data-[range-start=true]:rounded-md group-data-[focused=true]/day:relative group-data-[focused=true]/day:z-10 group-data-[focused=true]/day:ring-[3px] [&>span]:text-xs [&>span]:opacity-70",a.day,e),...n})}const Rz=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,className:S("rounded-lg border bg-card text-card-foreground shadow-sm",e),...t}));Rz.displayName="Card";const Gz=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,className:S("flex flex-col space-y-1.5 p-6",e),...t}));Gz.displayName="CardHeader";const Kz=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,className:S("text-2xl font-semibold leading-none tracking-tight",e),...t}));Kz.displayName="CardTitle";const Yz=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,className:S("text-sm text-muted-foreground",e),...t}));Yz.displayName="CardDescription";const Xz=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,className:S("p-6 pt-0",e),...t}));Xz.displayName="CardContent";const Zz=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,className:S("flex items-center p-6 pt-0",e),...t}));Zz.displayName="CardFooter";function fee(e){return Object.prototype.toString.call(e)==="[object Object]"}function Qz(e){return fee(e)||Array.isArray(e)}function mee(){return!!(typeof window<"u"&&window.document&&window.document.createElement)}function bL(e,t){const o=Object.keys(e),n=Object.keys(t);if(o.length!==n.length)return!1;const a=JSON.stringify(Object.keys(e.breakpoints||{})),r=JSON.stringify(Object.keys(t.breakpoints||{}));return a!==r?!1:o.every(c=>{const s=e[c],l=t[c];return typeof s=="function"?`${s}`==`${l}`:!Qz(s)||!Qz(l)?s===l:bL(s,l)})}function Jz(e){return e.concat().sort((t,o)=>t.name>o.name?1:-1).map(t=>t.options)}function kee(e,t){if(e.length!==t.length)return!1;const o=Jz(e),n=Jz(t);return o.every((a,r)=>{const c=n[r];return bL(a,c)})}function ML(e){return typeof e=="number"}function wL(e){return typeof e=="string"}function WC(e){return typeof e=="boolean"}function eO(e){return Object.prototype.toString.call(e)==="[object Object]"}function et(e){return Math.abs(e)}function xL(e){return Math.sign(e)}function xd(e,t){return et(e-t)}function gee(e,t){if(e===0||t===0||et(e)<=et(t))return 0;const o=xd(et(e),et(t));return et(o/e)}function vee(e){return Math.round(e*100)/100}function Nd(e){return $d(e).map(Number)}function no(e){return e[Cd(e)]}function Cd(e){return Math.max(0,e.length-1)}function NL(e,t){return t===Cd(e)}function tO(e,t=0){return Array.from(Array(e),(o,n)=>t+n)}function $d(e){return Object.keys(e)}function oO(e,t){return[e,t].reduce((o,n)=>($d(n).forEach(a=>{const r=o[a],c=n[a],s=eO(r)&&eO(c);o[a]=s?oO(r,c):c}),o),{})}function CL(e,t){return typeof t.MouseEvent<"u"&&e instanceof t.MouseEvent}function _ee(e,t){const o={start:n,center:a,end:r};function n(){return 0}function a(l){return r(l)/2}function r(l){return t-l}function c(l,u){return wL(e)?o[e](l):e(t,l,u)}return{measure:c}}function Sd(){let e=[];function t(a,r,c,s={passive:!0}){let l;if("addEventListener"in a)a.addEventListener(r,c,s),l=()=>a.removeEventListener(r,c,s);else{const u=a;u.addListener(c),l=()=>u.removeListener(c)}return e.push(l),n}function o(){e=e.filter(a=>a())}const n={add:t,clear:o};return n}function bee(e,t,o,n){const a=Sd(),r=1e3/60;let c=null,s=0,l=0;function u(){a.add(e,"visibilitychange",()=>{e.hidden&&m()})}function y(){k(),a.clear()}function h(_){if(!l)return;c||(c=_,o(),o());const v=_-c;for(c=_,s+=v;s>=r;)o(),s-=r;const b=s/r;n(b),l&&(l=t.requestAnimationFrame(h))}function f(){l||(l=t.requestAnimationFrame(h))}function k(){t.cancelAnimationFrame(l),c=null,s=0,l=0}function m(){c=null,s=0}return{init:u,destroy:y,start:f,stop:k,update:o,render:n}}function Mee(e,t){const o=t==="rtl",n=e==="y",a=n?"y":"x",r=n?"x":"y",c=!n&&o?-1:1,s=y(),l=h();function u(m){const{height:g,width:_}=m;return n?g:_}function y(){return n?"top":o?"right":"left"}function h(){return n?"bottom":o?"left":"right"}function f(m){return m*c}return{scroll:a,cross:r,startEdge:s,endEdge:l,measureSize:u,direction:f}}function Ic(e=0,t=0){const o=et(e-t);function n(u){return u<e}function a(u){return u>t}function r(u){return n(u)||a(u)}function c(u){return r(u)?n(u)?e:t:u}function s(u){return o?u-o*Math.ceil((u-t)/o):u}return{length:o,max:t,min:e,constrain:c,reachedAny:r,reachedMax:a,reachedMin:n,removeOffset:s}}function nO(e,t,o){const{constrain:n}=Ic(0,e),a=e+1;let r=c(t);function c(f){return o?et((a+f)%a):n(f)}function s(){return r}function l(f){return r=c(f),h}function u(f){return y().set(s()+f)}function y(){return nO(e,s(),o)}const h={get:s,set:l,add:u,clone:y};return h}function wee(e,t,o,n,a,r,c,s,l,u,y,h,f,k,m,g,_,v,b){const{cross:M,direction:x}=e,N=["INPUT","SELECT","TEXTAREA"],C={passive:!1},$=Sd(),L=Sd(),A=Ic(50,225).constrain(k.measure(20)),q={mouse:300,touch:400},z={mouse:500,touch:600},O=m?43:25;let D=!1,U=0,G=0,H=!1,Y=!1,P=!1,F=!1;function ne(ee){if(!b)return;function _e(ue){(WC(b)||b(ee,ue))&&re(ue)}const j=t;$.add(j,"dragstart",ue=>ue.preventDefault(),C).add(j,"touchmove",()=>{},C).add(j,"touchend",()=>{}).add(j,"touchstart",_e).add(j,"mousedown",_e).add(j,"touchcancel",te).add(j,"contextmenu",te).add(j,"click",fe,!0)}function de(){$.clear(),L.clear()}function B(){const ee=F?o:t;L.add(ee,"touchmove",V,C).add(ee,"touchend",te).add(ee,"mousemove",V,C).add(ee,"mouseup",te)}function W(ee){const _e=ee.nodeName||"";return N.includes(_e)}function K(){return(m?z:q)[F?"mouse":"touch"]}function R(ee,_e){const j=h.add(xL(ee)*-1),ue=y.byDistance(ee,!m).distance;return m||et(ee)<A?ue:_&&_e?ue*.5:y.byIndex(j.get(),0).distance}function re(ee){const _e=CL(ee,n);F=_e,P=m&&_e&&!ee.buttons&&D,D=xd(a.get(),c.get())>=2,!(_e&&ee.button!==0)&&(W(ee.target)||(H=!0,r.pointerDown(ee),u.useFriction(0).useDuration(0),a.set(c),B(),U=r.readPoint(ee),G=r.readPoint(ee,M),f.emit("pointerDown")))}function V(ee){if(!CL(ee,n)&&ee.touches.length>=2)return te(ee);const j=r.readPoint(ee),ue=r.readPoint(ee,M),xe=xd(j,U),Ce=xd(ue,G);if(!Y&&!F&&(!ee.cancelable||(Y=xe>Ce,!Y)))return te(ee);const De=r.pointerMove(ee);xe>g&&(P=!0),u.useFriction(.3).useDuration(.75),s.start(),a.add(x(De)),ee.preventDefault()}function te(ee){const j=y.byDistance(0,!1).index!==h.get(),ue=r.pointerUp(ee)*K(),xe=R(x(ue),j),Ce=gee(ue,xe),De=O-10*Ce,$e=v+Ce/50;Y=!1,H=!1,L.clear(),u.useDuration(De).useFriction($e),l.distance(xe,!m),F=!1,f.emit("pointerUp")}function fe(ee){P&&(ee.stopPropagation(),ee.preventDefault(),P=!1)}function pe(){return H}return{init:ne,destroy:de,pointerDown:pe}}function xee(e,t){let n,a;function r(h){return h.timeStamp}function c(h,f){const m=`client${(f||e.scroll)==="x"?"X":"Y"}`;return(CL(h,t)?h:h.touches[0])[m]}function s(h){return n=h,a=h,c(h)}function l(h){const f=c(h)-c(a),k=r(h)-r(n)>170;return a=h,k&&(n=h),f}function u(h){if(!n||!a)return 0;const f=c(a)-c(n),k=r(h)-r(n),m=r(h)-r(a)>170,g=f/k;return k&&!m&&et(g)>.1?g:0}return{pointerDown:s,pointerMove:l,pointerUp:u,readPoint:c}}function Nee(){function e(o){const{offsetTop:n,offsetLeft:a,offsetWidth:r,offsetHeight:c}=o;return{top:n,right:a+r,bottom:n+c,left:a,width:r,height:c}}return{measure:e}}function Cee(e){function t(n){return e*(n/100)}return{measure:t}}function $ee(e,t,o,n,a,r,c){const s=[e].concat(n);let l,u,y=[],h=!1;function f(_){return a.measureSize(c.measure(_))}function k(_){if(!r)return;u=f(e),y=n.map(f);function v(b){for(const M of b){if(h)return;const x=M.target===e,N=n.indexOf(M.target),C=x?u:y[N],$=f(x?e:n[N]);if(et($-C)>=.5){_.reInit(),t.emit("resize");break}}}l=new ResizeObserver(b=>{(WC(r)||r(_,b))&&v(b)}),o.requestAnimationFrame(()=>{s.forEach(b=>l.observe(b))})}function m(){h=!0,l&&l.disconnect()}return{init:k,destroy:m}}function See(e,t,o,n,a,r){let c=0,s=0,l=a,u=r,y=e.get(),h=0;function f(){const C=n.get()-e.get(),$=!l;let L=0;return $?(c=0,o.set(n),e.set(n),L=C):(o.set(e),c+=C/l,c*=u,y+=c,e.add(c),L=y-h),s=xL(L),h=y,N}function k(){const C=n.get()-t.get();return et(C)<.001}function m(){return l}function g(){return s}function _(){return c}function v(){return M(a)}function b(){return x(r)}function M(C){return l=C,N}function x(C){return u=C,N}const N={direction:g,duration:m,velocity:_,seek:f,settled:k,useBaseFriction:b,useBaseDuration:v,useFriction:x,useDuration:M};return N}function Lee(e,t,o,n,a){const r=a.measure(10),c=a.measure(50),s=Ic(.1,.99);let l=!1;function u(){return!(l||!e.reachedAny(o.get())||!e.reachedAny(t.get()))}function y(k){if(!u())return;const m=e.reachedMin(t.get())?"min":"max",g=et(e[m]-t.get()),_=o.get()-t.get(),v=s.constrain(g/c);o.subtract(_*v),!k&&et(_)<r&&(o.set(e.constrain(o.get())),n.useDuration(25).useBaseFriction())}function h(k){l=!k}return{shouldConstrain:u,constrain:y,toggleActive:h}}function Iee(e,t,o,n,a){const r=Ic(-t+e,0),c=h(),s=y(),l=f();function u(m,g){return xd(m,g)<=1}function y(){const m=c[0],g=no(c),_=c.lastIndexOf(m),v=c.indexOf(g)+1;return Ic(_,v)}function h(){return o.map((m,g)=>{const{min:_,max:v}=r,b=r.constrain(m),M=!g,x=NL(o,g);return M?v:x||u(_,b)?_:u(v,b)?v:b}).map(m=>parseFloat(m.toFixed(3)))}function f(){if(t<=e+a)return[r.max];if(n==="keepSnaps")return c;const{min:m,max:g}=s;return c.slice(m,g)}return{snapsContained:l,scrollContainLimit:s}}function Aee(e,t,o){const n=t[0],a=o?n-e:no(t);return{limit:Ic(a,n)}}function Pee(e,t,o,n){const r=t.min+.1,c=t.max+.1,{reachedMin:s,reachedMax:l}=Ic(r,c);function u(f){return f===1?l(o.get()):f===-1?s(o.get()):!1}function y(f){if(!u(f))return;const k=e*(f*-1);n.forEach(m=>m.add(k))}return{loop:y}}function Tee(e){const{max:t,length:o}=e;function n(r){const c=r-t;return o?c/-o:0}return{get:n}}function Dee(e,t,o,n,a){const{startEdge:r,endEdge:c}=e,{groupSlides:s}=a,l=h().map(t.measure),u=f(),y=k();function h(){return s(n).map(g=>no(g)[c]-g[0][r]).map(et)}function f(){return n.map(g=>o[r]-g[r]).map(g=>-et(g))}function k(){return s(u).map(g=>g[0]).map((g,_)=>g+l[_])}return{snaps:u,snapsAligned:y}}function Eee(e,t,o,n,a,r){const{groupSlides:c}=a,{min:s,max:l}=n,u=y();function y(){const f=c(r),k=!e||t==="keepSnaps";return o.length===1?[r]:k?f:f.slice(s,l).map((m,g,_)=>{const v=!g,b=NL(_,g);if(v){const M=no(_[0])+1;return tO(M)}if(b){const M=Cd(r)-no(_)[0]+1;return tO(M,no(_)[0])}return m})}return{slideRegistry:u}}function zee(e,t,o,n,a){const{reachedAny:r,removeOffset:c,constrain:s}=n;function l(m){return m.concat().sort((g,_)=>et(g)-et(_))[0]}function u(m){const g=e?c(m):s(m),_=t.map((b,M)=>({diff:y(b-g,0),index:M})).sort((b,M)=>et(b.diff)-et(M.diff)),{index:v}=_[0];return{index:v,distance:g}}function y(m,g){const _=[m,m+o,m-o];if(!e)return m;if(!g)return l(_);const v=_.filter(b=>xL(b)===g);return v.length?l(v):no(_)-o}function h(m,g){const _=t[m]-a.get(),v=y(_,g);return{index:m,distance:v}}function f(m,g){const _=a.get()+m,{index:v,distance:b}=u(_),M=!e&&r(_);if(!g||M)return{index:v,distance:m};const x=t[v]-b,N=m+y(x,0);return{index:v,distance:N}}return{byDistance:f,byIndex:h,shortcut:y}}function Oee(e,t,o,n,a,r,c){function s(h){const f=h.distance,k=h.index!==t.get();r.add(f),f&&(n.duration()?e.start():(e.update(),e.render(1),e.update())),k&&(o.set(t.get()),t.set(h.index),c.emit("select"))}function l(h,f){const k=a.byDistance(h,f);s(k)}function u(h,f){const k=t.clone().set(h),m=a.byIndex(k.get(),f);s(m)}return{distance:l,index:u}}function qee(e,t,o,n,a,r,c,s){const l={passive:!0,capture:!0};let u=0;function y(k){if(!s)return;function m(g){if(new Date().getTime()-u>10)return;c.emit("slideFocusStart"),e.scrollLeft=0;const b=o.findIndex(M=>M.includes(g));ML(b)&&(a.useDuration(0),n.index(b,0),c.emit("slideFocus"))}r.add(document,"keydown",h,!1),t.forEach((g,_)=>{r.add(g,"focus",v=>{(WC(s)||s(k,v))&&m(_)},l)})}function h(k){k.code==="Tab"&&(u=new Date().getTime())}return{init:y}}function Ld(e){let t=e;function o(){return t}function n(l){t=c(l)}function a(l){t+=c(l)}function r(l){t-=c(l)}function c(l){return ML(l)?l:l.get()}return{get:o,set:n,add:a,subtract:r}}function aO(e,t){const o=e.scroll==="x"?c:s,n=t.style;let a=null,r=!1;function c(f){return`translate3d(${f}px,0px,0px)`}function s(f){return`translate3d(0px,${f}px,0px)`}function l(f){if(r)return;const k=vee(e.direction(f));k!==a&&(n.transform=o(k),a=k)}function u(f){r=!f}function y(){r||(n.transform="",t.getAttribute("style")||t.removeAttribute("style"))}return{clear:y,to:l,toggleActive:u}}function jee(e,t,o,n,a,r,c,s,l){const y=Nd(a),h=Nd(a).reverse(),f=v().concat(b());function k($,L){return $.reduce((A,q)=>A-a[q],L)}function m($,L){return $.reduce((A,q)=>k(A,L)>0?A.concat([q]):A,[])}function g($){return r.map((L,A)=>({start:L-n[A]+.5+$,end:L+t-.5+$}))}function _($,L,A){const q=g(L);return $.map(z=>{const O=A?0:-o,D=A?o:0,U=A?"end":"start",G=q[z][U];return{index:z,loopPoint:G,slideLocation:Ld(-1),translate:aO(e,l[z]),target:()=>s.get()>G?O:D}})}function v(){const $=c[0],L=m(h,$);return _(L,o,!1)}function b(){const $=t-c[0]-1,L=m(y,$);return _(L,-o,!0)}function M(){return f.every(({index:$})=>{const L=y.filter(A=>A!==$);return k(L,t)<=.1})}function x(){f.forEach($=>{const{target:L,translate:A,slideLocation:q}=$,z=L();z!==q.get()&&(A.to(z),q.set(z))})}function N(){f.forEach($=>$.translate.clear())}return{canLoop:M,clear:N,loop:x,loopPoints:f}}function Hee(e,t,o){let n,a=!1;function r(l){if(!o)return;function u(y){for(const h of y)if(h.type==="childList"){l.reInit(),t.emit("slidesChanged");break}}n=new MutationObserver(y=>{a||(WC(o)||o(l,y))&&u(y)}),n.observe(e,{childList:!0})}function c(){n&&n.disconnect(),a=!0}return{init:r,destroy:c}}function Vee(e,t,o,n){const a={};let r=null,c=null,s,l=!1;function u(){s=new IntersectionObserver(m=>{l||(m.forEach(g=>{const _=t.indexOf(g.target);a[_]=g}),r=null,c=null,o.emit("slidesInView"))},{root:e.parentElement,threshold:n}),t.forEach(m=>s.observe(m))}function y(){s&&s.disconnect(),l=!0}function h(m){return $d(a).reduce((g,_)=>{const v=parseInt(_),{isIntersecting:b}=a[v];return(m&&b||!m&&!b)&&g.push(v),g},[])}function f(m=!0){if(m&&r)return r;if(!m&&c)return c;const g=h(m);return m&&(r=g),m||(c=g),g}return{init:u,destroy:y,get:f}}function Fee(e,t,o,n,a,r){const{measureSize:c,startEdge:s,endEdge:l}=e,u=o[0]&&a,y=m(),h=g(),f=o.map(c),k=_();function m(){if(!u)return 0;const b=o[0];return et(t[s]-b[s])}function g(){if(!u)return 0;const b=r.getComputedStyle(no(n));return parseFloat(b.getPropertyValue(`margin-${l}`))}function _(){return o.map((b,M,x)=>{const N=!M,C=NL(x,M);return N?f[M]+y:C?f[M]+h:x[M+1][s]-b[s]}).map(et)}return{slideSizes:f,slideSizesWithGaps:k,startGap:y,endGap:h}}function Bee(e,t,o,n,a,r,c,s,l){const{startEdge:u,endEdge:y,direction:h}=e,f=ML(o);function k(v,b){return Nd(v).filter(M=>M%b===0).map(M=>v.slice(M,M+b))}function m(v){return v.length?Nd(v).reduce((b,M,x)=>{const N=no(b)||0,C=N===0,$=M===Cd(v),L=a[u]-r[N][u],A=a[u]-r[M][y],q=!n&&C?h(c):0,z=!n&&$?h(s):0,O=et(A-z-(L+q));return x&&O>t+l&&b.push(M),$&&b.push(v.length),b},[]).map((b,M,x)=>{const N=Math.max(x[M-1]||0);return v.slice(N,b)}):[]}function g(v){return f?k(v,o):m(v)}return{groupSlides:g}}function Wee(e,t,o,n,a,r,c){const{align:s,axis:l,direction:u,startIndex:y,loop:h,duration:f,dragFree:k,dragThreshold:m,inViewThreshold:g,slidesToScroll:_,skipSnaps:v,containScroll:b,watchResize:M,watchSlides:x,watchDrag:N,watchFocus:C}=r,$=2,L=Nee(),A=L.measure(t),q=o.map(L.measure),z=Mee(l,u),O=z.measureSize(A),D=Cee(O),U=_ee(s,O),G=!h&&!!b,H=h||!!b,{slideSizes:Y,slideSizesWithGaps:P,startGap:F,endGap:ne}=Fee(z,A,q,o,H,a),de=Bee(z,O,_,h,A,q,F,ne,$),{snaps:B,snapsAligned:W}=Dee(z,U,A,q,de),K=-no(B)+no(P),{snapsContained:R,scrollContainLimit:re}=Iee(O,K,W,b,$),V=G?R:W,{limit:te}=Aee(K,V,h),fe=nO(Cd(V),y,h),pe=fe.clone(),le=Nd(o),ee=({dragHandler:Te,scrollBody:dt,scrollBounds:Ve,options:{loop:nt}})=>{nt||Ve.constrain(Te.pointerDown()),dt.seek()},_e=({scrollBody:Te,translate:dt,location:Ve,offsetLocation:nt,previousLocation:wt,scrollLooper:Lt,slideLooper:qo,dragHandler:uo,animation:ho,eventHandler:oe,scrollBounds:ve,options:{loop:he}},me)=>{const Le=Te.settled(),ce=!ve.shouldConstrain(),Ae=he?Le:Le&&ce,qe=Ae&&!uo.pointerDown();qe&&ho.stop();const Fe=Ve.get()*me+wt.get()*(1-me);nt.set(Fe),he&&(Lt.loop(Te.direction()),qo.loop()),dt.to(nt.get()),qe&&oe.emit("settle"),Ae||oe.emit("scroll")},j=bee(n,a,()=>ee(Se),Te=>_e(Se,Te)),ue=.68,xe=V[fe.get()],Ce=Ld(xe),De=Ld(xe),$e=Ld(xe),Pe=Ld(xe),T=See(Ce,$e,De,Pe,f,ue),I=zee(h,V,K,te,Pe),E=Oee(j,fe,pe,T,I,Pe,c),Q=Tee(te),Z=Sd(),J=Vee(t,o,c,g),{slideRegistry:ae}=Eee(G,b,V,re,de,le),Ne=qee(e,o,ae,E,T,Z,c,C),Se={ownerDocument:n,ownerWindow:a,eventHandler:c,containerRect:A,slideRects:q,animation:j,axis:z,dragHandler:wee(z,e,n,a,Pe,xee(z,a),Ce,j,E,T,I,fe,c,D,k,m,v,ue,N),eventStore:Z,percentOfView:D,index:fe,indexPrevious:pe,limit:te,location:Ce,offsetLocation:$e,previousLocation:De,options:r,resizeHandler:$ee(t,c,a,o,z,M,L),scrollBody:T,scrollBounds:Lee(te,$e,Pe,T,D),scrollLooper:Pee(K,te,$e,[Ce,$e,De,Pe]),scrollProgress:Q,scrollSnapList:V.map(Q.get),scrollSnaps:V,scrollTarget:I,scrollTo:E,slideLooper:jee(z,O,K,Y,P,B,V,$e,o),slideFocus:Ne,slidesHandler:Hee(t,c,x),slidesInView:J,slideIndexes:le,slideRegistry:ae,slidesToScroll:de,target:Pe,translate:aO(z,t)};return Se}function Uee(){let e={},t;function o(u){t=u}function n(u){return e[u]||[]}function a(u){return n(u).forEach(y=>y(t,u)),l}function r(u,y){return e[u]=n(u).concat([y]),l}function c(u,y){return e[u]=n(u).filter(h=>h!==y),l}function s(){e={}}const l={init:o,emit:a,off:c,on:r,clear:s};return l}const Ree={align:"center",axis:"x",container:null,slides:null,containScroll:"trimSnaps",direction:"ltr",slidesToScroll:1,inViewThreshold:0,breakpoints:{},dragFree:!1,dragThreshold:10,loop:!1,skipSnaps:!1,duration:25,startIndex:0,active:!0,watchDrag:!0,watchResize:!0,watchSlides:!0,watchFocus:!0};function Gee(e){function t(r,c){return oO(r,c||{})}function o(r){const c=r.breakpoints||{},s=$d(c).filter(l=>e.matchMedia(l).matches).map(l=>c[l]).reduce((l,u)=>t(l,u),{});return t(r,s)}function n(r){return r.map(c=>$d(c.breakpoints||{})).reduce((c,s)=>c.concat(s),[]).map(e.matchMedia)}return{mergeOptions:t,optionsAtMedia:o,optionsMediaQueries:n}}function Kee(e){let t=[];function o(r,c){return t=c.filter(({options:s})=>e.optionsAtMedia(s).active!==!1),t.forEach(s=>s.init(r,e)),c.reduce((s,l)=>Object.assign(s,{[l.name]:l}),{})}function n(){t=t.filter(r=>r.destroy())}return{init:o,destroy:n}}function UC(e,t,o){const n=e.ownerDocument,a=n.defaultView,r=Gee(a),c=Kee(r),s=Sd(),l=Uee(),{mergeOptions:u,optionsAtMedia:y,optionsMediaQueries:h}=r,{on:f,off:k,emit:m}=l,g=z;let _=!1,v,b=u(Ree,UC.globalOptions),M=u(b),x=[],N,C,$;function L(){const{container:le,slides:ee}=M;C=(wL(le)?e.querySelector(le):le)||e.children[0];const j=wL(ee)?C.querySelectorAll(ee):ee;$=[].slice.call(j||C.children)}function A(le){const ee=Wee(e,C,$,n,a,le,l);if(le.loop&&!ee.slideLooper.canLoop()){const _e=Object.assign({},le,{loop:!1});return A(_e)}return ee}function q(le,ee){_||(b=u(b,le),M=y(b),x=ee||x,L(),v=A(M),h([b,...x.map(({options:_e})=>_e)]).forEach(_e=>s.add(_e,"change",z)),M.active&&(v.translate.to(v.location.get()),v.animation.init(),v.slidesInView.init(),v.slideFocus.init(pe),v.eventHandler.init(pe),v.resizeHandler.init(pe),v.slidesHandler.init(pe),v.options.loop&&v.slideLooper.loop(),C.offsetParent&&$.length&&v.dragHandler.init(pe),N=c.init(pe,x)))}function z(le,ee){const _e=de();O(),q(u({startIndex:_e},le),ee),l.emit("reInit")}function O(){v.dragHandler.destroy(),v.eventStore.clear(),v.translate.clear(),v.slideLooper.clear(),v.resizeHandler.destroy(),v.slidesHandler.destroy(),v.slidesInView.destroy(),v.animation.destroy(),c.destroy(),s.clear()}function D(){_||(_=!0,s.clear(),O(),l.emit("destroy"),l.clear())}function U(le,ee,_e){!M.active||_||(v.scrollBody.useBaseFriction().useDuration(ee===!0?0:M.duration),v.scrollTo.index(le,_e||0))}function G(le){const ee=v.index.add(1).get();U(ee,le,-1)}function H(le){const ee=v.index.add(-1).get();U(ee,le,1)}function Y(){return v.index.add(1).get()!==de()}function P(){return v.index.add(-1).get()!==de()}function F(){return v.scrollSnapList}function ne(){return v.scrollProgress.get(v.offsetLocation.get())}function de(){return v.index.get()}function B(){return v.indexPrevious.get()}function W(){return v.slidesInView.get()}function K(){return v.slidesInView.get(!1)}function R(){return N}function re(){return v}function V(){return e}function te(){return C}function fe(){return $}const pe={canScrollNext:Y,canScrollPrev:P,containerNode:te,internalEngine:re,destroy:D,off:k,on:f,emit:m,plugins:R,previousScrollSnap:B,reInit:g,rootNode:V,scrollNext:G,scrollPrev:H,scrollProgress:ne,scrollSnapList:F,scrollTo:U,selectedScrollSnap:de,slideNodes:fe,slidesInView:W,slidesNotInView:K};return q(t,o),setTimeout(()=>l.emit("init"),0),pe}UC.globalOptions=void 0;function $L(e={},t=[]){const o=w.useRef(e),n=w.useRef(t),[a,r]=w.useState(),[c,s]=w.useState(),l=w.useCallback(()=>{a&&a.reInit(o.current,n.current)},[a]);return w.useEffect(()=>{bL(o.current,e)||(o.current=e,l())},[e,l]),w.useEffect(()=>{kee(n.current,t)||(n.current=t,l())},[t,l]),w.useEffect(()=>{if(mee()&&c){UC.globalOptions=$L.globalOptions;const u=UC(c,o.current,n.current);return r(u),()=>u.destroy()}else r(void 0)},[c,r]),[s,a]}$L.globalOptions=void 0;const rO=p.createContext(null);function RC(){const e=p.useContext(rO);if(!e)throw new Error("useCarousel must be used within a <Carousel />");return e}const iO=p.forwardRef(({orientation:e="horizontal",opts:t,setApi:o,plugins:n,className:a,children:r,...c},s)=>{const[l,u]=$L({...t,axis:e==="horizontal"?"x":"y"},n),[y,h]=p.useState(!1),[f,k]=p.useState(!1),m=p.useCallback(b=>{b&&(h(b.canScrollPrev()),k(b.canScrollNext()))},[]),g=p.useCallback(()=>{u?.scrollPrev()},[u]),_=p.useCallback(()=>{u?.scrollNext()},[u]),v=p.useCallback(b=>{b.key==="ArrowLeft"?(b.preventDefault(),g()):b.key==="ArrowRight"&&(b.preventDefault(),_())},[g,_]);return p.useEffect(()=>{!u||!o||o(u)},[u,o]),p.useEffect(()=>{if(u)return m(u),u.on("reInit",m),u.on("select",m),()=>{u?.off("select",m)}},[u,m]),d.jsx(rO.Provider,{value:{carouselRef:l,api:u,opts:t,orientation:e||(t?.axis==="y"?"vertical":"horizontal"),scrollPrev:g,scrollNext:_,canScrollPrev:y,canScrollNext:f},children:d.jsx("div",{ref:s,onKeyDownCapture:v,className:S("relative",a),role:"region","aria-roledescription":"carousel",...c,children:r})})});iO.displayName="Carousel";const cO=p.forwardRef(({className:e,...t},o)=>{const{carouselRef:n,orientation:a}=RC();return d.jsx("div",{ref:n,className:"overflow-hidden",children:d.jsx("div",{ref:o,className:S("flex",a==="horizontal"?"-ml-4":"-mt-4 flex-col",e),...t})})});cO.displayName="CarouselContent";const sO=p.forwardRef(({className:e,...t},o)=>{const{orientation:n}=RC();return d.jsx("div",{ref:o,role:"group","aria-roledescription":"slide",className:S("min-w-0 shrink-0 grow-0 basis-full",n==="horizontal"?"pl-4":"pt-4",e),...t})});sO.displayName="CarouselItem";const dO=p.forwardRef(({className:e,variant:t="outline",size:o="icon",...n},a)=>{const{orientation:r,scrollPrev:c,canScrollPrev:s}=RC();return d.jsxs(Ee,{ref:a,variant:t,size:o,className:S("absolute h-8 w-8 rounded-full",r==="horizontal"?"-left-12 top-1/2 -translate-y-1/2":"-top-12 left-1/2 -translate-x-1/2 rotate-90",e),disabled:!s,onClick:c,...n,children:[d.jsx(Bs,{className:"h-4 w-4"}),d.jsx("span",{className:"sr-only",children:"Previous slide"})]})});dO.displayName="CarouselPrevious";const lO=p.forwardRef(({className:e,variant:t="outline",size:o="icon",...n},a)=>{const{orientation:r,scrollNext:c,canScrollNext:s}=RC();return d.jsxs(Ee,{ref:a,variant:t,size:o,className:S("absolute h-8 w-8 rounded-full",r==="horizontal"?"-right-12 top-1/2 -translate-y-1/2":"-bottom-12 left-1/2 -translate-x-1/2 rotate-90",e),disabled:!s,onClick:c,...n,children:[d.jsx(Ws,{className:"h-4 w-4"}),d.jsx("span",{className:"sr-only",children:"Next slide"})]})});lO.displayName="CarouselNext";var SL,uO;function GC(){if(uO)return SL;uO=1;var e=Array.isArray;return SL=e,SL}var LL,hO;function Yee(){if(hO)return LL;hO=1;var e=typeof HC=="object"&&HC&&HC.Object===Object&&HC;return LL=e,LL}var IL,pO;function KC(){if(pO)return IL;pO=1;var e=Yee(),t=typeof self=="object"&&self&&self.Object===Object&&self,o=e||t||Function("return this")();return IL=o,IL}var AL,yO;function PL(){if(yO)return AL;yO=1;var e=KC(),t=e.Symbol;return AL=t,AL}var TL,fO;function Xee(){if(fO)return TL;fO=1;var e=PL(),t=Object.prototype,o=t.hasOwnProperty,n=t.toString,a=e?e.toStringTag:void 0;function r(c){var s=o.call(c,a),l=c[a];try{c[a]=void 0;var u=!0}catch{}var y=n.call(c);return u&&(s?c[a]=l:delete c[a]),y}return TL=r,TL}var DL,mO;function Zee(){if(mO)return DL;mO=1;var e=Object.prototype,t=e.toString;function o(n){return t.call(n)}return DL=o,DL}var EL,kO;function YC(){if(kO)return EL;kO=1;var e=PL(),t=Xee(),o=Zee(),n="[object Null]",a="[object Undefined]",r=e?e.toStringTag:void 0;function c(s){return s==null?s===void 0?a:n:r&&r in Object(s)?t(s):o(s)}return EL=c,EL}var zL,gO;function OL(){if(gO)return zL;gO=1;function e(t){return t!=null&&typeof t=="object"}return zL=e,zL}var qL,vO;function XC(){if(vO)return qL;vO=1;var e=YC(),t=OL(),o="[object Symbol]";function n(a){return typeof a=="symbol"||t(a)&&e(a)==o}return qL=n,qL}var jL,_O;function Qee(){if(_O)return jL;_O=1;var e=GC(),t=XC(),o=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,n=/^\w*$/;function a(r,c){if(e(r))return!1;var s=typeof r;return s=="number"||s=="symbol"||s=="boolean"||r==null||t(r)?!0:n.test(r)||!o.test(r)||c!=null&&r in Object(c)}return jL=a,jL}var HL,bO;function ms(){if(bO)return HL;bO=1;function e(t){var o=typeof t;return t!=null&&(o=="object"||o=="function")}return HL=e,HL}var VL,MO;function wO(){if(MO)return VL;MO=1;var e=YC(),t=ms(),o="[object AsyncFunction]",n="[object Function]",a="[object GeneratorFunction]",r="[object Proxy]";function c(s){if(!t(s))return!1;var l=e(s);return l==n||l==a||l==o||l==r}return VL=c,VL}var FL,xO;function Jee(){if(xO)return FL;xO=1;var e=KC(),t=e["__core-js_shared__"];return FL=t,FL}var BL,NO;function ete(){if(NO)return BL;NO=1;var e=Jee(),t=(function(){var n=/[^.]+$/.exec(e&&e.keys&&e.keys.IE_PROTO||"");return n?"Symbol(src)_1."+n:""})();function o(n){return!!t&&t in n}return BL=o,BL}var WL,CO;function tte(){if(CO)return WL;CO=1;var e=Function.prototype,t=e.toString;function o(n){if(n!=null){try{return t.call(n)}catch{}try{return n+""}catch{}}return""}return WL=o,WL}var UL,$O;function ote(){if($O)return UL;$O=1;var e=wO(),t=ete(),o=ms(),n=tte(),a=/[\\^$.*+?()[\]{}|]/g,r=/^\[object .+?Constructor\]$/,c=Function.prototype,s=Object.prototype,l=c.toString,u=s.hasOwnProperty,y=RegExp("^"+l.call(u).replace(a,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");function h(f){if(!o(f)||t(f))return!1;var k=e(f)?y:r;return k.test(n(f))}return UL=h,UL}var RL,SO;function nte(){if(SO)return RL;SO=1;function e(t,o){return t?.[o]}return RL=e,RL}var GL,LO;function IO(){if(LO)return GL;LO=1;var e=ote(),t=nte();function o(n,a){var r=t(n,a);return e(r)?r:void 0}return GL=o,GL}var KL,AO;function ZC(){if(AO)return KL;AO=1;var e=IO(),t=e(Object,"create");return KL=t,KL}var YL,PO;function ate(){if(PO)return YL;PO=1;var e=ZC();function t(){this.__data__=e?e(null):{},this.size=0}return YL=t,YL}var XL,TO;function rte(){if(TO)return XL;TO=1;function e(t){var o=this.has(t)&&delete this.__data__[t];return this.size-=o?1:0,o}return XL=e,XL}var ZL,DO;function ite(){if(DO)return ZL;DO=1;var e=ZC(),t="__lodash_hash_undefined__",o=Object.prototype,n=o.hasOwnProperty;function a(r){var c=this.__data__;if(e){var s=c[r];return s===t?void 0:s}return n.call(c,r)?c[r]:void 0}return ZL=a,ZL}var QL,EO;function cte(){if(EO)return QL;EO=1;var e=ZC(),t=Object.prototype,o=t.hasOwnProperty;function n(a){var r=this.__data__;return e?r[a]!==void 0:o.call(r,a)}return QL=n,QL}var JL,zO;function ste(){if(zO)return JL;zO=1;var e=ZC(),t="__lodash_hash_undefined__";function o(n,a){var r=this.__data__;return this.size+=this.has(n)?0:1,r[n]=e&&a===void 0?t:a,this}return JL=o,JL}var eI,OO;function dte(){if(OO)return eI;OO=1;var e=ate(),t=rte(),o=ite(),n=cte(),a=ste();function r(c){var s=-1,l=c==null?0:c.length;for(this.clear();++s<l;){var u=c[s];this.set(u[0],u[1])}}return r.prototype.clear=e,r.prototype.delete=t,r.prototype.get=o,r.prototype.has=n,r.prototype.set=a,eI=r,eI}var tI,qO;function lte(){if(qO)return tI;qO=1;function e(){this.__data__=[],this.size=0}return tI=e,tI}var oI,jO;function ute(){if(jO)return oI;jO=1;function e(t,o){return t===o||t!==t&&o!==o}return oI=e,oI}var nI,HO;function QC(){if(HO)return nI;HO=1;var e=ute();function t(o,n){for(var a=o.length;a--;)if(e(o[a][0],n))return a;return-1}return nI=t,nI}var aI,VO;function hte(){if(VO)return aI;VO=1;var e=QC(),t=Array.prototype,o=t.splice;function n(a){var r=this.__data__,c=e(r,a);if(c<0)return!1;var s=r.length-1;return c==s?r.pop():o.call(r,c,1),--this.size,!0}return aI=n,aI}var rI,FO;function pte(){if(FO)return rI;FO=1;var e=QC();function t(o){var n=this.__data__,a=e(n,o);return a<0?void 0:n[a][1]}return rI=t,rI}var iI,BO;function yte(){if(BO)return iI;BO=1;var e=QC();function t(o){return e(this.__data__,o)>-1}return iI=t,iI}var cI,WO;function fte(){if(WO)return cI;WO=1;var e=QC();function t(o,n){var a=this.__data__,r=e(a,o);return r<0?(++this.size,a.push([o,n])):a[r][1]=n,this}return cI=t,cI}var sI,UO;function mte(){if(UO)return sI;UO=1;var e=lte(),t=hte(),o=pte(),n=yte(),a=fte();function r(c){var s=-1,l=c==null?0:c.length;for(this.clear();++s<l;){var u=c[s];this.set(u[0],u[1])}}return r.prototype.clear=e,r.prototype.delete=t,r.prototype.get=o,r.prototype.has=n,r.prototype.set=a,sI=r,sI}var dI,RO;function kte(){if(RO)return dI;RO=1;var e=IO(),t=KC(),o=e(t,"Map");return dI=o,dI}var lI,GO;function gte(){if(GO)return lI;GO=1;var e=dte(),t=mte(),o=kte();function n(){this.size=0,this.__data__={hash:new e,map:new(o||t),string:new e}}return lI=n,lI}var uI,KO;function vte(){if(KO)return uI;KO=1;function e(t){var o=typeof t;return o=="string"||o=="number"||o=="symbol"||o=="boolean"?t!=="__proto__":t===null}return uI=e,uI}var hI,YO;function JC(){if(YO)return hI;YO=1;var e=vte();function t(o,n){var a=o.__data__;return e(n)?a[typeof n=="string"?"string":"hash"]:a.map}return hI=t,hI}var pI,XO;function _te(){if(XO)return pI;XO=1;var e=JC();function t(o){var n=e(this,o).delete(o);return this.size-=n?1:0,n}return pI=t,pI}var yI,ZO;function bte(){if(ZO)return yI;ZO=1;var e=JC();function t(o){return e(this,o).get(o)}return yI=t,yI}var fI,QO;function Mte(){if(QO)return fI;QO=1;var e=JC();function t(o){return e(this,o).has(o)}return fI=t,fI}var mI,JO;function wte(){if(JO)return mI;JO=1;var e=JC();function t(o,n){var a=e(this,o),r=a.size;return a.set(o,n),this.size+=a.size==r?0:1,this}return mI=t,mI}var kI,eq;function xte(){if(eq)return kI;eq=1;var e=gte(),t=_te(),o=bte(),n=Mte(),a=wte();function r(c){var s=-1,l=c==null?0:c.length;for(this.clear();++s<l;){var u=c[s];this.set(u[0],u[1])}}return r.prototype.clear=e,r.prototype.delete=t,r.prototype.get=o,r.prototype.has=n,r.prototype.set=a,kI=r,kI}var gI,tq;function Nte(){if(tq)return gI;tq=1;var e=xte(),t="Expected a function";function o(n,a){if(typeof n!="function"||a!=null&&typeof a!="function")throw new TypeError(t);var r=function(){var c=arguments,s=a?a.apply(this,c):c[0],l=r.cache;if(l.has(s))return l.get(s);var u=n.apply(this,c);return r.cache=l.set(s,u)||l,u};return r.cache=new(o.Cache||e),r}return o.Cache=e,gI=o,gI}var vI,oq;function Cte(){if(oq)return vI;oq=1;var e=Nte(),t=500;function o(n){var a=e(n,function(c){return r.size===t&&r.clear(),c}),r=a.cache;return a}return vI=o,vI}var _I,nq;function $te(){if(nq)return _I;nq=1;var e=Cte(),t=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,o=/\\(\\)?/g,n=e(function(a){var r=[];return a.charCodeAt(0)===46&&r.push(""),a.replace(t,function(c,s,l,u){r.push(l?u.replace(o,"$1"):s||c)}),r});return _I=n,_I}var bI,aq;function Ste(){if(aq)return bI;aq=1;function e(t,o){for(var n=-1,a=t==null?0:t.length,r=Array(a);++n<a;)r[n]=o(t[n],n,t);return r}return bI=e,bI}var MI,rq;function Lte(){if(rq)return MI;rq=1;var e=PL(),t=Ste(),o=GC(),n=XC(),a=e?e.prototype:void 0,r=a?a.toString:void 0;function c(s){if(typeof s=="string")return s;if(o(s))return t(s,c)+"";if(n(s))return r?r.call(s):"";var l=s+"";return l=="0"&&1/s==-1/0?"-0":l}return MI=c,MI}var wI,iq;function Ite(){if(iq)return wI;iq=1;var e=Lte();function t(o){return o==null?"":e(o)}return wI=t,wI}var xI,cq;function Ate(){if(cq)return xI;cq=1;var e=GC(),t=Qee(),o=$te(),n=Ite();function a(r,c){return e(r)?r:t(r,c)?[r]:o(n(r))}return xI=a,xI}var NI,sq;function Pte(){if(sq)return NI;sq=1;var e=XC();function t(o){if(typeof o=="string"||e(o))return o;var n=o+"";return n=="0"&&1/o==-1/0?"-0":n}return NI=t,NI}var CI,dq;function Tte(){if(dq)return CI;dq=1;var e=Ate(),t=Pte();function o(n,a){a=e(a,n);for(var r=0,c=a.length;n!=null&&r<c;)n=n[t(a[r++])];return r&&r==c?n:void 0}return CI=o,CI}var $I,lq;function Dte(){if(lq)return $I;lq=1;var e=Tte();function t(o,n,a){var r=o==null?void 0:e(o,n);return r===void 0?a:r}return $I=t,$I}Dte();var SI,uq;function Ete(){if(uq)return SI;uq=1;var e=YC(),t=GC(),o=OL(),n="[object String]";function a(r){return typeof r=="string"||!t(r)&&o(r)&&e(r)==n}return SI=a,SI}var zte=Ete();const Ote=jE(zte);wO(),ms();var e$={exports:{}},ze={};var hq;function qte(){if(hq)return ze;hq=1;var e=Symbol.for("react.element"),t=Symbol.for("react.portal"),o=Symbol.for("react.fragment"),n=Symbol.for("react.strict_mode"),a=Symbol.for("react.profiler"),r=Symbol.for("react.provider"),c=Symbol.for("react.context"),s=Symbol.for("react.server_context"),l=Symbol.for("react.forward_ref"),u=Symbol.for("react.suspense"),y=Symbol.for("react.suspense_list"),h=Symbol.for("react.memo"),f=Symbol.for("react.lazy"),k=Symbol.for("react.offscreen"),m;m=Symbol.for("react.module.reference");function g(_){if(typeof _=="object"&&_!==null){var v=_.$$typeof;switch(v){case e:switch(_=_.type,_){case o:case a:case n:case u:case y:return _;default:switch(_=_&&_.$$typeof,_){case s:case c:case l:case f:case h:case r:return _;default:return v}}case t:return v}}}return ze.ContextConsumer=c,ze.ContextProvider=r,ze.Element=e,ze.ForwardRef=l,ze.Fragment=o,ze.Lazy=f,ze.Memo=h,ze.Portal=t,ze.Profiler=a,ze.StrictMode=n,ze.Suspense=u,ze.SuspenseList=y,ze.isAsyncMode=function(){return!1},ze.isConcurrentMode=function(){return!1},ze.isContextConsumer=function(_){return g(_)===c},ze.isContextProvider=function(_){return g(_)===r},ze.isElement=function(_){return typeof _=="object"&&_!==null&&_.$$typeof===e},ze.isForwardRef=function(_){return g(_)===l},ze.isFragment=function(_){return g(_)===o},ze.isLazy=function(_){return g(_)===f},ze.isMemo=function(_){return g(_)===h},ze.isPortal=function(_){return g(_)===t},ze.isProfiler=function(_){return g(_)===a},ze.isStrictMode=function(_){return g(_)===n},ze.isSuspense=function(_){return g(_)===u},ze.isSuspenseList=function(_){return g(_)===y},ze.isValidElementType=function(_){return typeof _=="string"||typeof _=="function"||_===o||_===a||_===n||_===u||_===y||_===k||typeof _=="object"&&_!==null&&(_.$$typeof===f||_.$$typeof===h||_.$$typeof===r||_.$$typeof===c||_.$$typeof===l||_.$$typeof===m||_.getModuleId!==void 0)},ze.typeOf=g,ze}var Oe={};var pq;function jte(){return pq||(pq=1,process.env.NODE_ENV!=="production"&&(function(){var e=Symbol.for("react.element"),t=Symbol.for("react.portal"),o=Symbol.for("react.fragment"),n=Symbol.for("react.strict_mode"),a=Symbol.for("react.profiler"),r=Symbol.for("react.provider"),c=Symbol.for("react.context"),s=Symbol.for("react.server_context"),l=Symbol.for("react.forward_ref"),u=Symbol.for("react.suspense"),y=Symbol.for("react.suspense_list"),h=Symbol.for("react.memo"),f=Symbol.for("react.lazy"),k=Symbol.for("react.offscreen"),m=!1,g=!1,_=!1,v=!1,b=!1,M;M=Symbol.for("react.module.reference");function x(j){return!!(typeof j=="string"||typeof j=="function"||j===o||j===a||b||j===n||j===u||j===y||v||j===k||m||g||_||typeof j=="object"&&j!==null&&(j.$$typeof===f||j.$$typeof===h||j.$$typeof===r||j.$$typeof===c||j.$$typeof===l||j.$$typeof===M||j.getModuleId!==void 0))}function N(j){if(typeof j=="object"&&j!==null){var ue=j.$$typeof;switch(ue){case e:var xe=j.type;switch(xe){case o:case a:case n:case u:case y:return xe;default:var Ce=xe&&xe.$$typeof;switch(Ce){case s:case c:case l:case f:case h:case r:return Ce;default:return ue}}case t:return ue}}}var C=c,$=r,L=e,A=l,q=o,z=f,O=h,D=t,U=a,G=n,H=u,Y=y,P=!1,F=!1;function ne(j){return P||(P=!0,console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 18+.")),!1}function de(j){return F||(F=!0,console.warn("The ReactIs.isConcurrentMode() alias has been deprecated, and will be removed in React 18+.")),!1}function B(j){return N(j)===c}function W(j){return N(j)===r}function K(j){return typeof j=="object"&&j!==null&&j.$$typeof===e}function R(j){return N(j)===l}function re(j){return N(j)===o}function V(j){return N(j)===f}function te(j){return N(j)===h}function fe(j){return N(j)===t}function pe(j){return N(j)===a}function le(j){return N(j)===n}function ee(j){return N(j)===u}function _e(j){return N(j)===y}Oe.ContextConsumer=C,Oe.ContextProvider=$,Oe.Element=L,Oe.ForwardRef=A,Oe.Fragment=q,Oe.Lazy=z,Oe.Memo=O,Oe.Portal=D,Oe.Profiler=U,Oe.StrictMode=G,Oe.Suspense=H,Oe.SuspenseList=Y,Oe.isAsyncMode=ne,Oe.isConcurrentMode=de,Oe.isContextConsumer=B,Oe.isContextProvider=W,Oe.isElement=K,Oe.isForwardRef=R,Oe.isFragment=re,Oe.isLazy=V,Oe.isMemo=te,Oe.isPortal=fe,Oe.isProfiler=pe,Oe.isStrictMode=le,Oe.isSuspense=ee,Oe.isSuspenseList=_e,Oe.isValidElementType=x,Oe.typeOf=N})()),Oe}var yq;function Hte(){return yq||(yq=1,process.env.NODE_ENV==="production"?e$.exports=qte():e$.exports=jte()),e$.exports}Hte();var LI,fq;function mq(){if(fq)return LI;fq=1;var e=YC(),t=OL(),o="[object Number]";function n(a){return typeof a=="number"||t(a)&&e(a)==o}return LI=n,LI}var II,kq;function Vte(){if(kq)return II;kq=1;var e=mq();function t(o){return e(o)&&o!=+o}return II=t,II}Vte(),mq();var t$=function(t){return Ote(t)&&t.indexOf("%")===t.length-1},Fte=function(t){return typeof t=="string"?t:t?t.displayName||t.name||"Component":""},Bte=process.env.NODE_ENV!=="production",AI=function(t,o){for(var n=arguments.length,a=new Array(n>2?n-2:0),r=2;r<n;r++)a[r-2]=arguments[r];if(Bte&&typeof console<"u"&&console.warn&&(o===void 0&&console.warn("LogUtils requires an error message argument"),!t))if(o===void 0)console.warn("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var c=0;console.warn(o.replace(/%s/g,function(){return a[c++]}))}},PI,gq;function Wte(){if(gq)return PI;gq=1;var e=KC(),t=function(){return e.Date.now()};return PI=t,PI}var TI,vq;function Ute(){if(vq)return TI;vq=1;var e=/\s/;function t(o){for(var n=o.length;n--&&e.test(o.charAt(n)););return n}return TI=t,TI}var DI,_q;function Rte(){if(_q)return DI;_q=1;var e=Ute(),t=/^\s+/;function o(n){return n&&n.slice(0,e(n)+1).replace(t,"")}return DI=o,DI}var EI,bq;function Gte(){if(bq)return EI;bq=1;var e=Rte(),t=ms(),o=XC(),n=NaN,a=/^[-+]0x[0-9a-f]+$/i,r=/^0b[01]+$/i,c=/^0o[0-7]+$/i,s=parseInt;function l(u){if(typeof u=="number")return u;if(o(u))return n;if(t(u)){var y=typeof u.valueOf=="function"?u.valueOf():u;u=t(y)?y+"":y}if(typeof u!="string")return u===0?u:+u;u=e(u);var h=r.test(u);return h||c.test(u)?s(u.slice(2),h?2:8):a.test(u)?n:+u}return EI=l,EI}var zI,Mq;function Kte(){if(Mq)return zI;Mq=1;var e=ms(),t=Wte(),o=Gte(),n="Expected a function",a=Math.max,r=Math.min;function c(s,l,u){var y,h,f,k,m,g,_=0,v=!1,b=!1,M=!0;if(typeof s!="function")throw new TypeError(n);l=o(l)||0,e(u)&&(v=!!u.leading,b="maxWait"in u,f=b?a(o(u.maxWait)||0,l):f,M="trailing"in u?!!u.trailing:M);function x(D){var U=y,G=h;return y=h=void 0,_=D,k=s.apply(G,U),k}function N(D){return _=D,m=setTimeout(L,l),v?x(D):k}function C(D){var U=D-g,G=D-_,H=l-U;return b?r(H,f-G):H}function $(D){var U=D-g,G=D-_;return g===void 0||U>=l||U<0||b&&G>=f}function L(){var D=t();if($(D))return A(D);m=setTimeout(L,C(D))}function A(D){return m=void 0,M&&y?x(D):(y=h=void 0,k)}function q(){m!==void 0&&clearTimeout(m),_=0,y=g=h=m=void 0}function z(){return m===void 0?k:A(t())}function O(){var D=t(),U=$(D);if(y=arguments,h=this,g=D,U){if(m===void 0)return N(g);if(b)return clearTimeout(m),m=setTimeout(L,l),x(g)}return m===void 0&&(m=setTimeout(L,l)),k}return O.cancel=q,O.flush=z,O}return zI=c,zI}var OI,wq;function Yte(){if(wq)return OI;wq=1;var e=Kte(),t=ms(),o="Expected a function";function n(a,r,c){var s=!0,l=!0;if(typeof a!="function")throw new TypeError(o);return t(c)&&(s="leading"in c?!!c.leading:s,l="trailing"in c?!!c.trailing:l),e(a,r,{leading:s,maxWait:r,trailing:l})}return OI=n,OI}var Xte=Yte();const Zte=jE(Xte);function Id(e){"@babel/helpers - typeof";return Id=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Id(e)}function xq(e,t){var o=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(a){return Object.getOwnPropertyDescriptor(e,a).enumerable})),o.push.apply(o,n)}return o}function o$(e){for(var t=1;t<arguments.length;t++){var o=arguments[t]!=null?arguments[t]:{};t%2?xq(Object(o),!0).forEach(function(n){Qte(e,n,o[n])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(o)):xq(Object(o)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(o,n))})}return e}function Qte(e,t,o){return t=Jte(t),t in e?Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[t]=o,e}function Jte(e){var t=eoe(e,"string");return Id(t)=="symbol"?t:t+""}function eoe(e,t){if(Id(e)!="object"||!e)return e;var o=e[Symbol.toPrimitive];if(o!==void 0){var n=o.call(e,t);if(Id(n)!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}function toe(e,t){return roe(e)||aoe(e,t)||noe(e,t)||ooe()}function ooe(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
58
+ In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function noe(e,t){if(e){if(typeof e=="string")return Nq(e,t);var o=Object.prototype.toString.call(e).slice(8,-1);if(o==="Object"&&e.constructor&&(o=e.constructor.name),o==="Map"||o==="Set")return Array.from(e);if(o==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(o))return Nq(e,t)}}function Nq(e,t){(t==null||t>e.length)&&(t=e.length);for(var o=0,n=new Array(t);o<t;o++)n[o]=e[o];return n}function aoe(e,t){var o=e==null?null:typeof Symbol<"u"&&e[Symbol.iterator]||e["@@iterator"];if(o!=null){var n,a,r,c,s=[],l=!0,u=!1;try{if(r=(o=o.call(e)).next,t!==0)for(;!(l=(n=r.call(o)).done)&&(s.push(n.value),s.length!==t);l=!0);}catch(y){u=!0,a=y}finally{try{if(!l&&o.return!=null&&(c=o.return(),Object(c)!==c))return}finally{if(u)throw a}}return s}}function roe(e){if(Array.isArray(e))return e}var ioe=w.forwardRef(function(e,t){var o=e.aspect,n=e.initialDimension,a=n===void 0?{width:-1,height:-1}:n,r=e.width,c=r===void 0?"100%":r,s=e.height,l=s===void 0?"100%":s,u=e.minWidth,y=u===void 0?0:u,h=e.minHeight,f=e.maxHeight,k=e.children,m=e.debounce,g=m===void 0?0:m,_=e.id,v=e.className,b=e.onResize,M=e.style,x=M===void 0?{}:M,N=w.useRef(null),C=w.useRef();C.current=b,w.useImperativeHandle(t,function(){return Object.defineProperty(N.current,"current",{get:function(){return console.warn("The usage of ref.current.current is deprecated and will no longer be supported."),N.current},configurable:!0})});var $=w.useState({containerWidth:a.width,containerHeight:a.height}),L=toe($,2),A=L[0],q=L[1],z=w.useCallback(function(D,U){q(function(G){var H=Math.round(D),Y=Math.round(U);return G.containerWidth===H&&G.containerHeight===Y?G:{containerWidth:H,containerHeight:Y}})},[]);w.useEffect(function(){var D=function(F){var ne,de=F[0].contentRect,B=de.width,W=de.height;z(B,W),(ne=C.current)===null||ne===void 0||ne.call(C,B,W)};g>0&&(D=Zte(D,g,{trailing:!0,leading:!1}));var U=new ResizeObserver(D),G=N.current.getBoundingClientRect(),H=G.width,Y=G.height;return z(H,Y),U.observe(N.current),function(){U.disconnect()}},[z,g]);var O=w.useMemo(function(){var D=A.containerWidth,U=A.containerHeight;if(D<0||U<0)return null;AI(t$(c)||t$(l),`The width(%s) and height(%s) are both fixed numbers,
59
+ maybe you don't need to use a ResponsiveContainer.`,c,l),AI(!o||o>0,"The aspect(%s) must be greater than zero.",o);var G=t$(c)?D:c,H=t$(l)?U:l;o&&o>0&&(G?H=G/o:H&&(G=H*o),f&&H>f&&(H=f)),AI(G>0||H>0,`The width(%s) and height(%s) of chart should be greater than 0,
60
+ please check the style of container, or the props width(%s) and height(%s),
61
+ or add a minWidth(%s) or minHeight(%s) or use aspect(%s) to control the
62
+ height and width.`,G,H,c,l,y,h,o);var Y=!Array.isArray(k)&&Fte(k.type).endsWith("Chart");return w.Children.map(k,function(P){return w.isValidElement(P)?w.cloneElement(P,o$({width:G,height:H},Y?{style:o$({height:"100%",width:"100%",maxHeight:H,maxWidth:G},P.props.style)}:{})):P})},[o,k,l,f,h,y,A,c]);return w.createElement("div",{id:_?"".concat(_):void 0,className:sS("recharts-responsive-container",v),style:o$(o$({},x),{},{width:c,height:l,minWidth:y,minHeight:h,maxHeight:f}),ref:N},O)});const coe={light:"",dark:".dark"},Cq=p.createContext(null);function $q(){const e=p.useContext(Cq);if(!e)throw new Error("useChart must be used within a <ChartContainer />");return e}const soe=p.forwardRef(({id:e,className:t,children:o,config:n,...a},r)=>{const c=p.useId(),s=`chart-${e||c.replace(/:/g,"")}`;return d.jsx(Cq.Provider,{value:{config:n},children:d.jsxs("div",{"data-chart":s,ref:r,className:S("flex aspect-video justify-center text-xs [&_.recharts-cartesian-axis-tick_text]:fill-muted-foreground [&_.recharts-cartesian-grid_line[stroke='#ccc']]:stroke-border/50 [&_.recharts-curve.recharts-tooltip-cursor]:stroke-border [&_.recharts-dot[stroke='#fff']]:stroke-transparent [&_.recharts-layer]:outline-none [&_.recharts-polar-grid_[stroke='#ccc']]:stroke-border [&_.recharts-radial-bar-background-sector]:fill-muted [&_.recharts-rectangle.recharts-tooltip-cursor]:fill-muted [&_.recharts-reference-line_[stroke='#ccc']]:stroke-border [&_.recharts-sector[stroke='#fff']]:stroke-transparent [&_.recharts-sector]:outline-none [&_.recharts-surface]:outline-none",t),...a,children:[d.jsx(doe,{id:s,config:n}),d.jsx(ioe,{children:o})]})})});soe.displayName="Chart";const doe=({id:e,config:t})=>{const o=Object.entries(t).filter(([,n])=>n.theme||n.color);return o.length?d.jsx("style",{dangerouslySetInnerHTML:{__html:Object.entries(coe).map(([n,a])=>`
63
+ ${a} [data-chart=${e}] {
64
+ ${o.map(([r,c])=>{const s=c.theme?.[n]||c.color;return s?` --color-${r}: ${s};`:null}).join(`
65
+ `)}
66
+ }
67
+ `).join(`
68
+ `)}}):null},loe=p.forwardRef(({active:e,payload:t,className:o,indicator:n="dot",hideLabel:a=!1,hideIndicator:r=!1,label:c,labelFormatter:s,labelClassName:l,formatter:u,color:y,nameKey:h,labelKey:f},k)=>{const{config:m}=$q(),g=p.useMemo(()=>{if(a||!t?.length)return null;const[v]=t,b=`${f||v?.dataKey||v?.name||"value"}`,M=qI(m,v,b),x=!f&&typeof c=="string"?m[c]?.label||c:M?.label;return s?d.jsx("div",{className:S("font-medium",l),children:s(x,t)}):x?d.jsx("div",{className:S("font-medium",l),children:x}):null},[c,s,t,a,l,m,f]);if(!e||!t?.length)return null;const _=t.length===1&&n!=="dot";return d.jsxs("div",{ref:k,className:S("grid min-w-[8rem] items-start gap-1.5 rounded-lg border border-border/50 bg-background px-2.5 py-1.5 text-xs shadow-xl",o),children:[_?null:g,d.jsx("div",{className:"grid gap-1.5",children:t.filter(v=>v.type!=="none").map((v,b)=>{const M=`${h||v.name||v.dataKey||"value"}`,x=qI(m,v,M),N=y||v.payload.fill||v.color;return d.jsx("div",{className:S("flex w-full flex-wrap items-stretch gap-2 [&>svg]:h-2.5 [&>svg]:w-2.5 [&>svg]:text-muted-foreground",n==="dot"&&"items-center"),children:u&&v?.value!==void 0&&v.name?u(v.value,v.name,v,b,v.payload):d.jsxs(d.Fragment,{children:[x?.icon?d.jsx(x.icon,{}):!r&&d.jsx("div",{className:S("shrink-0 rounded-[2px] border-[--color-border] bg-[--color-bg]",{"h-2.5 w-2.5":n==="dot","w-1":n==="line","w-0 border-[1.5px] border-dashed bg-transparent":n==="dashed","my-0.5":_&&n==="dashed"}),style:{"--color-bg":N,"--color-border":N}}),d.jsxs("div",{className:S("flex flex-1 justify-between leading-none",_?"items-end":"items-center"),children:[d.jsxs("div",{className:"grid gap-1.5",children:[_?g:null,d.jsx("span",{className:"text-muted-foreground",children:x?.label||v.name})]}),v.value&&d.jsx("span",{className:"font-mono font-medium tabular-nums text-foreground",children:v.value.toLocaleString()})]})]})},v.dataKey)})})]})});loe.displayName="ChartTooltip";const uoe=p.forwardRef(({className:e,hideIcon:t=!1,payload:o,verticalAlign:n="bottom",nameKey:a},r)=>{const{config:c}=$q();return o?.length?d.jsx("div",{ref:r,className:S("flex items-center justify-center gap-4",n==="top"?"pb-3":"pt-3",e),children:o.filter(s=>s.type!=="none").map(s=>{const l=`${a||s.dataKey||"value"}`,u=qI(c,s,l);return d.jsxs("div",{className:S("flex items-center gap-1.5 [&>svg]:h-3 [&>svg]:w-3 [&>svg]:text-muted-foreground"),children:[u?.icon&&!t?d.jsx(u.icon,{}):d.jsx("div",{className:"h-2 w-2 shrink-0 rounded-[2px]",style:{backgroundColor:s.color}}),u?.label]},s.value)})}):null});uoe.displayName="ChartLegend";function qI(e,t,o){if(typeof t!="object"||t===null)return;const n="payload"in t&&typeof t.payload=="object"&&t.payload!==null?t.payload:void 0;let a=o;return o in t&&typeof t[o]=="string"?a=t[o]:n&&o in n&&typeof n[o]=="string"&&(a=n[o]),a in e?e[a]:e[o]}function ks(e){const t=p.useRef({value:e,previous:e});return p.useMemo(()=>(t.current.value!==e&&(t.current.previous=t.current.value,t.current.value=e),t.current.previous),[e])}function Ad(e){const[t,o]=p.useState(void 0);return Ze(()=>{if(e){o({width:e.offsetWidth,height:e.offsetHeight});const n=new ResizeObserver(a=>{if(!Array.isArray(a)||!a.length)return;const r=a[0];let c,s;if("borderBoxSize"in r){const l=r.borderBoxSize,u=Array.isArray(l)?l[0]:l;c=u.inlineSize,s=u.blockSize}else c=e.offsetWidth,s=e.offsetHeight;o({width:c,height:s})});return n.observe(e,{box:"border-box"}),()=>n.unobserve(e)}else o(void 0)},[e]),t}var n$="Checkbox",[hoe]=Xe(n$),[poe,jI]=hoe(n$);function yoe(e){const{__scopeCheckbox:t,checked:o,children:n,defaultChecked:a,disabled:r,form:c,name:s,onCheckedChange:l,required:u,value:y="on",internal_do_not_use_render:h}=e,[f,k]=Ke({prop:o,defaultProp:a??!1,onChange:l,caller:n$}),[m,g]=p.useState(null),[_,v]=p.useState(null),b=p.useRef(!1),M=m?!!c||!!m.closest("form"):!0,x={checked:f,disabled:r,setChecked:k,control:m,setControl:g,name:s,form:c,value:y,hasConsumerStoppedPropagationRef:b,required:u,defaultChecked:hn(a)?!1:a,isFormControl:M,bubbleInput:_,setBubbleInput:v};return d.jsx(poe,{scope:t,...x,children:foe(h)?h(x):n})}var Sq="CheckboxTrigger",Lq=p.forwardRef(({__scopeCheckbox:e,onKeyDown:t,onClick:o,...n},a)=>{const{control:r,value:c,disabled:s,checked:l,required:u,setControl:y,setChecked:h,hasConsumerStoppedPropagationRef:f,isFormControl:k,bubbleInput:m}=jI(Sq,e),g=be(a,y),_=p.useRef(l);return p.useEffect(()=>{const v=r?.form;if(v){const b=()=>h(_.current);return v.addEventListener("reset",b),()=>v.removeEventListener("reset",b)}},[r,h]),d.jsx(se.button,{type:"button",role:"checkbox","aria-checked":hn(l)?"mixed":l,"aria-required":u,"data-state":Dq(l),"data-disabled":s?"":void 0,disabled:s,value:c,...n,ref:g,onKeyDown:X(t,v=>{v.key==="Enter"&&v.preventDefault()}),onClick:X(o,v=>{h(b=>hn(b)?!0:!b),m&&k&&(f.current=v.isPropagationStopped(),f.current||v.stopPropagation())})})});Lq.displayName=Sq;var HI=p.forwardRef((e,t)=>{const{__scopeCheckbox:o,name:n,checked:a,defaultChecked:r,required:c,disabled:s,value:l,onCheckedChange:u,form:y,...h}=e;return d.jsx(yoe,{__scopeCheckbox:o,checked:a,defaultChecked:r,disabled:s,required:c,onCheckedChange:u,name:n,form:y,value:l,internal_do_not_use_render:({isFormControl:f})=>d.jsxs(d.Fragment,{children:[d.jsx(Lq,{...h,ref:t,__scopeCheckbox:o}),f&&d.jsx(Tq,{__scopeCheckbox:o})]})})});HI.displayName=n$;var Iq="CheckboxIndicator",Aq=p.forwardRef((e,t)=>{const{__scopeCheckbox:o,forceMount:n,...a}=e,r=jI(Iq,o);return d.jsx(Qe,{present:n||hn(r.checked)||r.checked===!0,children:d.jsx(se.span,{"data-state":Dq(r.checked),"data-disabled":r.disabled?"":void 0,...a,ref:t,style:{pointerEvents:"none",...e.style}})})});Aq.displayName=Iq;var Pq="CheckboxBubbleInput",Tq=p.forwardRef(({__scopeCheckbox:e,...t},o)=>{const{control:n,hasConsumerStoppedPropagationRef:a,checked:r,defaultChecked:c,required:s,disabled:l,name:u,value:y,form:h,bubbleInput:f,setBubbleInput:k}=jI(Pq,e),m=be(o,k),g=ks(r),_=Ad(n);p.useEffect(()=>{const b=f;if(!b)return;const M=window.HTMLInputElement.prototype,N=Object.getOwnPropertyDescriptor(M,"checked").set,C=!a.current;if(g!==r&&N){const $=new Event("click",{bubbles:C});b.indeterminate=hn(r),N.call(b,hn(r)?!1:r),b.dispatchEvent($)}},[f,g,r,a]);const v=p.useRef(hn(r)?!1:r);return d.jsx(se.input,{type:"checkbox","aria-hidden":!0,defaultChecked:c??v.current,required:s,disabled:l,name:u,value:y,form:h,...t,tabIndex:-1,ref:m,style:{...t.style,..._,position:"absolute",pointerEvents:"none",opacity:0,margin:0,transform:"translateX(-100%)"}})});Tq.displayName=Pq;function foe(e){return typeof e=="function"}function hn(e){return e==="indeterminate"}function Dq(e){return hn(e)?"indeterminate":e?"checked":"unchecked"}const Pd=p.forwardRef(({className:e,...t},o)=>d.jsx(HI,{ref:o,className:S("grid place-content-center peer h-4 w-4 shrink-0 rounded-sm border border-primary ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground",e),...t,children:d.jsx(Aq,{className:S("grid place-content-center text-current"),children:d.jsx(yo,{className:"h-4 w-4"})})}));Pd.displayName=HI.displayName;const moe=QT,koe=SS,goe=IS;var Eq=1,voe=.9,_oe=.8,boe=.17,VI=.1,FI=.999,Moe=.9999,woe=.99,xoe=/[\\\/_+.#"@\[\(\{&]/,Noe=/[\\\/_+.#"@\[\(\{&]/g,Coe=/[\s-]/,zq=/[\s-]/g;function BI(e,t,o,n,a,r,c){if(r===t.length)return a===e.length?Eq:woe;var s=`${a},${r}`;if(c[s]!==void 0)return c[s];for(var l=n.charAt(r),u=o.indexOf(l,a),y=0,h,f,k,m;u>=0;)h=BI(e,t,o,n,u+1,r+1,c),h>y&&(u===a?h*=Eq:xoe.test(e.charAt(u-1))?(h*=_oe,k=e.slice(a,u-1).match(Noe),k&&a>0&&(h*=Math.pow(FI,k.length))):Coe.test(e.charAt(u-1))?(h*=voe,m=e.slice(a,u-1).match(zq),m&&a>0&&(h*=Math.pow(FI,m.length))):(h*=boe,a>0&&(h*=Math.pow(FI,u-a))),e.charAt(u)!==t.charAt(r)&&(h*=Moe)),(h<VI&&o.charAt(u-1)===n.charAt(r+1)||n.charAt(r+1)===n.charAt(r)&&o.charAt(u-1)!==n.charAt(r))&&(f=BI(e,t,o,n,u+1,r+2,c),f*VI>h&&(h=f*VI)),h>y&&(y=h),u=o.indexOf(l,u+1);return c[s]=y,y}function Oq(e){return e.toLowerCase().replace(zq," ")}function $oe(e,t,o){return e=o&&o.length>0?`${e+" "+o.join(" ")}`:e,BI(e,t,Oq(e),Oq(t),0,0,{})}var Td='[cmdk-group=""]',WI='[cmdk-group-items=""]',Soe='[cmdk-group-heading=""]',qq='[cmdk-item=""]',jq=`${qq}:not([aria-disabled="true"])`,UI="cmdk-item-select",gs="data-value",Loe=(e,t,o)=>$oe(e,t,o),Hq=p.createContext(void 0),Dd=()=>p.useContext(Hq),Vq=p.createContext(void 0),RI=()=>p.useContext(Vq),Fq=p.createContext(void 0),Bq=p.forwardRef((e,t)=>{let o=vs(()=>{var B,W;return{search:"",value:(W=(B=e.value)!=null?B:e.defaultValue)!=null?W:"",selectedItemId:void 0,filtered:{count:0,items:new Map,groups:new Set}}}),n=vs(()=>new Set),a=vs(()=>new Map),r=vs(()=>new Map),c=vs(()=>new Set),s=Wq(e),{label:l,children:u,value:y,onValueChange:h,filter:f,shouldFilter:k,loop:m,disablePointerSelection:g=!1,vimBindings:_=!0,...v}=e,b=We(),M=We(),x=We(),N=p.useRef(null),C=Hoe();Ac(()=>{if(y!==void 0){let B=y.trim();o.current.value=B,$.emit()}},[y]),Ac(()=>{C(6,D)},[]);let $=p.useMemo(()=>({subscribe:B=>(c.current.add(B),()=>c.current.delete(B)),snapshot:()=>o.current,setState:(B,W,K)=>{var R,re,V,te;if(!Object.is(o.current[B],W)){if(o.current[B]=W,B==="search")O(),q(),C(1,z);else if(B==="value"){if(document.activeElement.hasAttribute("cmdk-input")||document.activeElement.hasAttribute("cmdk-root")){let fe=document.getElementById(x);fe?fe.focus():(R=document.getElementById(b))==null||R.focus()}if(C(7,()=>{var fe;o.current.selectedItemId=(fe=U())==null?void 0:fe.id,$.emit()}),K||C(5,D),((re=s.current)==null?void 0:re.value)!==void 0){let fe=W??"";(te=(V=s.current).onValueChange)==null||te.call(V,fe);return}}$.emit()}},emit:()=>{c.current.forEach(B=>B())}}),[]),L=p.useMemo(()=>({value:(B,W,K)=>{var R;W!==((R=r.current.get(B))==null?void 0:R.value)&&(r.current.set(B,{value:W,keywords:K}),o.current.filtered.items.set(B,A(W,K)),C(2,()=>{q(),$.emit()}))},item:(B,W)=>(n.current.add(B),W&&(a.current.has(W)?a.current.get(W).add(B):a.current.set(W,new Set([B]))),C(3,()=>{O(),q(),o.current.value||z(),$.emit()}),()=>{r.current.delete(B),n.current.delete(B),o.current.filtered.items.delete(B);let K=U();C(4,()=>{O(),K?.getAttribute("id")===B&&z(),$.emit()})}),group:B=>(a.current.has(B)||a.current.set(B,new Set),()=>{r.current.delete(B),a.current.delete(B)}),filter:()=>s.current.shouldFilter,label:l||e["aria-label"],getDisablePointerSelection:()=>s.current.disablePointerSelection,listId:b,inputId:x,labelId:M,listInnerRef:N}),[]);function A(B,W){var K,R;let re=(R=(K=s.current)==null?void 0:K.filter)!=null?R:Loe;return B?re(B,o.current.search,W):0}function q(){if(!o.current.search||s.current.shouldFilter===!1)return;let B=o.current.filtered.items,W=[];o.current.filtered.groups.forEach(R=>{let re=a.current.get(R),V=0;re.forEach(te=>{let fe=B.get(te);V=Math.max(fe,V)}),W.push([R,V])});let K=N.current;G().sort((R,re)=>{var V,te;let fe=R.getAttribute("id"),pe=re.getAttribute("id");return((V=B.get(pe))!=null?V:0)-((te=B.get(fe))!=null?te:0)}).forEach(R=>{let re=R.closest(WI);re?re.appendChild(R.parentElement===re?R:R.closest(`${WI} > *`)):K.appendChild(R.parentElement===K?R:R.closest(`${WI} > *`))}),W.sort((R,re)=>re[1]-R[1]).forEach(R=>{var re;let V=(re=N.current)==null?void 0:re.querySelector(`${Td}[${gs}="${encodeURIComponent(R[0])}"]`);V?.parentElement.appendChild(V)})}function z(){let B=G().find(K=>K.getAttribute("aria-disabled")!=="true"),W=B?.getAttribute(gs);$.setState("value",W||void 0)}function O(){var B,W,K,R;if(!o.current.search||s.current.shouldFilter===!1){o.current.filtered.count=n.current.size;return}o.current.filtered.groups=new Set;let re=0;for(let V of n.current){let te=(W=(B=r.current.get(V))==null?void 0:B.value)!=null?W:"",fe=(R=(K=r.current.get(V))==null?void 0:K.keywords)!=null?R:[],pe=A(te,fe);o.current.filtered.items.set(V,pe),pe>0&&re++}for(let[V,te]of a.current)for(let fe of te)if(o.current.filtered.items.get(fe)>0){o.current.filtered.groups.add(V);break}o.current.filtered.count=re}function D(){var B,W,K;let R=U();R&&(((B=R.parentElement)==null?void 0:B.firstChild)===R&&((K=(W=R.closest(Td))==null?void 0:W.querySelector(Soe))==null||K.scrollIntoView({block:"nearest"})),R.scrollIntoView({block:"nearest"}))}function U(){var B;return(B=N.current)==null?void 0:B.querySelector(`${qq}[aria-selected="true"]`)}function G(){var B;return Array.from(((B=N.current)==null?void 0:B.querySelectorAll(jq))||[])}function H(B){let W=G()[B];W&&$.setState("value",W.getAttribute(gs))}function Y(B){var W;let K=U(),R=G(),re=R.findIndex(te=>te===K),V=R[re+B];(W=s.current)!=null&&W.loop&&(V=re+B<0?R[R.length-1]:re+B===R.length?R[0]:R[re+B]),V&&$.setState("value",V.getAttribute(gs))}function P(B){let W=U(),K=W?.closest(Td),R;for(;K&&!R;)K=B>0?qoe(K,Td):joe(K,Td),R=K?.querySelector(jq);R?$.setState("value",R.getAttribute(gs)):Y(B)}let F=()=>H(G().length-1),ne=B=>{B.preventDefault(),B.metaKey?F():B.altKey?P(1):Y(1)},de=B=>{B.preventDefault(),B.metaKey?H(0):B.altKey?P(-1):Y(-1)};return p.createElement(ht.div,{ref:t,tabIndex:-1,...v,"cmdk-root":"",onKeyDown:B=>{var W;(W=v.onKeyDown)==null||W.call(v,B);let K=B.nativeEvent.isComposing||B.keyCode===229;if(!(B.defaultPrevented||K))switch(B.key){case"n":case"j":{_&&B.ctrlKey&&ne(B);break}case"ArrowDown":{ne(B);break}case"p":case"k":{_&&B.ctrlKey&&de(B);break}case"ArrowUp":{de(B);break}case"Home":{B.preventDefault(),H(0);break}case"End":{B.preventDefault(),F();break}case"Enter":{B.preventDefault();let R=U();if(R){let re=new Event(UI);R.dispatchEvent(re)}}}}},p.createElement("label",{"cmdk-label":"",htmlFor:L.inputId,id:L.labelId,style:Foe},l),a$(e,B=>p.createElement(Vq.Provider,{value:$},p.createElement(Hq.Provider,{value:L},B))))}),Ioe=p.forwardRef((e,t)=>{var o,n;let a=We(),r=p.useRef(null),c=p.useContext(Fq),s=Dd(),l=Wq(e),u=(n=(o=l.current)==null?void 0:o.forceMount)!=null?n:c?.forceMount;Ac(()=>{if(!u)return s.item(a,c?.id)},[u]);let y=Uq(a,r,[e.value,e.children,r],e.keywords),h=RI(),f=pn(C=>C.value&&C.value===y.current),k=pn(C=>u||s.filter()===!1?!0:C.search?C.filtered.items.get(a)>0:!0);p.useEffect(()=>{let C=r.current;if(!(!C||e.disabled))return C.addEventListener(UI,m),()=>C.removeEventListener(UI,m)},[k,e.onSelect,e.disabled]);function m(){var C,$;g(),($=(C=l.current).onSelect)==null||$.call(C,y.current)}function g(){h.setState("value",y.current,!0)}if(!k)return null;let{disabled:_,value:v,onSelect:b,forceMount:M,keywords:x,...N}=e;return p.createElement(ht.div,{ref:Kt(r,t),...N,id:a,"cmdk-item":"",role:"option","aria-disabled":!!_,"aria-selected":!!f,"data-disabled":!!_,"data-selected":!!f,onPointerMove:_||s.getDisablePointerSelection()?void 0:g,onClick:_?void 0:m},e.children)}),Aoe=p.forwardRef((e,t)=>{let{heading:o,children:n,forceMount:a,...r}=e,c=We(),s=p.useRef(null),l=p.useRef(null),u=We(),y=Dd(),h=pn(k=>a||y.filter()===!1?!0:k.search?k.filtered.groups.has(c):!0);Ac(()=>y.group(c),[]),Uq(c,s,[e.value,e.heading,l]);let f=p.useMemo(()=>({id:c,forceMount:a}),[a]);return p.createElement(ht.div,{ref:Kt(s,t),...r,"cmdk-group":"",role:"presentation",hidden:h?void 0:!0},o&&p.createElement("div",{ref:l,"cmdk-group-heading":"","aria-hidden":!0,id:u},o),a$(e,k=>p.createElement("div",{"cmdk-group-items":"",role:"group","aria-labelledby":o?u:void 0},p.createElement(Fq.Provider,{value:f},k))))}),Poe=p.forwardRef((e,t)=>{let{alwaysRender:o,...n}=e,a=p.useRef(null),r=pn(c=>!c.search);return!o&&!r?null:p.createElement(ht.div,{ref:Kt(a,t),...n,"cmdk-separator":"",role:"separator"})}),Toe=p.forwardRef((e,t)=>{let{onValueChange:o,...n}=e,a=e.value!=null,r=RI(),c=pn(u=>u.search),s=pn(u=>u.selectedItemId),l=Dd();return p.useEffect(()=>{e.value!=null&&r.setState("search",e.value)},[e.value]),p.createElement(ht.input,{ref:t,...n,"cmdk-input":"",autoComplete:"off",autoCorrect:"off",spellCheck:!1,"aria-autocomplete":"list",role:"combobox","aria-expanded":!0,"aria-controls":l.listId,"aria-labelledby":l.labelId,"aria-activedescendant":s,id:l.inputId,type:"text",value:a?e.value:c,onChange:u=>{a||r.setState("search",u.target.value),o?.(u.target.value)}})}),Doe=p.forwardRef((e,t)=>{let{children:o,label:n="Suggestions",...a}=e,r=p.useRef(null),c=p.useRef(null),s=pn(u=>u.selectedItemId),l=Dd();return p.useEffect(()=>{if(c.current&&r.current){let u=c.current,y=r.current,h,f=new ResizeObserver(()=>{h=requestAnimationFrame(()=>{let k=u.offsetHeight;y.style.setProperty("--cmdk-list-height",k.toFixed(1)+"px")})});return f.observe(u),()=>{cancelAnimationFrame(h),f.unobserve(u)}}},[]),p.createElement(ht.div,{ref:Kt(r,t),...a,"cmdk-list":"",role:"listbox",tabIndex:-1,"aria-activedescendant":s,"aria-label":n,id:l.listId},a$(e,u=>p.createElement("div",{ref:Kt(c,l.listInnerRef),"cmdk-list-sizer":""},u)))}),Eoe=p.forwardRef((e,t)=>{let{open:o,onOpenChange:n,overlayClassName:a,contentClassName:r,container:c,...s}=e;return p.createElement(pd,{open:o,onOpenChange:n},p.createElement(yd,{container:c},p.createElement(Cc,{"cmdk-overlay":"",className:a}),p.createElement($c,{"aria-label":e.label,"cmdk-dialog":"",className:r},p.createElement(Bq,{ref:t,...s}))))}),zoe=p.forwardRef((e,t)=>pn(o=>o.filtered.count===0)?p.createElement(ht.div,{ref:t,...e,"cmdk-empty":"",role:"presentation"}):null),Ooe=p.forwardRef((e,t)=>{let{progress:o,children:n,label:a="Loading...",...r}=e;return p.createElement(ht.div,{ref:t,...r,"cmdk-loading":"",role:"progressbar","aria-valuenow":o,"aria-valuemin":0,"aria-valuemax":100,"aria-label":a},a$(e,c=>p.createElement("div",{"aria-hidden":!0},c)))}),Ct=Object.assign(Bq,{List:Doe,Item:Ioe,Input:Toe,Group:Aoe,Separator:Poe,Dialog:Eoe,Empty:zoe,Loading:Ooe});function qoe(e,t){let o=e.nextElementSibling;for(;o;){if(o.matches(t))return o;o=o.nextElementSibling}}function joe(e,t){let o=e.previousElementSibling;for(;o;){if(o.matches(t))return o;o=o.previousElementSibling}}function Wq(e){let t=p.useRef(e);return Ac(()=>{t.current=e}),t}var Ac=typeof window>"u"?p.useEffect:p.useLayoutEffect;function vs(e){let t=p.useRef();return t.current===void 0&&(t.current=e()),t}function pn(e){let t=RI(),o=()=>e(t.snapshot());return p.useSyncExternalStore(t.subscribe,o,o)}function Uq(e,t,o,n=[]){let a=p.useRef(),r=Dd();return Ac(()=>{var c;let s=(()=>{var u;for(let y of o){if(typeof y=="string")return y.trim();if(typeof y=="object"&&"current"in y)return y.current?(u=y.current.textContent)==null?void 0:u.trim():a.current}})(),l=n.map(u=>u.trim());r.value(e,s,l),(c=t.current)==null||c.setAttribute(gs,s),a.current=s}),a}var Hoe=()=>{let[e,t]=p.useState(),o=vs(()=>new Map);return Ac(()=>{o.current.forEach(n=>n()),o.current=new Map},[e]),(n,a)=>{o.current.set(n,a),t({})}};function Voe(e){let t=e.type;return typeof t=="function"?t(e.props):"render"in t?t.render(e.props):e}function a$({asChild:e,children:t},o){return e&&p.isValidElement(t)?p.cloneElement(Voe(t),{ref:t.ref},o(t.props.children)):o(t)}var Foe={position:"absolute",width:"1px",height:"1px",padding:"0",margin:"-1px",overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",borderWidth:"0"};const Boe=pd,Woe=qC,Uoe=yd,Rq=p.forwardRef(({className:e,...t},o)=>d.jsx(Cc,{ref:o,className:S("fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",e),...t}));Rq.displayName=Cc.displayName;const Gq=p.forwardRef(({className:e,children:t,...o},n)=>d.jsxs(Uoe,{children:[d.jsx(Rq,{}),d.jsxs($c,{ref:n,className:S("fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",e),...o,children:[t,d.jsxs(fd,{className:"absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground",children:[d.jsx(bo,{className:"h-4 w-4"}),d.jsx("span",{className:"sr-only",children:"Close"})]})]})]}));Gq.displayName=$c.displayName;const Kq=({className:e,...t})=>d.jsx("div",{className:S("flex flex-col space-y-1.5 text-center sm:text-left",e),...t});Kq.displayName="DialogHeader";const Yq=({className:e,...t})=>d.jsx("div",{className:S("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",e),...t});Yq.displayName="DialogFooter";const Xq=p.forwardRef(({className:e,...t},o)=>d.jsx(is,{ref:o,className:S("text-lg font-semibold leading-none tracking-tight",e),...t}));Xq.displayName=is.displayName;const Zq=p.forwardRef(({className:e,...t},o)=>d.jsx(cs,{ref:o,className:S("text-sm text-muted-foreground",e),...t}));Zq.displayName=cs.displayName;const GI=p.forwardRef(({className:e,...t},o)=>d.jsx(Ct,{ref:o,className:S("flex h-full w-full flex-col overflow-hidden rounded-md bg-popover text-popover-foreground",e),...t}));GI.displayName=Ct.displayName;const KI=p.forwardRef(({className:e,...t},o)=>d.jsxs("div",{className:"flex items-center border-b px-3","cmdk-input-wrapper":"",children:[d.jsx(cn,{className:"mr-2 h-4 w-4 shrink-0 opacity-50"}),d.jsx(Ct.Input,{ref:o,className:S("flex h-11 w-full rounded-md bg-transparent py-3 text-sm outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed disabled:opacity-50",e),...t})]}));KI.displayName=Ct.Input.displayName;const YI=p.forwardRef(({className:e,...t},o)=>d.jsx(Ct.List,{ref:o,className:S("max-h-[300px] overflow-y-auto overflow-x-hidden",e),...t}));YI.displayName=Ct.List.displayName;const XI=p.forwardRef((e,t)=>d.jsx(Ct.Empty,{ref:t,className:"py-6 text-center text-sm",...e}));XI.displayName=Ct.Empty.displayName;const ZI=p.forwardRef(({className:e,...t},o)=>d.jsx(Ct.Group,{ref:o,className:S("overflow-hidden p-1 text-foreground [&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:py-1.5 [&_[cmdk-group-heading]]:text-xs [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground",e),...t}));ZI.displayName=Ct.Group.displayName;const Roe=p.forwardRef(({className:e,...t},o)=>d.jsx(Ct.Separator,{ref:o,className:S("-mx-1 h-px bg-border",e),...t}));Roe.displayName=Ct.Separator.displayName;const QI=p.forwardRef(({className:e,...t},o)=>d.jsx(Ct.Item,{ref:o,className:S("relative flex cursor-default gap-2 select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none data-[disabled=true]:pointer-events-none data-[selected='true']:bg-accent data-[selected=true]:text-accent-foreground data-[disabled=true]:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",e),...t}));QI.displayName=Ct.Item.displayName;const Goe=["top","right","bottom","left"],yn=Math.min,Et=Math.max,r$=Math.round,i$=Math.floor,Co=e=>({x:e,y:e}),Koe={left:"right",right:"left",bottom:"top",top:"bottom"},Yoe={start:"end",end:"start"};function JI(e,t,o){return Et(e,yn(t,o))}function Go(e,t){return typeof e=="function"?e(t):e}function Ko(e){return e.split("-")[0]}function _s(e){return e.split("-")[1]}function eA(e){return e==="x"?"y":"x"}function tA(e){return e==="y"?"height":"width"}const Xoe=new Set(["top","bottom"]);function $o(e){return Xoe.has(Ko(e))?"y":"x"}function oA(e){return eA($o(e))}function Zoe(e,t,o){o===void 0&&(o=!1);const n=_s(e),a=oA(e),r=tA(a);let c=a==="x"?n===(o?"end":"start")?"right":"left":n==="start"?"bottom":"top";return t.reference[r]>t.floating[r]&&(c=c$(c)),[c,c$(c)]}function Qoe(e){const t=c$(e);return[nA(e),t,nA(t)]}function nA(e){return e.replace(/start|end/g,t=>Yoe[t])}const Qq=["left","right"],Jq=["right","left"],Joe=["top","bottom"],ene=["bottom","top"];function tne(e,t,o){switch(e){case"top":case"bottom":return o?t?Jq:Qq:t?Qq:Jq;case"left":case"right":return t?Joe:ene;default:return[]}}function one(e,t,o,n){const a=_s(e);let r=tne(Ko(e),o==="start",n);return a&&(r=r.map(c=>c+"-"+a),t&&(r=r.concat(r.map(nA)))),r}function c$(e){return e.replace(/left|right|bottom|top/g,t=>Koe[t])}function nne(e){return{top:0,right:0,bottom:0,left:0,...e}}function ej(e){return typeof e!="number"?nne(e):{top:e,right:e,bottom:e,left:e}}function s$(e){const{x:t,y:o,width:n,height:a}=e;return{width:n,height:a,top:o,left:t,right:t+n,bottom:o+a,x:t,y:o}}function tj(e,t,o){let{reference:n,floating:a}=e;const r=$o(t),c=oA(t),s=tA(c),l=Ko(t),u=r==="y",y=n.x+n.width/2-a.width/2,h=n.y+n.height/2-a.height/2,f=n[s]/2-a[s]/2;let k;switch(l){case"top":k={x:y,y:n.y-a.height};break;case"bottom":k={x:y,y:n.y+n.height};break;case"right":k={x:n.x+n.width,y:h};break;case"left":k={x:n.x-a.width,y:h};break;default:k={x:n.x,y:n.y}}switch(_s(t)){case"start":k[c]-=f*(o&&u?-1:1);break;case"end":k[c]+=f*(o&&u?-1:1);break}return k}async function ane(e,t){var o;t===void 0&&(t={});const{x:n,y:a,platform:r,rects:c,elements:s,strategy:l}=e,{boundary:u="clippingAncestors",rootBoundary:y="viewport",elementContext:h="floating",altBoundary:f=!1,padding:k=0}=Go(t,e),m=ej(k),_=s[f?h==="floating"?"reference":"floating":h],v=s$(await r.getClippingRect({element:(o=await(r.isElement==null?void 0:r.isElement(_)))==null||o?_:_.contextElement||await(r.getDocumentElement==null?void 0:r.getDocumentElement(s.floating)),boundary:u,rootBoundary:y,strategy:l})),b=h==="floating"?{x:n,y:a,width:c.floating.width,height:c.floating.height}:c.reference,M=await(r.getOffsetParent==null?void 0:r.getOffsetParent(s.floating)),x=await(r.isElement==null?void 0:r.isElement(M))?await(r.getScale==null?void 0:r.getScale(M))||{x:1,y:1}:{x:1,y:1},N=s$(r.convertOffsetParentRelativeRectToViewportRelativeRect?await r.convertOffsetParentRelativeRectToViewportRelativeRect({elements:s,rect:b,offsetParent:M,strategy:l}):b);return{top:(v.top-N.top+m.top)/x.y,bottom:(N.bottom-v.bottom+m.bottom)/x.y,left:(v.left-N.left+m.left)/x.x,right:(N.right-v.right+m.right)/x.x}}const rne=async(e,t,o)=>{const{placement:n="bottom",strategy:a="absolute",middleware:r=[],platform:c}=o,s=r.filter(Boolean),l=await(c.isRTL==null?void 0:c.isRTL(t));let u=await c.getElementRects({reference:e,floating:t,strategy:a}),{x:y,y:h}=tj(u,n,l),f=n,k={},m=0;for(let _=0;_<s.length;_++){var g;const{name:v,fn:b}=s[_],{x:M,y:x,data:N,reset:C}=await b({x:y,y:h,initialPlacement:n,placement:f,strategy:a,middlewareData:k,rects:u,platform:{...c,detectOverflow:(g=c.detectOverflow)!=null?g:ane},elements:{reference:e,floating:t}});y=M??y,h=x??h,k={...k,[v]:{...k[v],...N}},C&&m<=50&&(m++,typeof C=="object"&&(C.placement&&(f=C.placement),C.rects&&(u=C.rects===!0?await c.getElementRects({reference:e,floating:t,strategy:a}):C.rects),{x:y,y:h}=tj(u,f,l)),_=-1)}return{x:y,y:h,placement:f,strategy:a,middlewareData:k}},ine=e=>({name:"arrow",options:e,async fn(t){const{x:o,y:n,placement:a,rects:r,platform:c,elements:s,middlewareData:l}=t,{element:u,padding:y=0}=Go(e,t)||{};if(u==null)return{};const h=ej(y),f={x:o,y:n},k=oA(a),m=tA(k),g=await c.getDimensions(u),_=k==="y",v=_?"top":"left",b=_?"bottom":"right",M=_?"clientHeight":"clientWidth",x=r.reference[m]+r.reference[k]-f[k]-r.floating[m],N=f[k]-r.reference[k],C=await(c.getOffsetParent==null?void 0:c.getOffsetParent(u));let $=C?C[M]:0;(!$||!await(c.isElement==null?void 0:c.isElement(C)))&&($=s.floating[M]||r.floating[m]);const L=x/2-N/2,A=$/2-g[m]/2-1,q=yn(h[v],A),z=yn(h[b],A),O=q,D=$-g[m]-z,U=$/2-g[m]/2+L,G=JI(O,U,D),H=!l.arrow&&_s(a)!=null&&U!==G&&r.reference[m]/2-(U<O?q:z)-g[m]/2<0,Y=H?U<O?U-O:U-D:0;return{[k]:f[k]+Y,data:{[k]:G,centerOffset:U-G-Y,...H&&{alignmentOffset:Y}},reset:H}}}),cne=function(e){return e===void 0&&(e={}),{name:"flip",options:e,async fn(t){var o,n;const{placement:a,middlewareData:r,rects:c,initialPlacement:s,platform:l,elements:u}=t,{mainAxis:y=!0,crossAxis:h=!0,fallbackPlacements:f,fallbackStrategy:k="bestFit",fallbackAxisSideDirection:m="none",flipAlignment:g=!0,..._}=Go(e,t);if((o=r.arrow)!=null&&o.alignmentOffset)return{};const v=Ko(a),b=$o(s),M=Ko(s)===s,x=await(l.isRTL==null?void 0:l.isRTL(u.floating)),N=f||(M||!g?[c$(s)]:Qoe(s)),C=m!=="none";!f&&C&&N.push(...one(s,g,m,x));const $=[s,...N],L=await l.detectOverflow(t,_),A=[];let q=((n=r.flip)==null?void 0:n.overflows)||[];if(y&&A.push(L[v]),h){const U=Zoe(a,c,x);A.push(L[U[0]],L[U[1]])}if(q=[...q,{placement:a,overflows:A}],!A.every(U=>U<=0)){var z,O;const U=(((z=r.flip)==null?void 0:z.index)||0)+1,G=$[U];if(G&&(!(h==="alignment"?b!==$o(G):!1)||q.every(P=>$o(P.placement)===b?P.overflows[0]>0:!0)))return{data:{index:U,overflows:q},reset:{placement:G}};let H=(O=q.filter(Y=>Y.overflows[0]<=0).sort((Y,P)=>Y.overflows[1]-P.overflows[1])[0])==null?void 0:O.placement;if(!H)switch(k){case"bestFit":{var D;const Y=(D=q.filter(P=>{if(C){const F=$o(P.placement);return F===b||F==="y"}return!0}).map(P=>[P.placement,P.overflows.filter(F=>F>0).reduce((F,ne)=>F+ne,0)]).sort((P,F)=>P[1]-F[1])[0])==null?void 0:D[0];Y&&(H=Y);break}case"initialPlacement":H=s;break}if(a!==H)return{reset:{placement:H}}}return{}}}};function oj(e,t){return{top:e.top-t.height,right:e.right-t.width,bottom:e.bottom-t.height,left:e.left-t.width}}function nj(e){return Goe.some(t=>e[t]>=0)}const sne=function(e){return e===void 0&&(e={}),{name:"hide",options:e,async fn(t){const{rects:o,platform:n}=t,{strategy:a="referenceHidden",...r}=Go(e,t);switch(a){case"referenceHidden":{const c=await n.detectOverflow(t,{...r,elementContext:"reference"}),s=oj(c,o.reference);return{data:{referenceHiddenOffsets:s,referenceHidden:nj(s)}}}case"escaped":{const c=await n.detectOverflow(t,{...r,altBoundary:!0}),s=oj(c,o.floating);return{data:{escapedOffsets:s,escaped:nj(s)}}}default:return{}}}}},aj=new Set(["left","top"]);async function dne(e,t){const{placement:o,platform:n,elements:a}=e,r=await(n.isRTL==null?void 0:n.isRTL(a.floating)),c=Ko(o),s=_s(o),l=$o(o)==="y",u=aj.has(c)?-1:1,y=r&&l?-1:1,h=Go(t,e);let{mainAxis:f,crossAxis:k,alignmentAxis:m}=typeof h=="number"?{mainAxis:h,crossAxis:0,alignmentAxis:null}:{mainAxis:h.mainAxis||0,crossAxis:h.crossAxis||0,alignmentAxis:h.alignmentAxis};return s&&typeof m=="number"&&(k=s==="end"?m*-1:m),l?{x:k*y,y:f*u}:{x:f*u,y:k*y}}const lne=function(e){return e===void 0&&(e=0),{name:"offset",options:e,async fn(t){var o,n;const{x:a,y:r,placement:c,middlewareData:s}=t,l=await dne(t,e);return c===((o=s.offset)==null?void 0:o.placement)&&(n=s.arrow)!=null&&n.alignmentOffset?{}:{x:a+l.x,y:r+l.y,data:{...l,placement:c}}}}},une=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(t){const{x:o,y:n,placement:a,platform:r}=t,{mainAxis:c=!0,crossAxis:s=!1,limiter:l={fn:v=>{let{x:b,y:M}=v;return{x:b,y:M}}},...u}=Go(e,t),y={x:o,y:n},h=await r.detectOverflow(t,u),f=$o(Ko(a)),k=eA(f);let m=y[k],g=y[f];if(c){const v=k==="y"?"top":"left",b=k==="y"?"bottom":"right",M=m+h[v],x=m-h[b];m=JI(M,m,x)}if(s){const v=f==="y"?"top":"left",b=f==="y"?"bottom":"right",M=g+h[v],x=g-h[b];g=JI(M,g,x)}const _=l.fn({...t,[k]:m,[f]:g});return{..._,data:{x:_.x-o,y:_.y-n,enabled:{[k]:c,[f]:s}}}}}},hne=function(e){return e===void 0&&(e={}),{options:e,fn(t){const{x:o,y:n,placement:a,rects:r,middlewareData:c}=t,{offset:s=0,mainAxis:l=!0,crossAxis:u=!0}=Go(e,t),y={x:o,y:n},h=$o(a),f=eA(h);let k=y[f],m=y[h];const g=Go(s,t),_=typeof g=="number"?{mainAxis:g,crossAxis:0}:{mainAxis:0,crossAxis:0,...g};if(l){const M=f==="y"?"height":"width",x=r.reference[f]-r.floating[M]+_.mainAxis,N=r.reference[f]+r.reference[M]-_.mainAxis;k<x?k=x:k>N&&(k=N)}if(u){var v,b;const M=f==="y"?"width":"height",x=aj.has(Ko(a)),N=r.reference[h]-r.floating[M]+(x&&((v=c.offset)==null?void 0:v[h])||0)+(x?0:_.crossAxis),C=r.reference[h]+r.reference[M]+(x?0:((b=c.offset)==null?void 0:b[h])||0)-(x?_.crossAxis:0);m<N?m=N:m>C&&(m=C)}return{[f]:k,[h]:m}}}},pne=function(e){return e===void 0&&(e={}),{name:"size",options:e,async fn(t){var o,n;const{placement:a,rects:r,platform:c,elements:s}=t,{apply:l=()=>{},...u}=Go(e,t),y=await c.detectOverflow(t,u),h=Ko(a),f=_s(a),k=$o(a)==="y",{width:m,height:g}=r.floating;let _,v;h==="top"||h==="bottom"?(_=h,v=f===(await(c.isRTL==null?void 0:c.isRTL(s.floating))?"start":"end")?"left":"right"):(v=h,_=f==="end"?"top":"bottom");const b=g-y.top-y.bottom,M=m-y.left-y.right,x=yn(g-y[_],b),N=yn(m-y[v],M),C=!t.middlewareData.shift;let $=x,L=N;if((o=t.middlewareData.shift)!=null&&o.enabled.x&&(L=M),(n=t.middlewareData.shift)!=null&&n.enabled.y&&($=b),C&&!f){const q=Et(y.left,0),z=Et(y.right,0),O=Et(y.top,0),D=Et(y.bottom,0);k?L=m-2*(q!==0||z!==0?q+z:Et(y.left,y.right)):$=g-2*(O!==0||D!==0?O+D:Et(y.top,y.bottom))}await l({...t,availableWidth:L,availableHeight:$});const A=await c.getDimensions(s.floating);return m!==A.width||g!==A.height?{reset:{rects:!0}}:{}}}};function d$(){return typeof window<"u"}function bs(e){return rj(e)?(e.nodeName||"").toLowerCase():"#document"}function zt(e){var t;return(e==null||(t=e.ownerDocument)==null?void 0:t.defaultView)||window}function So(e){var t;return(t=(rj(e)?e.ownerDocument:e.document)||window.document)==null?void 0:t.documentElement}function rj(e){return d$()?e instanceof Node||e instanceof zt(e).Node:!1}function ao(e){return d$()?e instanceof Element||e instanceof zt(e).Element:!1}function Lo(e){return d$()?e instanceof HTMLElement||e instanceof zt(e).HTMLElement:!1}function ij(e){return!d$()||typeof ShadowRoot>"u"?!1:e instanceof ShadowRoot||e instanceof zt(e).ShadowRoot}const yne=new Set(["inline","contents"]);function Ed(e){const{overflow:t,overflowX:o,overflowY:n,display:a}=ro(e);return/auto|scroll|overlay|hidden|clip/.test(t+n+o)&&!yne.has(a)}const fne=new Set(["table","td","th"]);function mne(e){return fne.has(bs(e))}const kne=[":popover-open",":modal"];function l$(e){return kne.some(t=>{try{return e.matches(t)}catch{return!1}})}const gne=["transform","translate","scale","rotate","perspective"],vne=["transform","translate","scale","rotate","perspective","filter"],_ne=["paint","layout","strict","content"];function aA(e){const t=rA(),o=ao(e)?ro(e):e;return gne.some(n=>o[n]?o[n]!=="none":!1)||(o.containerType?o.containerType!=="normal":!1)||!t&&(o.backdropFilter?o.backdropFilter!=="none":!1)||!t&&(o.filter?o.filter!=="none":!1)||vne.some(n=>(o.willChange||"").includes(n))||_ne.some(n=>(o.contain||"").includes(n))}function bne(e){let t=fn(e);for(;Lo(t)&&!Ms(t);){if(aA(t))return t;if(l$(t))return null;t=fn(t)}return null}function rA(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}const Mne=new Set(["html","body","#document"]);function Ms(e){return Mne.has(bs(e))}function ro(e){return zt(e).getComputedStyle(e)}function u$(e){return ao(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function fn(e){if(bs(e)==="html")return e;const t=e.assignedSlot||e.parentNode||ij(e)&&e.host||So(e);return ij(t)?t.host:t}function cj(e){const t=fn(e);return Ms(t)?e.ownerDocument?e.ownerDocument.body:e.body:Lo(t)&&Ed(t)?t:cj(t)}function zd(e,t,o){var n;t===void 0&&(t=[]),o===void 0&&(o=!0);const a=cj(e),r=a===((n=e.ownerDocument)==null?void 0:n.body),c=zt(a);if(r){const s=iA(c);return t.concat(c,c.visualViewport||[],Ed(a)?a:[],s&&o?zd(s):[])}return t.concat(a,zd(a,[],o))}function iA(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}function sj(e){const t=ro(e);let o=parseFloat(t.width)||0,n=parseFloat(t.height)||0;const a=Lo(e),r=a?e.offsetWidth:o,c=a?e.offsetHeight:n,s=r$(o)!==r||r$(n)!==c;return s&&(o=r,n=c),{width:o,height:n,$:s}}function cA(e){return ao(e)?e:e.contextElement}function ws(e){const t=cA(e);if(!Lo(t))return Co(1);const o=t.getBoundingClientRect(),{width:n,height:a,$:r}=sj(t);let c=(r?r$(o.width):o.width)/n,s=(r?r$(o.height):o.height)/a;return(!c||!Number.isFinite(c))&&(c=1),(!s||!Number.isFinite(s))&&(s=1),{x:c,y:s}}const wne=Co(0);function dj(e){const t=zt(e);return!rA()||!t.visualViewport?wne:{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}}function xne(e,t,o){return t===void 0&&(t=!1),!o||t&&o!==zt(e)?!1:t}function Pc(e,t,o,n){t===void 0&&(t=!1),o===void 0&&(o=!1);const a=e.getBoundingClientRect(),r=cA(e);let c=Co(1);t&&(n?ao(n)&&(c=ws(n)):c=ws(e));const s=xne(r,o,n)?dj(r):Co(0);let l=(a.left+s.x)/c.x,u=(a.top+s.y)/c.y,y=a.width/c.x,h=a.height/c.y;if(r){const f=zt(r),k=n&&ao(n)?zt(n):n;let m=f,g=iA(m);for(;g&&n&&k!==m;){const _=ws(g),v=g.getBoundingClientRect(),b=ro(g),M=v.left+(g.clientLeft+parseFloat(b.paddingLeft))*_.x,x=v.top+(g.clientTop+parseFloat(b.paddingTop))*_.y;l*=_.x,u*=_.y,y*=_.x,h*=_.y,l+=M,u+=x,m=zt(g),g=iA(m)}}return s$({width:y,height:h,x:l,y:u})}function h$(e,t){const o=u$(e).scrollLeft;return t?t.left+o:Pc(So(e)).left+o}function lj(e,t){const o=e.getBoundingClientRect(),n=o.left+t.scrollLeft-h$(e,o),a=o.top+t.scrollTop;return{x:n,y:a}}function Nne(e){let{elements:t,rect:o,offsetParent:n,strategy:a}=e;const r=a==="fixed",c=So(n),s=t?l$(t.floating):!1;if(n===c||s&&r)return o;let l={scrollLeft:0,scrollTop:0},u=Co(1);const y=Co(0),h=Lo(n);if((h||!h&&!r)&&((bs(n)!=="body"||Ed(c))&&(l=u$(n)),Lo(n))){const k=Pc(n);u=ws(n),y.x=k.x+n.clientLeft,y.y=k.y+n.clientTop}const f=c&&!h&&!r?lj(c,l):Co(0);return{width:o.width*u.x,height:o.height*u.y,x:o.x*u.x-l.scrollLeft*u.x+y.x+f.x,y:o.y*u.y-l.scrollTop*u.y+y.y+f.y}}function Cne(e){return Array.from(e.getClientRects())}function $ne(e){const t=So(e),o=u$(e),n=e.ownerDocument.body,a=Et(t.scrollWidth,t.clientWidth,n.scrollWidth,n.clientWidth),r=Et(t.scrollHeight,t.clientHeight,n.scrollHeight,n.clientHeight);let c=-o.scrollLeft+h$(e);const s=-o.scrollTop;return ro(n).direction==="rtl"&&(c+=Et(t.clientWidth,n.clientWidth)-a),{width:a,height:r,x:c,y:s}}const uj=25;function Sne(e,t){const o=zt(e),n=So(e),a=o.visualViewport;let r=n.clientWidth,c=n.clientHeight,s=0,l=0;if(a){r=a.width,c=a.height;const y=rA();(!y||y&&t==="fixed")&&(s=a.offsetLeft,l=a.offsetTop)}const u=h$(n);if(u<=0){const y=n.ownerDocument,h=y.body,f=getComputedStyle(h),k=y.compatMode==="CSS1Compat"&&parseFloat(f.marginLeft)+parseFloat(f.marginRight)||0,m=Math.abs(n.clientWidth-h.clientWidth-k);m<=uj&&(r-=m)}else u<=uj&&(r+=u);return{width:r,height:c,x:s,y:l}}const Lne=new Set(["absolute","fixed"]);function Ine(e,t){const o=Pc(e,!0,t==="fixed"),n=o.top+e.clientTop,a=o.left+e.clientLeft,r=Lo(e)?ws(e):Co(1),c=e.clientWidth*r.x,s=e.clientHeight*r.y,l=a*r.x,u=n*r.y;return{width:c,height:s,x:l,y:u}}function hj(e,t,o){let n;if(t==="viewport")n=Sne(e,o);else if(t==="document")n=$ne(So(e));else if(ao(t))n=Ine(t,o);else{const a=dj(e);n={x:t.x-a.x,y:t.y-a.y,width:t.width,height:t.height}}return s$(n)}function pj(e,t){const o=fn(e);return o===t||!ao(o)||Ms(o)?!1:ro(o).position==="fixed"||pj(o,t)}function Ane(e,t){const o=t.get(e);if(o)return o;let n=zd(e,[],!1).filter(s=>ao(s)&&bs(s)!=="body"),a=null;const r=ro(e).position==="fixed";let c=r?fn(e):e;for(;ao(c)&&!Ms(c);){const s=ro(c),l=aA(c);!l&&s.position==="fixed"&&(a=null),(r?!l&&!a:!l&&s.position==="static"&&!!a&&Lne.has(a.position)||Ed(c)&&!l&&pj(e,c))?n=n.filter(y=>y!==c):a=s,c=fn(c)}return t.set(e,n),n}function Pne(e){let{element:t,boundary:o,rootBoundary:n,strategy:a}=e;const c=[...o==="clippingAncestors"?l$(t)?[]:Ane(t,this._c):[].concat(o),n],s=c[0],l=c.reduce((u,y)=>{const h=hj(t,y,a);return u.top=Et(h.top,u.top),u.right=yn(h.right,u.right),u.bottom=yn(h.bottom,u.bottom),u.left=Et(h.left,u.left),u},hj(t,s,a));return{width:l.right-l.left,height:l.bottom-l.top,x:l.left,y:l.top}}function Tne(e){const{width:t,height:o}=sj(e);return{width:t,height:o}}function Dne(e,t,o){const n=Lo(t),a=So(t),r=o==="fixed",c=Pc(e,!0,r,t);let s={scrollLeft:0,scrollTop:0};const l=Co(0);function u(){l.x=h$(a)}if(n||!n&&!r)if((bs(t)!=="body"||Ed(a))&&(s=u$(t)),n){const k=Pc(t,!0,r,t);l.x=k.x+t.clientLeft,l.y=k.y+t.clientTop}else a&&u();r&&!n&&a&&u();const y=a&&!n&&!r?lj(a,s):Co(0),h=c.left+s.scrollLeft-l.x-y.x,f=c.top+s.scrollTop-l.y-y.y;return{x:h,y:f,width:c.width,height:c.height}}function sA(e){return ro(e).position==="static"}function yj(e,t){if(!Lo(e)||ro(e).position==="fixed")return null;if(t)return t(e);let o=e.offsetParent;return So(e)===o&&(o=o.ownerDocument.body),o}function fj(e,t){const o=zt(e);if(l$(e))return o;if(!Lo(e)){let a=fn(e);for(;a&&!Ms(a);){if(ao(a)&&!sA(a))return a;a=fn(a)}return o}let n=yj(e,t);for(;n&&mne(n)&&sA(n);)n=yj(n,t);return n&&Ms(n)&&sA(n)&&!aA(n)?o:n||bne(e)||o}const Ene=async function(e){const t=this.getOffsetParent||fj,o=this.getDimensions,n=await o(e.floating);return{reference:Dne(e.reference,await t(e.floating),e.strategy),floating:{x:0,y:0,width:n.width,height:n.height}}};function zne(e){return ro(e).direction==="rtl"}const One={convertOffsetParentRelativeRectToViewportRelativeRect:Nne,getDocumentElement:So,getClippingRect:Pne,getOffsetParent:fj,getElementRects:Ene,getClientRects:Cne,getDimensions:Tne,getScale:ws,isElement:ao,isRTL:zne};function mj(e,t){return e.x===t.x&&e.y===t.y&&e.width===t.width&&e.height===t.height}function qne(e,t){let o=null,n;const a=So(e);function r(){var s;clearTimeout(n),(s=o)==null||s.disconnect(),o=null}function c(s,l){s===void 0&&(s=!1),l===void 0&&(l=1),r();const u=e.getBoundingClientRect(),{left:y,top:h,width:f,height:k}=u;if(s||t(),!f||!k)return;const m=i$(h),g=i$(a.clientWidth-(y+f)),_=i$(a.clientHeight-(h+k)),v=i$(y),M={rootMargin:-m+"px "+-g+"px "+-_+"px "+-v+"px",threshold:Et(0,yn(1,l))||1};let x=!0;function N(C){const $=C[0].intersectionRatio;if($!==l){if(!x)return c();$?c(!1,$):n=setTimeout(()=>{c(!1,1e-7)},1e3)}$===1&&!mj(u,e.getBoundingClientRect())&&c(),x=!1}try{o=new IntersectionObserver(N,{...M,root:a.ownerDocument})}catch{o=new IntersectionObserver(N,M)}o.observe(e)}return c(!0),r}function jne(e,t,o,n){n===void 0&&(n={});const{ancestorScroll:a=!0,ancestorResize:r=!0,elementResize:c=typeof ResizeObserver=="function",layoutShift:s=typeof IntersectionObserver=="function",animationFrame:l=!1}=n,u=cA(e),y=a||r?[...u?zd(u):[],...zd(t)]:[];y.forEach(v=>{a&&v.addEventListener("scroll",o,{passive:!0}),r&&v.addEventListener("resize",o)});const h=u&&s?qne(u,o):null;let f=-1,k=null;c&&(k=new ResizeObserver(v=>{let[b]=v;b&&b.target===u&&k&&(k.unobserve(t),cancelAnimationFrame(f),f=requestAnimationFrame(()=>{var M;(M=k)==null||M.observe(t)})),o()}),u&&!l&&k.observe(u),k.observe(t));let m,g=l?Pc(e):null;l&&_();function _(){const v=Pc(e);g&&!mj(g,v)&&o(),g=v,m=requestAnimationFrame(_)}return o(),()=>{var v;y.forEach(b=>{a&&b.removeEventListener("scroll",o),r&&b.removeEventListener("resize",o)}),h?.(),(v=k)==null||v.disconnect(),k=null,l&&cancelAnimationFrame(m)}}const Hne=lne,Vne=une,Fne=cne,Bne=pne,Wne=sne,kj=ine,Une=hne,Rne=(e,t,o)=>{const n=new Map,a={platform:One,...o},r={...a.platform,_c:n};return rne(e,t,{...a,platform:r})};var Gne=typeof document<"u",Kne=function(){},p$=Gne?w.useLayoutEffect:Kne;function y$(e,t){if(e===t)return!0;if(typeof e!=typeof t)return!1;if(typeof e=="function"&&e.toString()===t.toString())return!0;let o,n,a;if(e&&t&&typeof e=="object"){if(Array.isArray(e)){if(o=e.length,o!==t.length)return!1;for(n=o;n--!==0;)if(!y$(e[n],t[n]))return!1;return!0}if(a=Object.keys(e),o=a.length,o!==Object.keys(t).length)return!1;for(n=o;n--!==0;)if(!{}.hasOwnProperty.call(t,a[n]))return!1;for(n=o;n--!==0;){const r=a[n];if(!(r==="_owner"&&e.$$typeof)&&!y$(e[r],t[r]))return!1}return!0}return e!==e&&t!==t}function gj(e){return typeof window>"u"?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function vj(e,t){const o=gj(e);return Math.round(t*o)/o}function dA(e){const t=p.useRef(e);return p$(()=>{t.current=e}),t}function Yne(e){e===void 0&&(e={});const{placement:t="bottom",strategy:o="absolute",middleware:n=[],platform:a,elements:{reference:r,floating:c}={},transform:s=!0,whileElementsMounted:l,open:u}=e,[y,h]=p.useState({x:0,y:0,strategy:o,placement:t,middlewareData:{},isPositioned:!1}),[f,k]=p.useState(n);y$(f,n)||k(n);const[m,g]=p.useState(null),[_,v]=p.useState(null),b=p.useCallback(P=>{P!==C.current&&(C.current=P,g(P))},[]),M=p.useCallback(P=>{P!==$.current&&($.current=P,v(P))},[]),x=r||m,N=c||_,C=p.useRef(null),$=p.useRef(null),L=p.useRef(y),A=l!=null,q=dA(l),z=dA(a),O=dA(u),D=p.useCallback(()=>{if(!C.current||!$.current)return;const P={placement:t,strategy:o,middleware:f};z.current&&(P.platform=z.current),Rne(C.current,$.current,P).then(F=>{const ne={...F,isPositioned:O.current!==!1};U.current&&!y$(L.current,ne)&&(L.current=ne,p1.flushSync(()=>{h(ne)}))})},[f,t,o,z,O]);p$(()=>{u===!1&&L.current.isPositioned&&(L.current.isPositioned=!1,h(P=>({...P,isPositioned:!1})))},[u]);const U=p.useRef(!1);p$(()=>(U.current=!0,()=>{U.current=!1}),[]),p$(()=>{if(x&&(C.current=x),N&&($.current=N),x&&N){if(q.current)return q.current(x,N,D);D()}},[x,N,D,q,A]);const G=p.useMemo(()=>({reference:C,floating:$,setReference:b,setFloating:M}),[b,M]),H=p.useMemo(()=>({reference:x,floating:N}),[x,N]),Y=p.useMemo(()=>{const P={position:o,left:0,top:0};if(!H.floating)return P;const F=vj(H.floating,y.x),ne=vj(H.floating,y.y);return s?{...P,transform:"translate("+F+"px, "+ne+"px)",...gj(H.floating)>=1.5&&{willChange:"transform"}}:{position:o,left:F,top:ne}},[o,s,H.floating,y.x,y.y]);return p.useMemo(()=>({...y,update:D,refs:G,elements:H,floatingStyles:Y}),[y,D,G,H,Y])}const Xne=e=>{function t(o){return{}.hasOwnProperty.call(o,"current")}return{name:"arrow",options:e,fn(o){const{element:n,padding:a}=typeof e=="function"?e(o):e;return n&&t(n)?n.current!=null?kj({element:n.current,padding:a}).fn(o):{}:n?kj({element:n,padding:a}).fn(o):{}}}},Zne=(e,t)=>({...Hne(e),options:[e,t]}),Qne=(e,t)=>({...Vne(e),options:[e,t]}),Jne=(e,t)=>({...Une(e),options:[e,t]}),eae=(e,t)=>({...Fne(e),options:[e,t]}),tae=(e,t)=>({...Bne(e),options:[e,t]}),oae=(e,t)=>({...Wne(e),options:[e,t]}),nae=(e,t)=>({...Xne(e),options:[e,t]});var aae="Arrow",_j=p.forwardRef((e,t)=>{const{children:o,width:n=10,height:a=5,...r}=e;return d.jsx(se.svg,{...r,ref:t,width:n,height:a,viewBox:"0 0 30 10",preserveAspectRatio:"none",children:e.asChild?o:d.jsx("polygon",{points:"0,0 30,0 15,10"})})});_j.displayName=aae;var rae=_j,lA="Popper",[bj,Io]=Xe(lA),[iae,Mj]=bj(lA),wj=e=>{const{__scopePopper:t,children:o}=e,[n,a]=p.useState(null);return d.jsx(iae,{scope:t,anchor:n,onAnchorChange:a,children:o})};wj.displayName=lA;var xj="PopperAnchor",Nj=p.forwardRef((e,t)=>{const{__scopePopper:o,virtualRef:n,...a}=e,r=Mj(xj,o),c=p.useRef(null),s=be(t,c),l=p.useRef(null);return p.useEffect(()=>{const u=l.current;l.current=n?.current||c.current,u!==l.current&&r.onAnchorChange(l.current)}),n?null:d.jsx(se.div,{...a,ref:s})});Nj.displayName=xj;var uA="PopperContent",[cae,sae]=bj(uA),Cj=p.forwardRef((e,t)=>{const{__scopePopper:o,side:n="bottom",sideOffset:a=0,align:r="center",alignOffset:c=0,arrowPadding:s=0,avoidCollisions:l=!0,collisionBoundary:u=[],collisionPadding:y=0,sticky:h="partial",hideWhenDetached:f=!1,updatePositionStrategy:k="optimized",onPlaced:m,...g}=e,_=Mj(uA,o),[v,b]=p.useState(null),M=be(t,V=>b(V)),[x,N]=p.useState(null),C=Ad(x),$=C?.width??0,L=C?.height??0,A=n+(r!=="center"?"-"+r:""),q=typeof y=="number"?y:{top:0,right:0,bottom:0,left:0,...y},z=Array.isArray(u)?u:[u],O=z.length>0,D={padding:q,boundary:z.filter(lae),altBoundary:O},{refs:U,floatingStyles:G,placement:H,isPositioned:Y,middlewareData:P}=Yne({strategy:"fixed",placement:A,whileElementsMounted:(...V)=>jne(...V,{animationFrame:k==="always"}),elements:{reference:_.anchor},middleware:[Zne({mainAxis:a+L,alignmentAxis:c}),l&&Qne({mainAxis:!0,crossAxis:!1,limiter:h==="partial"?Jne():void 0,...D}),l&&eae({...D}),tae({...D,apply:({elements:V,rects:te,availableWidth:fe,availableHeight:pe})=>{const{width:le,height:ee}=te.reference,_e=V.floating.style;_e.setProperty("--radix-popper-available-width",`${fe}px`),_e.setProperty("--radix-popper-available-height",`${pe}px`),_e.setProperty("--radix-popper-anchor-width",`${le}px`),_e.setProperty("--radix-popper-anchor-height",`${ee}px`)}}),x&&nae({element:x,padding:s}),uae({arrowWidth:$,arrowHeight:L}),f&&oae({strategy:"referenceHidden",...D})]}),[F,ne]=Lj(H),de=Ue(m);Ze(()=>{Y&&de?.()},[Y,de]);const B=P.arrow?.x,W=P.arrow?.y,K=P.arrow?.centerOffset!==0,[R,re]=p.useState();return Ze(()=>{v&&re(window.getComputedStyle(v).zIndex)},[v]),d.jsx("div",{ref:U.setFloating,"data-radix-popper-content-wrapper":"",style:{...G,transform:Y?G.transform:"translate(0, -200%)",minWidth:"max-content",zIndex:R,"--radix-popper-transform-origin":[P.transformOrigin?.x,P.transformOrigin?.y].join(" "),...P.hide?.referenceHidden&&{visibility:"hidden",pointerEvents:"none"}},dir:e.dir,children:d.jsx(cae,{scope:o,placedSide:F,onArrowChange:N,arrowX:B,arrowY:W,shouldHideArrow:K,children:d.jsx(se.div,{"data-side":F,"data-align":ne,...g,ref:M,style:{...g.style,animation:Y?void 0:"none"}})})})});Cj.displayName=uA;var $j="PopperArrow",dae={top:"bottom",right:"left",bottom:"top",left:"right"},Sj=p.forwardRef(function(t,o){const{__scopePopper:n,...a}=t,r=sae($j,n),c=dae[r.placedSide];return d.jsx("span",{ref:r.onArrowChange,style:{position:"absolute",left:r.arrowX,top:r.arrowY,[c]:0,transformOrigin:{top:"",right:"0 0",bottom:"center 0",left:"100% 0"}[r.placedSide],transform:{top:"translateY(100%)",right:"translateY(50%) rotate(90deg) translateX(-50%)",bottom:"rotate(180deg)",left:"translateY(50%) rotate(-90deg) translateX(50%)"}[r.placedSide],visibility:r.shouldHideArrow?"hidden":void 0},children:d.jsx(rae,{...a,ref:o,style:{...a.style,display:"block"}})})});Sj.displayName=$j;function lae(e){return e!==null}var uae=e=>({name:"transformOrigin",options:e,fn(t){const{placement:o,rects:n,middlewareData:a}=t,c=a.arrow?.centerOffset!==0,s=c?0:e.arrowWidth,l=c?0:e.arrowHeight,[u,y]=Lj(o),h={start:"0%",center:"50%",end:"100%"}[y],f=(a.arrow?.x??0)+s/2,k=(a.arrow?.y??0)+l/2;let m="",g="";return u==="bottom"?(m=c?h:`${f}px`,g=`${-l}px`):u==="top"?(m=c?h:`${f}px`,g=`${n.floating.height+l}px`):u==="right"?(m=`${-l}px`,g=c?h:`${k}px`):u==="left"&&(m=`${n.floating.width+l}px`,g=c?h:`${k}px`),{data:{x:m,y:g}}}});function Lj(e){const[t,o="center"]=e.split("-");return[t,o]}var xs=wj,Ns=Nj,Od=Cj,qd=Sj,hA="rovingFocusGroup.onEntryFocus",hae={bubbles:!1,cancelable:!0},jd="RovingFocusGroup",[pA,Ij,pae]=en(jd),[yae,Ao]=Xe(jd,[pae]),[fae,mae]=yae(jd),Aj=p.forwardRef((e,t)=>d.jsx(pA.Provider,{scope:e.__scopeRovingFocusGroup,children:d.jsx(pA.Slot,{scope:e.__scopeRovingFocusGroup,children:d.jsx(kae,{...e,ref:t})})}));Aj.displayName=jd;var kae=p.forwardRef((e,t)=>{const{__scopeRovingFocusGroup:o,orientation:n,loop:a=!1,dir:r,currentTabStopId:c,defaultCurrentTabStopId:s,onCurrentTabStopIdChange:l,onEntryFocus:u,preventScrollOnEntryFocus:y=!1,...h}=e,f=p.useRef(null),k=be(t,f),m=Yt(r),[g,_]=Ke({prop:c,defaultProp:s??null,onChange:l,caller:jd}),[v,b]=p.useState(!1),M=Ue(u),x=Ij(o),N=p.useRef(!1),[C,$]=p.useState(0);return p.useEffect(()=>{const L=f.current;if(L)return L.addEventListener(hA,M),()=>L.removeEventListener(hA,M)},[M]),d.jsx(fae,{scope:o,orientation:n,dir:m,loop:a,currentTabStopId:g,onItemFocus:p.useCallback(L=>_(L),[_]),onItemShiftTab:p.useCallback(()=>b(!0),[]),onFocusableItemAdd:p.useCallback(()=>$(L=>L+1),[]),onFocusableItemRemove:p.useCallback(()=>$(L=>L-1),[]),children:d.jsx(se.div,{tabIndex:v||C===0?-1:0,"data-orientation":n,...h,ref:k,style:{outline:"none",...e.style},onMouseDown:X(e.onMouseDown,()=>{N.current=!0}),onFocus:X(e.onFocus,L=>{const A=!N.current;if(L.target===L.currentTarget&&A&&!v){const q=new CustomEvent(hA,hae);if(L.currentTarget.dispatchEvent(q),!q.defaultPrevented){const z=x().filter(H=>H.focusable),O=z.find(H=>H.active),D=z.find(H=>H.id===g),G=[O,D,...z].filter(Boolean).map(H=>H.ref.current);Dj(G,y)}}N.current=!1}),onBlur:X(e.onBlur,()=>b(!1))})})}),Pj="RovingFocusGroupItem",Tj=p.forwardRef((e,t)=>{const{__scopeRovingFocusGroup:o,focusable:n=!0,active:a=!1,tabStopId:r,children:c,...s}=e,l=We(),u=r||l,y=mae(Pj,o),h=y.currentTabStopId===u,f=Ij(o),{onFocusableItemAdd:k,onFocusableItemRemove:m,currentTabStopId:g}=y;return p.useEffect(()=>{if(n)return k(),()=>m()},[n,k,m]),d.jsx(pA.ItemSlot,{scope:o,id:u,focusable:n,active:a,children:d.jsx(se.span,{tabIndex:h?0:-1,"data-orientation":y.orientation,...s,ref:t,onMouseDown:X(e.onMouseDown,_=>{n?y.onItemFocus(u):_.preventDefault()}),onFocus:X(e.onFocus,()=>y.onItemFocus(u)),onKeyDown:X(e.onKeyDown,_=>{if(_.key==="Tab"&&_.shiftKey){y.onItemShiftTab();return}if(_.target!==_.currentTarget)return;const v=_ae(_,y.orientation,y.dir);if(v!==void 0){if(_.metaKey||_.ctrlKey||_.altKey||_.shiftKey)return;_.preventDefault();let M=f().filter(x=>x.focusable).map(x=>x.ref.current);if(v==="last")M.reverse();else if(v==="prev"||v==="next"){v==="prev"&&M.reverse();const x=M.indexOf(_.currentTarget);M=y.loop?bae(M,x+1):M.slice(x+1)}setTimeout(()=>Dj(M))}}),children:typeof c=="function"?c({isCurrentTabStop:h,hasTabStop:g!=null}):c})})});Tj.displayName=Pj;var gae={ArrowLeft:"prev",ArrowUp:"prev",ArrowRight:"next",ArrowDown:"next",PageUp:"first",Home:"first",PageDown:"last",End:"last"};function vae(e,t){return t!=="rtl"?e:e==="ArrowLeft"?"ArrowRight":e==="ArrowRight"?"ArrowLeft":e}function _ae(e,t,o){const n=vae(e.key,o);if(!(t==="vertical"&&["ArrowLeft","ArrowRight"].includes(n))&&!(t==="horizontal"&&["ArrowUp","ArrowDown"].includes(n)))return gae[n]}function Dj(e,t=!1){const o=document.activeElement;for(const n of e)if(n===o||(n.focus({preventScroll:t}),document.activeElement!==o))return}function bae(e,t){return e.map((o,n)=>e[(t+n)%e.length])}var Hd=Aj,Vd=Tj,yA=["Enter"," "],Mae=["ArrowDown","PageUp","Home"],Ej=["ArrowUp","PageDown","End"],wae=[...Mae,...Ej],xae={ltr:[...yA,"ArrowRight"],rtl:[...yA,"ArrowLeft"]},Nae={ltr:["ArrowLeft"],rtl:["ArrowRight"]},Fd="Menu",[Bd,Cae,$ae]=en(Fd),[Tc,Wd]=Xe(Fd,[$ae,Io,Ao]),Ud=Io(),zj=Ao(),[Oj,mn]=Tc(Fd),[Sae,Rd]=Tc(Fd),qj=e=>{const{__scopeMenu:t,open:o=!1,children:n,dir:a,onOpenChange:r,modal:c=!0}=e,s=Ud(t),[l,u]=p.useState(null),y=p.useRef(!1),h=Ue(r),f=Yt(a);return p.useEffect(()=>{const k=()=>{y.current=!0,document.addEventListener("pointerdown",m,{capture:!0,once:!0}),document.addEventListener("pointermove",m,{capture:!0,once:!0})},m=()=>y.current=!1;return document.addEventListener("keydown",k,{capture:!0}),()=>{document.removeEventListener("keydown",k,{capture:!0}),document.removeEventListener("pointerdown",m,{capture:!0}),document.removeEventListener("pointermove",m,{capture:!0})}},[]),d.jsx(xs,{...s,children:d.jsx(Oj,{scope:t,open:o,onOpenChange:h,content:l,onContentChange:u,children:d.jsx(Sae,{scope:t,onClose:p.useCallback(()=>h(!1),[h]),isUsingKeyboardRef:y,dir:f,modal:c,children:n})})})};qj.displayName=Fd;var Lae="MenuAnchor",fA=p.forwardRef((e,t)=>{const{__scopeMenu:o,...n}=e,a=Ud(o);return d.jsx(Ns,{...a,...n,ref:t})});fA.displayName=Lae;var mA="MenuPortal",[Iae,jj]=Tc(mA,{forceMount:void 0}),Hj=e=>{const{__scopeMenu:t,forceMount:o,children:n,container:a}=e,r=mn(mA,t);return d.jsx(Iae,{scope:t,forceMount:o,children:d.jsx(Qe,{present:o||r.open,children:d.jsx(ud,{asChild:!0,container:a,children:n})})})};Hj.displayName=mA;var Ht="MenuContent",[Aae,kA]=Tc(Ht),Vj=p.forwardRef((e,t)=>{const o=jj(Ht,e.__scopeMenu),{forceMount:n=o.forceMount,...a}=e,r=mn(Ht,e.__scopeMenu),c=Rd(Ht,e.__scopeMenu);return d.jsx(Bd.Provider,{scope:e.__scopeMenu,children:d.jsx(Qe,{present:n||r.open,children:d.jsx(Bd.Slot,{scope:e.__scopeMenu,children:c.modal?d.jsx(Pae,{...a,ref:t}):d.jsx(Tae,{...a,ref:t})})})})}),Pae=p.forwardRef((e,t)=>{const o=mn(Ht,e.__scopeMenu),n=p.useRef(null),a=be(t,n);return p.useEffect(()=>{const r=n.current;if(r)return EC(r)},[]),d.jsx(gA,{...e,ref:a,trapFocus:o.open,disableOutsidePointerEvents:o.open,disableOutsideScroll:!0,onFocusOutside:X(e.onFocusOutside,r=>r.preventDefault(),{checkForDefaultPrevented:!1}),onDismiss:()=>o.onOpenChange(!1)})}),Tae=p.forwardRef((e,t)=>{const o=mn(Ht,e.__scopeMenu);return d.jsx(gA,{...e,ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,disableOutsideScroll:!1,onDismiss:()=>o.onOpenChange(!1)})}),Dae=wn("MenuContent.ScrollLock"),gA=p.forwardRef((e,t)=>{const{__scopeMenu:o,loop:n=!1,trapFocus:a,onOpenAutoFocus:r,onCloseAutoFocus:c,disableOutsidePointerEvents:s,onEntryFocus:l,onEscapeKeyDown:u,onPointerDownOutside:y,onFocusOutside:h,onInteractOutside:f,onDismiss:k,disableOutsideScroll:m,...g}=e,_=mn(Ht,o),v=Rd(Ht,o),b=Ud(o),M=zj(o),x=Cae(o),[N,C]=p.useState(null),$=p.useRef(null),L=be(t,$,_.onContentChange),A=p.useRef(0),q=p.useRef(""),z=p.useRef(0),O=p.useRef(null),D=p.useRef("right"),U=p.useRef(0),G=m?hd:p.Fragment,H=m?{as:Dae,allowPinchZoom:!0}:void 0,Y=F=>{const ne=q.current+F,de=x().filter(V=>!V.disabled),B=document.activeElement,W=de.find(V=>V.ref.current===B)?.textValue,K=de.map(V=>V.textValue),R=Rae(K,ne,W),re=de.find(V=>V.textValue===R)?.ref.current;(function V(te){q.current=te,window.clearTimeout(A.current),te!==""&&(A.current=window.setTimeout(()=>V(""),1e3))})(ne),re&&setTimeout(()=>re.focus())};p.useEffect(()=>()=>window.clearTimeout(A.current),[]),$C();const P=p.useCallback(F=>D.current===O.current?.side&&Kae(F,O.current?.area),[]);return d.jsx(Aae,{scope:o,searchRef:q,onItemEnter:p.useCallback(F=>{P(F)&&F.preventDefault()},[P]),onItemLeave:p.useCallback(F=>{P(F)||($.current?.focus(),C(null))},[P]),onTriggerLeave:p.useCallback(F=>{P(F)&&F.preventDefault()},[P]),pointerGraceTimerRef:z,onPointerGraceIntentChange:p.useCallback(F=>{O.current=F},[]),children:d.jsx(G,{...H,children:d.jsx(ld,{asChild:!0,trapped:a,onMountAutoFocus:X(r,F=>{F.preventDefault(),$.current?.focus({preventScroll:!0})}),onUnmountAutoFocus:c,children:d.jsx(dn,{asChild:!0,disableOutsidePointerEvents:s,onEscapeKeyDown:u,onPointerDownOutside:y,onFocusOutside:h,onInteractOutside:f,onDismiss:k,children:d.jsx(Hd,{asChild:!0,...M,dir:v.dir,orientation:"vertical",loop:n,currentTabStopId:N,onCurrentTabStopIdChange:C,onEntryFocus:X(l,F=>{v.isUsingKeyboardRef.current||F.preventDefault()}),preventScrollOnEntryFocus:!0,children:d.jsx(Od,{role:"menu","aria-orientation":"vertical","data-state":rH(_.open),"data-radix-menu-content":"",dir:v.dir,...b,...g,ref:L,style:{outline:"none",...g.style},onKeyDown:X(g.onKeyDown,F=>{const de=F.target.closest("[data-radix-menu-content]")===F.currentTarget,B=F.ctrlKey||F.altKey||F.metaKey,W=F.key.length===1;de&&(F.key==="Tab"&&F.preventDefault(),!B&&W&&Y(F.key));const K=$.current;if(F.target!==K||!wae.includes(F.key))return;F.preventDefault();const re=x().filter(V=>!V.disabled).map(V=>V.ref.current);Ej.includes(F.key)&&re.reverse(),Wae(re)}),onBlur:X(e.onBlur,F=>{F.currentTarget.contains(F.target)||(window.clearTimeout(A.current),q.current="")}),onPointerMove:X(e.onPointerMove,Kd(F=>{const ne=F.target,de=U.current!==F.clientX;if(F.currentTarget.contains(ne)&&de){const B=F.clientX>U.current?"right":"left";D.current=B,U.current=F.clientX}}))})})})})})})});Vj.displayName=Ht;var Eae="MenuGroup",vA=p.forwardRef((e,t)=>{const{__scopeMenu:o,...n}=e;return d.jsx(se.div,{role:"group",...n,ref:t})});vA.displayName=Eae;var zae="MenuLabel",Fj=p.forwardRef((e,t)=>{const{__scopeMenu:o,...n}=e;return d.jsx(se.div,{...n,ref:t})});Fj.displayName=zae;var f$="MenuItem",Bj="menu.itemSelect",m$=p.forwardRef((e,t)=>{const{disabled:o=!1,onSelect:n,...a}=e,r=p.useRef(null),c=Rd(f$,e.__scopeMenu),s=kA(f$,e.__scopeMenu),l=be(t,r),u=p.useRef(!1),y=()=>{const h=r.current;if(!o&&h){const f=new CustomEvent(Bj,{bubbles:!0,cancelable:!0});h.addEventListener(Bj,k=>n?.(k),{once:!0}),w1(h,f),f.defaultPrevented?u.current=!1:c.onClose()}};return d.jsx(Wj,{...a,ref:l,disabled:o,onClick:X(e.onClick,y),onPointerDown:h=>{e.onPointerDown?.(h),u.current=!0},onPointerUp:X(e.onPointerUp,h=>{u.current||h.currentTarget?.click()}),onKeyDown:X(e.onKeyDown,h=>{const f=s.searchRef.current!=="";o||f&&h.key===" "||yA.includes(h.key)&&(h.currentTarget.click(),h.preventDefault())})})});m$.displayName=f$;var Wj=p.forwardRef((e,t)=>{const{__scopeMenu:o,disabled:n=!1,textValue:a,...r}=e,c=kA(f$,o),s=zj(o),l=p.useRef(null),u=be(t,l),[y,h]=p.useState(!1),[f,k]=p.useState("");return p.useEffect(()=>{const m=l.current;m&&k((m.textContent??"").trim())},[r.children]),d.jsx(Bd.ItemSlot,{scope:o,disabled:n,textValue:a??f,children:d.jsx(Vd,{asChild:!0,...s,focusable:!n,children:d.jsx(se.div,{role:"menuitem","data-highlighted":y?"":void 0,"aria-disabled":n||void 0,"data-disabled":n?"":void 0,...r,ref:u,onPointerMove:X(e.onPointerMove,Kd(m=>{n?c.onItemLeave(m):(c.onItemEnter(m),m.defaultPrevented||m.currentTarget.focus({preventScroll:!0}))})),onPointerLeave:X(e.onPointerLeave,Kd(m=>c.onItemLeave(m))),onFocus:X(e.onFocus,()=>h(!0)),onBlur:X(e.onBlur,()=>h(!1))})})})}),Oae="MenuCheckboxItem",Uj=p.forwardRef((e,t)=>{const{checked:o=!1,onCheckedChange:n,...a}=e;return d.jsx(Xj,{scope:e.__scopeMenu,checked:o,children:d.jsx(m$,{role:"menuitemcheckbox","aria-checked":k$(o)?"mixed":o,...a,ref:t,"data-state":MA(o),onSelect:X(a.onSelect,()=>n?.(k$(o)?!0:!o),{checkForDefaultPrevented:!1})})})});Uj.displayName=Oae;var Rj="MenuRadioGroup",[qae,jae]=Tc(Rj,{value:void 0,onValueChange:()=>{}}),Gj=p.forwardRef((e,t)=>{const{value:o,onValueChange:n,...a}=e,r=Ue(n);return d.jsx(qae,{scope:e.__scopeMenu,value:o,onValueChange:r,children:d.jsx(vA,{...a,ref:t})})});Gj.displayName=Rj;var Kj="MenuRadioItem",Yj=p.forwardRef((e,t)=>{const{value:o,...n}=e,a=jae(Kj,e.__scopeMenu),r=o===a.value;return d.jsx(Xj,{scope:e.__scopeMenu,checked:r,children:d.jsx(m$,{role:"menuitemradio","aria-checked":r,...n,ref:t,"data-state":MA(r),onSelect:X(n.onSelect,()=>a.onValueChange?.(o),{checkForDefaultPrevented:!1})})})});Yj.displayName=Kj;var _A="MenuItemIndicator",[Xj,Hae]=Tc(_A,{checked:!1}),Zj=p.forwardRef((e,t)=>{const{__scopeMenu:o,forceMount:n,...a}=e,r=Hae(_A,o);return d.jsx(Qe,{present:n||k$(r.checked)||r.checked===!0,children:d.jsx(se.span,{...a,ref:t,"data-state":MA(r.checked)})})});Zj.displayName=_A;var Vae="MenuSeparator",Qj=p.forwardRef((e,t)=>{const{__scopeMenu:o,...n}=e;return d.jsx(se.div,{role:"separator","aria-orientation":"horizontal",...n,ref:t})});Qj.displayName=Vae;var Fae="MenuArrow",Jj=p.forwardRef((e,t)=>{const{__scopeMenu:o,...n}=e,a=Ud(o);return d.jsx(qd,{...a,...n,ref:t})});Jj.displayName=Fae;var bA="MenuSub",[Bae,eH]=Tc(bA),tH=e=>{const{__scopeMenu:t,children:o,open:n=!1,onOpenChange:a}=e,r=mn(bA,t),c=Ud(t),[s,l]=p.useState(null),[u,y]=p.useState(null),h=Ue(a);return p.useEffect(()=>(r.open===!1&&h(!1),()=>h(!1)),[r.open,h]),d.jsx(xs,{...c,children:d.jsx(Oj,{scope:t,open:n,onOpenChange:h,content:u,onContentChange:y,children:d.jsx(Bae,{scope:t,contentId:We(),triggerId:We(),trigger:s,onTriggerChange:l,children:o})})})};tH.displayName=bA;var Gd="MenuSubTrigger",oH=p.forwardRef((e,t)=>{const o=mn(Gd,e.__scopeMenu),n=Rd(Gd,e.__scopeMenu),a=eH(Gd,e.__scopeMenu),r=kA(Gd,e.__scopeMenu),c=p.useRef(null),{pointerGraceTimerRef:s,onPointerGraceIntentChange:l}=r,u={__scopeMenu:e.__scopeMenu},y=p.useCallback(()=>{c.current&&window.clearTimeout(c.current),c.current=null},[]);return p.useEffect(()=>y,[y]),p.useEffect(()=>{const h=s.current;return()=>{window.clearTimeout(h),l(null)}},[s,l]),d.jsx(fA,{asChild:!0,...u,children:d.jsx(Wj,{id:a.triggerId,"aria-haspopup":"menu","aria-expanded":o.open,"aria-controls":a.contentId,"data-state":rH(o.open),...e,ref:Kt(t,a.onTriggerChange),onClick:h=>{e.onClick?.(h),!(e.disabled||h.defaultPrevented)&&(h.currentTarget.focus(),o.open||o.onOpenChange(!0))},onPointerMove:X(e.onPointerMove,Kd(h=>{r.onItemEnter(h),!h.defaultPrevented&&!e.disabled&&!o.open&&!c.current&&(r.onPointerGraceIntentChange(null),c.current=window.setTimeout(()=>{o.onOpenChange(!0),y()},100))})),onPointerLeave:X(e.onPointerLeave,Kd(h=>{y();const f=o.content?.getBoundingClientRect();if(f){const k=o.content?.dataset.side,m=k==="right",g=m?-5:5,_=f[m?"left":"right"],v=f[m?"right":"left"];r.onPointerGraceIntentChange({area:[{x:h.clientX+g,y:h.clientY},{x:_,y:f.top},{x:v,y:f.top},{x:v,y:f.bottom},{x:_,y:f.bottom}],side:k}),window.clearTimeout(s.current),s.current=window.setTimeout(()=>r.onPointerGraceIntentChange(null),300)}else{if(r.onTriggerLeave(h),h.defaultPrevented)return;r.onPointerGraceIntentChange(null)}})),onKeyDown:X(e.onKeyDown,h=>{const f=r.searchRef.current!=="";e.disabled||f&&h.key===" "||xae[n.dir].includes(h.key)&&(o.onOpenChange(!0),o.content?.focus(),h.preventDefault())})})})});oH.displayName=Gd;var nH="MenuSubContent",aH=p.forwardRef((e,t)=>{const o=jj(Ht,e.__scopeMenu),{forceMount:n=o.forceMount,...a}=e,r=mn(Ht,e.__scopeMenu),c=Rd(Ht,e.__scopeMenu),s=eH(nH,e.__scopeMenu),l=p.useRef(null),u=be(t,l);return d.jsx(Bd.Provider,{scope:e.__scopeMenu,children:d.jsx(Qe,{present:n||r.open,children:d.jsx(Bd.Slot,{scope:e.__scopeMenu,children:d.jsx(gA,{id:s.contentId,"aria-labelledby":s.triggerId,...a,ref:u,align:"start",side:c.dir==="rtl"?"left":"right",disableOutsidePointerEvents:!1,disableOutsideScroll:!1,trapFocus:!1,onOpenAutoFocus:y=>{c.isUsingKeyboardRef.current&&l.current?.focus(),y.preventDefault()},onCloseAutoFocus:y=>y.preventDefault(),onFocusOutside:X(e.onFocusOutside,y=>{y.target!==s.trigger&&r.onOpenChange(!1)}),onEscapeKeyDown:X(e.onEscapeKeyDown,y=>{c.onClose(),y.preventDefault()}),onKeyDown:X(e.onKeyDown,y=>{const h=y.currentTarget.contains(y.target),f=Nae[c.dir].includes(y.key);h&&f&&(r.onOpenChange(!1),s.trigger?.focus(),y.preventDefault())})})})})})});aH.displayName=nH;function rH(e){return e?"open":"closed"}function k$(e){return e==="indeterminate"}function MA(e){return k$(e)?"indeterminate":e?"checked":"unchecked"}function Wae(e){const t=document.activeElement;for(const o of e)if(o===t||(o.focus(),document.activeElement!==t))return}function Uae(e,t){return e.map((o,n)=>e[(t+n)%e.length])}function Rae(e,t,o){const a=t.length>1&&Array.from(t).every(u=>u===t[0])?t[0]:t,r=o?e.indexOf(o):-1;let c=Uae(e,Math.max(r,0));a.length===1&&(c=c.filter(u=>u!==o));const l=c.find(u=>u.toLowerCase().startsWith(a.toLowerCase()));return l!==o?l:void 0}function Gae(e,t){const{x:o,y:n}=e;let a=!1;for(let r=0,c=t.length-1;r<t.length;c=r++){const s=t[r],l=t[c],u=s.x,y=s.y,h=l.x,f=l.y;y>n!=f>n&&o<(h-u)*(n-y)/(f-y)+u&&(a=!a)}return a}function Kae(e,t){if(!t)return!1;const o={x:e.clientX,y:e.clientY};return Gae(o,t)}function Kd(e){return t=>t.pointerType==="mouse"?e(t):void 0}var wA=qj,xA=fA,NA=Hj,CA=Vj,$A=vA,SA=Fj,LA=m$,IA=Uj,AA=Gj,PA=Yj,TA=Zj,DA=Qj,EA=Jj,zA=tH,OA=oH,qA=aH,jA="ContextMenu",[Yae]=Xe(jA,[Wd]),yt=Wd(),[Xae,iH]=Yae(jA),cH=e=>{const{__scopeContextMenu:t,children:o,onOpenChange:n,dir:a,modal:r=!0}=e,[c,s]=p.useState(!1),l=yt(t),u=Ue(n),y=p.useCallback(h=>{s(h),u(h)},[u]);return d.jsx(Xae,{scope:t,open:c,onOpenChange:y,modal:r,children:d.jsx(wA,{...l,dir:a,open:c,onOpenChange:y,modal:r,children:o})})};cH.displayName=jA;var sH="ContextMenuTrigger",dH=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,disabled:n=!1,...a}=e,r=iH(sH,o),c=yt(o),s=p.useRef({x:0,y:0}),l=p.useRef({getBoundingClientRect:()=>DOMRect.fromRect({width:0,height:0,...s.current})}),u=p.useRef(0),y=p.useCallback(()=>window.clearTimeout(u.current),[]),h=f=>{s.current={x:f.clientX,y:f.clientY},r.onOpenChange(!0)};return p.useEffect(()=>y,[y]),p.useEffect(()=>{n&&y()},[n,y]),d.jsxs(d.Fragment,{children:[d.jsx(xA,{...c,virtualRef:l}),d.jsx(se.span,{"data-state":r.open?"open":"closed","data-disabled":n?"":void 0,...a,ref:t,style:{WebkitTouchCallout:"none",...e.style},onContextMenu:n?e.onContextMenu:X(e.onContextMenu,f=>{y(),h(f),f.preventDefault()}),onPointerDown:n?e.onPointerDown:X(e.onPointerDown,g$(f=>{y(),u.current=window.setTimeout(()=>h(f),700)})),onPointerMove:n?e.onPointerMove:X(e.onPointerMove,g$(y)),onPointerCancel:n?e.onPointerCancel:X(e.onPointerCancel,g$(y)),onPointerUp:n?e.onPointerUp:X(e.onPointerUp,g$(y))})]})});dH.displayName=sH;var Zae="ContextMenuPortal",lH=e=>{const{__scopeContextMenu:t,...o}=e,n=yt(t);return d.jsx(NA,{...n,...o})};lH.displayName=Zae;var uH="ContextMenuContent",hH=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=iH(uH,o),r=yt(o),c=p.useRef(!1);return d.jsx(CA,{...r,...n,ref:t,side:"right",sideOffset:2,align:"start",onCloseAutoFocus:s=>{e.onCloseAutoFocus?.(s),!s.defaultPrevented&&c.current&&s.preventDefault(),c.current=!1},onInteractOutside:s=>{e.onInteractOutside?.(s),!s.defaultPrevented&&!a.modal&&(c.current=!0)},style:{...e.style,"--radix-context-menu-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-context-menu-content-available-width":"var(--radix-popper-available-width)","--radix-context-menu-content-available-height":"var(--radix-popper-available-height)","--radix-context-menu-trigger-width":"var(--radix-popper-anchor-width)","--radix-context-menu-trigger-height":"var(--radix-popper-anchor-height)"}})});hH.displayName=uH;var Qae="ContextMenuGroup",Jae=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=yt(o);return d.jsx($A,{...a,...n,ref:t})});Jae.displayName=Qae;var ere="ContextMenuLabel",pH=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=yt(o);return d.jsx(SA,{...a,...n,ref:t})});pH.displayName=ere;var tre="ContextMenuItem",yH=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=yt(o);return d.jsx(LA,{...a,...n,ref:t})});yH.displayName=tre;var ore="ContextMenuCheckboxItem",fH=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=yt(o);return d.jsx(IA,{...a,...n,ref:t})});fH.displayName=ore;var nre="ContextMenuRadioGroup",are=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=yt(o);return d.jsx(AA,{...a,...n,ref:t})});are.displayName=nre;var rre="ContextMenuRadioItem",mH=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=yt(o);return d.jsx(PA,{...a,...n,ref:t})});mH.displayName=rre;var ire="ContextMenuItemIndicator",kH=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=yt(o);return d.jsx(TA,{...a,...n,ref:t})});kH.displayName=ire;var cre="ContextMenuSeparator",gH=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=yt(o);return d.jsx(DA,{...a,...n,ref:t})});gH.displayName=cre;var sre="ContextMenuArrow",dre=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=yt(o);return d.jsx(EA,{...a,...n,ref:t})});dre.displayName=sre;var vH="ContextMenuSub",_H=e=>{const{__scopeContextMenu:t,children:o,onOpenChange:n,open:a,defaultOpen:r}=e,c=yt(t),[s,l]=Ke({prop:a,defaultProp:r??!1,onChange:n,caller:vH});return d.jsx(zA,{...c,open:s,onOpenChange:l,children:o})};_H.displayName=vH;var lre="ContextMenuSubTrigger",bH=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=yt(o);return d.jsx(OA,{...a,...n,ref:t})});bH.displayName=lre;var ure="ContextMenuSubContent",MH=p.forwardRef((e,t)=>{const{__scopeContextMenu:o,...n}=e,a=yt(o);return d.jsx(qA,{...a,...n,ref:t,style:{...e.style,"--radix-context-menu-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-context-menu-content-available-width":"var(--radix-popper-available-width)","--radix-context-menu-content-available-height":"var(--radix-popper-available-height)","--radix-context-menu-trigger-width":"var(--radix-popper-anchor-width)","--radix-context-menu-trigger-height":"var(--radix-popper-anchor-height)"}})});MH.displayName=ure;function g$(e){return t=>t.pointerType!=="mouse"?e(t):void 0}var hre=cH,pre=dH,yre=lH,wH=hH,xH=pH,NH=yH,CH=fH,$H=mH,SH=kH,LH=gH,fre=_H,IH=bH,AH=MH;const mre=hre,kre=pre,gre=fre,PH=p.forwardRef(({className:e,inset:t,children:o,...n},a)=>d.jsxs(IH,{ref:a,className:S("flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground",t&&"pl-8",e),...n,children:[o,d.jsx(Ot,{className:"ml-auto h-4 w-4"})]}));PH.displayName=IH.displayName;const TH=p.forwardRef(({className:e,...t},o)=>d.jsx(AH,{ref:o,className:S("z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-context-menu-content-transform-origin]",e),...t}));TH.displayName=AH.displayName;const DH=p.forwardRef(({className:e,...t},o)=>d.jsx(yre,{children:d.jsx(wH,{ref:o,className:S("z-50 max-h-[--radix-context-menu-content-available-height] min-w-[8rem] overflow-y-auto overflow-x-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md animate-in fade-in-80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-context-menu-content-transform-origin]",e),...t})}));DH.displayName=wH.displayName;const EH=p.forwardRef(({className:e,inset:t,...o},n)=>d.jsx(NH,{ref:n,className:S("relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",t&&"pl-8",e),...o}));EH.displayName=NH.displayName;const vre=p.forwardRef(({className:e,children:t,checked:o,...n},a)=>d.jsxs(CH,{ref:a,className:S("relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",e),checked:o,...n,children:[d.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:d.jsx(SH,{children:d.jsx(yo,{className:"h-4 w-4"})})}),t]}));vre.displayName=CH.displayName;const _re=p.forwardRef(({className:e,children:t,...o},n)=>d.jsxs($H,{ref:n,className:S("relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",e),...o,children:[d.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:d.jsx(SH,{children:d.jsx(on,{className:"h-2 w-2 fill-current"})})}),t]}));_re.displayName=$H.displayName;const zH=p.forwardRef(({className:e,inset:t,...o},n)=>d.jsx(xH,{ref:n,className:S("px-2 py-1.5 text-sm font-semibold text-foreground",t&&"pl-8",e),...o}));zH.displayName=xH.displayName;const OH=p.forwardRef(({className:e,...t},o)=>d.jsx(LH,{ref:o,className:S("-mx-1 my-1 h-px bg-border",e),...t}));OH.displayName=LH.displayName;const qH=({className:e,...t})=>d.jsx("span",{className:S("ml-auto text-xs tracking-widest text-muted-foreground",e),...t});qH.displayName="ContextMenuShortcut";function bre(e){if(typeof document>"u")return;let t=document.head||document.getElementsByTagName("head")[0],o=document.createElement("style");o.type="text/css",t.appendChild(o),o.styleSheet?o.styleSheet.cssText=e:o.appendChild(document.createTextNode(e))}const jH=w.createContext({drawerRef:{current:null},overlayRef:{current:null},onPress:()=>{},onRelease:()=>{},onDrag:()=>{},onNestedDrag:()=>{},onNestedOpenChange:()=>{},onNestedRelease:()=>{},openProp:void 0,dismissible:!1,isOpen:!1,isDragging:!1,keyboardIsOpen:{current:!1},snapPointsOffset:null,snapPoints:null,handleOnly:!1,modal:!1,shouldFade:!1,activeSnapPoint:null,onOpenChange:()=>{},setActiveSnapPoint:()=>{},closeDrawer:()=>{},direction:"bottom",shouldAnimate:{current:!0},shouldScaleBackground:!1,setBackgroundColorOnScale:!0,noBodyStyles:!1,container:null,autoFocus:!1}),Yd=()=>{const e=w.useContext(jH);if(!e)throw new Error("useDrawerContext must be used within a Drawer.Root");return e};bre(`[data-vaul-drawer]{touch-action:none;will-change:transform;transition:transform .5s cubic-bezier(.32, .72, 0, 1);animation-duration:.5s;animation-timing-function:cubic-bezier(0.32,0.72,0,1)}[data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=bottom][data-state=open]{animation-name:slideFromBottom}[data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=bottom][data-state=closed]{animation-name:slideToBottom}[data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=top][data-state=open]{animation-name:slideFromTop}[data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=top][data-state=closed]{animation-name:slideToTop}[data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=left][data-state=open]{animation-name:slideFromLeft}[data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=left][data-state=closed]{animation-name:slideToLeft}[data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=right][data-state=open]{animation-name:slideFromRight}[data-vaul-drawer][data-vaul-snap-points=false][data-vaul-drawer-direction=right][data-state=closed]{animation-name:slideToRight}[data-vaul-drawer][data-vaul-snap-points=true][data-vaul-drawer-direction=bottom]{transform:translate3d(0,var(--initial-transform,100%),0)}[data-vaul-drawer][data-vaul-snap-points=true][data-vaul-drawer-direction=top]{transform:translate3d(0,calc(var(--initial-transform,100%) * -1),0)}[data-vaul-drawer][data-vaul-snap-points=true][data-vaul-drawer-direction=left]{transform:translate3d(calc(var(--initial-transform,100%) * -1),0,0)}[data-vaul-drawer][data-vaul-snap-points=true][data-vaul-drawer-direction=right]{transform:translate3d(var(--initial-transform,100%),0,0)}[data-vaul-drawer][data-vaul-delayed-snap-points=true][data-vaul-drawer-direction=top]{transform:translate3d(0,var(--snap-point-height,0),0)}[data-vaul-drawer][data-vaul-delayed-snap-points=true][data-vaul-drawer-direction=bottom]{transform:translate3d(0,var(--snap-point-height,0),0)}[data-vaul-drawer][data-vaul-delayed-snap-points=true][data-vaul-drawer-direction=left]{transform:translate3d(var(--snap-point-height,0),0,0)}[data-vaul-drawer][data-vaul-delayed-snap-points=true][data-vaul-drawer-direction=right]{transform:translate3d(var(--snap-point-height,0),0,0)}[data-vaul-overlay][data-vaul-snap-points=false]{animation-duration:.5s;animation-timing-function:cubic-bezier(0.32,0.72,0,1)}[data-vaul-overlay][data-vaul-snap-points=false][data-state=open]{animation-name:fadeIn}[data-vaul-overlay][data-state=closed]{animation-name:fadeOut}[data-vaul-animate=false]{animation:none!important}[data-vaul-overlay][data-vaul-snap-points=true]{opacity:0;transition:opacity .5s cubic-bezier(.32, .72, 0, 1)}[data-vaul-overlay][data-vaul-snap-points=true]{opacity:1}[data-vaul-drawer]:not([data-vaul-custom-container=true])::after{content:'';position:absolute;background:inherit;background-color:inherit}[data-vaul-drawer][data-vaul-drawer-direction=top]::after{top:initial;bottom:100%;left:0;right:0;height:200%}[data-vaul-drawer][data-vaul-drawer-direction=bottom]::after{top:100%;bottom:initial;left:0;right:0;height:200%}[data-vaul-drawer][data-vaul-drawer-direction=left]::after{left:initial;right:100%;top:0;bottom:0;width:200%}[data-vaul-drawer][data-vaul-drawer-direction=right]::after{left:100%;right:initial;top:0;bottom:0;width:200%}[data-vaul-overlay][data-vaul-snap-points=true]:not([data-vaul-snap-points-overlay=true]):not(
69
+ [data-state=closed]
70
+ ){opacity:0}[data-vaul-overlay][data-vaul-snap-points-overlay=true]{opacity:1}[data-vaul-handle]{display:block;position:relative;opacity:.7;background:#e2e2e4;margin-left:auto;margin-right:auto;height:5px;width:32px;border-radius:1rem;touch-action:pan-y}[data-vaul-handle]:active,[data-vaul-handle]:hover{opacity:1}[data-vaul-handle-hitarea]{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:max(100%,2.75rem);height:max(100%,2.75rem);touch-action:inherit}@media (hover:hover) and (pointer:fine){[data-vaul-drawer]{user-select:none}}@media (pointer:fine){[data-vaul-handle-hitarea]:{width:100%;height:100%}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeOut{to{opacity:0}}@keyframes slideFromBottom{from{transform:translate3d(0,var(--initial-transform,100%),0)}to{transform:translate3d(0,0,0)}}@keyframes slideToBottom{to{transform:translate3d(0,var(--initial-transform,100%),0)}}@keyframes slideFromTop{from{transform:translate3d(0,calc(var(--initial-transform,100%) * -1),0)}to{transform:translate3d(0,0,0)}}@keyframes slideToTop{to{transform:translate3d(0,calc(var(--initial-transform,100%) * -1),0)}}@keyframes slideFromLeft{from{transform:translate3d(calc(var(--initial-transform,100%) * -1),0,0)}to{transform:translate3d(0,0,0)}}@keyframes slideToLeft{to{transform:translate3d(calc(var(--initial-transform,100%) * -1),0,0)}}@keyframes slideFromRight{from{transform:translate3d(var(--initial-transform,100%),0,0)}to{transform:translate3d(0,0,0)}}@keyframes slideToRight{to{transform:translate3d(var(--initial-transform,100%),0,0)}}`);function Mre(){const e=navigator.userAgent;return typeof window<"u"&&(/Firefox/.test(e)&&/Mobile/.test(e)||/FxiOS/.test(e))}function wre(){return HA(/^Mac/)}function xre(){return HA(/^iPhone/)}function HH(){return/^((?!chrome|android).)*safari/i.test(navigator.userAgent)}function Nre(){return HA(/^iPad/)||wre()&&navigator.maxTouchPoints>1}function VH(){return xre()||Nre()}function HA(e){return typeof window<"u"&&window.navigator!=null?e.test(window.navigator.platform):void 0}const Cre=24,$re=typeof window<"u"?w.useLayoutEffect:w.useEffect;function FH(...e){return(...t)=>{for(let o of e)typeof o=="function"&&o(...t)}}const VA=typeof document<"u"&&window.visualViewport;function BH(e){let t=window.getComputedStyle(e);return/(auto|scroll)/.test(t.overflow+t.overflowX+t.overflowY)}function WH(e){for(BH(e)&&(e=e.parentElement);e&&!BH(e);)e=e.parentElement;return e||document.scrollingElement||document.documentElement}const Sre=new Set(["checkbox","radio","range","color","file","image","button","submit","reset"]);let v$=0,FA;function Lre(e={}){let{isDisabled:t}=e;$re(()=>{if(!t)return v$++,v$===1&&VH()&&(FA=Ire()),()=>{v$--,v$===0&&FA?.()}},[t])}function Ire(){let e,t=0,o=h=>{e=WH(h.target),!(e===document.documentElement&&e===document.body)&&(t=h.changedTouches[0].pageY)},n=h=>{if(!e||e===document.documentElement||e===document.body){h.preventDefault();return}let f=h.changedTouches[0].pageY,k=e.scrollTop,m=e.scrollHeight-e.clientHeight;m!==0&&((k<=0&&f>t||k>=m&&f<t)&&h.preventDefault(),t=f)},a=h=>{let f=h.target;BA(f)&&f!==document.activeElement&&(h.preventDefault(),f.style.transform="translateY(-2000px)",f.focus(),requestAnimationFrame(()=>{f.style.transform=""}))},r=h=>{let f=h.target;BA(f)&&(f.style.transform="translateY(-2000px)",requestAnimationFrame(()=>{f.style.transform="",VA&&(VA.height<window.innerHeight?requestAnimationFrame(()=>{UH(f)}):VA.addEventListener("resize",()=>UH(f),{once:!0}))}))},c=()=>{window.scrollTo(0,0)},s=window.pageXOffset,l=window.pageYOffset,u=FH(Are(document.documentElement,"paddingRight",`${window.innerWidth-document.documentElement.clientWidth}px`));window.scrollTo(0,0);let y=FH(Xd(document,"touchstart",o,{passive:!1,capture:!0}),Xd(document,"touchmove",n,{passive:!1,capture:!0}),Xd(document,"touchend",a,{passive:!1,capture:!0}),Xd(document,"focus",r,!0),Xd(window,"scroll",c));return()=>{u(),y(),window.scrollTo(s,l)}}function Are(e,t,o){let n=e.style[t];return e.style[t]=o,()=>{e.style[t]=n}}function Xd(e,t,o,n){return e.addEventListener(t,o,n),()=>{e.removeEventListener(t,o,n)}}function UH(e){let t=document.scrollingElement||document.documentElement;for(;e&&e!==t;){let o=WH(e);if(o!==document.documentElement&&o!==document.body&&o!==e){let n=o.getBoundingClientRect().top,a=e.getBoundingClientRect().top,r=e.getBoundingClientRect().bottom;const c=o.getBoundingClientRect().bottom+Cre;r>c&&(o.scrollTop+=a-n)}e=o.parentElement}}function BA(e){return e instanceof HTMLInputElement&&!Sre.has(e.type)||e instanceof HTMLTextAreaElement||e instanceof HTMLElement&&e.isContentEditable}function Pre(e,t){typeof e=="function"?e(t):e!=null&&(e.current=t)}function Tre(...e){return t=>e.forEach(o=>Pre(o,t))}function RH(...e){return p.useCallback(Tre(...e),e)}const GH=new WeakMap;function ut(e,t,o=!1){if(!e||!(e instanceof HTMLElement))return;let n={};Object.entries(t).forEach(([a,r])=>{if(a.startsWith("--")){e.style.setProperty(a,r);return}n[a]=e.style[a],e.style[a]=r}),!o&&GH.set(e,n)}function Dre(e,t){if(!e||!(e instanceof HTMLElement))return;let o=GH.get(e);o&&(e.style[t]=o[t])}const st=e=>{switch(e){case"top":case"bottom":return!0;case"left":case"right":return!1;default:return e}};function _$(e,t){if(!e)return null;const o=window.getComputedStyle(e),n=o.transform||o.webkitTransform||o.mozTransform;let a=n.match(/^matrix3d\((.+)\)$/);return a?parseFloat(a[1].split(", ")[st(t)?13:12]):(a=n.match(/^matrix\((.+)\)$/),a?parseFloat(a[1].split(", ")[st(t)?5:4]):null)}function Ere(e){return 8*(Math.log(e+1)-2)}function WA(e,t){if(!e)return()=>{};const o=e.style.cssText;return Object.assign(e.style,t),()=>{e.style.cssText=o}}function zre(...e){return(...t)=>{for(const o of e)typeof o=="function"&&o(...t)}}const tt={DURATION:.5,EASE:[.32,.72,0,1]},KH=.4,Ore=.25,qre=100,YH=8,Dc=16,UA=26,RA="vaul-dragging";function XH(e){const t=w.useRef(e);return w.useEffect(()=>{t.current=e}),w.useMemo(()=>(...o)=>t.current==null?void 0:t.current.call(t,...o),[])}function jre({defaultProp:e,onChange:t}){const o=w.useState(e),[n]=o,a=w.useRef(n),r=XH(t);return w.useEffect(()=>{a.current!==n&&(r(n),a.current=n)},[n,a,r]),o}function ZH({prop:e,defaultProp:t,onChange:o=()=>{}}){const[n,a]=jre({defaultProp:t,onChange:o}),r=e!==void 0,c=r?e:n,s=XH(o),l=w.useCallback(u=>{if(r){const h=typeof u=="function"?u(e):u;h!==e&&s(h)}else a(u)},[r,e,a,s]);return[c,l]}function Hre({activeSnapPointProp:e,setActiveSnapPointProp:t,snapPoints:o,drawerRef:n,overlayRef:a,fadeFromIndex:r,onSnapPointChange:c,direction:s="bottom",container:l,snapToSequentialPoint:u}){const[y,h]=ZH({prop:e,defaultProp:o?.[0],onChange:t}),[f,k]=w.useState(typeof window<"u"?{innerWidth:window.innerWidth,innerHeight:window.innerHeight}:void 0);w.useEffect(()=>{function $(){k({innerWidth:window.innerWidth,innerHeight:window.innerHeight})}return window.addEventListener("resize",$),()=>window.removeEventListener("resize",$)},[]);const m=w.useMemo(()=>y===o?.[o.length-1]||null,[o,y]),g=w.useMemo(()=>{var $;return($=o?.findIndex(L=>L===y))!=null?$:null},[o,y]),_=o&&o.length>0&&(r||r===0)&&!Number.isNaN(r)&&o[r]===y||!o,v=w.useMemo(()=>{const $=l?{width:l.getBoundingClientRect().width,height:l.getBoundingClientRect().height}:typeof window<"u"?{width:window.innerWidth,height:window.innerHeight}:{width:0,height:0};var L;return(L=o?.map(A=>{const q=typeof A=="string";let z=0;if(q&&(z=parseInt(A,10)),st(s)){const D=q?z:f?A*$.height:0;return f?s==="bottom"?$.height-D:-$.height+D:D}const O=q?z:f?A*$.width:0;return f?s==="right"?$.width-O:-$.width+O:O}))!=null?L:[]},[o,f,l]),b=w.useMemo(()=>g!==null?v?.[g]:null,[v,g]),M=w.useCallback($=>{var L;const A=(L=v?.findIndex(q=>q===$))!=null?L:null;c(A),ut(n.current,{transition:`transform ${tt.DURATION}s cubic-bezier(${tt.EASE.join(",")})`,transform:st(s)?`translate3d(0, ${$}px, 0)`:`translate3d(${$}px, 0, 0)`}),v&&A!==v.length-1&&r!==void 0&&A!==r&&A<r?ut(a.current,{transition:`opacity ${tt.DURATION}s cubic-bezier(${tt.EASE.join(",")})`,opacity:"0"}):ut(a.current,{transition:`opacity ${tt.DURATION}s cubic-bezier(${tt.EASE.join(",")})`,opacity:"1"}),h(o?.[Math.max(A,0)])},[n.current,o,v,r,a,h]);w.useEffect(()=>{if(y||e){var $;const L=($=o?.findIndex(A=>A===e||A===y))!=null?$:-1;v&&L!==-1&&typeof v[L]=="number"&&M(v[L])}},[y,e,o,v,M]);function x({draggedDistance:$,closeDrawer:L,velocity:A,dismissible:q}){if(r===void 0)return;const z=s==="bottom"||s==="right"?(b??0)-$:(b??0)+$,O=g===r-1,D=g===0,U=$>0;if(O&&ut(a.current,{transition:`opacity ${tt.DURATION}s cubic-bezier(${tt.EASE.join(",")})`}),!u&&A>2&&!U){q?L():M(v[0]);return}if(!u&&A>2&&U&&v&&o){M(v[o.length-1]);return}const G=v?.reduce((Y,P)=>typeof Y!="number"||typeof P!="number"?Y:Math.abs(P-z)<Math.abs(Y-z)?P:Y),H=st(s)?window.innerHeight:window.innerWidth;if(A>KH&&Math.abs($)<H*.4){const Y=U?1:-1;if(Y>0&&m&&o){M(v[o.length-1]);return}if(D&&Y<0&&q&&L(),g===null)return;M(v[g+Y]);return}M(G)}function N({draggedDistance:$}){if(b===null)return;const L=s==="bottom"||s==="right"?b-$:b+$;(s==="bottom"||s==="right")&&L<v[v.length-1]||(s==="top"||s==="left")&&L>v[v.length-1]||ut(n.current,{transform:st(s)?`translate3d(0, ${L}px, 0)`:`translate3d(${L}px, 0, 0)`})}function C($,L){if(!o||typeof g!="number"||!v||r===void 0)return null;const A=g===r-1;if(g>=r&&L)return 0;if(A&&!L)return 1;if(!_&&!A)return null;const z=A?g+1:g-1,O=A?v[z]-v[z-1]:v[z+1]-v[z],D=$/Math.abs(O);return A?1-D:D}return{isLastSnapPoint:m,activeSnapPoint:y,shouldFade:_,getPercentageDragged:C,setActiveSnapPoint:h,activeSnapPointIndex:g,onRelease:x,onDrag:N,snapPointsOffset:v}}const Vre=()=>()=>{};function Fre(){const{direction:e,isOpen:t,shouldScaleBackground:o,setBackgroundColorOnScale:n,noBodyStyles:a}=Yd(),r=w.useRef(null),c=w.useMemo(()=>document.body.style.backgroundColor,[]);function s(){return(window.innerWidth-UA)/window.innerWidth}w.useEffect(()=>{if(t&&o){r.current&&clearTimeout(r.current);const l=document.querySelector("[data-vaul-drawer-wrapper]")||document.querySelector("[vaul-drawer-wrapper]");if(!l)return;zre(n&&!a?WA(document.body,{background:"black"}):Vre,WA(l,{transformOrigin:st(e)?"top":"left",transitionProperty:"transform, border-radius",transitionDuration:`${tt.DURATION}s`,transitionTimingFunction:`cubic-bezier(${tt.EASE.join(",")})`}));const u=WA(l,{borderRadius:`${YH}px`,overflow:"hidden",...st(e)?{transform:`scale(${s()}) translate3d(0, calc(env(safe-area-inset-top) + 14px), 0)`}:{transform:`scale(${s()}) translate3d(calc(env(safe-area-inset-top) + 14px), 0, 0)`}});return()=>{u(),r.current=window.setTimeout(()=>{c?document.body.style.background=c:document.body.style.removeProperty("background")},tt.DURATION*1e3)}}},[t,o,c])}let Zd=null;function Bre({isOpen:e,modal:t,nested:o,hasBeenOpened:n,preventScrollRestoration:a,noBodyStyles:r}){const[c,s]=w.useState(()=>typeof window<"u"?window.location.href:""),l=w.useRef(0),u=w.useCallback(()=>{if(HH()&&Zd===null&&e&&!r){Zd={position:document.body.style.position,top:document.body.style.top,left:document.body.style.left,height:document.body.style.height,right:"unset"};const{scrollX:h,innerHeight:f}=window;document.body.style.setProperty("position","fixed","important"),Object.assign(document.body.style,{top:`${-l.current}px`,left:`${-h}px`,right:"0px",height:"auto"}),window.setTimeout(()=>window.requestAnimationFrame(()=>{const k=f-window.innerHeight;k&&l.current>=f&&(document.body.style.top=`${-(l.current+k)}px`)}),300)}},[e]),y=w.useCallback(()=>{if(HH()&&Zd!==null&&!r){const h=-parseInt(document.body.style.top,10),f=-parseInt(document.body.style.left,10);Object.assign(document.body.style,Zd),window.requestAnimationFrame(()=>{if(a&&c!==window.location.href){s(window.location.href);return}window.scrollTo(f,h)}),Zd=null}},[c]);return w.useEffect(()=>{function h(){l.current=window.scrollY}return h(),window.addEventListener("scroll",h),()=>{window.removeEventListener("scroll",h)}},[]),w.useEffect(()=>{if(t)return()=>{typeof document>"u"||document.querySelector("[data-vaul-drawer]")||y()}},[t,y]),w.useEffect(()=>{o||!n||(e?(!window.matchMedia("(display-mode: standalone)").matches&&u(),t||window.setTimeout(()=>{y()},500)):y())},[e,n,c,t,o,u,y]),{restorePositionSetting:y}}function Wre({open:e,onOpenChange:t,children:o,onDrag:n,onRelease:a,snapPoints:r,shouldScaleBackground:c=!1,setBackgroundColorOnScale:s=!0,closeThreshold:l=Ore,scrollLockTimeout:u=qre,dismissible:y=!0,handleOnly:h=!1,fadeFromIndex:f=r&&r.length-1,activeSnapPoint:k,setActiveSnapPoint:m,fixed:g,modal:_=!0,onClose:v,nested:b,noBodyStyles:M=!1,direction:x="bottom",defaultOpen:N=!1,disablePreventScroll:C=!0,snapToSequentialPoint:$=!1,preventScrollRestoration:L=!1,repositionInputs:A=!0,onAnimationEnd:q,container:z,autoFocus:O=!1}){var D,U;const[G=!1,H]=ZH({defaultProp:N,prop:e,onChange:oe=>{t?.(oe),!oe&&!b&&ae(),setTimeout(()=>{q?.(oe)},tt.DURATION*1e3),oe&&!_&&typeof window<"u"&&window.requestAnimationFrame(()=>{document.body.style.pointerEvents="auto"}),oe||(document.body.style.pointerEvents="auto")}}),[Y,P]=w.useState(!1),[F,ne]=w.useState(!1),[de,B]=w.useState(!1),W=w.useRef(null),K=w.useRef(null),R=w.useRef(null),re=w.useRef(null),V=w.useRef(null),te=w.useRef(!1),fe=w.useRef(null),pe=w.useRef(0),le=w.useRef(!1),ee=w.useRef(!N),_e=w.useRef(0),j=w.useRef(null),ue=w.useRef(((D=j.current)==null?void 0:D.getBoundingClientRect().height)||0),xe=w.useRef(((U=j.current)==null?void 0:U.getBoundingClientRect().width)||0),Ce=w.useRef(0),De=w.useCallback(oe=>{r&&oe===E.length-1&&(K.current=new Date)},[]),{activeSnapPoint:$e,activeSnapPointIndex:Pe,setActiveSnapPoint:T,onRelease:I,snapPointsOffset:E,onDrag:Q,shouldFade:Z,getPercentageDragged:J}=Hre({snapPoints:r,activeSnapPointProp:k,setActiveSnapPointProp:m,drawerRef:j,fadeFromIndex:f,overlayRef:W,onSnapPointChange:De,direction:x,container:z,snapToSequentialPoint:$});Lre({isDisabled:!G||F||!_||de||!Y||!A||!C});const{restorePositionSetting:ae}=Bre({isOpen:G,modal:_,nested:b??!1,hasBeenOpened:Y,preventScrollRestoration:L,noBodyStyles:M});function Ne(){return(window.innerWidth-UA)/window.innerWidth}function Se(oe){var ve,he;!y&&!r||j.current&&!j.current.contains(oe.target)||(ue.current=((ve=j.current)==null?void 0:ve.getBoundingClientRect().height)||0,xe.current=((he=j.current)==null?void 0:he.getBoundingClientRect().width)||0,ne(!0),R.current=new Date,VH()&&window.addEventListener("touchend",()=>te.current=!1,{once:!0}),oe.target.setPointerCapture(oe.pointerId),pe.current=st(x)?oe.pageY:oe.pageX)}function Te(oe,ve){var he;let me=oe;const Le=(he=window.getSelection())==null?void 0:he.toString(),ce=j.current?_$(j.current,x):null,Ae=new Date;if(me.tagName==="SELECT"||me.hasAttribute("data-vaul-no-drag")||me.closest("[data-vaul-no-drag]"))return!1;if(x==="right"||x==="left")return!0;if(K.current&&Ae.getTime()-K.current.getTime()<500)return!1;if(ce!==null&&(x==="bottom"?ce>0:ce<0))return!0;if(Le&&Le.length>0)return!1;if(V.current&&Ae.getTime()-V.current.getTime()<u&&ce===0||ve)return V.current=Ae,!1;for(;me;){if(me.scrollHeight>me.clientHeight){if(me.scrollTop!==0)return V.current=new Date,!1;if(me.getAttribute("role")==="dialog")return!0}me=me.parentNode}return!0}function dt(oe){if(j.current&&F){const ve=x==="bottom"||x==="right"?1:-1,he=(pe.current-(st(x)?oe.pageY:oe.pageX))*ve,me=he>0,Le=r&&!y&&!me;if(Le&&Pe===0)return;const ce=Math.abs(he),Ae=document.querySelector("[data-vaul-drawer-wrapper]"),qe=x==="bottom"||x==="top"?ue.current:xe.current;let Fe=ce/qe;const gt=J(ce,me);if(gt!==null&&(Fe=gt),Le&&Fe>=1||!te.current&&!Te(oe.target,me))return;if(j.current.classList.add(RA),te.current=!0,ut(j.current,{transition:"none"}),ut(W.current,{transition:"none"}),r&&Q({draggedDistance:he}),me&&!r){const ot=Ere(he),Qo=Math.min(ot*-1,0)*ve;ut(j.current,{transform:st(x)?`translate3d(0, ${Qo}px, 0)`:`translate3d(${Qo}px, 0, 0)`});return}const je=1-Fe;if((Z||f&&Pe===f-1)&&(n?.(oe,Fe),ut(W.current,{opacity:`${je}`,transition:"none"},!0)),Ae&&W.current&&c){const ot=Math.min(Ne()+Fe*(1-Ne()),1),Qo=8-Fe*8,It=Math.max(0,14-Fe*14);ut(Ae,{borderRadius:`${Qo}px`,transform:st(x)?`scale(${ot}) translate3d(0, ${It}px, 0)`:`scale(${ot}) translate3d(${It}px, 0, 0)`,transition:"none"},!0)}if(!r){const ot=ce*ve;ut(j.current,{transform:st(x)?`translate3d(0, ${ot}px, 0)`:`translate3d(${ot}px, 0, 0)`})}}}w.useEffect(()=>{window.requestAnimationFrame(()=>{ee.current=!0})},[]),w.useEffect(()=>{var oe;function ve(){if(!j.current||!A)return;const he=document.activeElement;if(BA(he)||le.current){var me;const Le=((me=window.visualViewport)==null?void 0:me.height)||0,ce=window.innerHeight;let Ae=ce-Le;const qe=j.current.getBoundingClientRect().height||0,Fe=qe>ce*.8;Ce.current||(Ce.current=qe);const gt=j.current.getBoundingClientRect().top;if(Math.abs(_e.current-Ae)>60&&(le.current=!le.current),r&&r.length>0&&E&&Pe){const je=E[Pe]||0;Ae+=je}if(_e.current=Ae,qe>Le||le.current){const je=j.current.getBoundingClientRect().height;let ot=je;je>Le&&(ot=Le-(Fe?gt:UA)),g?j.current.style.height=`${je-Math.max(Ae,0)}px`:j.current.style.height=`${Math.max(ot,Le-gt)}px`}else Mre()||(j.current.style.height=`${Ce.current}px`);r&&r.length>0&&!le.current?j.current.style.bottom="0px":j.current.style.bottom=`${Math.max(Ae,0)}px`}}return(oe=window.visualViewport)==null||oe.addEventListener("resize",ve),()=>{var he;return(he=window.visualViewport)==null?void 0:he.removeEventListener("resize",ve)}},[Pe,r,E]);function Ve(oe){wt(),v?.(),oe||H(!1),setTimeout(()=>{r&&T(r[0])},tt.DURATION*1e3)}function nt(){if(!j.current)return;const oe=document.querySelector("[data-vaul-drawer-wrapper]"),ve=_$(j.current,x);ut(j.current,{transform:"translate3d(0, 0, 0)",transition:`transform ${tt.DURATION}s cubic-bezier(${tt.EASE.join(",")})`}),ut(W.current,{transition:`opacity ${tt.DURATION}s cubic-bezier(${tt.EASE.join(",")})`,opacity:"1"}),c&&ve&&ve>0&&G&&ut(oe,{borderRadius:`${YH}px`,overflow:"hidden",...st(x)?{transform:`scale(${Ne()}) translate3d(0, calc(env(safe-area-inset-top) + 14px), 0)`,transformOrigin:"top"}:{transform:`scale(${Ne()}) translate3d(calc(env(safe-area-inset-top) + 14px), 0, 0)`,transformOrigin:"left"},transitionProperty:"transform, border-radius",transitionDuration:`${tt.DURATION}s`,transitionTimingFunction:`cubic-bezier(${tt.EASE.join(",")})`},!0)}function wt(){!F||!j.current||(j.current.classList.remove(RA),te.current=!1,ne(!1),re.current=new Date)}function Lt(oe){if(!F||!j.current)return;j.current.classList.remove(RA),te.current=!1,ne(!1),re.current=new Date;const ve=_$(j.current,x);if(!oe||!Te(oe.target,!1)||!ve||Number.isNaN(ve)||R.current===null)return;const he=re.current.getTime()-R.current.getTime(),me=pe.current-(st(x)?oe.pageY:oe.pageX),Le=Math.abs(me)/he;if(Le>.05&&(B(!0),setTimeout(()=>{B(!1)},200)),r){I({draggedDistance:me*(x==="bottom"||x==="right"?1:-1),closeDrawer:Ve,velocity:Le,dismissible:y}),a?.(oe,!0);return}if(x==="bottom"||x==="right"?me>0:me<0){nt(),a?.(oe,!0);return}if(Le>KH){Ve(),a?.(oe,!1);return}var ce;const Ae=Math.min((ce=j.current.getBoundingClientRect().height)!=null?ce:0,window.innerHeight);var qe;const Fe=Math.min((qe=j.current.getBoundingClientRect().width)!=null?qe:0,window.innerWidth),gt=x==="left"||x==="right";if(Math.abs(ve)>=(gt?Fe:Ae)*l){Ve(),a?.(oe,!1);return}a?.(oe,!0),nt()}w.useEffect(()=>(G&&(ut(document.documentElement,{scrollBehavior:"auto"}),K.current=new Date),()=>{Dre(document.documentElement,"scrollBehavior")}),[G]);function qo(oe){const ve=oe?(window.innerWidth-Dc)/window.innerWidth:1,he=oe?-Dc:0;fe.current&&window.clearTimeout(fe.current),ut(j.current,{transition:`transform ${tt.DURATION}s cubic-bezier(${tt.EASE.join(",")})`,transform:st(x)?`scale(${ve}) translate3d(0, ${he}px, 0)`:`scale(${ve}) translate3d(${he}px, 0, 0)`}),!oe&&j.current&&(fe.current=setTimeout(()=>{const me=_$(j.current,x);ut(j.current,{transition:"none",transform:st(x)?`translate3d(0, ${me}px, 0)`:`translate3d(${me}px, 0, 0)`})},500))}function uo(oe,ve){if(ve<0)return;const he=(window.innerWidth-Dc)/window.innerWidth,me=he+ve*(1-he),Le=-Dc+ve*Dc;ut(j.current,{transform:st(x)?`scale(${me}) translate3d(0, ${Le}px, 0)`:`scale(${me}) translate3d(${Le}px, 0, 0)`,transition:"none"})}function ho(oe,ve){const he=st(x)?window.innerHeight:window.innerWidth,me=ve?(he-Dc)/he:1,Le=ve?-Dc:0;ve&&ut(j.current,{transition:`transform ${tt.DURATION}s cubic-bezier(${tt.EASE.join(",")})`,transform:st(x)?`scale(${me}) translate3d(0, ${Le}px, 0)`:`scale(${me}) translate3d(${Le}px, 0, 0)`})}return w.useEffect(()=>{_||window.requestAnimationFrame(()=>{document.body.style.pointerEvents="auto"})},[_]),w.createElement(pd,{defaultOpen:N,onOpenChange:oe=>{!y&&!oe||(oe?P(!0):Ve(!0),H(oe))},open:G},w.createElement(jH.Provider,{value:{activeSnapPoint:$e,snapPoints:r,setActiveSnapPoint:T,drawerRef:j,overlayRef:W,onOpenChange:t,onPress:Se,onRelease:Lt,onDrag:dt,dismissible:y,shouldAnimate:ee,handleOnly:h,isOpen:G,isDragging:F,shouldFade:Z,closeDrawer:Ve,onNestedDrag:uo,onNestedOpenChange:qo,onNestedRelease:ho,keyboardIsOpen:le,modal:_,snapPointsOffset:E,activeSnapPointIndex:Pe,direction:x,shouldScaleBackground:c,setBackgroundColorOnScale:s,noBodyStyles:M,container:z,autoFocus:O}},o))}const QH=w.forwardRef(function({...e},t){const{overlayRef:o,snapPoints:n,onRelease:a,shouldFade:r,isOpen:c,modal:s,shouldAnimate:l}=Yd(),u=RH(t,o),y=n&&n.length>0;if(!s)return null;const h=w.useCallback(f=>a(f),[a]);return w.createElement(Cc,{onMouseUp:h,ref:u,"data-vaul-overlay":"","data-vaul-snap-points":c&&y?"true":"false","data-vaul-snap-points-overlay":c&&r?"true":"false","data-vaul-animate":l?.current?"true":"false",...e})});QH.displayName="Drawer.Overlay";const JH=w.forwardRef(function({onPointerDownOutside:e,style:t,onOpenAutoFocus:o,...n},a){const{drawerRef:r,onPress:c,onRelease:s,onDrag:l,keyboardIsOpen:u,snapPointsOffset:y,activeSnapPointIndex:h,modal:f,isOpen:k,direction:m,snapPoints:g,container:_,handleOnly:v,shouldAnimate:b,autoFocus:M}=Yd(),[x,N]=w.useState(!1),C=RH(a,r),$=w.useRef(null),L=w.useRef(null),A=w.useRef(!1),q=g&&g.length>0;Fre();const z=(D,U,G=0)=>{if(A.current)return!0;const H=Math.abs(D.y),Y=Math.abs(D.x),P=Y>H,F=["bottom","right"].includes(U)?1:-1;if(U==="left"||U==="right"){if(!(D.x*F<0)&&Y>=0&&Y<=G)return P}else if(!(D.y*F<0)&&H>=0&&H<=G)return!P;return A.current=!0,!0};w.useEffect(()=>{q&&window.requestAnimationFrame(()=>{N(!0)})},[]);function O(D){$.current=null,A.current=!1,s(D)}return w.createElement($c,{"data-vaul-drawer-direction":m,"data-vaul-drawer":"","data-vaul-delayed-snap-points":x?"true":"false","data-vaul-snap-points":k&&q?"true":"false","data-vaul-custom-container":_?"true":"false","data-vaul-animate":b?.current?"true":"false",...n,ref:C,style:y&&y.length>0?{"--snap-point-height":`${y[h??0]}px`,...t}:t,onPointerDown:D=>{v||(n.onPointerDown==null||n.onPointerDown.call(n,D),$.current={x:D.pageX,y:D.pageY},c(D))},onOpenAutoFocus:D=>{o?.(D),M||D.preventDefault()},onPointerDownOutside:D=>{if(e?.(D),!f||D.defaultPrevented){D.preventDefault();return}u.current&&(u.current=!1)},onFocusOutside:D=>{if(!f){D.preventDefault();return}},onPointerMove:D=>{if(L.current=D,v||(n.onPointerMove==null||n.onPointerMove.call(n,D),!$.current))return;const U=D.pageY-$.current.y,G=D.pageX-$.current.x,H=D.pointerType==="touch"?10:2;z({x:G,y:U},m,H)?l(D):(Math.abs(G)>H||Math.abs(U)>H)&&($.current=null)},onPointerUp:D=>{n.onPointerUp==null||n.onPointerUp.call(n,D),$.current=null,A.current=!1,s(D)},onPointerOut:D=>{n.onPointerOut==null||n.onPointerOut.call(n,D),O(L.current)},onContextMenu:D=>{n.onContextMenu==null||n.onContextMenu.call(n,D),L.current&&O(L.current)}})});JH.displayName="Drawer.Content";const Ure=250,Rre=120,Gre=w.forwardRef(function({preventCycle:e=!1,children:t,...o},n){const{closeDrawer:a,isDragging:r,snapPoints:c,activeSnapPoint:s,setActiveSnapPoint:l,dismissible:u,handleOnly:y,isOpen:h,onPress:f,onDrag:k}=Yd(),m=w.useRef(null),g=w.useRef(!1);function _(){if(g.current){M();return}window.setTimeout(()=>{v()},Rre)}function v(){if(r||e||g.current){M();return}if(M(),!c||c.length===0){u||a();return}if(s===c[c.length-1]&&u){a();return}const N=c.findIndex($=>$===s);if(N===-1)return;const C=c[N+1];l(C)}function b(){m.current=window.setTimeout(()=>{g.current=!0},Ure)}function M(){m.current&&window.clearTimeout(m.current),g.current=!1}return w.createElement("div",{onClick:_,onPointerCancel:M,onPointerDown:x=>{y&&f(x),b()},onPointerMove:x=>{y&&k(x)},ref:n,"data-vaul-drawer-visible":h?"true":"false","data-vaul-handle":"","aria-hidden":"true",...o},w.createElement("span",{"data-vaul-handle-hitarea":"","aria-hidden":"true"},t))});Gre.displayName="Drawer.Handle";function Kre(e){const t=Yd(),{container:o=t.container,...n}=e;return w.createElement(yd,{container:o,...n})}const io={Root:Wre,Content:JH,Overlay:QH,Trigger:qC,Portal:Kre,Close:fd,Title:is,Description:cs},eV=({shouldScaleBackground:e=!0,...t})=>d.jsx(io.Root,{shouldScaleBackground:e,...t});eV.displayName="Drawer";const Yre=io.Trigger,Xre=io.Portal,Zre=io.Close,tV=p.forwardRef(({className:e,...t},o)=>d.jsx(io.Overlay,{ref:o,className:S("fixed inset-0 z-50 bg-black/80",e),...t}));tV.displayName=io.Overlay.displayName;const oV=p.forwardRef(({className:e,children:t,...o},n)=>d.jsxs(Xre,{children:[d.jsx(tV,{}),d.jsxs(io.Content,{ref:n,className:S("fixed inset-x-0 bottom-0 z-50 mt-24 flex h-auto flex-col rounded-t-[10px] border bg-background",e),...o,children:[d.jsx("div",{className:"mx-auto mt-4 h-2 w-[100px] rounded-full bg-muted"}),t]})]}));oV.displayName="DrawerContent";const nV=({className:e,...t})=>d.jsx("div",{className:S("grid gap-1.5 p-4 text-center sm:text-left",e),...t});nV.displayName="DrawerHeader";const aV=({className:e,...t})=>d.jsx("div",{className:S("mt-auto flex flex-col gap-2 p-4",e),...t});aV.displayName="DrawerFooter";const rV=p.forwardRef(({className:e,...t},o)=>d.jsx(io.Title,{ref:o,className:S("text-lg font-semibold leading-none tracking-tight",e),...t}));rV.displayName=io.Title.displayName;const iV=p.forwardRef(({className:e,...t},o)=>d.jsx(io.Description,{ref:o,className:S("text-sm text-muted-foreground",e),...t}));iV.displayName=io.Description.displayName;var b$="DropdownMenu",[Qre]=Xe(b$,[Wd]),ft=Wd(),[Jre,cV]=Qre(b$),sV=e=>{const{__scopeDropdownMenu:t,children:o,dir:n,open:a,defaultOpen:r,onOpenChange:c,modal:s=!0}=e,l=ft(t),u=p.useRef(null),[y,h]=Ke({prop:a,defaultProp:r??!1,onChange:c,caller:b$});return d.jsx(Jre,{scope:t,triggerId:We(),triggerRef:u,contentId:We(),open:y,onOpenChange:h,onOpenToggle:p.useCallback(()=>h(f=>!f),[h]),modal:s,children:d.jsx(wA,{...l,open:y,onOpenChange:h,dir:n,modal:s,children:o})})};sV.displayName=b$;var dV="DropdownMenuTrigger",lV=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,disabled:n=!1,...a}=e,r=cV(dV,o),c=ft(o);return d.jsx(xA,{asChild:!0,...c,children:d.jsx(se.button,{type:"button",id:r.triggerId,"aria-haspopup":"menu","aria-expanded":r.open,"aria-controls":r.open?r.contentId:void 0,"data-state":r.open?"open":"closed","data-disabled":n?"":void 0,disabled:n,...a,ref:Kt(t,r.triggerRef),onPointerDown:X(e.onPointerDown,s=>{!n&&s.button===0&&s.ctrlKey===!1&&(r.onOpenToggle(),r.open||s.preventDefault())}),onKeyDown:X(e.onKeyDown,s=>{n||(["Enter"," "].includes(s.key)&&r.onOpenToggle(),s.key==="ArrowDown"&&r.onOpenChange(!0),["Enter"," ","ArrowDown"].includes(s.key)&&s.preventDefault())})})})});lV.displayName=dV;var eie="DropdownMenuPortal",uV=e=>{const{__scopeDropdownMenu:t,...o}=e,n=ft(t);return d.jsx(NA,{...n,...o})};uV.displayName=eie;var hV="DropdownMenuContent",pV=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=cV(hV,o),r=ft(o),c=p.useRef(!1);return d.jsx(CA,{id:a.contentId,"aria-labelledby":a.triggerId,...r,...n,ref:t,onCloseAutoFocus:X(e.onCloseAutoFocus,s=>{c.current||a.triggerRef.current?.focus(),c.current=!1,s.preventDefault()}),onInteractOutside:X(e.onInteractOutside,s=>{const l=s.detail.originalEvent,u=l.button===0&&l.ctrlKey===!0,y=l.button===2||u;(!a.modal||y)&&(c.current=!0)}),style:{...e.style,"--radix-dropdown-menu-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-dropdown-menu-content-available-width":"var(--radix-popper-available-width)","--radix-dropdown-menu-content-available-height":"var(--radix-popper-available-height)","--radix-dropdown-menu-trigger-width":"var(--radix-popper-anchor-width)","--radix-dropdown-menu-trigger-height":"var(--radix-popper-anchor-height)"}})});pV.displayName=hV;var tie="DropdownMenuGroup",oie=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=ft(o);return d.jsx($A,{...a,...n,ref:t})});oie.displayName=tie;var nie="DropdownMenuLabel",yV=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=ft(o);return d.jsx(SA,{...a,...n,ref:t})});yV.displayName=nie;var aie="DropdownMenuItem",fV=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=ft(o);return d.jsx(LA,{...a,...n,ref:t})});fV.displayName=aie;var rie="DropdownMenuCheckboxItem",mV=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=ft(o);return d.jsx(IA,{...a,...n,ref:t})});mV.displayName=rie;var iie="DropdownMenuRadioGroup",cie=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=ft(o);return d.jsx(AA,{...a,...n,ref:t})});cie.displayName=iie;var sie="DropdownMenuRadioItem",kV=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=ft(o);return d.jsx(PA,{...a,...n,ref:t})});kV.displayName=sie;var die="DropdownMenuItemIndicator",gV=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=ft(o);return d.jsx(TA,{...a,...n,ref:t})});gV.displayName=die;var lie="DropdownMenuSeparator",vV=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=ft(o);return d.jsx(DA,{...a,...n,ref:t})});vV.displayName=lie;var uie="DropdownMenuArrow",hie=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=ft(o);return d.jsx(EA,{...a,...n,ref:t})});hie.displayName=uie;var pie=e=>{const{__scopeDropdownMenu:t,children:o,open:n,onOpenChange:a,defaultOpen:r}=e,c=ft(t),[s,l]=Ke({prop:n,defaultProp:r??!1,onChange:a,caller:"DropdownMenuSub"});return d.jsx(zA,{...c,open:s,onOpenChange:l,children:o})},yie="DropdownMenuSubTrigger",_V=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=ft(o);return d.jsx(OA,{...a,...n,ref:t})});_V.displayName=yie;var fie="DropdownMenuSubContent",bV=p.forwardRef((e,t)=>{const{__scopeDropdownMenu:o,...n}=e,a=ft(o);return d.jsx(qA,{...a,...n,ref:t,style:{...e.style,"--radix-dropdown-menu-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-dropdown-menu-content-available-width":"var(--radix-popper-available-width)","--radix-dropdown-menu-content-available-height":"var(--radix-popper-available-height)","--radix-dropdown-menu-trigger-width":"var(--radix-popper-anchor-width)","--radix-dropdown-menu-trigger-height":"var(--radix-popper-anchor-height)"}})});bV.displayName=fie;var mie=sV,kie=lV,gie=uV,MV=pV,wV=yV,xV=fV,NV=mV,CV=kV,$V=gV,SV=vV,vie=pie,LV=_V,IV=bV;const _ie=mie,bie=kie,Mie=vie,AV=p.forwardRef(({className:e,inset:t,children:o,...n},a)=>d.jsxs(LV,{ref:a,className:S("flex cursor-default select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent data-[state=open]:bg-accent [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",t&&"pl-8",e),...n,children:[o,d.jsx(Ot,{className:"ml-auto"})]}));AV.displayName=LV.displayName;const PV=p.forwardRef(({className:e,...t},o)=>d.jsx(IV,{ref:o,className:S("z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-dropdown-menu-content-transform-origin]",e),...t}));PV.displayName=IV.displayName;const TV=p.forwardRef(({className:e,sideOffset:t=4,...o},n)=>d.jsx(gie,{children:d.jsx(MV,{ref:n,sideOffset:t,className:S("z-50 max-h-[var(--radix-dropdown-menu-content-available-height)] min-w-[8rem] overflow-y-auto overflow-x-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-dropdown-menu-content-transform-origin]",e),...o})}));TV.displayName=MV.displayName;const DV=p.forwardRef(({className:e,inset:t,...o},n)=>d.jsx(xV,{ref:n,className:S("relative flex cursor-default select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",t&&"pl-8",e),...o}));DV.displayName=xV.displayName;const wie=p.forwardRef(({className:e,children:t,checked:o,...n},a)=>d.jsxs(NV,{ref:a,className:S("relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",e),checked:o,...n,children:[d.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:d.jsx($V,{children:d.jsx(yo,{className:"h-4 w-4"})})}),t]}));wie.displayName=NV.displayName;const xie=p.forwardRef(({className:e,children:t,...o},n)=>d.jsxs(CV,{ref:n,className:S("relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",e),...o,children:[d.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:d.jsx($V,{children:d.jsx(on,{className:"h-2 w-2 fill-current"})})}),t]}));xie.displayName=CV.displayName;const GA=p.forwardRef(({className:e,inset:t,...o},n)=>d.jsx(wV,{ref:n,className:S("px-2 py-1.5 text-sm font-semibold",t&&"pl-8",e),...o}));GA.displayName=wV.displayName;const KA=p.forwardRef(({className:e,...t},o)=>d.jsx(SV,{ref:o,className:S("-mx-1 my-1 h-px bg-muted",e),...t}));KA.displayName=SV.displayName;var Nie="Label",EV=p.forwardRef((e,t)=>d.jsx(ht.label,{...e,ref:t,onMouseDown:o=>{o.target.closest("button, input, select, textarea")||(e.onMouseDown?.(o),!o.defaultPrevented&&o.detail>1&&o.preventDefault())}}));EV.displayName=Nie;var zV=EV;const Cie=Wo("text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"),Vt=p.forwardRef(({className:e,...t},o)=>d.jsx(zV,{ref:o,className:S(Cie(),e),...t}));Vt.displayName=zV.displayName;const $ie=xK,OV=p.createContext(null),Sie=({...e})=>d.jsx(OV.Provider,{value:{name:e.name},children:d.jsx(MK,{...e})}),M$=()=>{const e=p.useContext(OV),t=p.useContext(qV),{getFieldState:o,formState:n}=wK();if(!e)throw new Error("useFormField should be used within <FormField>");if(!t)throw new Error("useFormField should be used within <FormItem>");const a=o(e.name,n),{id:r}=t;return{id:r,name:e.name,formItemId:`${r}-form-item`,formDescriptionId:`${r}-form-item-description`,formMessageId:`${r}-form-item-message`,...a}},qV=p.createContext(null),jV=p.forwardRef(({className:e,...t},o)=>{const n=p.useId();return d.jsx(qV.Provider,{value:{id:n},children:d.jsx("div",{ref:o,className:S("space-y-2",e),...t})})});jV.displayName="FormItem";const HV=p.forwardRef(({className:e,...t},o)=>{const{error:n,formItemId:a}=M$();return d.jsx(Vt,{ref:o,className:S(n&&"text-destructive",e),htmlFor:a,...t})});HV.displayName="FormLabel";const VV=p.forwardRef(({...e},t)=>{const{error:o,formItemId:n,formDescriptionId:a,formMessageId:r}=M$();return d.jsx(Bo,{ref:t,id:n,"aria-describedby":o?`${a} ${r}`:`${a}`,"aria-invalid":!!o,...e})});VV.displayName="FormControl";const FV=p.forwardRef(({className:e,...t},o)=>{const{formDescriptionId:n}=M$();return d.jsx("p",{ref:o,id:n,className:S("text-sm text-muted-foreground",e),...t})});FV.displayName="FormDescription";const BV=p.forwardRef(({className:e,children:t,...o},n)=>{const{error:a,formMessageId:r}=M$(),c=a?String(a?.message??""):t;return c?d.jsx("p",{ref:n,id:r,className:S("text-sm font-medium text-destructive",e),...o,children:c}):null});BV.displayName="FormMessage";var YA,w$="HoverCard",[WV]=Xe(w$,[Io]),x$=Io(),[Lie,XA]=WV(w$),UV=e=>{const{__scopeHoverCard:t,children:o,open:n,defaultOpen:a,onOpenChange:r,openDelay:c=700,closeDelay:s=300}=e,l=x$(t),u=p.useRef(0),y=p.useRef(0),h=p.useRef(!1),f=p.useRef(!1),[k,m]=Ke({prop:n,defaultProp:a??!1,onChange:r,caller:w$}),g=p.useCallback(()=>{clearTimeout(y.current),u.current=window.setTimeout(()=>m(!0),c)},[c,m]),_=p.useCallback(()=>{clearTimeout(u.current),!h.current&&!f.current&&(y.current=window.setTimeout(()=>m(!1),s))},[s,m]),v=p.useCallback(()=>m(!1),[m]);return p.useEffect(()=>()=>{clearTimeout(u.current),clearTimeout(y.current)},[]),d.jsx(Lie,{scope:t,open:k,onOpenChange:m,onOpen:g,onClose:_,onDismiss:v,hasSelectionRef:h,isPointerDownOnContentRef:f,children:d.jsx(xs,{...l,children:o})})};UV.displayName=w$;var RV="HoverCardTrigger",GV=p.forwardRef((e,t)=>{const{__scopeHoverCard:o,...n}=e,a=XA(RV,o),r=x$(o);return d.jsx(Ns,{asChild:!0,...r,children:d.jsx(se.a,{"data-state":a.open?"open":"closed",...n,ref:t,onPointerEnter:X(e.onPointerEnter,C$(a.onOpen)),onPointerLeave:X(e.onPointerLeave,C$(a.onClose)),onFocus:X(e.onFocus,a.onOpen),onBlur:X(e.onBlur,a.onClose),onTouchStart:X(e.onTouchStart,c=>c.preventDefault())})})});GV.displayName=RV;var Iie="HoverCardPortal",[jTe,Aie]=WV(Iie,{forceMount:void 0}),N$="HoverCardContent",KV=p.forwardRef((e,t)=>{const o=Aie(N$,e.__scopeHoverCard),{forceMount:n=o.forceMount,...a}=e,r=XA(N$,e.__scopeHoverCard);return d.jsx(Qe,{present:n||r.open,children:d.jsx(Pie,{"data-state":r.open?"open":"closed",...a,onPointerEnter:X(e.onPointerEnter,C$(r.onOpen)),onPointerLeave:X(e.onPointerLeave,C$(r.onClose)),ref:t})})});KV.displayName=N$;var Pie=p.forwardRef((e,t)=>{const{__scopeHoverCard:o,onEscapeKeyDown:n,onPointerDownOutside:a,onFocusOutside:r,onInteractOutside:c,...s}=e,l=XA(N$,o),u=x$(o),y=p.useRef(null),h=be(t,y),[f,k]=p.useState(!1);return p.useEffect(()=>{if(f){const m=document.body;return YA=m.style.userSelect||m.style.webkitUserSelect,m.style.userSelect="none",m.style.webkitUserSelect="none",()=>{m.style.userSelect=YA,m.style.webkitUserSelect=YA}}},[f]),p.useEffect(()=>{if(y.current){const m=()=>{k(!1),l.isPointerDownOnContentRef.current=!1,setTimeout(()=>{document.getSelection()?.toString()!==""&&(l.hasSelectionRef.current=!0)})};return document.addEventListener("pointerup",m),()=>{document.removeEventListener("pointerup",m),l.hasSelectionRef.current=!1,l.isPointerDownOnContentRef.current=!1}}},[l.isPointerDownOnContentRef,l.hasSelectionRef]),p.useEffect(()=>{y.current&&Eie(y.current).forEach(g=>g.setAttribute("tabindex","-1"))}),d.jsx(dn,{asChild:!0,disableOutsidePointerEvents:!1,onInteractOutside:c,onEscapeKeyDown:n,onPointerDownOutside:a,onFocusOutside:X(r,m=>{m.preventDefault()}),onDismiss:l.onDismiss,children:d.jsx(Od,{...u,...s,onPointerDown:X(s.onPointerDown,m=>{m.currentTarget.contains(m.target)&&k(!0),l.hasSelectionRef.current=!1,l.isPointerDownOnContentRef.current=!0}),ref:h,style:{...s.style,userSelect:f?"text":void 0,WebkitUserSelect:f?"text":void 0,"--radix-hover-card-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-hover-card-content-available-width":"var(--radix-popper-available-width)","--radix-hover-card-content-available-height":"var(--radix-popper-available-height)","--radix-hover-card-trigger-width":"var(--radix-popper-anchor-width)","--radix-hover-card-trigger-height":"var(--radix-popper-anchor-height)"}})})}),Tie="HoverCardArrow",Die=p.forwardRef((e,t)=>{const{__scopeHoverCard:o,...n}=e,a=x$(o);return d.jsx(qd,{...a,...n,ref:t})});Die.displayName=Tie;function C$(e){return t=>t.pointerType==="touch"?void 0:e()}function Eie(e){const t=[],o=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:n=>n.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP});for(;o.nextNode();)t.push(o.currentNode);return t}var zie=UV,Oie=GV,YV=KV;const qie=zie,jie=Oie,XV=p.forwardRef(({className:e,align:t="center",sideOffset:o=4,...n},a)=>d.jsx(YV,{ref:a,align:t,sideOffset:o,className:S("z-50 w-64 rounded-md border bg-popover p-4 text-popover-foreground shadow-md outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-hover-card-content-transform-origin]",e),...n}));XV.displayName=YV.displayName;var Hie=Object.defineProperty,Vie=Object.defineProperties,Fie=Object.getOwnPropertyDescriptors,$$=Object.getOwnPropertySymbols,ZV=Object.prototype.hasOwnProperty,QV=Object.prototype.propertyIsEnumerable,JV=(e,t,o)=>t in e?Hie(e,t,{enumerable:!0,configurable:!0,writable:!0,value:o}):e[t]=o,Bie=(e,t)=>{for(var o in t||(t={}))ZV.call(t,o)&&JV(e,o,t[o]);if($$)for(var o of $$(t))QV.call(t,o)&&JV(e,o,t[o]);return e},Wie=(e,t)=>Vie(e,Fie(t)),Uie=(e,t)=>{var o={};for(var n in e)ZV.call(e,n)&&t.indexOf(n)<0&&(o[n]=e[n]);if(e!=null&&$$)for(var n of $$(e))t.indexOf(n)<0&&QV.call(e,n)&&(o[n]=e[n]);return o};function Rie(e){let t=setTimeout(e,0),o=setTimeout(e,10),n=setTimeout(e,50);return[t,o,n]}function Gie(e){let t=p.useRef();return p.useEffect(()=>{t.current=e}),t.current}var Kie=18,eF=40,Yie=`${eF}px`,Xie=["[data-lastpass-icon-root]","com-1password-button","[data-dashlanecreated]",'[style$="2147483647 !important;"]'].join(",");function Zie({containerRef:e,inputRef:t,pushPasswordManagerStrategy:o,isFocused:n}){let[a,r]=p.useState(!1),[c,s]=p.useState(!1),[l,u]=p.useState(!1),y=p.useMemo(()=>o==="none"?!1:(o==="increase-width"||o==="experimental-no-flickering")&&a&&c,[a,c,o]),h=p.useCallback(()=>{let f=e.current,k=t.current;if(!f||!k||l||o==="none")return;let m=f,g=m.getBoundingClientRect().left+m.offsetWidth,_=m.getBoundingClientRect().top+m.offsetHeight/2,v=g-Kie,b=_;document.querySelectorAll(Xie).length===0&&document.elementFromPoint(v,b)===f||(r(!0),u(!0))},[e,t,l,o]);return p.useEffect(()=>{let f=e.current;if(!f||o==="none")return;function k(){let g=window.innerWidth-f.getBoundingClientRect().right;s(g>=eF)}k();let m=setInterval(k,1e3);return()=>{clearInterval(m)}},[e,o]),p.useEffect(()=>{let f=n||document.activeElement===t.current;if(o==="none"||!f)return;let k=setTimeout(h,0),m=setTimeout(h,2e3),g=setTimeout(h,5e3),_=setTimeout(()=>{u(!0)},6e3);return()=>{clearTimeout(k),clearTimeout(m),clearTimeout(g),clearTimeout(_)}},[t,n,o,h]),{hasPWMBadge:a,willPushPWMBadge:y,PWM_BADGE_SPACE_WIDTH:Yie}}var tF=p.createContext({}),oF=p.forwardRef((e,t)=>{var o=e,{value:n,onChange:a,maxLength:r,textAlign:c="left",pattern:s,placeholder:l,inputMode:u="numeric",onComplete:y,pushPasswordManagerStrategy:h="increase-width",pasteTransformer:f,containerClassName:k,noScriptCSSFallback:m=Qie,render:g,children:_}=o,v=Uie(o,["value","onChange","maxLength","textAlign","pattern","placeholder","inputMode","onComplete","pushPasswordManagerStrategy","pasteTransformer","containerClassName","noScriptCSSFallback","render","children"]),b,M,x,N,C;let[$,L]=p.useState(typeof v.defaultValue=="string"?v.defaultValue:""),A=n??$,q=Gie(A),z=p.useCallback(j=>{a?.(j),L(j)},[a]),O=p.useMemo(()=>s?typeof s=="string"?new RegExp(s):s:null,[s]),D=p.useRef(null),U=p.useRef(null),G=p.useRef({value:A,onChange:z,isIOS:typeof window<"u"&&((M=(b=window?.CSS)==null?void 0:b.supports)==null?void 0:M.call(b,"-webkit-touch-callout","none"))}),H=p.useRef({prev:[(x=D.current)==null?void 0:x.selectionStart,(N=D.current)==null?void 0:N.selectionEnd,(C=D.current)==null?void 0:C.selectionDirection]});p.useImperativeHandle(t,()=>D.current,[]),p.useEffect(()=>{let j=D.current,ue=U.current;if(!j||!ue)return;G.current.value!==j.value&&G.current.onChange(j.value),H.current.prev=[j.selectionStart,j.selectionEnd,j.selectionDirection];function xe(){if(document.activeElement!==j){B(null),K(null);return}let $e=j.selectionStart,Pe=j.selectionEnd,T=j.selectionDirection,I=j.maxLength,E=j.value,Q=H.current.prev,Z=-1,J=-1,ae;if(E.length!==0&&$e!==null&&Pe!==null){let dt=$e===Pe,Ve=$e===E.length&&E.length<I;if(dt&&!Ve){let nt=$e;if(nt===0)Z=0,J=1,ae="forward";else if(nt===I)Z=nt-1,J=nt,ae="backward";else if(I>1&&E.length>1){let wt=0;if(Q[0]!==null&&Q[1]!==null){ae=nt<Q[1]?"backward":"forward";let Lt=Q[0]===Q[1]&&Q[0]<I;ae==="backward"&&!Lt&&(wt=-1)}Z=wt+nt,J=wt+nt+1}}Z!==-1&&J!==-1&&Z!==J&&D.current.setSelectionRange(Z,J,ae)}let Ne=Z!==-1?Z:$e,Se=J!==-1?J:Pe,Te=ae??T;B(Ne),K(Se),H.current.prev=[Ne,Se,Te]}if(document.addEventListener("selectionchange",xe,{capture:!0}),xe(),document.activeElement===j&&ne(!0),!document.getElementById("input-otp-style")){let $e=document.createElement("style");if($e.id="input-otp-style",document.head.appendChild($e),$e.sheet){let Pe="background: transparent !important; color: transparent !important; border-color: transparent !important; opacity: 0 !important; box-shadow: none !important; -webkit-box-shadow: none !important; -webkit-text-fill-color: transparent !important;";Qd($e.sheet,"[data-input-otp]::selection { background: transparent !important; color: transparent !important; }"),Qd($e.sheet,`[data-input-otp]:autofill { ${Pe} }`),Qd($e.sheet,`[data-input-otp]:-webkit-autofill { ${Pe} }`),Qd($e.sheet,"@supports (-webkit-touch-callout: none) { [data-input-otp] { letter-spacing: -.6em !important; font-weight: 100 !important; font-stretch: ultra-condensed; font-optical-sizing: none !important; left: -1px !important; right: 1px !important; } }"),Qd($e.sheet,"[data-input-otp] + * { pointer-events: all !important; }")}}let Ce=()=>{ue&&ue.style.setProperty("--root-height",`${j.clientHeight}px`)};Ce();let De=new ResizeObserver(Ce);return De.observe(j),()=>{document.removeEventListener("selectionchange",xe,{capture:!0}),De.disconnect()}},[]);let[Y,P]=p.useState(!1),[F,ne]=p.useState(!1),[de,B]=p.useState(null),[W,K]=p.useState(null);p.useEffect(()=>{Rie(()=>{var j,ue,xe,Ce;(j=D.current)==null||j.dispatchEvent(new Event("input"));let De=(ue=D.current)==null?void 0:ue.selectionStart,$e=(xe=D.current)==null?void 0:xe.selectionEnd,Pe=(Ce=D.current)==null?void 0:Ce.selectionDirection;De!==null&&$e!==null&&(B(De),K($e),H.current.prev=[De,$e,Pe])})},[A,F]),p.useEffect(()=>{q!==void 0&&A!==q&&q.length<r&&A.length===r&&y?.(A)},[r,y,q,A]);let R=Zie({containerRef:U,inputRef:D,pushPasswordManagerStrategy:h,isFocused:F}),re=p.useCallback(j=>{let ue=j.currentTarget.value.slice(0,r);if(ue.length>0&&O&&!O.test(ue)){j.preventDefault();return}typeof q=="string"&&ue.length<q.length&&document.dispatchEvent(new Event("selectionchange")),z(ue)},[r,z,q,O]),V=p.useCallback(()=>{var j;if(D.current){let ue=Math.min(D.current.value.length,r-1),xe=D.current.value.length;(j=D.current)==null||j.setSelectionRange(ue,xe),B(ue),K(xe)}ne(!0)},[r]),te=p.useCallback(j=>{var ue,xe;let Ce=D.current;if(!f&&(!G.current.isIOS||!j.clipboardData||!Ce))return;let De=j.clipboardData.getData("text/plain"),$e=f?f(De):De;j.preventDefault();let Pe=(ue=D.current)==null?void 0:ue.selectionStart,T=(xe=D.current)==null?void 0:xe.selectionEnd,I=(Pe!==T?A.slice(0,Pe)+$e+A.slice(T):A.slice(0,Pe)+$e+A.slice(Pe)).slice(0,r);if(I.length>0&&O&&!O.test(I))return;Ce.value=I,z(I);let E=Math.min(I.length,r-1),Q=I.length;Ce.setSelectionRange(E,Q),B(E),K(Q)},[r,z,O,A]),fe=p.useMemo(()=>({position:"relative",cursor:v.disabled?"default":"text",userSelect:"none",WebkitUserSelect:"none",pointerEvents:"none"}),[v.disabled]),pe=p.useMemo(()=>({position:"absolute",inset:0,width:R.willPushPWMBadge?`calc(100% + ${R.PWM_BADGE_SPACE_WIDTH})`:"100%",clipPath:R.willPushPWMBadge?`inset(0 ${R.PWM_BADGE_SPACE_WIDTH} 0 0)`:void 0,height:"100%",display:"flex",textAlign:c,opacity:"1",color:"transparent",pointerEvents:"all",background:"transparent",caretColor:"transparent",border:"0 solid transparent",outline:"0 solid transparent",boxShadow:"none",lineHeight:"1",letterSpacing:"-.5em",fontSize:"var(--root-height)",fontFamily:"monospace",fontVariantNumeric:"tabular-nums"}),[R.PWM_BADGE_SPACE_WIDTH,R.willPushPWMBadge,c]),le=p.useMemo(()=>p.createElement("input",Wie(Bie({autoComplete:v.autoComplete||"one-time-code"},v),{"data-input-otp":!0,"data-input-otp-placeholder-shown":A.length===0||void 0,"data-input-otp-mss":de,"data-input-otp-mse":W,inputMode:u,pattern:O?.source,"aria-placeholder":l,style:pe,maxLength:r,value:A,ref:D,onPaste:j=>{var ue;te(j),(ue=v.onPaste)==null||ue.call(v,j)},onChange:re,onMouseOver:j=>{var ue;P(!0),(ue=v.onMouseOver)==null||ue.call(v,j)},onMouseLeave:j=>{var ue;P(!1),(ue=v.onMouseLeave)==null||ue.call(v,j)},onFocus:j=>{var ue;V(),(ue=v.onFocus)==null||ue.call(v,j)},onBlur:j=>{var ue;ne(!1),(ue=v.onBlur)==null||ue.call(v,j)}})),[re,V,te,u,pe,r,W,de,v,O?.source,A]),ee=p.useMemo(()=>({slots:Array.from({length:r}).map((j,ue)=>{var xe;let Ce=F&&de!==null&&W!==null&&(de===W&&ue===de||ue>=de&&ue<W),De=A[ue]!==void 0?A[ue]:null,$e=A[0]!==void 0?null:(xe=l?.[ue])!=null?xe:null;return{char:De,placeholderChar:$e,isActive:Ce,hasFakeCaret:Ce&&De===null}}),isFocused:F,isHovering:!v.disabled&&Y}),[F,Y,r,W,de,v.disabled,A]),_e=p.useMemo(()=>g?g(ee):p.createElement(tF.Provider,{value:ee},_),[_,ee,g]);return p.createElement(p.Fragment,null,m!==null&&p.createElement("noscript",null,p.createElement("style",null,m)),p.createElement("div",{ref:U,"data-input-otp-container":!0,style:fe,className:k},_e,p.createElement("div",{style:{position:"absolute",inset:0,pointerEvents:"none"}},le)))});oF.displayName="Input";function Qd(e,t){try{e.insertRule(t)}catch{console.error("input-otp could not insert CSS rule:",t)}}var Qie=`
71
+ [data-input-otp] {
72
+ --nojs-bg: white !important;
73
+ --nojs-fg: black !important;
74
+
75
+ background-color: var(--nojs-bg) !important;
76
+ color: var(--nojs-fg) !important;
77
+ caret-color: var(--nojs-fg) !important;
78
+ letter-spacing: .25em !important;
79
+ text-align: center !important;
80
+ border: 1px solid var(--nojs-fg) !important;
81
+ border-radius: 4px !important;
82
+ width: 100% !important;
83
+ }
84
+ @media (prefers-color-scheme: dark) {
85
+ [data-input-otp] {
86
+ --nojs-bg: black !important;
87
+ --nojs-fg: white !important;
88
+ }
89
+ }`;const nF=p.forwardRef(({className:e,containerClassName:t,...o},n)=>d.jsx(oF,{ref:n,containerClassName:S("flex items-center gap-2 has-[:disabled]:opacity-50",t),className:S("disabled:cursor-not-allowed",e),...o}));nF.displayName="InputOTP";const aF=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,className:S("flex items-center",e),...t}));aF.displayName="InputOTPGroup";const rF=p.forwardRef(({index:e,className:t,...o},n)=>{const a=p.useContext(tF),{char:r,hasFakeCaret:c,isActive:s}=a.slots[e];return d.jsxs("div",{ref:n,className:S("relative flex h-10 w-10 items-center justify-center border-y border-r border-input text-sm transition-all first:rounded-l-md first:border-l last:rounded-r-md",s&&"z-10 ring-2 ring-ring ring-offset-background",t),...o,children:[r,c&&d.jsx("div",{className:"pointer-events-none absolute inset-0 flex items-center justify-center",children:d.jsx("div",{className:"h-4 w-px animate-caret-blink bg-foreground duration-1000"})})]})});rF.displayName="InputOTPSlot";const Jie=p.forwardRef(({...e},t)=>d.jsx("div",{ref:t,role:"separator",...e,children:d.jsx(Ks,{})}));Jie.displayName="InputOTPSeparator";const Yo=p.forwardRef(({className:e,type:t,...o},n)=>d.jsx("input",{type:t,className:S("flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-base ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",e),ref:n,...o}));Yo.displayName="Input";var Jd="Menubar",[ZA,ece,tce]=en(Jd),[iF]=Xe(Jd,[tce,Ao]),mt=Wd(),cF=Ao(),[oce,QA]=iF(Jd),sF=p.forwardRef((e,t)=>{const{__scopeMenubar:o,value:n,onValueChange:a,defaultValue:r,loop:c=!0,dir:s,...l}=e,u=Yt(s),y=cF(o),[h,f]=Ke({prop:n,onChange:a,defaultProp:r??"",caller:Jd}),[k,m]=p.useState(null);return d.jsx(oce,{scope:o,value:h,onMenuOpen:p.useCallback(g=>{f(g),m(g)},[f]),onMenuClose:p.useCallback(()=>f(""),[f]),onMenuToggle:p.useCallback(g=>{f(_=>_?"":g),m(g)},[f]),dir:u,loop:c,children:d.jsx(ZA.Provider,{scope:o,children:d.jsx(ZA.Slot,{scope:o,children:d.jsx(Hd,{asChild:!0,...y,orientation:"horizontal",loop:c,dir:u,currentTabStopId:k,onCurrentTabStopIdChange:m,children:d.jsx(se.div,{role:"menubar",...l,ref:t})})})})})});sF.displayName=Jd;var JA="MenubarMenu",[nce,dF]=iF(JA),lF=e=>{const{__scopeMenubar:t,value:o,...n}=e,a=We(),r=o||a||"LEGACY_REACT_AUTO_VALUE",c=QA(JA,t),s=mt(t),l=p.useRef(null),u=p.useRef(!1),y=c.value===r;return p.useEffect(()=>{y||(u.current=!1)},[y]),d.jsx(nce,{scope:t,value:r,triggerId:We(),triggerRef:l,contentId:We(),wasKeyboardTriggerOpenRef:u,children:d.jsx(wA,{...s,open:y,onOpenChange:h=>{h||c.onMenuClose()},modal:!1,dir:c.dir,...n})})};lF.displayName=JA;var eP="MenubarTrigger",uF=p.forwardRef((e,t)=>{const{__scopeMenubar:o,disabled:n=!1,...a}=e,r=cF(o),c=mt(o),s=QA(eP,o),l=dF(eP,o),u=p.useRef(null),y=be(t,u,l.triggerRef),[h,f]=p.useState(!1),k=s.value===l.value;return d.jsx(ZA.ItemSlot,{scope:o,value:l.value,disabled:n,children:d.jsx(Vd,{asChild:!0,...r,focusable:!n,tabStopId:l.value,children:d.jsx(xA,{asChild:!0,...c,children:d.jsx(se.button,{type:"button",role:"menuitem",id:l.triggerId,"aria-haspopup":"menu","aria-expanded":k,"aria-controls":k?l.contentId:void 0,"data-highlighted":h?"":void 0,"data-state":k?"open":"closed","data-disabled":n?"":void 0,disabled:n,...a,ref:y,onPointerDown:X(e.onPointerDown,m=>{!n&&m.button===0&&m.ctrlKey===!1&&(s.onMenuOpen(l.value),k||m.preventDefault())}),onPointerEnter:X(e.onPointerEnter,()=>{s.value&&!k&&(s.onMenuOpen(l.value),u.current?.focus())}),onKeyDown:X(e.onKeyDown,m=>{n||(["Enter"," "].includes(m.key)&&s.onMenuToggle(l.value),m.key==="ArrowDown"&&s.onMenuOpen(l.value),["Enter"," ","ArrowDown"].includes(m.key)&&(l.wasKeyboardTriggerOpenRef.current=!0,m.preventDefault()))}),onFocus:X(e.onFocus,()=>f(!0)),onBlur:X(e.onBlur,()=>f(!1))})})})})});uF.displayName=eP;var ace="MenubarPortal",hF=e=>{const{__scopeMenubar:t,...o}=e,n=mt(t);return d.jsx(NA,{...n,...o})};hF.displayName=ace;var tP="MenubarContent",pF=p.forwardRef((e,t)=>{const{__scopeMenubar:o,align:n="start",...a}=e,r=mt(o),c=QA(tP,o),s=dF(tP,o),l=ece(o),u=p.useRef(!1);return d.jsx(CA,{id:s.contentId,"aria-labelledby":s.triggerId,"data-radix-menubar-content":"",...r,...a,ref:t,align:n,onCloseAutoFocus:X(e.onCloseAutoFocus,y=>{!c.value&&!u.current&&s.triggerRef.current?.focus(),u.current=!1,y.preventDefault()}),onFocusOutside:X(e.onFocusOutside,y=>{const h=y.target;l().some(k=>k.ref.current?.contains(h))&&y.preventDefault()}),onInteractOutside:X(e.onInteractOutside,()=>{u.current=!0}),onEntryFocus:y=>{s.wasKeyboardTriggerOpenRef.current||y.preventDefault()},onKeyDown:X(e.onKeyDown,y=>{if(["ArrowRight","ArrowLeft"].includes(y.key)){const h=y.target,f=h.hasAttribute("data-radix-menubar-subtrigger"),k=h.closest("[data-radix-menubar-content]")!==y.currentTarget,g=(c.dir==="rtl"?"ArrowRight":"ArrowLeft")===y.key;if(!g&&f||k&&g)return;let b=l().filter(N=>!N.disabled).map(N=>N.value);g&&b.reverse();const M=b.indexOf(s.value);b=c.loop?vce(b,M+1):b.slice(M+1);const[x]=b;x&&c.onMenuOpen(x)}},{checkForDefaultPrevented:!1}),style:{...e.style,"--radix-menubar-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-menubar-content-available-width":"var(--radix-popper-available-width)","--radix-menubar-content-available-height":"var(--radix-popper-available-height)","--radix-menubar-trigger-width":"var(--radix-popper-anchor-width)","--radix-menubar-trigger-height":"var(--radix-popper-anchor-height)"}})});pF.displayName=tP;var rce="MenubarGroup",ice=p.forwardRef((e,t)=>{const{__scopeMenubar:o,...n}=e,a=mt(o);return d.jsx($A,{...a,...n,ref:t})});ice.displayName=rce;var cce="MenubarLabel",yF=p.forwardRef((e,t)=>{const{__scopeMenubar:o,...n}=e,a=mt(o);return d.jsx(SA,{...a,...n,ref:t})});yF.displayName=cce;var sce="MenubarItem",fF=p.forwardRef((e,t)=>{const{__scopeMenubar:o,...n}=e,a=mt(o);return d.jsx(LA,{...a,...n,ref:t})});fF.displayName=sce;var dce="MenubarCheckboxItem",mF=p.forwardRef((e,t)=>{const{__scopeMenubar:o,...n}=e,a=mt(o);return d.jsx(IA,{...a,...n,ref:t})});mF.displayName=dce;var lce="MenubarRadioGroup",uce=p.forwardRef((e,t)=>{const{__scopeMenubar:o,...n}=e,a=mt(o);return d.jsx(AA,{...a,...n,ref:t})});uce.displayName=lce;var hce="MenubarRadioItem",kF=p.forwardRef((e,t)=>{const{__scopeMenubar:o,...n}=e,a=mt(o);return d.jsx(PA,{...a,...n,ref:t})});kF.displayName=hce;var pce="MenubarItemIndicator",gF=p.forwardRef((e,t)=>{const{__scopeMenubar:o,...n}=e,a=mt(o);return d.jsx(TA,{...a,...n,ref:t})});gF.displayName=pce;var yce="MenubarSeparator",vF=p.forwardRef((e,t)=>{const{__scopeMenubar:o,...n}=e,a=mt(o);return d.jsx(DA,{...a,...n,ref:t})});vF.displayName=yce;var fce="MenubarArrow",mce=p.forwardRef((e,t)=>{const{__scopeMenubar:o,...n}=e,a=mt(o);return d.jsx(EA,{...a,...n,ref:t})});mce.displayName=fce;var _F="MenubarSub",bF=e=>{const{__scopeMenubar:t,children:o,open:n,onOpenChange:a,defaultOpen:r}=e,c=mt(t),[s,l]=Ke({prop:n,defaultProp:r??!1,onChange:a,caller:_F});return d.jsx(zA,{...c,open:s,onOpenChange:l,children:o})};bF.displayName=_F;var kce="MenubarSubTrigger",MF=p.forwardRef((e,t)=>{const{__scopeMenubar:o,...n}=e,a=mt(o);return d.jsx(OA,{"data-radix-menubar-subtrigger":"",...a,...n,ref:t})});MF.displayName=kce;var gce="MenubarSubContent",wF=p.forwardRef((e,t)=>{const{__scopeMenubar:o,...n}=e,a=mt(o);return d.jsx(qA,{...a,"data-radix-menubar-content":"",...n,ref:t,style:{...e.style,"--radix-menubar-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-menubar-content-available-width":"var(--radix-popper-available-width)","--radix-menubar-content-available-height":"var(--radix-popper-available-height)","--radix-menubar-trigger-width":"var(--radix-popper-anchor-width)","--radix-menubar-trigger-height":"var(--radix-popper-anchor-height)"}})});wF.displayName=gce;function vce(e,t){return e.map((o,n)=>e[(t+n)%e.length])}var xF=sF,_ce=lF,NF=uF,bce=hF,CF=pF,$F=yF,SF=fF,LF=mF,IF=kF,AF=gF,PF=vF,Mce=bF,TF=MF,DF=wF;function wce({...e}){return d.jsx(_ce,{...e})}function xce({...e}){return d.jsx(Mce,{"data-slot":"menubar-sub",...e})}const EF=p.forwardRef(({className:e,...t},o)=>d.jsx(xF,{ref:o,className:S("flex h-10 items-center space-x-1 rounded-md border bg-background p-1",e),...t}));EF.displayName=xF.displayName;const zF=p.forwardRef(({className:e,...t},o)=>d.jsx(NF,{ref:o,className:S("flex cursor-default select-none items-center rounded-sm px-3 py-1.5 text-sm font-medium outline-none focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground",e),...t}));zF.displayName=NF.displayName;const OF=p.forwardRef(({className:e,inset:t,children:o,...n},a)=>d.jsxs(TF,{ref:a,className:S("flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground",t&&"pl-8",e),...n,children:[o,d.jsx(Ot,{className:"ml-auto h-4 w-4"})]}));OF.displayName=TF.displayName;const qF=p.forwardRef(({className:e,...t},o)=>d.jsx(DF,{ref:o,className:S("z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-menubar-content-transform-origin]",e),...t}));qF.displayName=DF.displayName;const jF=p.forwardRef(({className:e,align:t="start",alignOffset:o=-4,sideOffset:n=8,...a},r)=>d.jsx(bce,{children:d.jsx(CF,{ref:r,align:t,alignOffset:o,sideOffset:n,className:S("z-50 min-w-[12rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-menubar-content-transform-origin]",e),...a})}));jF.displayName=CF.displayName;const oP=p.forwardRef(({className:e,inset:t,...o},n)=>d.jsx(SF,{ref:n,className:S("relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",t&&"pl-8",e),...o}));oP.displayName=SF.displayName;const Nce=p.forwardRef(({className:e,children:t,checked:o,...n},a)=>d.jsxs(LF,{ref:a,className:S("relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",e),checked:o,...n,children:[d.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:d.jsx(AF,{children:d.jsx(yo,{className:"h-4 w-4"})})}),t]}));Nce.displayName=LF.displayName;const Cce=p.forwardRef(({className:e,children:t,...o},n)=>d.jsxs(IF,{ref:n,className:S("relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",e),...o,children:[d.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:d.jsx(AF,{children:d.jsx(on,{className:"h-2 w-2 fill-current"})})}),t]}));Cce.displayName=IF.displayName;const $ce=p.forwardRef(({className:e,inset:t,...o},n)=>d.jsx($F,{ref:n,className:S("px-2 py-1.5 text-sm font-semibold",t&&"pl-8",e),...o}));$ce.displayName=$F.displayName;const HF=p.forwardRef(({className:e,...t},o)=>d.jsx(PF,{ref:o,className:S("-mx-1 my-1 h-px bg-muted",e),...t}));HF.displayName=PF.displayName;var VF=Object.freeze({position:"absolute",border:0,width:1,height:1,padding:0,margin:-1,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",wordWrap:"normal"}),Sce="VisuallyHidden",FF=p.forwardRef((e,t)=>d.jsx(se.span,{...e,ref:t,style:{...VF,...e.style}}));FF.displayName=Sce;var BF=FF,Ec="NavigationMenu",[nP,WF,Lce]=en(Ec),[aP,Ice,Ace]=en(Ec),[rP]=Xe(Ec,[Lce,Ace]),[Pce,Ft]=rP(Ec),[Tce,Dce]=rP(Ec),UF=p.forwardRef((e,t)=>{const{__scopeNavigationMenu:o,value:n,onValueChange:a,defaultValue:r,delayDuration:c=200,skipDelayDuration:s=300,orientation:l="horizontal",dir:u,...y}=e,[h,f]=p.useState(null),k=be(t,A=>f(A)),m=Yt(u),g=p.useRef(0),_=p.useRef(0),v=p.useRef(0),[b,M]=p.useState(!0),[x,N]=Ke({prop:n,onChange:A=>{const q=A!=="",z=s>0;q?(window.clearTimeout(v.current),z&&M(!1)):(window.clearTimeout(v.current),v.current=window.setTimeout(()=>M(!0),s)),a?.(A)},defaultProp:r??"",caller:Ec}),C=p.useCallback(()=>{window.clearTimeout(_.current),_.current=window.setTimeout(()=>N(""),150)},[N]),$=p.useCallback(A=>{window.clearTimeout(_.current),N(A)},[N]),L=p.useCallback(A=>{x===A?window.clearTimeout(_.current):g.current=window.setTimeout(()=>{window.clearTimeout(_.current),N(A)},c)},[x,N,c]);return p.useEffect(()=>()=>{window.clearTimeout(g.current),window.clearTimeout(_.current),window.clearTimeout(v.current)},[]),d.jsx(RF,{scope:o,isRootMenu:!0,value:x,dir:m,orientation:l,rootNavigationMenu:h,onTriggerEnter:A=>{window.clearTimeout(g.current),b?L(A):$(A)},onTriggerLeave:()=>{window.clearTimeout(g.current),C()},onContentEnter:()=>window.clearTimeout(_.current),onContentLeave:C,onItemSelect:A=>{N(q=>q===A?"":A)},onItemDismiss:()=>N(""),children:d.jsx(se.nav,{"aria-label":"Main","data-orientation":l,dir:m,...y,ref:k})})});UF.displayName=Ec;var iP="NavigationMenuSub",Ece=p.forwardRef((e,t)=>{const{__scopeNavigationMenu:o,value:n,onValueChange:a,defaultValue:r,orientation:c="horizontal",...s}=e,l=Ft(iP,o),[u,y]=Ke({prop:n,onChange:a,defaultProp:r??"",caller:iP});return d.jsx(RF,{scope:o,isRootMenu:!1,value:u,dir:l.dir,orientation:c,rootNavigationMenu:l.rootNavigationMenu,onTriggerEnter:h=>y(h),onItemSelect:h=>y(h),onItemDismiss:()=>y(""),children:d.jsx(se.div,{"data-orientation":c,...s,ref:t})})});Ece.displayName=iP;var RF=e=>{const{scope:t,isRootMenu:o,rootNavigationMenu:n,dir:a,orientation:r,children:c,value:s,onItemSelect:l,onItemDismiss:u,onTriggerEnter:y,onTriggerLeave:h,onContentEnter:f,onContentLeave:k}=e,[m,g]=p.useState(null),[_,v]=p.useState(new Map),[b,M]=p.useState(null);return d.jsx(Pce,{scope:t,isRootMenu:o,rootNavigationMenu:n,value:s,previousValue:ks(s),baseId:We(),dir:a,orientation:r,viewport:m,onViewportChange:g,indicatorTrack:b,onIndicatorTrackChange:M,onTriggerEnter:Ue(y),onTriggerLeave:Ue(h),onContentEnter:Ue(f),onContentLeave:Ue(k),onItemSelect:Ue(l),onItemDismiss:Ue(u),onViewportContentChange:p.useCallback((x,N)=>{v(C=>(C.set(x,N),new Map(C)))},[]),onViewportContentRemove:p.useCallback(x=>{v(N=>N.has(x)?(N.delete(x),new Map(N)):N)},[]),children:d.jsx(nP.Provider,{scope:t,children:d.jsx(Tce,{scope:t,items:_,children:c})})})},GF="NavigationMenuList",KF=p.forwardRef((e,t)=>{const{__scopeNavigationMenu:o,...n}=e,a=Ft(GF,o),r=d.jsx(se.ul,{"data-orientation":a.orientation,...n,ref:t});return d.jsx(se.div,{style:{position:"relative"},ref:a.onIndicatorTrackChange,children:d.jsx(nP.Slot,{scope:o,children:a.isRootMenu?d.jsx(rB,{asChild:!0,children:r}):r})})});KF.displayName=GF;var YF="NavigationMenuItem",[zce,XF]=rP(YF),ZF=p.forwardRef((e,t)=>{const{__scopeNavigationMenu:o,value:n,...a}=e,r=We(),c=n||r||"LEGACY_REACT_AUTO_VALUE",s=p.useRef(null),l=p.useRef(null),u=p.useRef(null),y=p.useRef(()=>{}),h=p.useRef(!1),f=p.useCallback((m="start")=>{if(s.current){y.current();const g=lP(s.current);g.length&&uP(m==="start"?g:g.reverse())}},[]),k=p.useCallback(()=>{if(s.current){const m=lP(s.current);m.length&&(y.current=Bce(m))}},[]);return d.jsx(zce,{scope:o,value:c,triggerRef:l,contentRef:s,focusProxyRef:u,wasEscapeCloseRef:h,onEntryKeyDown:f,onFocusProxyEnter:f,onRootContentClose:k,onContentFocusOutside:k,children:d.jsx(se.li,{...a,ref:t})})});ZF.displayName=YF;var cP="NavigationMenuTrigger",QF=p.forwardRef((e,t)=>{const{__scopeNavigationMenu:o,disabled:n,...a}=e,r=Ft(cP,e.__scopeNavigationMenu),c=XF(cP,e.__scopeNavigationMenu),s=p.useRef(null),l=be(s,c.triggerRef,t),u=sB(r.baseId,c.value),y=dB(r.baseId,c.value),h=p.useRef(!1),f=p.useRef(!1),k=c.value===r.value;return d.jsxs(d.Fragment,{children:[d.jsx(nP.ItemSlot,{scope:o,value:c.value,children:d.jsx(cB,{asChild:!0,children:d.jsx(se.button,{id:u,disabled:n,"data-disabled":n?"":void 0,"data-state":pP(k),"aria-expanded":k,"aria-controls":y,...a,ref:l,onPointerEnter:X(e.onPointerEnter,()=>{f.current=!1,c.wasEscapeCloseRef.current=!1}),onPointerMove:X(e.onPointerMove,L$(()=>{n||f.current||c.wasEscapeCloseRef.current||h.current||(r.onTriggerEnter(c.value),h.current=!0)})),onPointerLeave:X(e.onPointerLeave,L$(()=>{n||(r.onTriggerLeave(),h.current=!1)})),onClick:X(e.onClick,()=>{r.onItemSelect(c.value),f.current=k}),onKeyDown:X(e.onKeyDown,m=>{const _={horizontal:"ArrowDown",vertical:r.dir==="rtl"?"ArrowLeft":"ArrowRight"}[r.orientation];k&&m.key===_&&(c.onEntryKeyDown(),m.preventDefault())})})})}),k&&d.jsxs(d.Fragment,{children:[d.jsx(BF,{"aria-hidden":!0,tabIndex:0,ref:c.focusProxyRef,onFocus:m=>{const g=c.contentRef.current,_=m.relatedTarget,v=_===s.current,b=g?.contains(_);(v||!b)&&c.onFocusProxyEnter(v?"start":"end")}}),r.viewport&&d.jsx("span",{"aria-owns":y})]})]})});QF.displayName=cP;var Oce="NavigationMenuLink",JF="navigationMenu.linkSelect",eB=p.forwardRef((e,t)=>{const{__scopeNavigationMenu:o,active:n,onSelect:a,...r}=e;return d.jsx(cB,{asChild:!0,children:d.jsx(se.a,{"data-active":n?"":void 0,"aria-current":n?"page":void 0,...r,ref:t,onClick:X(e.onClick,c=>{const s=c.target,l=new CustomEvent(JF,{bubbles:!0,cancelable:!0});if(s.addEventListener(JF,u=>a?.(u),{once:!0}),w1(s,l),!l.defaultPrevented&&!c.metaKey){const u=new CustomEvent(S$,{bubbles:!0,cancelable:!0});w1(s,u)}},{checkForDefaultPrevented:!1})})})});eB.displayName=Oce;var sP="NavigationMenuIndicator",tB=p.forwardRef((e,t)=>{const{forceMount:o,...n}=e,a=Ft(sP,e.__scopeNavigationMenu),r=!!a.value;return a.indicatorTrack?h1.createPortal(d.jsx(Qe,{present:o||r,children:d.jsx(qce,{...n,ref:t})}),a.indicatorTrack):null});tB.displayName=sP;var qce=p.forwardRef((e,t)=>{const{__scopeNavigationMenu:o,...n}=e,a=Ft(sP,o),r=WF(o),[c,s]=p.useState(null),[l,u]=p.useState(null),y=a.orientation==="horizontal",h=!!a.value;p.useEffect(()=>{const m=r().find(g=>g.value===a.value)?.ref.current;m&&s(m)},[r,a.value]);const f=()=>{c&&u({size:y?c.offsetWidth:c.offsetHeight,offset:y?c.offsetLeft:c.offsetTop})};return hP(c,f),hP(a.indicatorTrack,f),l?d.jsx(se.div,{"aria-hidden":!0,"data-state":h?"visible":"hidden","data-orientation":a.orientation,...n,ref:t,style:{position:"absolute",...y?{left:0,width:l.size+"px",transform:`translateX(${l.offset}px)`}:{top:0,height:l.size+"px",transform:`translateY(${l.offset}px)`},...n.style}}):null}),Cs="NavigationMenuContent",oB=p.forwardRef((e,t)=>{const{forceMount:o,...n}=e,a=Ft(Cs,e.__scopeNavigationMenu),r=XF(Cs,e.__scopeNavigationMenu),c=be(r.contentRef,t),s=r.value===a.value,l={value:r.value,triggerRef:r.triggerRef,focusProxyRef:r.focusProxyRef,wasEscapeCloseRef:r.wasEscapeCloseRef,onContentFocusOutside:r.onContentFocusOutside,onRootContentClose:r.onRootContentClose,...n};return a.viewport?d.jsx(jce,{forceMount:o,...l,ref:c}):d.jsx(Qe,{present:o||s,children:d.jsx(nB,{"data-state":pP(s),...l,ref:c,onPointerEnter:X(e.onPointerEnter,a.onContentEnter),onPointerLeave:X(e.onPointerLeave,L$(a.onContentLeave)),style:{pointerEvents:!s&&a.isRootMenu?"none":void 0,...l.style}})})});oB.displayName=Cs;var jce=p.forwardRef((e,t)=>{const o=Ft(Cs,e.__scopeNavigationMenu),{onViewportContentChange:n,onViewportContentRemove:a}=o;return Ze(()=>{n(e.value,{ref:t,...e})},[e,t,n]),Ze(()=>()=>a(e.value),[e.value,a]),null}),S$="navigationMenu.rootContentDismiss",nB=p.forwardRef((e,t)=>{const{__scopeNavigationMenu:o,value:n,triggerRef:a,focusProxyRef:r,wasEscapeCloseRef:c,onRootContentClose:s,onContentFocusOutside:l,...u}=e,y=Ft(Cs,o),h=p.useRef(null),f=be(h,t),k=sB(y.baseId,n),m=dB(y.baseId,n),g=WF(o),_=p.useRef(null),{onItemDismiss:v}=y;p.useEffect(()=>{const M=h.current;if(y.isRootMenu&&M){const x=()=>{v(),s(),M.contains(document.activeElement)&&a.current?.focus()};return M.addEventListener(S$,x),()=>M.removeEventListener(S$,x)}},[y.isRootMenu,e.value,a,v,s]);const b=p.useMemo(()=>{const x=g().map(q=>q.value);y.dir==="rtl"&&x.reverse();const N=x.indexOf(y.value),C=x.indexOf(y.previousValue),$=n===y.value,L=C===x.indexOf(n);if(!$&&!L)return _.current;const A=(()=>{if(N!==C){if($&&C!==-1)return N>C?"from-end":"from-start";if(L&&N!==-1)return N>C?"to-start":"to-end"}return null})();return _.current=A,A},[y.previousValue,y.value,y.dir,g,n]);return d.jsx(rB,{asChild:!0,children:d.jsx(dn,{id:m,"aria-labelledby":k,"data-motion":b,"data-orientation":y.orientation,...u,ref:f,disableOutsidePointerEvents:!1,onDismiss:()=>{const M=new Event(S$,{bubbles:!0,cancelable:!0});h.current?.dispatchEvent(M)},onFocusOutside:X(e.onFocusOutside,M=>{l();const x=M.target;y.rootNavigationMenu?.contains(x)&&M.preventDefault()}),onPointerDownOutside:X(e.onPointerDownOutside,M=>{const x=M.target,N=g().some($=>$.ref.current?.contains(x)),C=y.isRootMenu&&y.viewport?.contains(x);(N||C||!y.isRootMenu)&&M.preventDefault()}),onKeyDown:X(e.onKeyDown,M=>{const x=M.altKey||M.ctrlKey||M.metaKey;if(M.key==="Tab"&&!x){const C=lP(M.currentTarget),$=document.activeElement,L=C.findIndex(z=>z===$),q=M.shiftKey?C.slice(0,L).reverse():C.slice(L+1,C.length);uP(q)?M.preventDefault():r.current?.focus()}}),onEscapeKeyDown:X(e.onEscapeKeyDown,M=>{c.current=!0})})})}),dP="NavigationMenuViewport",aB=p.forwardRef((e,t)=>{const{forceMount:o,...n}=e,r=!!Ft(dP,e.__scopeNavigationMenu).value;return d.jsx(Qe,{present:o||r,children:d.jsx(Hce,{...n,ref:t})})});aB.displayName=dP;var Hce=p.forwardRef((e,t)=>{const{__scopeNavigationMenu:o,children:n,...a}=e,r=Ft(dP,o),c=be(t,r.onViewportChange),s=Dce(Cs,e.__scopeNavigationMenu),[l,u]=p.useState(null),[y,h]=p.useState(null),f=l?l?.width+"px":void 0,k=l?l?.height+"px":void 0,m=!!r.value,g=m?r.value:r.previousValue;return hP(y,()=>{y&&u({width:y.offsetWidth,height:y.offsetHeight})}),d.jsx(se.div,{"data-state":pP(m),"data-orientation":r.orientation,...a,ref:c,style:{pointerEvents:!m&&r.isRootMenu?"none":void 0,"--radix-navigation-menu-viewport-width":f,"--radix-navigation-menu-viewport-height":k,...a.style},onPointerEnter:X(e.onPointerEnter,r.onContentEnter),onPointerLeave:X(e.onPointerLeave,L$(r.onContentLeave)),children:Array.from(s.items).map(([v,{ref:b,forceMount:M,...x}])=>{const N=g===v;return d.jsx(Qe,{present:M||N,children:d.jsx(nB,{...x,ref:Kt(b,C=>{N&&C&&h(C)})})},v)})})}),Vce="FocusGroup",rB=p.forwardRef((e,t)=>{const{__scopeNavigationMenu:o,...n}=e,a=Ft(Vce,o);return d.jsx(aP.Provider,{scope:o,children:d.jsx(aP.Slot,{scope:o,children:d.jsx(se.div,{dir:a.dir,...n,ref:t})})})}),iB=["ArrowRight","ArrowLeft","ArrowUp","ArrowDown"],Fce="FocusGroupItem",cB=p.forwardRef((e,t)=>{const{__scopeNavigationMenu:o,...n}=e,a=Ice(o),r=Ft(Fce,o);return d.jsx(aP.ItemSlot,{scope:o,children:d.jsx(se.button,{...n,ref:t,onKeyDown:X(e.onKeyDown,c=>{if(["Home","End",...iB].includes(c.key)){let l=a().map(h=>h.ref.current);if([r.dir==="rtl"?"ArrowRight":"ArrowLeft","ArrowUp","End"].includes(c.key)&&l.reverse(),iB.includes(c.key)){const h=l.indexOf(c.currentTarget);l=l.slice(h+1)}setTimeout(()=>uP(l)),c.preventDefault()}})})})});function lP(e){const t=[],o=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:n=>{const a=n.tagName==="INPUT"&&n.type==="hidden";return n.disabled||n.hidden||a?NodeFilter.FILTER_SKIP:n.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;o.nextNode();)t.push(o.currentNode);return t}function uP(e){const t=document.activeElement;return e.some(o=>o===t?!0:(o.focus(),document.activeElement!==t))}function Bce(e){return e.forEach(t=>{t.dataset.tabindex=t.getAttribute("tabindex")||"",t.setAttribute("tabindex","-1")}),()=>{e.forEach(t=>{const o=t.dataset.tabindex;t.setAttribute("tabindex",o)})}}function hP(e,t){const o=Ue(t);Ze(()=>{let n=0;if(e){const a=new ResizeObserver(()=>{cancelAnimationFrame(n),n=window.requestAnimationFrame(o)});return a.observe(e),()=>{window.cancelAnimationFrame(n),a.unobserve(e)}}},[e,o])}function pP(e){return e?"open":"closed"}function sB(e,t){return`${e}-trigger-${t}`}function dB(e,t){return`${e}-content-${t}`}function L$(e){return t=>t.pointerType==="mouse"?e(t):void 0}var lB=UF,uB=KF,Wce=ZF,hB=QF,Uce=eB,pB=tB,yB=oB,fB=aB;const mB=p.forwardRef(({className:e,children:t,...o},n)=>d.jsxs(lB,{ref:n,className:S("relative z-10 flex max-w-max flex-1 items-center justify-center",e),...o,children:[t,d.jsx(bB,{})]}));mB.displayName=lB.displayName;const kB=p.forwardRef(({className:e,...t},o)=>d.jsx(uB,{ref:o,className:S("group flex flex-1 list-none items-center justify-center space-x-1",e),...t}));kB.displayName=uB.displayName;const Rce=Wce,Gce=Wo("group inline-flex h-10 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-sm font-medium transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground focus:outline-none disabled:pointer-events-none disabled:opacity-50 data-[state=open]:text-accent-foreground data-[state=open]:bg-accent/50 data-[state=open]:hover:bg-accent data-[state=open]:focus:bg-accent"),gB=p.forwardRef(({className:e,children:t,...o},n)=>d.jsxs(hB,{ref:n,className:S(Gce(),"group",e),...o,children:[t," ",d.jsx(Zt,{className:"relative top-[1px] ml-1 h-3 w-3 transition duration-200 group-data-[state=open]:rotate-180","aria-hidden":"true"})]}));gB.displayName=hB.displayName;const vB=p.forwardRef(({className:e,...t},o)=>d.jsx(yB,{ref:o,className:S("left-0 top-0 w-full data-[motion^=from-]:animate-in data-[motion^=to-]:animate-out data-[motion^=from-]:fade-in data-[motion^=to-]:fade-out data-[motion=from-end]:slide-in-from-right-52 data-[motion=from-start]:slide-in-from-left-52 data-[motion=to-end]:slide-out-to-right-52 data-[motion=to-start]:slide-out-to-left-52 md:absolute md:w-auto ",e),...t}));vB.displayName=yB.displayName;const _B=Uce,bB=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{className:S("absolute left-0 top-full flex justify-center"),children:d.jsx(fB,{className:S("origin-top-center relative mt-1.5 h-[var(--radix-navigation-menu-viewport-height)] w-full overflow-hidden rounded-md border bg-popover text-popover-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 md:w-[var(--radix-navigation-menu-viewport-width)]",e),ref:o,...t})}));bB.displayName=fB.displayName;const Kce=p.forwardRef(({className:e,...t},o)=>d.jsx(pB,{ref:o,className:S("top-full z-[1] flex h-1.5 items-end justify-center overflow-hidden data-[state=visible]:animate-in data-[state=hidden]:animate-out data-[state=hidden]:fade-out data-[state=visible]:fade-in",e),...t,children:d.jsx("div",{className:"relative top-[60%] h-2 w-2 rotate-45 rounded-tl-sm bg-border shadow-md"})}));Kce.displayName=pB.displayName;const MB=({className:e,...t})=>d.jsx("nav",{role:"navigation","aria-label":"pagination",className:S("mx-auto flex w-full justify-center",e),...t});MB.displayName="Pagination";const wB=p.forwardRef(({className:e,...t},o)=>d.jsx("ul",{ref:o,className:S("flex flex-row items-center gap-1",e),...t}));wB.displayName="PaginationContent";const I$=p.forwardRef(({className:e,...t},o)=>d.jsx("li",{ref:o,className:S("",e),...t}));I$.displayName="PaginationItem";const A$=({className:e,isActive:t,size:o="icon",...n})=>d.jsx("a",{"aria-current":t?"page":void 0,className:S(ds({variant:t?"outline":"ghost",size:o}),e),...n});A$.displayName="PaginationLink";const xB=({className:e,...t})=>d.jsxs(A$,{"aria-label":"Go to previous page",size:"default",className:S("gap-1 pl-2.5",e),...t,children:[d.jsx(ea,{className:"h-4 w-4"}),d.jsx("span",{children:"Previous"})]});xB.displayName="PaginationPrevious";const NB=({className:e,...t})=>d.jsxs(A$,{"aria-label":"Go to next page",size:"default",className:S("gap-1 pr-2.5",e),...t,children:[d.jsx("span",{children:"Next"}),d.jsx(Ot,{className:"h-4 w-4"})]});NB.displayName="PaginationNext";const CB=({className:e,...t})=>d.jsxs("span",{"aria-hidden":!0,className:S("flex h-9 w-9 items-center justify-center",e),...t,children:[d.jsx(nn,{className:"h-4 w-4"}),d.jsx("span",{className:"sr-only",children:"More pages"})]});CB.displayName="PaginationEllipsis";var P$="Popover",[$B]=Xe(P$,[Io]),e1=Io(),[Yce,kn]=$B(P$),SB=e=>{const{__scopePopover:t,children:o,open:n,defaultOpen:a,onOpenChange:r,modal:c=!1}=e,s=e1(t),l=p.useRef(null),[u,y]=p.useState(!1),[h,f]=Ke({prop:n,defaultProp:a??!1,onChange:r,caller:P$});return d.jsx(xs,{...s,children:d.jsx(Yce,{scope:t,contentId:We(),triggerRef:l,open:h,onOpenChange:f,onOpenToggle:p.useCallback(()=>f(k=>!k),[f]),hasCustomAnchor:u,onCustomAnchorAdd:p.useCallback(()=>y(!0),[]),onCustomAnchorRemove:p.useCallback(()=>y(!1),[]),modal:c,children:o})})};SB.displayName=P$;var LB="PopoverAnchor",Xce=p.forwardRef((e,t)=>{const{__scopePopover:o,...n}=e,a=kn(LB,o),r=e1(o),{onCustomAnchorAdd:c,onCustomAnchorRemove:s}=a;return p.useEffect(()=>(c(),()=>s()),[c,s]),d.jsx(Ns,{...r,...n,ref:t})});Xce.displayName=LB;var IB="PopoverTrigger",AB=p.forwardRef((e,t)=>{const{__scopePopover:o,...n}=e,a=kn(IB,o),r=e1(o),c=be(t,a.triggerRef),s=d.jsx(se.button,{type:"button","aria-haspopup":"dialog","aria-expanded":a.open,"aria-controls":a.contentId,"data-state":zB(a.open),...n,ref:c,onClick:X(e.onClick,a.onOpenToggle)});return a.hasCustomAnchor?s:d.jsx(Ns,{asChild:!0,...r,children:s})});AB.displayName=IB;var yP="PopoverPortal",[Zce,Qce]=$B(yP,{forceMount:void 0}),PB=e=>{const{__scopePopover:t,forceMount:o,children:n,container:a}=e,r=kn(yP,t);return d.jsx(Zce,{scope:t,forceMount:o,children:d.jsx(Qe,{present:o||r.open,children:d.jsx(ud,{asChild:!0,container:a,children:n})})})};PB.displayName=yP;var $s="PopoverContent",TB=p.forwardRef((e,t)=>{const o=Qce($s,e.__scopePopover),{forceMount:n=o.forceMount,...a}=e,r=kn($s,e.__scopePopover);return d.jsx(Qe,{present:n||r.open,children:r.modal?d.jsx(ese,{...a,ref:t}):d.jsx(tse,{...a,ref:t})})});TB.displayName=$s;var Jce=wn("PopoverContent.RemoveScroll"),ese=p.forwardRef((e,t)=>{const o=kn($s,e.__scopePopover),n=p.useRef(null),a=be(t,n),r=p.useRef(!1);return p.useEffect(()=>{const c=n.current;if(c)return EC(c)},[]),d.jsx(hd,{as:Jce,allowPinchZoom:!0,children:d.jsx(DB,{...e,ref:a,trapFocus:o.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:X(e.onCloseAutoFocus,c=>{c.preventDefault(),r.current||o.triggerRef.current?.focus()}),onPointerDownOutside:X(e.onPointerDownOutside,c=>{const s=c.detail.originalEvent,l=s.button===0&&s.ctrlKey===!0,u=s.button===2||l;r.current=u},{checkForDefaultPrevented:!1}),onFocusOutside:X(e.onFocusOutside,c=>c.preventDefault(),{checkForDefaultPrevented:!1})})})}),tse=p.forwardRef((e,t)=>{const o=kn($s,e.__scopePopover),n=p.useRef(!1),a=p.useRef(!1);return d.jsx(DB,{...e,ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:r=>{e.onCloseAutoFocus?.(r),r.defaultPrevented||(n.current||o.triggerRef.current?.focus(),r.preventDefault()),n.current=!1,a.current=!1},onInteractOutside:r=>{e.onInteractOutside?.(r),r.defaultPrevented||(n.current=!0,r.detail.originalEvent.type==="pointerdown"&&(a.current=!0));const c=r.target;o.triggerRef.current?.contains(c)&&r.preventDefault(),r.detail.originalEvent.type==="focusin"&&a.current&&r.preventDefault()}})}),DB=p.forwardRef((e,t)=>{const{__scopePopover:o,trapFocus:n,onOpenAutoFocus:a,onCloseAutoFocus:r,disableOutsidePointerEvents:c,onEscapeKeyDown:s,onPointerDownOutside:l,onFocusOutside:u,onInteractOutside:y,...h}=e,f=kn($s,o),k=e1(o);return $C(),d.jsx(ld,{asChild:!0,loop:!0,trapped:n,onMountAutoFocus:a,onUnmountAutoFocus:r,children:d.jsx(dn,{asChild:!0,disableOutsidePointerEvents:c,onInteractOutside:y,onEscapeKeyDown:s,onPointerDownOutside:l,onFocusOutside:u,onDismiss:()=>f.onOpenChange(!1),children:d.jsx(Od,{"data-state":zB(f.open),role:"dialog",id:f.contentId,...k,...h,ref:t,style:{...h.style,"--radix-popover-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-popover-content-available-width":"var(--radix-popper-available-width)","--radix-popover-content-available-height":"var(--radix-popper-available-height)","--radix-popover-trigger-width":"var(--radix-popper-anchor-width)","--radix-popover-trigger-height":"var(--radix-popper-anchor-height)"}})})})}),EB="PopoverClose",ose=p.forwardRef((e,t)=>{const{__scopePopover:o,...n}=e,a=kn(EB,o);return d.jsx(se.button,{type:"button",...n,ref:t,onClick:X(e.onClick,()=>a.onOpenChange(!1))})});ose.displayName=EB;var nse="PopoverArrow",ase=p.forwardRef((e,t)=>{const{__scopePopover:o,...n}=e,a=e1(o);return d.jsx(qd,{...a,...n,ref:t})});ase.displayName=nse;function zB(e){return e?"open":"closed"}var rse=SB,ise=AB,cse=PB,OB=TB;const t1=rse,o1=ise,Ss=p.forwardRef(({className:e,align:t="center",sideOffset:o=4,...n},a)=>d.jsx(cse,{children:d.jsx(OB,{ref:a,align:t,sideOffset:o,className:S("z-50 w-72 rounded-md border bg-popover p-4 text-popover-foreground shadow-md outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-popover-content-transform-origin]",e),...n})}));Ss.displayName=OB.displayName;var fP="Progress",mP=100,[sse]=qE(fP),[dse,lse]=sse(fP),qB=p.forwardRef((e,t)=>{const{__scopeProgress:o,value:n=null,max:a,getValueLabel:r=use,...c}=e;(a||a===0)&&!FB(a)&&console.error(hse(`${a}`,"Progress"));const s=FB(a)?a:mP;n!==null&&!BB(n,s)&&console.error(pse(`${n}`,"Progress"));const l=BB(n,s)?n:null,u=T$(l)?r(l,s):void 0;return d.jsx(dse,{scope:o,value:l,max:s,children:d.jsx(ht.div,{"aria-valuemax":s,"aria-valuemin":0,"aria-valuenow":T$(l)?l:void 0,"aria-valuetext":u,role:"progressbar","data-state":VB(l,s),"data-value":l??void 0,"data-max":s,...c,ref:t})})});qB.displayName=fP;var jB="ProgressIndicator",HB=p.forwardRef((e,t)=>{const{__scopeProgress:o,...n}=e,a=lse(jB,o);return d.jsx(ht.div,{"data-state":VB(a.value,a.max),"data-value":a.value??void 0,"data-max":a.max,...n,ref:t})});HB.displayName=jB;function use(e,t){return`${Math.round(e/t*100)}%`}function VB(e,t){return e==null?"indeterminate":e===t?"complete":"loading"}function T$(e){return typeof e=="number"}function FB(e){return T$(e)&&!isNaN(e)&&e>0}function BB(e,t){return T$(e)&&!isNaN(e)&&e<=t&&e>=0}function hse(e,t){return`Invalid prop \`max\` of value \`${e}\` supplied to \`${t}\`. Only numbers greater than 0 are valid max values. Defaulting to \`${mP}\`.`}function pse(e,t){return`Invalid prop \`value\` of value \`${e}\` supplied to \`${t}\`. The \`value\` prop must be:
90
+ - a positive number
91
+ - less than the value passed to \`max\` (or ${mP} if no \`max\` prop is set)
92
+ - \`null\` or \`undefined\` if the progress is indeterminate.
93
+
94
+ Defaulting to \`null\`.`}var WB=qB,yse=HB;const UB=p.forwardRef(({className:e,value:t,...o},n)=>d.jsx(WB,{ref:n,className:S("relative h-4 w-full overflow-hidden rounded-full bg-secondary",e),...o,children:d.jsx(yse,{className:"h-full w-full flex-1 bg-primary transition-all",style:{transform:`translateX(-${100-(t||0)}%)`}})}));UB.displayName=WB.displayName;var kP="Radio",[fse,RB]=Xe(kP),[mse,kse]=fse(kP),GB=p.forwardRef((e,t)=>{const{__scopeRadio:o,name:n,checked:a=!1,required:r,disabled:c,value:s="on",onCheck:l,form:u,...y}=e,[h,f]=p.useState(null),k=be(t,_=>f(_)),m=p.useRef(!1),g=h?u||!!h.closest("form"):!0;return d.jsxs(mse,{scope:o,checked:a,disabled:c,children:[d.jsx(se.button,{type:"button",role:"radio","aria-checked":a,"data-state":ZB(a),"data-disabled":c?"":void 0,disabled:c,value:s,...y,ref:k,onClick:X(e.onClick,_=>{a||l?.(),g&&(m.current=_.isPropagationStopped(),m.current||_.stopPropagation())})}),g&&d.jsx(XB,{control:h,bubbles:!m.current,name:n,value:s,checked:a,required:r,disabled:c,form:u,style:{transform:"translateX(-100%)"}})]})});GB.displayName=kP;var KB="RadioIndicator",YB=p.forwardRef((e,t)=>{const{__scopeRadio:o,forceMount:n,...a}=e,r=kse(KB,o);return d.jsx(Qe,{present:n||r.checked,children:d.jsx(se.span,{"data-state":ZB(r.checked),"data-disabled":r.disabled?"":void 0,...a,ref:t})})});YB.displayName=KB;var gse="RadioBubbleInput",XB=p.forwardRef(({__scopeRadio:e,control:t,checked:o,bubbles:n=!0,...a},r)=>{const c=p.useRef(null),s=be(c,r),l=ks(o),u=Ad(t);return p.useEffect(()=>{const y=c.current;if(!y)return;const h=window.HTMLInputElement.prototype,k=Object.getOwnPropertyDescriptor(h,"checked").set;if(l!==o&&k){const m=new Event("click",{bubbles:n});k.call(y,o),y.dispatchEvent(m)}},[l,o,n]),d.jsx(se.input,{type:"radio","aria-hidden":!0,defaultChecked:o,...a,tabIndex:-1,ref:s,style:{...a.style,...u,position:"absolute",pointerEvents:"none",opacity:0,margin:0}})});XB.displayName=gse;function ZB(e){return e?"checked":"unchecked"}var vse=["ArrowUp","ArrowDown","ArrowLeft","ArrowRight"],D$="RadioGroup",[_se]=Xe(D$,[Ao,RB]),QB=Ao(),JB=RB(),[bse,Mse]=_se(D$),eW=p.forwardRef((e,t)=>{const{__scopeRadioGroup:o,name:n,defaultValue:a,value:r,required:c=!1,disabled:s=!1,orientation:l,dir:u,loop:y=!0,onValueChange:h,...f}=e,k=QB(o),m=Yt(u),[g,_]=Ke({prop:r,defaultProp:a??null,onChange:h,caller:D$});return d.jsx(bse,{scope:o,name:n,required:c,disabled:s,value:g,onValueChange:_,children:d.jsx(Hd,{asChild:!0,...k,orientation:l,dir:m,loop:y,children:d.jsx(se.div,{role:"radiogroup","aria-required":c,"aria-orientation":l,"data-disabled":s?"":void 0,dir:m,...f,ref:t})})})});eW.displayName=D$;var tW="RadioGroupItem",oW=p.forwardRef((e,t)=>{const{__scopeRadioGroup:o,disabled:n,...a}=e,r=Mse(tW,o),c=r.disabled||n,s=QB(o),l=JB(o),u=p.useRef(null),y=be(t,u),h=r.value===a.value,f=p.useRef(!1);return p.useEffect(()=>{const k=g=>{vse.includes(g.key)&&(f.current=!0)},m=()=>f.current=!1;return document.addEventListener("keydown",k),document.addEventListener("keyup",m),()=>{document.removeEventListener("keydown",k),document.removeEventListener("keyup",m)}},[]),d.jsx(Vd,{asChild:!0,...s,focusable:!c,active:h,children:d.jsx(GB,{disabled:c,required:r.required,checked:h,...l,...a,name:r.name,ref:y,onCheck:()=>r.onValueChange(a.value),onKeyDown:X(k=>{k.key==="Enter"&&k.preventDefault()}),onFocus:X(a.onFocus,()=>{f.current&&u.current?.click()})})})});oW.displayName=tW;var wse="RadioGroupIndicator",nW=p.forwardRef((e,t)=>{const{__scopeRadioGroup:o,...n}=e,a=JB(o);return d.jsx(YB,{...a,...n,ref:t})});nW.displayName=wse;var aW=eW,rW=oW,xse=nW;const iW=p.forwardRef(({className:e,...t},o)=>d.jsx(aW,{className:S("grid gap-2",e),...t,ref:o}));iW.displayName=aW.displayName;const cW=p.forwardRef(({className:e,...t},o)=>d.jsx(rW,{ref:o,className:S("aspect-square h-4 w-4 rounded-full border border-primary text-primary ring-offset-background focus:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",e),...t,children:d.jsx(xse,{className:"flex items-center justify-center",children:d.jsx(on,{className:"h-2.5 w-2.5 fill-current text-current"})})}));cW.displayName=rW.displayName;function Re(e,t="Assertion error"){if(!e)throw Error(t)}function Ls({group:e}){const{orientation:t,panels:o}=e;return o.reduce((n,a)=>(n+=t==="horizontal"?a.element.offsetWidth:a.element.offsetHeight,n),0)}function gP(e,t){return Array.from(t).sort(e==="horizontal"?Nse:Cse)}function Nse(e,t){const o=e.element.offsetLeft-t.element.offsetLeft;return o!==0?o:e.element.offsetWidth-t.element.offsetWidth}function Cse(e,t){const o=e.element.offsetTop-t.element.offsetTop;return o!==0?o:e.element.offsetHeight-t.element.offsetHeight}function sW(e){return e!==null&&typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.ELEMENT_NODE}function dW(e,t){return{x:e.x>=t.left&&e.x<=t.right?0:Math.min(Math.abs(e.x-t.left),Math.abs(e.x-t.right)),y:e.y>=t.top&&e.y<=t.bottom?0:Math.min(Math.abs(e.y-t.top),Math.abs(e.y-t.bottom))}}function $se({orientation:e,rects:t,targetRect:o}){const n={x:o.x+o.width/2,y:o.y+o.height/2};let a,r=Number.MAX_VALUE;for(const c of t){const{x:s,y:l}=dW(n,c),u=e==="horizontal"?s:l;u<r&&(r=u,a=c)}return Re(a,"No rect found"),a}let E$;function Sse(){return E$===void 0&&(typeof matchMedia=="function"?E$=!!matchMedia("(pointer:coarse)").matches:E$=!1),E$}function lW(e){const{element:t,orientation:o,panels:n,separators:a}=e,r=gP(o,Array.from(t.children).filter(sW).map(y=>({element:y}))).map(({element:y})=>y),c=[];let s=!1,l,u=[];for(const y of r)if(y.hasAttribute("data-panel")){const h=n.find(f=>f.element===y);if(h){if(l){const f=l.element.getBoundingClientRect(),k=y.getBoundingClientRect();let m;if(s){const g=o==="horizontal"?new DOMRect(f.right,f.top,0,f.height):new DOMRect(f.left,f.bottom,f.width,0),_=o==="horizontal"?new DOMRect(k.left,k.top,0,k.height):new DOMRect(k.left,k.top,k.width,0);switch(u.length){case 0:{m=[g,_];break}case 1:{const v=u[0],b=$se({orientation:o,rects:[f,k],targetRect:v.element.getBoundingClientRect()});m=[v,b===f?_:g];break}default:{m=u;break}}}else u.length?m=u:m=[o==="horizontal"?new DOMRect(f.right,k.top,k.left-f.right,k.height):new DOMRect(k.left,f.bottom,k.width,k.top-f.bottom)];for(const g of m){let _="width"in g?g:g.element.getBoundingClientRect();const v=Sse()?e.resizeTargetMinimumSize.coarse:e.resizeTargetMinimumSize.fine;if(_.width<v){const b=v-_.width;_=new DOMRect(_.x-b/2,_.y,_.width+b,_.height)}if(_.height<v){const b=v-_.height;_=new DOMRect(_.x,_.y-b/2,_.width,_.height+b)}c.push({group:e,groupSize:Ls({group:e}),panels:[l,h],separator:"width"in g?void 0:g,rect:_})}}s=!1,l=h,u=[]}}else if(y.hasAttribute("data-separator")){const h=a.find(f=>f.element===y);h?u.push(h):(l=void 0,u=[])}else s=!0;return c}function Lse(e,t){const o=getComputedStyle(e),n=parseFloat(o.fontSize);return t*n}function Ise(e,t){const o=getComputedStyle(e.ownerDocument.body),n=parseFloat(o.fontSize);return t*n}function Ase(e){return e/100*window.innerHeight}function Pse(e){return e/100*window.innerWidth}function Tse(e){switch(typeof e){case"number":return[e,"px"];case"string":{const t=parseFloat(e);return e.endsWith("%")?[t,"%"]:e.endsWith("px")?[t,"px"]:e.endsWith("rem")?[t,"rem"]:e.endsWith("em")?[t,"em"]:e.endsWith("vh")?[t,"vh"]:e.endsWith("vw")?[t,"vw"]:[t,"%"]}}}function z$({groupSize:e,panelElement:t,styleProp:o}){let n;const[a,r]=Tse(o);switch(r){case"%":{n=a/100*e;break}case"px":{n=a;break}case"rem":{n=Ise(t,a);break}case"em":{n=Lse(t,a);break}case"vh":{n=Ase(a);break}case"vw":{n=Pse(a);break}}return n}function co(e){return parseFloat(e.toFixed(3))}function uW(e){const{panels:t}=e,o=Ls({group:e});return o===0?t.map(n=>({collapsedSize:0,collapsible:n.panelConstraints.collapsible===!0,defaultSize:void 0,minSize:0,maxSize:100,panelId:n.id})):t.map(n=>{const{element:a,panelConstraints:r}=n;let c=0;if(r.collapsedSize!==void 0){const y=z$({groupSize:o,panelElement:a,styleProp:r.collapsedSize});c=co(y/o*100)}let s;if(r.defaultSize!==void 0){const y=z$({groupSize:o,panelElement:a,styleProp:r.defaultSize});s=co(y/o*100)}let l=0;if(r.minSize!==void 0){const y=z$({groupSize:o,panelElement:a,styleProp:r.minSize});l=co(y/o*100)}let u=100;if(r.maxSize!==void 0){const y=z$({groupSize:o,panelElement:a,styleProp:r.maxSize});u=co(y/o*100)}return{collapsedSize:c,collapsible:r.collapsible===!0,defaultSize:s,minSize:l,maxSize:u,panelId:n.id}})}class Dse{#e={};addListener(t,o){const n=this.#e[t];return n===void 0?this.#e[t]=[o]:n.includes(o)||n.push(o),()=>{this.removeListener(t,o)}}emit(t,o){const n=this.#e[t];if(n!==void 0)if(n.length===1)n[0].call(null,o);else{let a=!1,r=null;const c=Array.from(n);for(let s=0;s<c.length;s++){const l=c[s];try{l.call(null,o)}catch(u){r===null&&(a=!0,r=u)}}if(a)throw r}}removeAllListeners(){this.#e={}}removeListener(t,o){const n=this.#e[t];if(n!==void 0){const a=n.indexOf(o);a>=0&&n.splice(a,1)}}}function bt(e,t,o=0){return Math.abs(co(e)-co(t))<=o}let Bt={cursorFlags:0,interactionState:{state:"inactive"},mountedGroups:new Map};const zc=new Dse;function $t(){return Bt}function Mt(e){const t=typeof e=="function"?e(Bt):e;if(Bt===t)return Bt;const o=Bt;return Bt={...Bt,...t},t.cursorFlags!==void 0&&zc.emit("cursorFlagsChange",Bt.cursorFlags),t.interactionState!==void 0&&zc.emit("interactionStateChange",Bt.interactionState),t.mountedGroups!==void 0&&(Bt.mountedGroups.forEach((n,a)=>{n.derivedPanelConstraints.forEach(r=>{if(r.collapsible){const{layout:c}=o.mountedGroups.get(a)??{};if(c){const s=bt(r.collapsedSize,n.layout[r.panelId]),l=bt(r.collapsedSize,c[r.panelId]);s&&!l&&(a.inMemoryLastExpandedPanelSizes[r.panelId]=c[r.panelId])}}})}),zc.emit("mountedGroupsChange",Bt.mountedGroups)),Bt}function Ese(e,t,o){let n,a={x:1/0,y:1/0};for(const r of t){const c=dW(o,r.rect);switch(e){case"horizontal":{c.x<=a.x&&(n=r,a=c);break}case"vertical":{c.y<=a.y&&(n=r,a=c);break}}}return n?{distance:a,hitRegion:n}:void 0}function zse(e){return e!==null&&typeof e=="object"&&"nodeType"in e&&e.nodeType===Node.DOCUMENT_FRAGMENT_NODE}function Ose(e,t){if(e===t)throw new Error("Cannot compare node with itself");const o={a:yW(e),b:yW(t)};let n;for(;o.a.at(-1)===o.b.at(-1);)n=o.a.pop(),o.b.pop();Re(n,"Stacking order can only be calculated for elements with a common ancestor");const a={a:pW(hW(o.a)),b:pW(hW(o.b))};if(a.a===a.b){const r=n.childNodes,c={a:o.a.at(-1),b:o.b.at(-1)};let s=r.length;for(;s--;){const l=r[s];if(l===c.a)return 1;if(l===c.b)return-1}}return Math.sign(a.a-a.b)}const qse=/\b(?:position|zIndex|opacity|transform|webkitTransform|mixBlendMode|filter|webkitFilter|isolation)\b/;function jse(e){const t=getComputedStyle(fW(e)??e).display;return t==="flex"||t==="inline-flex"}function Hse(e){const t=getComputedStyle(e);return!!(t.position==="fixed"||t.zIndex!=="auto"&&(t.position!=="static"||jse(e))||+t.opacity<1||"transform"in t&&t.transform!=="none"||"webkitTransform"in t&&t.webkitTransform!=="none"||"mixBlendMode"in t&&t.mixBlendMode!=="normal"||"filter"in t&&t.filter!=="none"||"webkitFilter"in t&&t.webkitFilter!=="none"||"isolation"in t&&t.isolation==="isolate"||qse.test(t.willChange)||t.webkitOverflowScrolling==="touch")}function hW(e){let t=e.length;for(;t--;){const o=e[t];if(Re(o,"Missing node"),Hse(o))return o}return null}function pW(e){return e&&Number(getComputedStyle(e).zIndex)||0}function yW(e){const t=[];for(;e;)t.push(e),e=fW(e);return t}function fW(e){const{parentNode:t}=e;return zse(t)?t.host:t}function Vse(e,t){return e.x<t.x+t.width&&e.x+e.width>t.x&&e.y<t.y+t.height&&e.y+e.height>t.y}function Fse({groupElement:e,hitRegion:t,pointerEventTarget:o}){if(!sW(o)||o.contains(e)||e.contains(o))return!0;if(Ose(o,e)>0){let n=o;for(;n;){if(n.contains(e))return!0;if(Vse(n.getBoundingClientRect(),t))return!1;n=n.parentElement}}return!0}function vP(e,t){const o=[];return t.forEach((n,a)=>{if(a.disabled)return;const r=lW(a),c=Ese(a.orientation,r,{x:e.clientX,y:e.clientY});c&&c.distance.x<=0&&c.distance.y<=0&&Fse({groupElement:a.element,hitRegion:c.hitRegion.rect,pointerEventTarget:e.target})&&o.push(c.hitRegion)}),o}function Bse(e,t){if(e.length!==t.length)return!1;for(let o=0;o<e.length;o++)if(e[o]!=t[o])return!1;return!0}function n1(e,t){return bt(e,t)?0:e>t?1:-1}function Is({panelConstraints:e,size:t}){const{collapsedSize:o=0,collapsible:n,maxSize:a=100,minSize:r=0}=e;if(n1(t,r)<0)if(n){const c=(o+r)/2;n1(t,c)<0?t=o:t=r}else t=r;return t=Math.min(a,t),t=co(t),t}function a1({delta:e,initialLayout:t,panelConstraints:o,pivotIndices:n,prevLayout:a,trigger:r}){if(bt(e,0))return t;const c=Object.values(t),s=Object.values(a),l=[...c],[u,y]=n;Re(u!=null,"Invalid first pivot index"),Re(y!=null,"Invalid second pivot index");let h=0;switch(r){case"keyboard":{{const m=e<0?y:u,g=o[m];Re(g,`Panel constraints not found for index ${m}`);const{collapsedSize:_=0,collapsible:v,minSize:b=0}=g;if(v){const M=c[m];if(Re(M!=null,`Previous layout not found for panel index ${m}`),bt(M,_)){const x=b-M;n1(x,Math.abs(e))>0&&(e=e<0?0-x:x)}}}{const m=e<0?u:y,g=o[m];Re(g,`No panel constraints found for index ${m}`);const{collapsedSize:_=0,collapsible:v,minSize:b=0}=g;if(v){const M=c[m];if(Re(M!=null,`Previous layout not found for panel index ${m}`),bt(M,b)){const x=M-_;n1(x,Math.abs(e))>0&&(e=e<0?0-x:x)}}}break}}{const m=e<0?1:-1;let g=e<0?y:u,_=0;for(;;){const b=c[g];Re(b!=null,`Previous layout not found for panel index ${g}`);const M=Is({panelConstraints:o[g],size:100})-b;if(_+=M,g+=m,g<0||g>=o.length)break}const v=Math.min(Math.abs(e),Math.abs(_));e=e<0?0-v:v}{let m=e<0?u:y;for(;m>=0&&m<o.length;){const g=Math.abs(e)-Math.abs(h),_=c[m];Re(_!=null,`Previous layout not found for panel index ${m}`);const v=_-g,b=Is({panelConstraints:o[m],size:v});if(!bt(_,b)&&(h+=_-b,l[m]=b,h.toFixed(3).localeCompare(Math.abs(e).toFixed(3),void 0,{numeric:!0})>=0))break;e<0?m--:m++}}if(Bse(s,l))return a;{const m=e<0?y:u,g=c[m];Re(g!=null,`Previous layout not found for panel index ${m}`);const _=g+h,v=Is({panelConstraints:o[m],size:_});if(l[m]=v,!bt(v,_)){let b=_-v,M=e<0?y:u;for(;M>=0&&M<o.length;){const x=l[M];Re(x!=null,`Previous layout not found for panel index ${M}`);const N=x+b,C=Is({panelConstraints:o[M],size:N});if(bt(x,C)||(b-=C-x,l[M]=C),bt(b,0))break;e>0?M--:M++}}}const f=Object.values(l).reduce((m,g)=>g+m,0);if(!bt(f,100,.1))return a;const k=Object.keys(a);return l.reduce((m,g,_)=>(m[k[_]]=g,m),{})}function Oc(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const o in e)if(t[o]===void 0||n1(e[o],t[o])!==0)return!1;return!0}function qc({layout:e,panelConstraints:t}){const o=[...Object.values(e)],n=o.reduce((c,s)=>c+s,0);if(o.length!==t.length)throw Error(`Invalid ${t.length} panel layout: ${o.map(c=>`${c}%`).join(", ")}`);if(!bt(n,100)&&o.length>0)for(let c=0;c<t.length;c++){const s=o[c];Re(s!=null,`No layout data found for index ${c}`);const l=100/n*s;o[c]=l}let a=0;for(let c=0;c<t.length;c++){const s=o[c];Re(s!=null,`No layout data found for index ${c}`);const l=Is({panelConstraints:t[c],size:s});s!=l&&(a+=s-l,o[c]=l)}if(!bt(a,0))for(let c=0;c<t.length;c++){const s=o[c];Re(s!=null,`No layout data found for index ${c}`);const l=s+a,u=Is({panelConstraints:t[c],size:l});if(s!==u&&(a-=u-s,o[c]=u,bt(a,0)))break}const r=Object.keys(e);return o.reduce((c,s,l)=>(c[r[l]]=s,c),{})}function mW({groupId:e,panelId:t}){const o=()=>{const{mountedGroups:s}=$t();for(const[l,{defaultLayoutDeferred:u,derivedPanelConstraints:y,layout:h,separatorToPanels:f}]of s)if(l.id===e)return{defaultLayoutDeferred:u,derivedPanelConstraints:y,group:l,layout:h,separatorToPanels:f};throw Error(`Group ${e} not found`)},n=()=>{const s=o().derivedPanelConstraints.find(l=>l.panelId===t);if(s!==void 0)return s;throw Error(`Panel constraints not found for Panel ${t}`)},a=()=>{const s=o().group.panels.find(l=>l.id===t);if(s!==void 0)return s;throw Error(`Layout not found for Panel ${t}`)},r=()=>{const s=o().layout[t];if(s!==void 0)return s;throw Error(`Layout not found for Panel ${t}`)},c=s=>{const l=r();if(s===l)return;const{defaultLayoutDeferred:u,derivedPanelConstraints:y,group:h,layout:f,separatorToPanels:k}=o(),m=h.panels.findIndex(b=>b.id===t),g=m===h.panels.length-1,_=a1({delta:g?l-s:s-l,initialLayout:f,panelConstraints:y,pivotIndices:g?[m-1,m]:[m,m+1],prevLayout:f,trigger:"imperative-api"}),v=qc({layout:_,panelConstraints:y});Oc(f,v)||Mt(b=>({mountedGroups:new Map(b.mountedGroups).set(h,{defaultLayoutDeferred:u,derivedPanelConstraints:y,layout:v,separatorToPanels:k})}))};return{collapse:()=>{const{collapsible:s,collapsedSize:l}=n(),{mutableValues:u}=a(),y=r();s&&y!==l&&(u.expandToSize=y,c(l))},expand:()=>{const{collapsible:s,collapsedSize:l,minSize:u}=n(),{mutableValues:y}=a(),h=r();if(s&&h===l){let f=y.expandToSize??u;f===0&&(f=1),c(f)}},getSize:()=>{const{group:s}=o(),l=r(),{element:u}=a(),y=s.orientation==="horizontal"?u.offsetWidth:u.offsetHeight;return{asPercentage:l,inPixels:y}},isCollapsed:()=>{const{collapsible:s,collapsedSize:l}=n(),u=r();return s&&bt(l,u)},resize:s=>{if(r()!==s){let l;switch(typeof s){case"number":{const{group:u}=o(),y=Ls({group:u});l=co(s/y*100);break}case"string":{l=parseFloat(s);break}}c(l)}}}}function kW(e){if(e.defaultPrevented)return;const{mountedGroups:t}=$t();vP(e,t).forEach(o=>{if(o.separator){const n=o.panels.find(a=>a.panelConstraints.defaultSize!==void 0);if(n){const a=n.panelConstraints.defaultSize,r=mW({groupId:o.group.id,panelId:n.id});r&&a!==void 0&&(r.resize(a),e.preventDefault())}}})}function O$(e){const{mountedGroups:t}=$t();for(const[o]of t)if(o.separators.some(n=>n.element===e))return o;throw Error("Could not find parent Group for separator element")}function gW({groupId:e}){const t=()=>{const{mountedGroups:o}=$t();for(const[n,a]of o)if(n.id===e)return{group:n,...a};throw Error(`Could not find Group with id "${e}"`)};return{getLayout(){const{defaultLayoutDeferred:o,layout:n}=t();return o?{}:n},setLayout(o){const{defaultLayoutDeferred:n,derivedPanelConstraints:a,group:r,layout:c,separatorToPanels:s}=t(),l=qc({layout:o,panelConstraints:a});return n?c:(Oc(c,l)||Mt(u=>({mountedGroups:new Map(u.mountedGroups).set(r,{defaultLayoutDeferred:n,derivedPanelConstraints:a,layout:l,separatorToPanels:s})})),l)}}}function vW(e){const{mountedGroups:t}=$t(),o=t.get(e);return Re(o,`Mounted Group ${e.id} not found`),o}function jc(e,t){const o=O$(e),n=vW(o),a=o.separators.find(y=>y.element===e);Re(a,"Matching separator not found");const r=n.separatorToPanels.get(a);Re(r,"Matching panels not found");const c=r.map(y=>o.panels.indexOf(y)),s=gW({groupId:o.id}).getLayout(),l=a1({delta:t,initialLayout:s,panelConstraints:n.derivedPanelConstraints,pivotIndices:c,prevLayout:s,trigger:"keyboard"}),u=qc({layout:l,panelConstraints:n.derivedPanelConstraints});Oc(s,u)||Mt(y=>({mountedGroups:new Map(y.mountedGroups).set(o,{defaultLayoutDeferred:n.defaultLayoutDeferred,derivedPanelConstraints:n.derivedPanelConstraints,layout:u,separatorToPanels:n.separatorToPanels})}))}function _W(e){if(e.defaultPrevented)return;const t=e.currentTarget,o=O$(t);if(!o.disabled)switch(e.key){case"ArrowDown":{e.preventDefault(),o.orientation==="vertical"&&jc(t,5);break}case"ArrowLeft":{e.preventDefault(),o.orientation==="horizontal"&&jc(t,-5);break}case"ArrowRight":{e.preventDefault(),o.orientation==="horizontal"&&jc(t,5);break}case"ArrowUp":{e.preventDefault(),o.orientation==="vertical"&&jc(t,-5);break}case"End":{e.preventDefault(),jc(t,100);break}case"Enter":{e.preventDefault();const n=O$(t),{derivedPanelConstraints:a,layout:r,separatorToPanels:c}=vW(n),s=n.separators.find(h=>h.element===t);Re(s,"Matching separator not found");const l=c.get(s);Re(l,"Matching panels not found");const u=l[0],y=a.find(h=>h.panelId===u.id);if(Re(y,"Panel metadata not found"),y.collapsible){const h=r[u.id],f=y.collapsedSize===h?n.inMemoryLastExpandedPanelSizes[u.id]??y.minSize:y.collapsedSize;jc(t,f-h)}break}case"F6":{e.preventDefault();const n=O$(t).separators.map(c=>c.element),a=Array.from(n).findIndex(c=>c===e.currentTarget);Re(a!==null,"Index not found");const r=e.shiftKey?a>0?a-1:n.length-1:a+1<n.length?a+1:0;n[r].focus();break}case"Home":{e.preventDefault(),jc(t,-100);break}}}function bW(e){if(e.defaultPrevented||e.pointerType==="mouse"&&e.button>0)return;const{mountedGroups:t}=$t(),o=vP(e,t),n=new Map;let a=!1;o.forEach(r=>{r.separator&&(a||(a=!0,r.separator.element.focus()));const c=t.get(r.group);c&&n.set(r.group,c.layout)}),Mt({interactionState:{hitRegions:o,initialLayoutMap:n,pointerDownAtPoint:{x:e.clientX,y:e.clientY},state:"active"}}),o.length&&e.preventDefault()}const Wse=e=>e,_P=()=>{},MW=1,wW=2,xW=4,NW=8,CW=3,$W=12;let q$;function SW(){return q$===void 0&&(q$=!1,typeof window<"u"&&(window.navigator.userAgent.includes("Chrome")||window.navigator.userAgent.includes("Firefox"))&&(q$=!0)),q$}function Use({cursorFlags:e,groups:t,state:o}){let n=0,a=0;switch(o){case"active":case"hover":t.forEach(r=>{if(!r.disableCursor)switch(r.orientation){case"horizontal":{n++;break}case"vertical":{a++;break}}})}if(n===0&&a===0)return null;switch(o){case"active":{if(e&&SW()){const r=(e&MW)!==0,c=(e&wW)!==0,s=(e&xW)!==0,l=(e&NW)!==0;if(r)return s?"se-resize":l?"ne-resize":"e-resize";if(c)return s?"sw-resize":l?"nw-resize":"w-resize";if(s)return"s-resize";if(l)return"n-resize"}break}}return SW()?n>0&&a>0?"move":n>0?"ew-resize":"ns-resize":n>0&&a>0?"grab":n>0?"col-resize":"row-resize"}const LW=new WeakMap;function bP(e){if(e.defaultView===null||e.defaultView===void 0)return;let{prevStyle:t,styleSheet:o}=LW.get(e)??{};o===void 0&&(o=new e.defaultView.CSSStyleSheet,e.adoptedStyleSheets.push(o));const{cursorFlags:n,interactionState:a}=$t();switch(a.state){case"active":case"hover":{const r=Use({cursorFlags:n,groups:a.hitRegions.map(s=>s.group),state:a.state}),c=`*, *:hover {cursor: ${r} !important; ${a.state==="active"?"touch-action: none;":""} }`;if(t===c)return;t=c,r?o.cssRules.length===0?o.insertRule(c):o.replaceSync(c):o.cssRules.length===1&&o.deleteRule(0);break}case"inactive":{t=void 0,o.cssRules.length===1&&o.deleteRule(0);break}}LW.set(e,{prevStyle:t,styleSheet:o})}function IW({document:e,event:t,hitRegions:o,initialLayoutMap:n,mountedGroups:a,pointerDownAtPoint:r,prevCursorFlags:c}){let s=0;const l=new Map(a);o.forEach(y=>{const{group:h,groupSize:f}=y,{disableCursor:k,orientation:m,panels:g}=h;let _=0;r?m==="horizontal"?_=(t.clientX-r.x)/f*100:_=(t.clientY-r.y)/f*100:m==="horizontal"?_=t.clientX<0?-100:100:_=t.clientY<0?-100:100;const v=n.get(h),{defaultLayoutDeferred:b,derivedPanelConstraints:M,layout:x,separatorToPanels:N}=a.get(h)??{defaultLayoutDeferred:!1};if(M&&v&&x&&N){const C=a1({delta:_,initialLayout:v,panelConstraints:M,pivotIndices:y.panels.map($=>g.indexOf($)),prevLayout:x,trigger:"mouse-or-touch"});if(Oc(C,x)){if(_!==0&&!k)switch(m){case"horizontal":{s|=_<0?MW:wW;break}case"vertical":{s|=_<0?xW:NW;break}}}else{l.set(y.group,{defaultLayoutDeferred:b,derivedPanelConstraints:M,layout:C,separatorToPanels:N});const $=y.group.panels.map(({id:L})=>L).join(",");y.group.inMemoryLayouts[$]=C}}});let u=0;t.movementX===0?u|=c&CW:u|=s&CW,t.movementY===0?u|=c&$W:u|=s&$W,Mt({cursorFlags:u,mountedGroups:l}),bP(e)}function AW(e){const{cursorFlags:t,interactionState:o,mountedGroups:n}=$t();o.state==="active"&&IW({document:e.currentTarget,event:e,hitRegions:o.hitRegions,initialLayoutMap:o.initialLayoutMap,mountedGroups:n,prevCursorFlags:t})}function PW(e){if(e.defaultPrevented)return;const{cursorFlags:t,interactionState:o,mountedGroups:n}=$t();switch(o.state){case"active":{if(e.buttons===0){Mt(a=>a.interactionState.state==="inactive"?a:{cursorFlags:0,interactionState:{state:"inactive"}}),Mt(a=>({mountedGroups:new Map(a.mountedGroups)}));return}IW({document:e.currentTarget,event:e,hitRegions:o.hitRegions,initialLayoutMap:o.initialLayoutMap,mountedGroups:n,pointerDownAtPoint:o.pointerDownAtPoint,prevCursorFlags:t});break}default:{const a=vP(e,n);a.length===0?o.state!=="inactive"&&Mt({interactionState:{state:"inactive"}}):Mt({interactionState:{hitRegions:a,state:"hover"}}),bP(e.currentTarget);break}}}function TW(e){if(e.relatedTarget instanceof HTMLIFrameElement){const{interactionState:t}=$t();t.state==="hover"&&Mt({interactionState:{state:"inactive"}})}}function DW(e){if(e.defaultPrevented||e.pointerType==="mouse"&&e.button>0)return;const{interactionState:t}=$t();t.state==="active"&&(Mt({cursorFlags:0,interactionState:{state:"inactive"}}),t.hitRegions.length>0&&(bP(e.currentTarget),Mt(o=>({mountedGroups:new Map(o.mountedGroups)})),e.preventDefault()))}function EW(e){let t=0,o=0;const n={};for(const r of e)if(r.defaultSize!==void 0){t++;const c=co(r.defaultSize);o+=c,n[r.panelId]=c}else n[r.panelId]=void 0;const a=e.length-t;if(a!==0){const r=co((100-o)/a);for(const c of e)c.defaultSize===void 0&&(n[c.panelId]=r)}return n}function Rse(e,t,o){if(!o[0])return;const n=e.panels.find(l=>l.element===t);if(!n||!n.onResize)return;const a=Ls({group:e}),r=e.orientation==="horizontal"?n.element.offsetWidth:n.element.offsetHeight,c=n.mutableValues.prevSize,s={asPercentage:co(r/a*100),inPixels:r};n.mutableValues.prevSize=s,n.onResize(s,n.id,c)}function Gse(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const o in e)if(e[o]!==t[o])return!1;return!0}function Kse(e,t){const o=e.map(a=>a.id),n=Object.keys(t);if(o.length!==n.length)return!1;for(const a of o)if(!n.includes(a))return!1;return!0}const As=new Map;function Yse(e){let t=!0;Re(e.element.ownerDocument.defaultView,"Cannot register an unmounted Group");const o=e.element.ownerDocument.defaultView.ResizeObserver,n=new Set,a=new Set,r=new o(m=>{for(const g of m){const{borderBoxSize:_,target:v}=g;if(v===e.element){if(t){if(Ls({group:e})===0)return;Mt(b=>{const M=b.mountedGroups.get(e);if(M){const x=uW(e),N=M.defaultLayoutDeferred?EW(x):M.layout,C=qc({layout:N,panelConstraints:x});return!M.defaultLayoutDeferred&&Oc(N,C)&&Gse(M.derivedPanelConstraints,x)?b:{mountedGroups:new Map(b.mountedGroups).set(e,{defaultLayoutDeferred:!1,derivedPanelConstraints:x,layout:C,separatorToPanels:M.separatorToPanels})}}return b})}}else Rse(e,v,_)}});r.observe(e.element),e.panels.forEach(m=>{Re(!n.has(m.id),`Panel ids must be unique; id "${m.id}" was used more than once`),n.add(m.id),m.onResize&&r.observe(m.element)});const c=Ls({group:e}),s=uW(e),l=e.panels.map(({id:m})=>m).join(",");let u=e.defaultLayout;u&&(Kse(e.panels,u)||(u=void 0));const y=e.inMemoryLayouts[l]??u??EW(s),h=qc({layout:y,panelConstraints:s}),f=lW(e),k=e.element.ownerDocument;return Mt(m=>{const g=new Map;return As.set(k,(As.get(k)??0)+1),f.forEach(_=>{_.separator&&g.set(_.separator,_.panels)}),{mountedGroups:new Map(m.mountedGroups).set(e,{defaultLayoutDeferred:c===0,derivedPanelConstraints:s,layout:h,separatorToPanels:g})}}),e.separators.forEach(m=>{Re(!a.has(m.id),`Separator ids must be unique; id "${m.id}" was used more than once`),a.add(m.id),m.element.addEventListener("keydown",_W)}),As.get(k)===1&&(k.addEventListener("dblclick",kW,!0),k.addEventListener("pointerdown",bW,!0),k.addEventListener("pointerleave",AW),k.addEventListener("pointermove",PW),k.addEventListener("pointerout",TW),k.addEventListener("pointerup",DW,!0)),function(){t=!1,As.set(k,Math.max(0,(As.get(k)??0)-1)),Mt(m=>{const g=new Map(m.mountedGroups);return g.delete(e),{mountedGroups:g}}),e.separators.forEach(m=>{m.element.removeEventListener("keydown",_W)}),As.get(k)||(k.removeEventListener("dblclick",kW,!0),k.removeEventListener("pointerdown",bW,!0),k.removeEventListener("pointerleave",AW),k.removeEventListener("pointermove",PW),k.removeEventListener("pointerout",TW),k.removeEventListener("pointerup",DW,!0)),r.disconnect()}}function zW(){const[e,t]=w.useState({}),o=w.useCallback(()=>t({}),[]);return[e,o]}function MP(e){const t=w.useId();return`${e??t}`}const Hc=typeof window<"u"?w.useLayoutEffect:w.useEffect;function r1(e){const t=w.useRef(e);return Hc(()=>{t.current=e},[e]),w.useCallback((...o)=>t.current?.(...o),[t])}function wP(...e){return r1(t=>{e.forEach(o=>{if(o)switch(typeof o){case"function":{o(t);break}case"object":{o.current=t;break}}})})}function Xse(e){const t=w.useRef({...e});return Hc(()=>{for(const o in e)t.current[o]=e[o]},[e]),t.current}const OW=w.createContext(null);function Zse(e,t){const o=w.useRef({getLayout:()=>({}),setLayout:Wse});w.useImperativeHandle(t,()=>o.current,[]),Hc(()=>{Object.assign(o.current,gW({groupId:e}))})}function qW({children:e,className:t,defaultLayout:o,disableCursor:n,disabled:a,elementRef:r,groupRef:c,id:s,onLayoutChange:l,onLayoutChanged:u,orientation:y="horizontal",resizeTargetMinimumSize:h={coarse:20,fine:10},style:f,...k}){const m=w.useRef({onLayoutChange:{},onLayoutChanged:{}}),g=r1(z=>{Oc(m.current.onLayoutChange,z)||(m.current.onLayoutChange=z,l?.(z))}),_=r1(z=>{Oc(m.current.onLayoutChanged,z)||(m.current.onLayoutChanged=z,u?.(z))}),v=MP(s),b=w.useRef(null),[M,x]=zW(),N=w.useRef({lastExpandedPanelSizes:{},layouts:{},panels:[],resizeTargetMinimumSize:h,separators:[]}),C=wP(b,r);Zse(v,c);const $=r1((z,O)=>{const{interactionState:D,mountedGroups:U}=$t();for(const G of U.keys())if(G.id===z){const H=U.get(G);if(H){let Y=!1;return D.state==="active"&&(Y=D.hitRegions.some(P=>P.group===G)),{flexGrow:H.layout[O]??1,pointerEvents:Y?"none":void 0}}}return{flexGrow:o?.[O]??1}}),L=w.useMemo(()=>({getPanelStyles:$,id:v,orientation:y,registerPanel:z=>{const O=N.current;return O.panels=gP(y,[...O.panels,z]),x(),()=>{O.panels=O.panels.filter(D=>D!==z),x()}},registerSeparator:z=>{const O=N.current;return O.separators=gP(y,[...O.separators,z]),x(),()=>{O.separators=O.separators.filter(D=>D!==z),x()}}}),[$,v,x,y]),A=Xse({defaultLayout:o,disableCursor:n}),q=w.useRef(null);return Hc(()=>{const z=b.current;if(z===null)return;const O=N.current,D={defaultLayout:A.defaultLayout,disableCursor:!!A.disableCursor,disabled:!!a,element:z,id:v,inMemoryLastExpandedPanelSizes:N.current.lastExpandedPanelSizes,inMemoryLayouts:N.current.layouts,orientation:y,panels:O.panels,resizeTargetMinimumSize:O.resizeTargetMinimumSize,separators:O.separators};q.current=D;const U=Yse(D),G=$t().mountedGroups.get(D);if(G){const{defaultLayoutDeferred:F,derivedPanelConstraints:ne,layout:de}=G;!F&&ne.length>0&&(g(de),_(de),O.panels.forEach(B=>{B.scheduleUpdate()}))}let H=!1;const Y=zc.addListener("interactionStateChange",F=>{const ne=F.state==="active";H!==ne&&(H=ne,O.panels.forEach(de=>{de.scheduleUpdate()}))}),P=zc.addListener("mountedGroupsChange",F=>{const ne=F.get(D);if(ne){const{defaultLayoutDeferred:de,derivedPanelConstraints:B,layout:W}=ne;if(de||B.length===0)return;const{interactionState:K}=$t(),R=K.state!=="active";g(W),R&&_(W),O.panels.forEach(re=>{re.scheduleUpdate()})}});return()=>{q.current=null,U(),Y(),P()}},[a,v,_,g,y,M,A]),w.useEffect(()=>{const z=q.current;z&&(z.defaultLayout=o,z.disableCursor=!!n)}),d.jsx(OW.Provider,{value:L,children:d.jsx("div",{...k,className:t,"data-group":!0,"data-testid":v,id:v,ref:C,style:{height:"100%",width:"100%",overflow:"hidden",...f,display:"flex",flexDirection:y==="horizontal"?"row":"column",flexWrap:"nowrap"},children:e})})}qW.displayName="Group";function xP(){const e=w.useContext(OW);return Re(e,"Group Context not found; did you render a Panel or Separator outside of a Group?"),e}function Qse(e,t){const{id:o}=xP(),n=w.useRef({collapse:_P,expand:_P,getSize:()=>({asPercentage:0,inPixels:0}),isCollapsed:()=>!1,resize:_P});w.useImperativeHandle(t,()=>n.current,[]),Hc(()=>{Object.assign(n.current,mW({groupId:o,panelId:e}))})}function jW({children:e,className:t,collapsedSize:o="0%",collapsible:n=!1,defaultSize:a,elementRef:r,id:c,maxSize:s="100%",minSize:l="0%",onResize:u,panelRef:y,style:h,...f}){const k=!!c,m=MP(c),g=w.useRef(null),_=wP(g,r),[,v]=zW(),{getPanelStyles:b,id:M,registerPanel:x}=xP(),N=u!==null,C=r1((L,A,q)=>{u?.(L,c,q)});Hc(()=>{const L=g.current;if(L!==null)return x({element:L,id:m,idIsStable:k,mutableValues:{expandToSize:void 0,prevSize:void 0},onResize:N?C:void 0,panelConstraints:{collapsedSize:o,collapsible:n,defaultSize:a,maxSize:s,minSize:l},scheduleUpdate:v})},[o,n,a,v,N,m,k,s,l,C,x]),Qse(m,y);const $=b(M,m);return d.jsx("div",{...f,"data-panel":!0,"data-testid":m,id:m,ref:_,style:{...Jse,display:"flex",flexBasis:0,flexShrink:1,overflow:"hidden",...$},children:d.jsx("div",{className:t,style:{maxHeight:"100%",maxWidth:"100%",flexGrow:1,...h},children:e})})}jW.displayName="Panel";const Jse={minHeight:0,maxHeight:"100%",height:"auto",minWidth:0,maxWidth:"100%",width:"auto",border:"none",borderWidth:0,padding:0,margin:0};function ede({layout:e,panelConstraints:t,panelId:o,panelIndex:n}){let a,r;const c=e[o],s=t.find(l=>l.panelId===o);if(s){const l=s.maxSize,u=s.collapsible?s.collapsedSize:s.minSize,y=[n,n+1];r=qc({layout:a1({delta:u-c,initialLayout:e,panelConstraints:t,pivotIndices:y,prevLayout:e}),panelConstraints:t})[o],a=qc({layout:a1({delta:l-c,initialLayout:e,panelConstraints:t,pivotIndices:y,prevLayout:e}),panelConstraints:t})[o]}return{valueControls:o,valueMax:a,valueMin:r,valueNow:c}}function HW({children:e,className:t,elementRef:o,id:n,style:a,...r}){const c=MP(n),[s,l]=w.useState({}),[u,y]=w.useState("inactive"),h=w.useRef(null),f=wP(h,o),{id:k,orientation:m,registerSeparator:g}=xP(),_=m==="horizontal"?"vertical":"horizontal";return Hc(()=>{const v=h.current;if(v!==null){const b={element:v,id:c},M=g(b),x=zc.addListener("interactionStateChange",C=>{y(C.state!=="inactive"&&C.hitRegions.some($=>$.separator===b)?C.state:"inactive")}),N=zc.addListener("mountedGroupsChange",C=>{C.forEach(({derivedPanelConstraints:$,layout:L,separatorToPanels:A},q)=>{if(q.id===k){const z=A.get(b);if(z){const O=z[0],D=q.panels.indexOf(O);l(ede({layout:L,panelConstraints:$,panelId:O.id,panelIndex:D}))}}})});return()=>{x(),N(),M()}}},[k,c,g]),d.jsx("div",{...r,"aria-controls":s.valueControls,"aria-orientation":_,"aria-valuemax":s.valueMax,"aria-valuemin":s.valueMin,"aria-valuenow":s.valueNow,children:e,className:t,"data-separator":u,"data-testid":c,id:c,ref:f,role:"separator",style:{flexBasis:"auto",...a,flexGrow:0,flexShrink:0},tabIndex:0})}HW.displayName="Separator";const tde=({className:e,...t})=>d.jsx(qW,{className:S("flex h-full w-full data-[panel-group-direction=vertical]:flex-col",e),...t}),ode=jW,nde=({withHandle:e,className:t,...o})=>d.jsx(HW,{className:S("relative flex w-px items-center justify-center bg-border after:absolute after:inset-y-0 after:left-1/2 after:w-1 after:-translate-x-1/2 focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring focus-visible:ring-offset-1 data-[panel-group-direction=vertical]:h-px data-[panel-group-direction=vertical]:w-full data-[panel-group-direction=vertical]:after:left-0 data-[panel-group-direction=vertical]:after:h-1 data-[panel-group-direction=vertical]:after:w-full data-[panel-group-direction=vertical]:after:-translate-y-1/2 data-[panel-group-direction=vertical]:after:translate-x-0 [&[data-panel-group-direction=vertical]>div]:rotate-90",t),...o,children:e&&d.jsx("div",{className:"z-10 flex h-4 w-3 items-center justify-center rounded-sm border bg-border",children:d.jsx(Jc,{className:"h-2.5 w-2.5"})})});function i1(e,[t,o]){return Math.min(o,Math.max(t,e))}function ade(e,t){return p.useReducer((o,n)=>t[o][n]??o,e)}var NP="ScrollArea",[VW]=Xe(NP),[rde,Wt]=VW(NP),FW=p.forwardRef((e,t)=>{const{__scopeScrollArea:o,type:n="hover",dir:a,scrollHideDelay:r=600,...c}=e,[s,l]=p.useState(null),[u,y]=p.useState(null),[h,f]=p.useState(null),[k,m]=p.useState(null),[g,_]=p.useState(null),[v,b]=p.useState(0),[M,x]=p.useState(0),[N,C]=p.useState(!1),[$,L]=p.useState(!1),A=be(t,z=>l(z)),q=Yt(a);return d.jsx(rde,{scope:o,type:n,dir:q,scrollHideDelay:r,scrollArea:s,viewport:u,onViewportChange:y,content:h,onContentChange:f,scrollbarX:k,onScrollbarXChange:m,scrollbarXEnabled:N,onScrollbarXEnabledChange:C,scrollbarY:g,onScrollbarYChange:_,scrollbarYEnabled:$,onScrollbarYEnabledChange:L,onCornerWidthChange:b,onCornerHeightChange:x,children:d.jsx(se.div,{dir:q,...c,ref:A,style:{position:"relative","--radix-scroll-area-corner-width":v+"px","--radix-scroll-area-corner-height":M+"px",...e.style}})})});FW.displayName=NP;var BW="ScrollAreaViewport",WW=p.forwardRef((e,t)=>{const{__scopeScrollArea:o,children:n,nonce:a,...r}=e,c=Wt(BW,o),s=p.useRef(null),l=be(t,s,c.onViewportChange);return d.jsxs(d.Fragment,{children:[d.jsx("style",{dangerouslySetInnerHTML:{__html:"[data-radix-scroll-area-viewport]{scrollbar-width:none;-ms-overflow-style:none;-webkit-overflow-scrolling:touch;}[data-radix-scroll-area-viewport]::-webkit-scrollbar{display:none}"},nonce:a}),d.jsx(se.div,{"data-radix-scroll-area-viewport":"",...r,ref:l,style:{overflowX:c.scrollbarXEnabled?"scroll":"hidden",overflowY:c.scrollbarYEnabled?"scroll":"hidden",...e.style},children:d.jsx("div",{ref:c.onContentChange,style:{minWidth:"100%",display:"table"},children:n})})]})});WW.displayName=BW;var Po="ScrollAreaScrollbar",CP=p.forwardRef((e,t)=>{const{forceMount:o,...n}=e,a=Wt(Po,e.__scopeScrollArea),{onScrollbarXEnabledChange:r,onScrollbarYEnabledChange:c}=a,s=e.orientation==="horizontal";return p.useEffect(()=>(s?r(!0):c(!0),()=>{s?r(!1):c(!1)}),[s,r,c]),a.type==="hover"?d.jsx(ide,{...n,ref:t,forceMount:o}):a.type==="scroll"?d.jsx(cde,{...n,ref:t,forceMount:o}):a.type==="auto"?d.jsx(UW,{...n,ref:t,forceMount:o}):a.type==="always"?d.jsx($P,{...n,ref:t}):null});CP.displayName=Po;var ide=p.forwardRef((e,t)=>{const{forceMount:o,...n}=e,a=Wt(Po,e.__scopeScrollArea),[r,c]=p.useState(!1);return p.useEffect(()=>{const s=a.scrollArea;let l=0;if(s){const u=()=>{window.clearTimeout(l),c(!0)},y=()=>{l=window.setTimeout(()=>c(!1),a.scrollHideDelay)};return s.addEventListener("pointerenter",u),s.addEventListener("pointerleave",y),()=>{window.clearTimeout(l),s.removeEventListener("pointerenter",u),s.removeEventListener("pointerleave",y)}}},[a.scrollArea,a.scrollHideDelay]),d.jsx(Qe,{present:o||r,children:d.jsx(UW,{"data-state":r?"visible":"hidden",...n,ref:t})})}),cde=p.forwardRef((e,t)=>{const{forceMount:o,...n}=e,a=Wt(Po,e.__scopeScrollArea),r=e.orientation==="horizontal",c=F$(()=>l("SCROLL_END"),100),[s,l]=ade("hidden",{hidden:{SCROLL:"scrolling"},scrolling:{SCROLL_END:"idle",POINTER_ENTER:"interacting"},interacting:{SCROLL:"interacting",POINTER_LEAVE:"idle"},idle:{HIDE:"hidden",SCROLL:"scrolling",POINTER_ENTER:"interacting"}});return p.useEffect(()=>{if(s==="idle"){const u=window.setTimeout(()=>l("HIDE"),a.scrollHideDelay);return()=>window.clearTimeout(u)}},[s,a.scrollHideDelay,l]),p.useEffect(()=>{const u=a.viewport,y=r?"scrollLeft":"scrollTop";if(u){let h=u[y];const f=()=>{const k=u[y];h!==k&&(l("SCROLL"),c()),h=k};return u.addEventListener("scroll",f),()=>u.removeEventListener("scroll",f)}},[a.viewport,r,l,c]),d.jsx(Qe,{present:o||s!=="hidden",children:d.jsx($P,{"data-state":s==="hidden"?"hidden":"visible",...n,ref:t,onPointerEnter:X(e.onPointerEnter,()=>l("POINTER_ENTER")),onPointerLeave:X(e.onPointerLeave,()=>l("POINTER_LEAVE"))})})}),UW=p.forwardRef((e,t)=>{const o=Wt(Po,e.__scopeScrollArea),{forceMount:n,...a}=e,[r,c]=p.useState(!1),s=e.orientation==="horizontal",l=F$(()=>{if(o.viewport){const u=o.viewport.offsetWidth<o.viewport.scrollWidth,y=o.viewport.offsetHeight<o.viewport.scrollHeight;c(s?u:y)}},10);return Ps(o.viewport,l),Ps(o.content,l),d.jsx(Qe,{present:n||r,children:d.jsx($P,{"data-state":r?"visible":"hidden",...a,ref:t})})}),$P=p.forwardRef((e,t)=>{const{orientation:o="vertical",...n}=e,a=Wt(Po,e.__scopeScrollArea),r=p.useRef(null),c=p.useRef(0),[s,l]=p.useState({content:0,viewport:0,scrollbar:{size:0,paddingStart:0,paddingEnd:0}}),u=XW(s.viewport,s.content),y={...n,sizes:s,onSizesChange:l,hasThumb:u>0&&u<1,onThumbChange:f=>r.current=f,onThumbPointerUp:()=>c.current=0,onThumbPointerDown:f=>c.current=f};function h(f,k){return pde(f,c.current,s,k)}return o==="horizontal"?d.jsx(sde,{...y,ref:t,onThumbPositionChange:()=>{if(a.viewport&&r.current){const f=a.viewport.scrollLeft,k=ZW(f,s,a.dir);r.current.style.transform=`translate3d(${k}px, 0, 0)`}},onWheelScroll:f=>{a.viewport&&(a.viewport.scrollLeft=f)},onDragScroll:f=>{a.viewport&&(a.viewport.scrollLeft=h(f,a.dir))}}):o==="vertical"?d.jsx(dde,{...y,ref:t,onThumbPositionChange:()=>{if(a.viewport&&r.current){const f=a.viewport.scrollTop,k=ZW(f,s);r.current.style.transform=`translate3d(0, ${k}px, 0)`}},onWheelScroll:f=>{a.viewport&&(a.viewport.scrollTop=f)},onDragScroll:f=>{a.viewport&&(a.viewport.scrollTop=h(f))}}):null}),sde=p.forwardRef((e,t)=>{const{sizes:o,onSizesChange:n,...a}=e,r=Wt(Po,e.__scopeScrollArea),[c,s]=p.useState(),l=p.useRef(null),u=be(t,l,r.onScrollbarXChange);return p.useEffect(()=>{l.current&&s(getComputedStyle(l.current))},[l]),d.jsx(GW,{"data-orientation":"horizontal",...a,ref:u,sizes:o,style:{bottom:0,left:r.dir==="rtl"?"var(--radix-scroll-area-corner-width)":0,right:r.dir==="ltr"?"var(--radix-scroll-area-corner-width)":0,"--radix-scroll-area-thumb-width":V$(o)+"px",...e.style},onThumbPointerDown:y=>e.onThumbPointerDown(y.x),onDragScroll:y=>e.onDragScroll(y.x),onWheelScroll:(y,h)=>{if(r.viewport){const f=r.viewport.scrollLeft+y.deltaX;e.onWheelScroll(f),JW(f,h)&&y.preventDefault()}},onResize:()=>{l.current&&r.viewport&&c&&n({content:r.viewport.scrollWidth,viewport:r.viewport.offsetWidth,scrollbar:{size:l.current.clientWidth,paddingStart:H$(c.paddingLeft),paddingEnd:H$(c.paddingRight)}})}})}),dde=p.forwardRef((e,t)=>{const{sizes:o,onSizesChange:n,...a}=e,r=Wt(Po,e.__scopeScrollArea),[c,s]=p.useState(),l=p.useRef(null),u=be(t,l,r.onScrollbarYChange);return p.useEffect(()=>{l.current&&s(getComputedStyle(l.current))},[l]),d.jsx(GW,{"data-orientation":"vertical",...a,ref:u,sizes:o,style:{top:0,right:r.dir==="ltr"?0:void 0,left:r.dir==="rtl"?0:void 0,bottom:"var(--radix-scroll-area-corner-height)","--radix-scroll-area-thumb-height":V$(o)+"px",...e.style},onThumbPointerDown:y=>e.onThumbPointerDown(y.y),onDragScroll:y=>e.onDragScroll(y.y),onWheelScroll:(y,h)=>{if(r.viewport){const f=r.viewport.scrollTop+y.deltaY;e.onWheelScroll(f),JW(f,h)&&y.preventDefault()}},onResize:()=>{l.current&&r.viewport&&c&&n({content:r.viewport.scrollHeight,viewport:r.viewport.offsetHeight,scrollbar:{size:l.current.clientHeight,paddingStart:H$(c.paddingTop),paddingEnd:H$(c.paddingBottom)}})}})}),[lde,RW]=VW(Po),GW=p.forwardRef((e,t)=>{const{__scopeScrollArea:o,sizes:n,hasThumb:a,onThumbChange:r,onThumbPointerUp:c,onThumbPointerDown:s,onThumbPositionChange:l,onDragScroll:u,onWheelScroll:y,onResize:h,...f}=e,k=Wt(Po,o),[m,g]=p.useState(null),_=be(t,A=>g(A)),v=p.useRef(null),b=p.useRef(""),M=k.viewport,x=n.content-n.viewport,N=Ue(y),C=Ue(l),$=F$(h,10);function L(A){if(v.current){const q=A.clientX-v.current.left,z=A.clientY-v.current.top;u({x:q,y:z})}}return p.useEffect(()=>{const A=q=>{const z=q.target;m?.contains(z)&&N(q,x)};return document.addEventListener("wheel",A,{passive:!1}),()=>document.removeEventListener("wheel",A,{passive:!1})},[M,m,x,N]),p.useEffect(C,[n,C]),Ps(m,$),Ps(k.content,$),d.jsx(lde,{scope:o,scrollbar:m,hasThumb:a,onThumbChange:Ue(r),onThumbPointerUp:Ue(c),onThumbPositionChange:C,onThumbPointerDown:Ue(s),children:d.jsx(se.div,{...f,ref:_,style:{position:"absolute",...f.style},onPointerDown:X(e.onPointerDown,A=>{A.button===0&&(A.target.setPointerCapture(A.pointerId),v.current=m.getBoundingClientRect(),b.current=document.body.style.webkitUserSelect,document.body.style.webkitUserSelect="none",k.viewport&&(k.viewport.style.scrollBehavior="auto"),L(A))}),onPointerMove:X(e.onPointerMove,L),onPointerUp:X(e.onPointerUp,A=>{const q=A.target;q.hasPointerCapture(A.pointerId)&&q.releasePointerCapture(A.pointerId),document.body.style.webkitUserSelect=b.current,k.viewport&&(k.viewport.style.scrollBehavior=""),v.current=null})})})}),j$="ScrollAreaThumb",KW=p.forwardRef((e,t)=>{const{forceMount:o,...n}=e,a=RW(j$,e.__scopeScrollArea);return d.jsx(Qe,{present:o||a.hasThumb,children:d.jsx(ude,{ref:t,...n})})}),ude=p.forwardRef((e,t)=>{const{__scopeScrollArea:o,style:n,...a}=e,r=Wt(j$,o),c=RW(j$,o),{onThumbPositionChange:s}=c,l=be(t,h=>c.onThumbChange(h)),u=p.useRef(void 0),y=F$(()=>{u.current&&(u.current(),u.current=void 0)},100);return p.useEffect(()=>{const h=r.viewport;if(h){const f=()=>{if(y(),!u.current){const k=yde(h,s);u.current=k,s()}};return s(),h.addEventListener("scroll",f),()=>h.removeEventListener("scroll",f)}},[r.viewport,y,s]),d.jsx(se.div,{"data-state":c.hasThumb?"visible":"hidden",...a,ref:l,style:{width:"var(--radix-scroll-area-thumb-width)",height:"var(--radix-scroll-area-thumb-height)",...n},onPointerDownCapture:X(e.onPointerDownCapture,h=>{const k=h.target.getBoundingClientRect(),m=h.clientX-k.left,g=h.clientY-k.top;c.onThumbPointerDown({x:m,y:g})}),onPointerUp:X(e.onPointerUp,c.onThumbPointerUp)})});KW.displayName=j$;var SP="ScrollAreaCorner",YW=p.forwardRef((e,t)=>{const o=Wt(SP,e.__scopeScrollArea),n=!!(o.scrollbarX&&o.scrollbarY);return o.type!=="scroll"&&n?d.jsx(hde,{...e,ref:t}):null});YW.displayName=SP;var hde=p.forwardRef((e,t)=>{const{__scopeScrollArea:o,...n}=e,a=Wt(SP,o),[r,c]=p.useState(0),[s,l]=p.useState(0),u=!!(r&&s);return Ps(a.scrollbarX,()=>{const y=a.scrollbarX?.offsetHeight||0;a.onCornerHeightChange(y),l(y)}),Ps(a.scrollbarY,()=>{const y=a.scrollbarY?.offsetWidth||0;a.onCornerWidthChange(y),c(y)}),u?d.jsx(se.div,{...n,ref:t,style:{width:r,height:s,position:"absolute",right:a.dir==="ltr"?0:void 0,left:a.dir==="rtl"?0:void 0,bottom:0,...e.style}}):null});function H$(e){return e?parseInt(e,10):0}function XW(e,t){const o=e/t;return isNaN(o)?0:o}function V$(e){const t=XW(e.viewport,e.content),o=e.scrollbar.paddingStart+e.scrollbar.paddingEnd,n=(e.scrollbar.size-o)*t;return Math.max(n,18)}function pde(e,t,o,n="ltr"){const a=V$(o),r=a/2,c=t||r,s=a-c,l=o.scrollbar.paddingStart+c,u=o.scrollbar.size-o.scrollbar.paddingEnd-s,y=o.content-o.viewport,h=n==="ltr"?[0,y]:[y*-1,0];return QW([l,u],h)(e)}function ZW(e,t,o="ltr"){const n=V$(t),a=t.scrollbar.paddingStart+t.scrollbar.paddingEnd,r=t.scrollbar.size-a,c=t.content-t.viewport,s=r-n,l=o==="ltr"?[0,c]:[c*-1,0],u=i1(e,l);return QW([0,c],[0,s])(u)}function QW(e,t){return o=>{if(e[0]===e[1]||t[0]===t[1])return t[0];const n=(t[1]-t[0])/(e[1]-e[0]);return t[0]+n*(o-e[0])}}function JW(e,t){return e>0&&e<t}var yde=(e,t=()=>{})=>{let o={left:e.scrollLeft,top:e.scrollTop},n=0;return(function a(){const r={left:e.scrollLeft,top:e.scrollTop},c=o.left!==r.left,s=o.top!==r.top;(c||s)&&t(),o=r,n=window.requestAnimationFrame(a)})(),()=>window.cancelAnimationFrame(n)};function F$(e,t){const o=Ue(e),n=p.useRef(0);return p.useEffect(()=>()=>window.clearTimeout(n.current),[]),p.useCallback(()=>{window.clearTimeout(n.current),n.current=window.setTimeout(o,t)},[o,t])}function Ps(e,t){const o=Ue(t);Ze(()=>{let n=0;if(e){const a=new ResizeObserver(()=>{cancelAnimationFrame(n),n=window.requestAnimationFrame(o)});return a.observe(e),()=>{window.cancelAnimationFrame(n),a.unobserve(e)}}},[e,o])}var eU=FW,fde=WW,mde=YW;const tU=p.forwardRef(({className:e,children:t,...o},n)=>d.jsxs(eU,{ref:n,className:S("relative overflow-hidden",e),...o,children:[d.jsx(fde,{className:"h-full w-full rounded-[inherit]",children:t}),d.jsx(B$,{}),d.jsx(mde,{})]}));tU.displayName=eU.displayName;const B$=p.forwardRef(({className:e,orientation:t="vertical",...o},n)=>d.jsx(CP,{ref:n,orientation:t,className:S("flex touch-none select-none transition-colors",t==="vertical"&&"h-full w-2.5 border-l border-l-transparent p-[1px]",t==="horizontal"&&"h-2.5 flex-col border-t border-t-transparent p-[1px]",e),...o,children:d.jsx(KW,{className:"relative flex-1 rounded-full bg-border"})}));B$.displayName=CP.displayName;var kde=[" ","Enter","ArrowUp","ArrowDown"],gde=[" ","Enter"],Vc="Select",[W$,U$,vde]=en(Vc),[Ts]=Xe(Vc,[vde,Io]),R$=Io(),[_de,gn]=Ts(Vc),[bde,Mde]=Ts(Vc),oU=e=>{const{__scopeSelect:t,children:o,open:n,defaultOpen:a,onOpenChange:r,value:c,defaultValue:s,onValueChange:l,dir:u,name:y,autoComplete:h,disabled:f,required:k,form:m}=e,g=R$(t),[_,v]=p.useState(null),[b,M]=p.useState(null),[x,N]=p.useState(!1),C=Yt(u),[$,L]=Ke({prop:n,defaultProp:a??!1,onChange:r,caller:Vc}),[A,q]=Ke({prop:c,defaultProp:s,onChange:l,caller:Vc}),z=p.useRef(null),O=_?m||!!_.closest("form"):!0,[D,U]=p.useState(new Set),G=Array.from(D).map(H=>H.props.value).join(";");return d.jsx(xs,{...g,children:d.jsxs(_de,{required:k,scope:t,trigger:_,onTriggerChange:v,valueNode:b,onValueNodeChange:M,valueNodeHasChildren:x,onValueNodeHasChildrenChange:N,contentId:We(),value:A,onValueChange:q,open:$,onOpenChange:L,dir:C,triggerPointerDownPosRef:z,disabled:f,children:[d.jsx(W$.Provider,{scope:t,children:d.jsx(bde,{scope:e.__scopeSelect,onNativeOptionAdd:p.useCallback(H=>{U(Y=>new Set(Y).add(H))},[]),onNativeOptionRemove:p.useCallback(H=>{U(Y=>{const P=new Set(Y);return P.delete(H),P})},[]),children:o})}),O?d.jsxs(CU,{"aria-hidden":!0,required:k,tabIndex:-1,name:y,autoComplete:h,value:A,onChange:H=>q(H.target.value),disabled:f,form:m,children:[A===void 0?d.jsx("option",{value:""}):null,Array.from(D)]},G):null]})})};oU.displayName=Vc;var nU="SelectTrigger",aU=p.forwardRef((e,t)=>{const{__scopeSelect:o,disabled:n=!1,...a}=e,r=R$(o),c=gn(nU,o),s=c.disabled||n,l=be(t,c.onTriggerChange),u=U$(o),y=p.useRef("touch"),[h,f,k]=SU(g=>{const _=u().filter(M=>!M.disabled),v=_.find(M=>M.value===c.value),b=LU(_,g,v);b!==void 0&&c.onValueChange(b.value)}),m=g=>{s||(c.onOpenChange(!0),k()),g&&(c.triggerPointerDownPosRef.current={x:Math.round(g.pageX),y:Math.round(g.pageY)})};return d.jsx(Ns,{asChild:!0,...r,children:d.jsx(se.button,{type:"button",role:"combobox","aria-controls":c.contentId,"aria-expanded":c.open,"aria-required":c.required,"aria-autocomplete":"none",dir:c.dir,"data-state":c.open?"open":"closed",disabled:s,"data-disabled":s?"":void 0,"data-placeholder":$U(c.value)?"":void 0,...a,ref:l,onClick:X(a.onClick,g=>{g.currentTarget.focus(),y.current!=="mouse"&&m(g)}),onPointerDown:X(a.onPointerDown,g=>{y.current=g.pointerType;const _=g.target;_.hasPointerCapture(g.pointerId)&&_.releasePointerCapture(g.pointerId),g.button===0&&g.ctrlKey===!1&&g.pointerType==="mouse"&&(m(g),g.preventDefault())}),onKeyDown:X(a.onKeyDown,g=>{const _=h.current!=="";!(g.ctrlKey||g.altKey||g.metaKey)&&g.key.length===1&&f(g.key),!(_&&g.key===" ")&&kde.includes(g.key)&&(m(),g.preventDefault())})})})});aU.displayName=nU;var rU="SelectValue",iU=p.forwardRef((e,t)=>{const{__scopeSelect:o,className:n,style:a,children:r,placeholder:c="",...s}=e,l=gn(rU,o),{onValueNodeHasChildrenChange:u}=l,y=r!==void 0,h=be(t,l.onValueNodeChange);return Ze(()=>{u(y)},[u,y]),d.jsx(se.span,{...s,ref:h,style:{pointerEvents:"none"},children:$U(l.value)?d.jsx(d.Fragment,{children:c}):r})});iU.displayName=rU;var wde="SelectIcon",cU=p.forwardRef((e,t)=>{const{__scopeSelect:o,children:n,...a}=e;return d.jsx(se.span,{"aria-hidden":!0,...a,ref:t,children:n||"▼"})});cU.displayName=wde;var xde="SelectPortal",sU=e=>d.jsx(ud,{asChild:!0,...e});sU.displayName=xde;var Fc="SelectContent",dU=p.forwardRef((e,t)=>{const o=gn(Fc,e.__scopeSelect),[n,a]=p.useState();if(Ze(()=>{a(new DocumentFragment)},[]),!o.open){const r=n;return r?p1.createPortal(d.jsx(lU,{scope:e.__scopeSelect,children:d.jsx(W$.Slot,{scope:e.__scopeSelect,children:d.jsx("div",{children:e.children})})}),r):null}return d.jsx(uU,{...e,ref:t})});dU.displayName=Fc;var so=10,[lU,vn]=Ts(Fc),Nde="SelectContentImpl",Cde=wn("SelectContent.RemoveScroll"),uU=p.forwardRef((e,t)=>{const{__scopeSelect:o,position:n="item-aligned",onCloseAutoFocus:a,onEscapeKeyDown:r,onPointerDownOutside:c,side:s,sideOffset:l,align:u,alignOffset:y,arrowPadding:h,collisionBoundary:f,collisionPadding:k,sticky:m,hideWhenDetached:g,avoidCollisions:_,...v}=e,b=gn(Fc,o),[M,x]=p.useState(null),[N,C]=p.useState(null),$=be(t,V=>x(V)),[L,A]=p.useState(null),[q,z]=p.useState(null),O=U$(o),[D,U]=p.useState(!1),G=p.useRef(!1);p.useEffect(()=>{if(M)return EC(M)},[M]),$C();const H=p.useCallback(V=>{const[te,...fe]=O().map(ee=>ee.ref.current),[pe]=fe.slice(-1),le=document.activeElement;for(const ee of V)if(ee===le||(ee?.scrollIntoView({block:"nearest"}),ee===te&&N&&(N.scrollTop=0),ee===pe&&N&&(N.scrollTop=N.scrollHeight),ee?.focus(),document.activeElement!==le))return},[O,N]),Y=p.useCallback(()=>H([L,M]),[H,L,M]);p.useEffect(()=>{D&&Y()},[D,Y]);const{onOpenChange:P,triggerPointerDownPosRef:F}=b;p.useEffect(()=>{if(M){let V={x:0,y:0};const te=pe=>{V={x:Math.abs(Math.round(pe.pageX)-(F.current?.x??0)),y:Math.abs(Math.round(pe.pageY)-(F.current?.y??0))}},fe=pe=>{V.x<=10&&V.y<=10?pe.preventDefault():M.contains(pe.target)||P(!1),document.removeEventListener("pointermove",te),F.current=null};return F.current!==null&&(document.addEventListener("pointermove",te),document.addEventListener("pointerup",fe,{capture:!0,once:!0})),()=>{document.removeEventListener("pointermove",te),document.removeEventListener("pointerup",fe,{capture:!0})}}},[M,P,F]),p.useEffect(()=>{const V=()=>P(!1);return window.addEventListener("blur",V),window.addEventListener("resize",V),()=>{window.removeEventListener("blur",V),window.removeEventListener("resize",V)}},[P]);const[ne,de]=SU(V=>{const te=O().filter(le=>!le.disabled),fe=te.find(le=>le.ref.current===document.activeElement),pe=LU(te,V,fe);pe&&setTimeout(()=>pe.ref.current.focus())}),B=p.useCallback((V,te,fe)=>{const pe=!G.current&&!fe;(b.value!==void 0&&b.value===te||pe)&&(A(V),pe&&(G.current=!0))},[b.value]),W=p.useCallback(()=>M?.focus(),[M]),K=p.useCallback((V,te,fe)=>{const pe=!G.current&&!fe;(b.value!==void 0&&b.value===te||pe)&&z(V)},[b.value]),R=n==="popper"?LP:hU,re=R===LP?{side:s,sideOffset:l,align:u,alignOffset:y,arrowPadding:h,collisionBoundary:f,collisionPadding:k,sticky:m,hideWhenDetached:g,avoidCollisions:_}:{};return d.jsx(lU,{scope:o,content:M,viewport:N,onViewportChange:C,itemRefCallback:B,selectedItem:L,onItemLeave:W,itemTextRefCallback:K,focusSelectedItem:Y,selectedItemText:q,position:n,isPositioned:D,searchRef:ne,children:d.jsx(hd,{as:Cde,allowPinchZoom:!0,children:d.jsx(ld,{asChild:!0,trapped:b.open,onMountAutoFocus:V=>{V.preventDefault()},onUnmountAutoFocus:X(a,V=>{b.trigger?.focus({preventScroll:!0}),V.preventDefault()}),children:d.jsx(dn,{asChild:!0,disableOutsidePointerEvents:!0,onEscapeKeyDown:r,onPointerDownOutside:c,onFocusOutside:V=>V.preventDefault(),onDismiss:()=>b.onOpenChange(!1),children:d.jsx(R,{role:"listbox",id:b.contentId,"data-state":b.open?"open":"closed",dir:b.dir,onContextMenu:V=>V.preventDefault(),...v,...re,onPlaced:()=>U(!0),ref:$,style:{display:"flex",flexDirection:"column",outline:"none",...v.style},onKeyDown:X(v.onKeyDown,V=>{const te=V.ctrlKey||V.altKey||V.metaKey;if(V.key==="Tab"&&V.preventDefault(),!te&&V.key.length===1&&de(V.key),["ArrowUp","ArrowDown","Home","End"].includes(V.key)){let pe=O().filter(le=>!le.disabled).map(le=>le.ref.current);if(["ArrowUp","End"].includes(V.key)&&(pe=pe.slice().reverse()),["ArrowUp","ArrowDown"].includes(V.key)){const le=V.target,ee=pe.indexOf(le);pe=pe.slice(ee+1)}setTimeout(()=>H(pe)),V.preventDefault()}})})})})})})});uU.displayName=Nde;var $de="SelectItemAlignedPosition",hU=p.forwardRef((e,t)=>{const{__scopeSelect:o,onPlaced:n,...a}=e,r=gn(Fc,o),c=vn(Fc,o),[s,l]=p.useState(null),[u,y]=p.useState(null),h=be(t,$=>y($)),f=U$(o),k=p.useRef(!1),m=p.useRef(!0),{viewport:g,selectedItem:_,selectedItemText:v,focusSelectedItem:b}=c,M=p.useCallback(()=>{if(r.trigger&&r.valueNode&&s&&u&&g&&_&&v){const $=r.trigger.getBoundingClientRect(),L=u.getBoundingClientRect(),A=r.valueNode.getBoundingClientRect(),q=v.getBoundingClientRect();if(r.dir!=="rtl"){const le=q.left-L.left,ee=A.left-le,_e=$.left-ee,j=$.width+_e,ue=Math.max(j,L.width),xe=window.innerWidth-so,Ce=i1(ee,[so,Math.max(so,xe-ue)]);s.style.minWidth=j+"px",s.style.left=Ce+"px"}else{const le=L.right-q.right,ee=window.innerWidth-A.right-le,_e=window.innerWidth-$.right-ee,j=$.width+_e,ue=Math.max(j,L.width),xe=window.innerWidth-so,Ce=i1(ee,[so,Math.max(so,xe-ue)]);s.style.minWidth=j+"px",s.style.right=Ce+"px"}const z=f(),O=window.innerHeight-so*2,D=g.scrollHeight,U=window.getComputedStyle(u),G=parseInt(U.borderTopWidth,10),H=parseInt(U.paddingTop,10),Y=parseInt(U.borderBottomWidth,10),P=parseInt(U.paddingBottom,10),F=G+H+D+P+Y,ne=Math.min(_.offsetHeight*5,F),de=window.getComputedStyle(g),B=parseInt(de.paddingTop,10),W=parseInt(de.paddingBottom,10),K=$.top+$.height/2-so,R=O-K,re=_.offsetHeight/2,V=_.offsetTop+re,te=G+H+V,fe=F-te;if(te<=K){const le=z.length>0&&_===z[z.length-1].ref.current;s.style.bottom="0px";const ee=u.clientHeight-g.offsetTop-g.offsetHeight,_e=Math.max(R,re+(le?W:0)+ee+Y),j=te+_e;s.style.height=j+"px"}else{const le=z.length>0&&_===z[0].ref.current;s.style.top="0px";const _e=Math.max(K,G+g.offsetTop+(le?B:0)+re)+fe;s.style.height=_e+"px",g.scrollTop=te-K+g.offsetTop}s.style.margin=`${so}px 0`,s.style.minHeight=ne+"px",s.style.maxHeight=O+"px",n?.(),requestAnimationFrame(()=>k.current=!0)}},[f,r.trigger,r.valueNode,s,u,g,_,v,r.dir,n]);Ze(()=>M(),[M]);const[x,N]=p.useState();Ze(()=>{u&&N(window.getComputedStyle(u).zIndex)},[u]);const C=p.useCallback($=>{$&&m.current===!0&&(M(),b?.(),m.current=!1)},[M,b]);return d.jsx(Lde,{scope:o,contentWrapper:s,shouldExpandOnScrollRef:k,onScrollButtonChange:C,children:d.jsx("div",{ref:l,style:{display:"flex",flexDirection:"column",position:"fixed",zIndex:x},children:d.jsx(se.div,{...a,ref:h,style:{boxSizing:"border-box",maxHeight:"100%",...a.style}})})})});hU.displayName=$de;var Sde="SelectPopperPosition",LP=p.forwardRef((e,t)=>{const{__scopeSelect:o,align:n="start",collisionPadding:a=so,...r}=e,c=R$(o);return d.jsx(Od,{...c,...r,ref:t,align:n,collisionPadding:a,style:{boxSizing:"border-box",...r.style,"--radix-select-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-select-content-available-width":"var(--radix-popper-available-width)","--radix-select-content-available-height":"var(--radix-popper-available-height)","--radix-select-trigger-width":"var(--radix-popper-anchor-width)","--radix-select-trigger-height":"var(--radix-popper-anchor-height)"}})});LP.displayName=Sde;var[Lde,IP]=Ts(Fc,{}),AP="SelectViewport",pU=p.forwardRef((e,t)=>{const{__scopeSelect:o,nonce:n,...a}=e,r=vn(AP,o),c=IP(AP,o),s=be(t,r.onViewportChange),l=p.useRef(0);return d.jsxs(d.Fragment,{children:[d.jsx("style",{dangerouslySetInnerHTML:{__html:"[data-radix-select-viewport]{scrollbar-width:none;-ms-overflow-style:none;-webkit-overflow-scrolling:touch;}[data-radix-select-viewport]::-webkit-scrollbar{display:none}"},nonce:n}),d.jsx(W$.Slot,{scope:o,children:d.jsx(se.div,{"data-radix-select-viewport":"",role:"presentation",...a,ref:s,style:{position:"relative",flex:1,overflow:"hidden auto",...a.style},onScroll:X(a.onScroll,u=>{const y=u.currentTarget,{contentWrapper:h,shouldExpandOnScrollRef:f}=c;if(f?.current&&h){const k=Math.abs(l.current-y.scrollTop);if(k>0){const m=window.innerHeight-so*2,g=parseFloat(h.style.minHeight),_=parseFloat(h.style.height),v=Math.max(g,_);if(v<m){const b=v+k,M=Math.min(m,b),x=b-M;h.style.height=M+"px",h.style.bottom==="0px"&&(y.scrollTop=x>0?x:0,h.style.justifyContent="flex-end")}}}l.current=y.scrollTop})})})]})});pU.displayName=AP;var yU="SelectGroup",[Ide,Ade]=Ts(yU),Pde=p.forwardRef((e,t)=>{const{__scopeSelect:o,...n}=e,a=We();return d.jsx(Ide,{scope:o,id:a,children:d.jsx(se.div,{role:"group","aria-labelledby":a,...n,ref:t})})});Pde.displayName=yU;var fU="SelectLabel",mU=p.forwardRef((e,t)=>{const{__scopeSelect:o,...n}=e,a=Ade(fU,o);return d.jsx(se.div,{id:a.id,...n,ref:t})});mU.displayName=fU;var G$="SelectItem",[Tde,kU]=Ts(G$),gU=p.forwardRef((e,t)=>{const{__scopeSelect:o,value:n,disabled:a=!1,textValue:r,...c}=e,s=gn(G$,o),l=vn(G$,o),u=s.value===n,[y,h]=p.useState(r??""),[f,k]=p.useState(!1),m=be(t,b=>l.itemRefCallback?.(b,n,a)),g=We(),_=p.useRef("touch"),v=()=>{a||(s.onValueChange(n),s.onOpenChange(!1))};if(n==="")throw new Error("A <Select.Item /> must have a value prop that is not an empty string. This is because the Select value can be set to an empty string to clear the selection and show the placeholder.");return d.jsx(Tde,{scope:o,value:n,disabled:a,textId:g,isSelected:u,onItemTextChange:p.useCallback(b=>{h(M=>M||(b?.textContent??"").trim())},[]),children:d.jsx(W$.ItemSlot,{scope:o,value:n,disabled:a,textValue:y,children:d.jsx(se.div,{role:"option","aria-labelledby":g,"data-highlighted":f?"":void 0,"aria-selected":u&&f,"data-state":u?"checked":"unchecked","aria-disabled":a||void 0,"data-disabled":a?"":void 0,tabIndex:a?void 0:-1,...c,ref:m,onFocus:X(c.onFocus,()=>k(!0)),onBlur:X(c.onBlur,()=>k(!1)),onClick:X(c.onClick,()=>{_.current!=="mouse"&&v()}),onPointerUp:X(c.onPointerUp,()=>{_.current==="mouse"&&v()}),onPointerDown:X(c.onPointerDown,b=>{_.current=b.pointerType}),onPointerMove:X(c.onPointerMove,b=>{_.current=b.pointerType,a?l.onItemLeave?.():_.current==="mouse"&&b.currentTarget.focus({preventScroll:!0})}),onPointerLeave:X(c.onPointerLeave,b=>{b.currentTarget===document.activeElement&&l.onItemLeave?.()}),onKeyDown:X(c.onKeyDown,b=>{l.searchRef?.current!==""&&b.key===" "||(gde.includes(b.key)&&v(),b.key===" "&&b.preventDefault())})})})})});gU.displayName=G$;var c1="SelectItemText",vU=p.forwardRef((e,t)=>{const{__scopeSelect:o,className:n,style:a,...r}=e,c=gn(c1,o),s=vn(c1,o),l=kU(c1,o),u=Mde(c1,o),[y,h]=p.useState(null),f=be(t,v=>h(v),l.onItemTextChange,v=>s.itemTextRefCallback?.(v,l.value,l.disabled)),k=y?.textContent,m=p.useMemo(()=>d.jsx("option",{value:l.value,disabled:l.disabled,children:k},l.value),[l.disabled,l.value,k]),{onNativeOptionAdd:g,onNativeOptionRemove:_}=u;return Ze(()=>(g(m),()=>_(m)),[g,_,m]),d.jsxs(d.Fragment,{children:[d.jsx(se.span,{id:l.textId,...r,ref:f}),l.isSelected&&c.valueNode&&!c.valueNodeHasChildren?p1.createPortal(r.children,c.valueNode):null]})});vU.displayName=c1;var _U="SelectItemIndicator",bU=p.forwardRef((e,t)=>{const{__scopeSelect:o,...n}=e;return kU(_U,o).isSelected?d.jsx(se.span,{"aria-hidden":!0,...n,ref:t}):null});bU.displayName=_U;var PP="SelectScrollUpButton",MU=p.forwardRef((e,t)=>{const o=vn(PP,e.__scopeSelect),n=IP(PP,e.__scopeSelect),[a,r]=p.useState(!1),c=be(t,n.onScrollButtonChange);return Ze(()=>{if(o.viewport&&o.isPositioned){let s=function(){const u=l.scrollTop>0;r(u)};const l=o.viewport;return s(),l.addEventListener("scroll",s),()=>l.removeEventListener("scroll",s)}},[o.viewport,o.isPositioned]),a?d.jsx(xU,{...e,ref:c,onAutoScroll:()=>{const{viewport:s,selectedItem:l}=o;s&&l&&(s.scrollTop=s.scrollTop-l.offsetHeight)}}):null});MU.displayName=PP;var TP="SelectScrollDownButton",wU=p.forwardRef((e,t)=>{const o=vn(TP,e.__scopeSelect),n=IP(TP,e.__scopeSelect),[a,r]=p.useState(!1),c=be(t,n.onScrollButtonChange);return Ze(()=>{if(o.viewport&&o.isPositioned){let s=function(){const u=l.scrollHeight-l.clientHeight,y=Math.ceil(l.scrollTop)<u;r(y)};const l=o.viewport;return s(),l.addEventListener("scroll",s),()=>l.removeEventListener("scroll",s)}},[o.viewport,o.isPositioned]),a?d.jsx(xU,{...e,ref:c,onAutoScroll:()=>{const{viewport:s,selectedItem:l}=o;s&&l&&(s.scrollTop=s.scrollTop+l.offsetHeight)}}):null});wU.displayName=TP;var xU=p.forwardRef((e,t)=>{const{__scopeSelect:o,onAutoScroll:n,...a}=e,r=vn("SelectScrollButton",o),c=p.useRef(null),s=U$(o),l=p.useCallback(()=>{c.current!==null&&(window.clearInterval(c.current),c.current=null)},[]);return p.useEffect(()=>()=>l(),[l]),Ze(()=>{s().find(y=>y.ref.current===document.activeElement)?.ref.current?.scrollIntoView({block:"nearest"})},[s]),d.jsx(se.div,{"aria-hidden":!0,...a,ref:t,style:{flexShrink:0,...a.style},onPointerDown:X(a.onPointerDown,()=>{c.current===null&&(c.current=window.setInterval(n,50))}),onPointerMove:X(a.onPointerMove,()=>{r.onItemLeave?.(),c.current===null&&(c.current=window.setInterval(n,50))}),onPointerLeave:X(a.onPointerLeave,()=>{l()})})}),Dde="SelectSeparator",NU=p.forwardRef((e,t)=>{const{__scopeSelect:o,...n}=e;return d.jsx(se.div,{"aria-hidden":!0,...n,ref:t})});NU.displayName=Dde;var DP="SelectArrow",Ede=p.forwardRef((e,t)=>{const{__scopeSelect:o,...n}=e,a=R$(o),r=gn(DP,o),c=vn(DP,o);return r.open&&c.position==="popper"?d.jsx(qd,{...a,...n,ref:t}):null});Ede.displayName=DP;var zde="SelectBubbleInput",CU=p.forwardRef(({__scopeSelect:e,value:t,...o},n)=>{const a=p.useRef(null),r=be(n,a),c=ks(t);return p.useEffect(()=>{const s=a.current;if(!s)return;const l=window.HTMLSelectElement.prototype,y=Object.getOwnPropertyDescriptor(l,"value").set;if(c!==t&&y){const h=new Event("change",{bubbles:!0});y.call(s,t),s.dispatchEvent(h)}},[c,t]),d.jsx(se.select,{...o,style:{...VF,...o.style},ref:r,defaultValue:t})});CU.displayName=zde;function $U(e){return e===""||e===void 0}function SU(e){const t=Ue(e),o=p.useRef(""),n=p.useRef(0),a=p.useCallback(c=>{const s=o.current+c;t(s),(function l(u){o.current=u,window.clearTimeout(n.current),u!==""&&(n.current=window.setTimeout(()=>l(""),1e3))})(s)},[t]),r=p.useCallback(()=>{o.current="",window.clearTimeout(n.current)},[]);return p.useEffect(()=>()=>window.clearTimeout(n.current),[]),[o,a,r]}function LU(e,t,o){const a=t.length>1&&Array.from(t).every(u=>u===t[0])?t[0]:t,r=o?e.indexOf(o):-1;let c=Ode(e,Math.max(r,0));a.length===1&&(c=c.filter(u=>u!==o));const l=c.find(u=>u.textValue.toLowerCase().startsWith(a.toLowerCase()));return l!==o?l:void 0}function Ode(e,t){return e.map((o,n)=>e[(t+n)%e.length])}var qde=oU,IU=aU,jde=iU,Hde=cU,Vde=sU,AU=dU,Fde=pU,PU=mU,TU=gU,Bde=vU,Wde=bU,DU=MU,EU=wU,zU=NU;const Xo=qde,Zo=jde,To=p.forwardRef(({className:e,children:t,...o},n)=>d.jsxs(IU,{ref:n,className:S("flex h-10 w-full items-center justify-between rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background data-[placeholder]:text-muted-foreground focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 [&>span]:line-clamp-1",e),...o,children:[t,d.jsx(Hde,{asChild:!0,children:d.jsx(Zt,{className:"h-4 w-4 opacity-50"})})]}));To.displayName=IU.displayName;const OU=p.forwardRef(({className:e,...t},o)=>d.jsx(DU,{ref:o,className:S("flex cursor-default items-center justify-center py-1",e),...t,children:d.jsx(Zc,{className:"h-4 w-4"})}));OU.displayName=DU.displayName;const qU=p.forwardRef(({className:e,...t},o)=>d.jsx(EU,{ref:o,className:S("flex cursor-default items-center justify-center py-1",e),...t,children:d.jsx(Zt,{className:"h-4 w-4"})}));qU.displayName=EU.displayName;const Do=p.forwardRef(({className:e,children:t,position:o="popper",...n},a)=>d.jsx(Vde,{children:d.jsxs(AU,{ref:a,className:S("relative z-50 max-h-[--radix-select-content-available-height] min-w-[8rem] overflow-y-auto overflow-x-hidden rounded-md border bg-popover text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-select-content-transform-origin]",o==="popper"&&"data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1",e),position:o,...n,children:[d.jsx(OU,{}),d.jsx(Fde,{className:S("p-1",o==="popper"&&"h-[var(--radix-select-trigger-height)] w-full min-w-[var(--radix-select-trigger-width)]"),children:t}),d.jsx(qU,{})]})}));Do.displayName=AU.displayName;const Ude=p.forwardRef(({className:e,...t},o)=>d.jsx(PU,{ref:o,className:S("py-1.5 pl-8 pr-2 text-sm font-semibold",e),...t}));Ude.displayName=PU.displayName;const kt=p.forwardRef(({className:e,children:t,...o},n)=>d.jsxs(TU,{ref:n,className:S("relative flex w-full cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",e),...o,children:[d.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:d.jsx(Wde,{children:d.jsx(yo,{className:"h-4 w-4"})})}),d.jsx(Bde,{children:t})]}));kt.displayName=TU.displayName;const Rde=p.forwardRef(({className:e,...t},o)=>d.jsx(zU,{ref:o,className:S("-mx-1 my-1 h-px bg-muted",e),...t}));Rde.displayName=zU.displayName;var Gde="Separator",jU="horizontal",Kde=["horizontal","vertical"],HU=p.forwardRef((e,t)=>{const{decorative:o,orientation:n=jU,...a}=e,r=Yde(n)?n:jU,s=o?{role:"none"}:{"aria-orientation":r==="vertical"?r:void 0,role:"separator"};return d.jsx(ht.div,{"data-orientation":r,...s,...a,ref:t})});HU.displayName=Gde;function Yde(e){return Kde.includes(e)}var VU=HU;const K$=p.forwardRef(({className:e,orientation:t="horizontal",decorative:o=!0,...n},a)=>d.jsx(VU,{ref:a,decorative:o,orientation:t,className:S("shrink-0 bg-border",t==="horizontal"?"h-[1px] w-full":"h-full w-[1px]",e),...n}));K$.displayName=VU.displayName;const FU=pd,Xde=qC,Zde=yd,BU=p.forwardRef(({className:e,...t},o)=>d.jsx(Cc,{className:S("fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",e),...t,ref:o}));BU.displayName=Cc.displayName;const Qde=Wo("fixed z-50 gap-4 bg-background p-6 shadow-lg transition ease-in-out data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:duration-300 data-[state=open]:duration-500",{variants:{side:{top:"inset-x-0 top-0 border-b data-[state=closed]:slide-out-to-top data-[state=open]:slide-in-from-top",bottom:"inset-x-0 bottom-0 border-t data-[state=closed]:slide-out-to-bottom data-[state=open]:slide-in-from-bottom",left:"inset-y-0 left-0 h-full w-3/4 border-r data-[state=closed]:slide-out-to-left data-[state=open]:slide-in-from-left sm:max-w-sm",right:"inset-y-0 right-0 h-full w-3/4 border-l data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right sm:max-w-sm"}},defaultVariants:{side:"right"}}),EP=p.forwardRef(({side:e="right",className:t,children:o,...n},a)=>d.jsxs(Zde,{children:[d.jsx(BU,{}),d.jsxs($c,{ref:a,className:S(Qde({side:e}),t),...n,children:[o,d.jsxs(fd,{className:"absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-secondary",children:[d.jsx(bo,{className:"h-4 w-4"}),d.jsx("span",{className:"sr-only",children:"Close"})]})]})]}));EP.displayName=$c.displayName;const zP=({className:e,...t})=>d.jsx("div",{className:S("flex flex-col space-y-2 text-center sm:text-left",e),...t});zP.displayName="SheetHeader";const WU=({className:e,...t})=>d.jsx("div",{className:S("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",e),...t});WU.displayName="SheetFooter";const OP=p.forwardRef(({className:e,...t},o)=>d.jsx(is,{ref:o,className:S("text-lg font-semibold text-foreground",e),...t}));OP.displayName=is.displayName;const qP=p.forwardRef(({className:e,...t},o)=>d.jsx(cs,{ref:o,className:S("text-sm text-muted-foreground",e),...t}));qP.displayName=cs.displayName;const jP=768;function Jde(){const[e,t]=p.useState(void 0);return p.useEffect(()=>{const o=window.matchMedia(`(max-width: ${jP-1}px)`),n=()=>{t(window.innerWidth<jP)};return o.addEventListener("change",n),t(window.innerWidth<jP),()=>o.removeEventListener("change",n)},[]),!!e}function HP({className:e,...t}){return d.jsx("div",{className:S("animate-pulse rounded-md bg-muted",e),...t})}var[Y$]=Xe("Tooltip",[Io]),X$=Io(),UU="TooltipProvider",e1e=700,VP="tooltip.open",[t1e,FP]=Y$(UU),RU=e=>{const{__scopeTooltip:t,delayDuration:o=e1e,skipDelayDuration:n=300,disableHoverableContent:a=!1,children:r}=e,c=p.useRef(!0),s=p.useRef(!1),l=p.useRef(0);return p.useEffect(()=>{const u=l.current;return()=>window.clearTimeout(u)},[]),d.jsx(t1e,{scope:t,isOpenDelayedRef:c,delayDuration:o,onOpen:p.useCallback(()=>{window.clearTimeout(l.current),c.current=!1},[]),onClose:p.useCallback(()=>{window.clearTimeout(l.current),l.current=window.setTimeout(()=>c.current=!0,n)},[n]),isPointerInTransitRef:s,onPointerInTransitChange:p.useCallback(u=>{s.current=u},[]),disableHoverableContent:a,children:r})};RU.displayName=UU;var s1="Tooltip",[o1e,Z$]=Y$(s1),GU=e=>{const{__scopeTooltip:t,children:o,open:n,defaultOpen:a,onOpenChange:r,disableHoverableContent:c,delayDuration:s}=e,l=FP(s1,e.__scopeTooltip),u=X$(t),[y,h]=p.useState(null),f=We(),k=p.useRef(0),m=c??l.disableHoverableContent,g=s??l.delayDuration,_=p.useRef(!1),[v,b]=Ke({prop:n,defaultProp:a??!1,onChange:$=>{$?(l.onOpen(),document.dispatchEvent(new CustomEvent(VP))):l.onClose(),r?.($)},caller:s1}),M=p.useMemo(()=>v?_.current?"delayed-open":"instant-open":"closed",[v]),x=p.useCallback(()=>{window.clearTimeout(k.current),k.current=0,_.current=!1,b(!0)},[b]),N=p.useCallback(()=>{window.clearTimeout(k.current),k.current=0,b(!1)},[b]),C=p.useCallback(()=>{window.clearTimeout(k.current),k.current=window.setTimeout(()=>{_.current=!0,b(!0),k.current=0},g)},[g,b]);return p.useEffect(()=>()=>{k.current&&(window.clearTimeout(k.current),k.current=0)},[]),d.jsx(xs,{...u,children:d.jsx(o1e,{scope:t,contentId:f,open:v,stateAttribute:M,trigger:y,onTriggerChange:h,onTriggerEnter:p.useCallback(()=>{l.isOpenDelayedRef.current?C():x()},[l.isOpenDelayedRef,C,x]),onTriggerLeave:p.useCallback(()=>{m?N():(window.clearTimeout(k.current),k.current=0)},[N,m]),onOpen:x,onClose:N,disableHoverableContent:m,children:o})})};GU.displayName=s1;var BP="TooltipTrigger",KU=p.forwardRef((e,t)=>{const{__scopeTooltip:o,...n}=e,a=Z$(BP,o),r=FP(BP,o),c=X$(o),s=p.useRef(null),l=be(t,s,a.onTriggerChange),u=p.useRef(!1),y=p.useRef(!1),h=p.useCallback(()=>u.current=!1,[]);return p.useEffect(()=>()=>document.removeEventListener("pointerup",h),[h]),d.jsx(Ns,{asChild:!0,...c,children:d.jsx(se.button,{"aria-describedby":a.open?a.contentId:void 0,"data-state":a.stateAttribute,...n,ref:l,onPointerMove:X(e.onPointerMove,f=>{f.pointerType!=="touch"&&!y.current&&!r.isPointerInTransitRef.current&&(a.onTriggerEnter(),y.current=!0)}),onPointerLeave:X(e.onPointerLeave,()=>{a.onTriggerLeave(),y.current=!1}),onPointerDown:X(e.onPointerDown,()=>{a.open&&a.onClose(),u.current=!0,document.addEventListener("pointerup",h,{once:!0})}),onFocus:X(e.onFocus,()=>{u.current||a.onOpen()}),onBlur:X(e.onBlur,a.onClose),onClick:X(e.onClick,a.onClose)})})});KU.displayName=BP;var n1e="TooltipPortal",[HTe,a1e]=Y$(n1e,{forceMount:void 0}),Ds="TooltipContent",YU=p.forwardRef((e,t)=>{const o=a1e(Ds,e.__scopeTooltip),{forceMount:n=o.forceMount,side:a="top",...r}=e,c=Z$(Ds,e.__scopeTooltip);return d.jsx(Qe,{present:n||c.open,children:c.disableHoverableContent?d.jsx(XU,{side:a,...r,ref:t}):d.jsx(r1e,{side:a,...r,ref:t})})}),r1e=p.forwardRef((e,t)=>{const o=Z$(Ds,e.__scopeTooltip),n=FP(Ds,e.__scopeTooltip),a=p.useRef(null),r=be(t,a),[c,s]=p.useState(null),{trigger:l,onClose:u}=o,y=a.current,{onPointerInTransitChange:h}=n,f=p.useCallback(()=>{s(null),h(!1)},[h]),k=p.useCallback((m,g)=>{const _=m.currentTarget,v={x:m.clientX,y:m.clientY},b=l1e(v,_.getBoundingClientRect()),M=u1e(v,b),x=h1e(g.getBoundingClientRect()),N=y1e([...M,...x]);s(N),h(!0)},[h]);return p.useEffect(()=>()=>f(),[f]),p.useEffect(()=>{if(l&&y){const m=_=>k(_,y),g=_=>k(_,l);return l.addEventListener("pointerleave",m),y.addEventListener("pointerleave",g),()=>{l.removeEventListener("pointerleave",m),y.removeEventListener("pointerleave",g)}}},[l,y,k,f]),p.useEffect(()=>{if(c){const m=g=>{const _=g.target,v={x:g.clientX,y:g.clientY},b=l?.contains(_)||y?.contains(_),M=!p1e(v,c);b?f():M&&(f(),u())};return document.addEventListener("pointermove",m),()=>document.removeEventListener("pointermove",m)}},[l,y,c,u,f]),d.jsx(XU,{...e,ref:r})}),[i1e,c1e]=Y$(s1,{isInside:!1}),s1e=KT("TooltipContent"),XU=p.forwardRef((e,t)=>{const{__scopeTooltip:o,children:n,"aria-label":a,onEscapeKeyDown:r,onPointerDownOutside:c,...s}=e,l=Z$(Ds,o),u=X$(o),{onClose:y}=l;return p.useEffect(()=>(document.addEventListener(VP,y),()=>document.removeEventListener(VP,y)),[y]),p.useEffect(()=>{if(l.trigger){const h=f=>{f.target?.contains(l.trigger)&&y()};return window.addEventListener("scroll",h,{capture:!0}),()=>window.removeEventListener("scroll",h,{capture:!0})}},[l.trigger,y]),d.jsx(dn,{asChild:!0,disableOutsidePointerEvents:!1,onEscapeKeyDown:r,onPointerDownOutside:c,onFocusOutside:h=>h.preventDefault(),onDismiss:y,children:d.jsxs(Od,{"data-state":l.stateAttribute,...u,...s,ref:t,style:{...s.style,"--radix-tooltip-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-tooltip-content-available-width":"var(--radix-popper-available-width)","--radix-tooltip-content-available-height":"var(--radix-popper-available-height)","--radix-tooltip-trigger-width":"var(--radix-popper-anchor-width)","--radix-tooltip-trigger-height":"var(--radix-popper-anchor-height)"},children:[d.jsx(s1e,{children:n}),d.jsx(i1e,{scope:o,isInside:!0,children:d.jsx(BF,{id:l.contentId,role:"tooltip",children:a||n})})]})})});YU.displayName=Ds;var ZU="TooltipArrow",d1e=p.forwardRef((e,t)=>{const{__scopeTooltip:o,...n}=e,a=X$(o);return c1e(ZU,o).isInside?null:d.jsx(qd,{...a,...n,ref:t})});d1e.displayName=ZU;function l1e(e,t){const o=Math.abs(t.top-e.y),n=Math.abs(t.bottom-e.y),a=Math.abs(t.right-e.x),r=Math.abs(t.left-e.x);switch(Math.min(o,n,a,r)){case r:return"left";case a:return"right";case o:return"top";case n:return"bottom";default:throw new Error("unreachable")}}function u1e(e,t,o=5){const n=[];switch(t){case"top":n.push({x:e.x-o,y:e.y+o},{x:e.x+o,y:e.y+o});break;case"bottom":n.push({x:e.x-o,y:e.y-o},{x:e.x+o,y:e.y-o});break;case"left":n.push({x:e.x+o,y:e.y-o},{x:e.x+o,y:e.y+o});break;case"right":n.push({x:e.x-o,y:e.y-o},{x:e.x-o,y:e.y+o});break}return n}function h1e(e){const{top:t,right:o,bottom:n,left:a}=e;return[{x:a,y:t},{x:o,y:t},{x:o,y:n},{x:a,y:n}]}function p1e(e,t){const{x:o,y:n}=e;let a=!1;for(let r=0,c=t.length-1;r<t.length;c=r++){const s=t[r],l=t[c],u=s.x,y=s.y,h=l.x,f=l.y;y>n!=f>n&&o<(h-u)*(n-y)/(f-y)+u&&(a=!a)}return a}function y1e(e){const t=e.slice();return t.sort((o,n)=>o.x<n.x?-1:o.x>n.x?1:o.y<n.y?-1:o.y>n.y?1:0),f1e(t)}function f1e(e){if(e.length<=1)return e.slice();const t=[];for(let n=0;n<e.length;n++){const a=e[n];for(;t.length>=2;){const r=t[t.length-1],c=t[t.length-2];if((r.x-c.x)*(a.y-c.y)>=(r.y-c.y)*(a.x-c.x))t.pop();else break}t.push(a)}t.pop();const o=[];for(let n=e.length-1;n>=0;n--){const a=e[n];for(;o.length>=2;){const r=o[o.length-1],c=o[o.length-2];if((r.x-c.x)*(a.y-c.y)>=(r.y-c.y)*(a.x-c.x))o.pop();else break}o.push(a)}return o.pop(),t.length===1&&o.length===1&&t[0].x===o[0].x&&t[0].y===o[0].y?t:t.concat(o)}var m1e=RU,k1e=GU,g1e=KU,QU=YU;const JU=m1e,eR=k1e,tR=g1e,WP=p.forwardRef(({className:e,sideOffset:t=4,...o},n)=>d.jsx(QU,{ref:n,sideOffset:t,className:S("z-50 overflow-hidden rounded-md border bg-popover px-3 py-1.5 text-sm text-popover-foreground shadow-md animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-tooltip-content-transform-origin]",e),...o}));WP.displayName=QU.displayName;const v1e="sidebar_state",_1e=3600*24*7,b1e="16rem",M1e="18rem",w1e="3rem",x1e="b",oR=p.createContext(null);function Q$(){const e=p.useContext(oR);if(!e)throw new Error("useSidebar must be used within a SidebarProvider.");return e}const nR=p.forwardRef(({defaultOpen:e=!0,open:t,onOpenChange:o,className:n,style:a,children:r,...c},s)=>{const l=Jde(),[u,y]=p.useState(!1),[h,f]=p.useState(e),k=t??h,m=p.useCallback(b=>{const M=typeof b=="function"?b(k):b;o?o(M):f(M),document.cookie=`${v1e}=${M}; path=/; max-age=${_1e}`},[o,k]),g=p.useCallback(()=>l?y(b=>!b):m(b=>!b),[l,m,y]);p.useEffect(()=>{const b=M=>{M.key===x1e&&(M.metaKey||M.ctrlKey)&&(M.preventDefault(),g())};return window.addEventListener("keydown",b),()=>window.removeEventListener("keydown",b)},[g]);const _=k?"expanded":"collapsed",v=p.useMemo(()=>({state:_,open:k,setOpen:m,isMobile:l,openMobile:u,setOpenMobile:y,toggleSidebar:g}),[_,k,m,l,u,y,g]);return d.jsx(oR.Provider,{value:v,children:d.jsx(JU,{delayDuration:0,children:d.jsx("div",{style:{"--sidebar-width":b1e,"--sidebar-width-icon":w1e,...a},className:S("group/sidebar-wrapper flex min-h-svh w-full has-[[data-variant=inset]]:bg-sidebar",n),ref:s,...c,children:r})})})});nR.displayName="SidebarProvider";const aR=p.forwardRef(({side:e="left",variant:t="sidebar",collapsible:o="offcanvas",className:n,children:a,...r},c)=>{const{isMobile:s,state:l,openMobile:u,setOpenMobile:y}=Q$();return o==="none"?d.jsx("div",{className:S("flex h-full w-[var(--sidebar-width)] flex-col bg-sidebar text-sidebar-foreground",n),ref:c,...r,children:a}):s?d.jsx(FU,{open:u,onOpenChange:y,...r,children:d.jsxs(EP,{"data-sidebar":"sidebar","data-mobile":"true",className:"w-[var(--sidebar-width)] bg-sidebar p-0 text-sidebar-foreground [&>button]:hidden",style:{"--sidebar-width":M1e},side:e,children:[d.jsxs(zP,{className:"sr-only",children:[d.jsx(OP,{children:"Sidebar"}),d.jsx(qP,{children:"Displays the mobile sidebar."})]}),d.jsx("div",{className:"flex h-full w-full flex-col",children:a})]})}):d.jsxs("div",{ref:c,className:"group peer hidden text-sidebar-foreground md:block","data-state":l,"data-collapsible":l==="collapsed"?o:"","data-variant":t,"data-side":e,children:[d.jsx("div",{className:S("relative w-[var(--sidebar-width)] bg-transparent transition-[width] duration-200 ease-linear","group-data-[collapsible=offcanvas]:w-0","group-data-[side=right]:rotate-180",t==="floating"||t==="inset"?"group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)_+_theme(spacing.4))]":"group-data-[collapsible=icon]:w-[var(--sidebar-width-icon)]")}),d.jsx("div",{className:S("fixed inset-y-0 z-10 hidden h-svh w-[var(--sidebar-width)] transition-[left,right,width] duration-200 ease-linear md:flex",e==="left"?"left-0 group-data-[collapsible=offcanvas]:left-[calc(var(--sidebar-width)*-1)]":"right-0 group-data-[collapsible=offcanvas]:right-[calc(var(--sidebar-width)*-1)]",t==="floating"||t==="inset"?"p-2 group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)_+_theme(spacing.4)_+2px)]":"group-data-[collapsible=icon]:w-[var(--sidebar-width-icon)] group-data-[side=left]:border-r group-data-[side=right]:border-l",n),...r,children:d.jsx("div",{"data-sidebar":"sidebar",className:"flex h-full w-full flex-col bg-sidebar group-data-[variant=floating]:rounded-lg group-data-[variant=floating]:border group-data-[variant=floating]:border-sidebar-border group-data-[variant=floating]:shadow",children:a})})]})});aR.displayName="Sidebar";const UP=p.forwardRef(({className:e,onClick:t,...o},n)=>{const{toggleSidebar:a}=Q$();return d.jsxs(Ee,{ref:n,"data-sidebar":"trigger",variant:"ghost",size:"icon",className:S("h-7 w-7",e),onClick:r=>{t?.(r),a()},...o,children:[d.jsx(rn,{}),d.jsx("span",{className:"sr-only",children:"Toggle Sidebar"})]})});UP.displayName="SidebarTrigger";const N1e=p.forwardRef(({className:e,...t},o)=>{const{toggleSidebar:n}=Q$();return d.jsx("button",{ref:o,"data-sidebar":"rail","aria-label":"Toggle Sidebar",tabIndex:-1,onClick:n,title:"Toggle Sidebar",className:S("absolute inset-y-0 z-20 hidden w-4 -translate-x-1/2 transition-all ease-linear after:absolute after:inset-y-0 after:left-1/2 after:w-[2px] hover:after:bg-sidebar-border group-data-[side=left]:-right-4 group-data-[side=right]:left-0 sm:flex","[[data-side=left]_&]:cursor-w-resize [[data-side=right]_&]:cursor-e-resize","[[data-side=left][data-state=collapsed]_&]:cursor-e-resize [[data-side=right][data-state=collapsed]_&]:cursor-w-resize","group-data-[collapsible=offcanvas]:translate-x-0 group-data-[collapsible=offcanvas]:after:left-full group-data-[collapsible=offcanvas]:hover:bg-sidebar","[[data-side=left][data-collapsible=offcanvas]_&]:-right-2","[[data-side=right][data-collapsible=offcanvas]_&]:-left-2",e),...t})});N1e.displayName="SidebarRail";const rR=p.forwardRef(({className:e,...t},o)=>d.jsx("main",{ref:o,className:S("relative flex w-full flex-1 flex-col bg-background","md:peer-data-[variant=inset]:m-2 md:peer-data-[state=collapsed]:peer-data-[variant=inset]:ml-2 md:peer-data-[variant=inset]:ml-0 md:peer-data-[variant=inset]:rounded-xl md:peer-data-[variant=inset]:shadow",e),...t}));rR.displayName="SidebarInset";const C1e=p.forwardRef(({className:e,...t},o)=>d.jsx(Yo,{ref:o,"data-sidebar":"input",className:S("h-8 w-full bg-background shadow-none focus-visible:ring-2 focus-visible:ring-sidebar-ring",e),...t}));C1e.displayName="SidebarInput";const iR=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,"data-sidebar":"header",className:S("flex flex-col gap-2 p-2",e),...t}));iR.displayName="SidebarHeader";const cR=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,"data-sidebar":"footer",className:S("flex flex-col gap-2 p-2",e),...t}));cR.displayName="SidebarFooter";const $1e=p.forwardRef(({className:e,...t},o)=>d.jsx(K$,{ref:o,"data-sidebar":"separator",className:S("mx-2 w-auto bg-sidebar-border",e),...t}));$1e.displayName="SidebarSeparator";const sR=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,"data-sidebar":"content",className:S("flex min-h-0 flex-1 flex-col gap-2 overflow-auto group-data-[collapsible=icon]:overflow-hidden",e),...t}));sR.displayName="SidebarContent";const dR=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,"data-sidebar":"group",className:S("relative flex w-full min-w-0 flex-col p-2",e),...t}));dR.displayName="SidebarGroup";const lR=p.forwardRef(({className:e,asChild:t=!1,...o},n)=>{const a=t?Bo:"div";return d.jsx(a,{ref:n,"data-sidebar":"group-label",className:S("flex h-8 shrink-0 items-center rounded-md px-2 text-xs font-medium text-sidebar-foreground/70 outline-none ring-sidebar-ring transition-[margin,opacity] duration-200 ease-linear focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0","group-data-[collapsible=icon]:-mt-8 group-data-[collapsible=icon]:opacity-0",e),...o})});lR.displayName="SidebarGroupLabel";const S1e=p.forwardRef(({className:e,asChild:t=!1,...o},n)=>{const a=t?Bo:"button";return d.jsx(a,{ref:n,"data-sidebar":"group-action",className:S("absolute right-3 top-3.5 flex aspect-square w-5 items-center justify-center rounded-md p-0 text-sidebar-foreground outline-none ring-sidebar-ring transition-transform hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0","after:absolute after:-inset-2 after:md:hidden","group-data-[collapsible=icon]:hidden",e),...o})});S1e.displayName="SidebarGroupAction";const uR=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,"data-sidebar":"group-content",className:S("w-full text-sm",e),...t}));uR.displayName="SidebarGroupContent";const hR=p.forwardRef(({className:e,...t},o)=>d.jsx("ul",{ref:o,"data-sidebar":"menu",className:S("flex w-full min-w-0 flex-col gap-1",e),...t}));hR.displayName="SidebarMenu";const pR=p.forwardRef(({className:e,...t},o)=>d.jsx("li",{ref:o,"data-sidebar":"menu-item",className:S("group/menu-item relative",e),...t}));pR.displayName="SidebarMenuItem";const L1e=Wo("peer/menu-button flex w-full items-center gap-2 overflow-hidden rounded-md p-2 text-left text-sm outline-none ring-sidebar-ring transition-[width,height,padding] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 active:bg-sidebar-accent active:text-sidebar-accent-foreground disabled:pointer-events-none disabled:opacity-50 group-has-[[data-sidebar=menu-action]]/menu-item:pr-8 aria-disabled:pointer-events-none aria-disabled:opacity-50 data-[active=true]:bg-sidebar-accent data-[active=true]:font-medium data-[active=true]:text-sidebar-accent-foreground data-[state=open]:hover:bg-sidebar-accent data-[state=open]:hover:text-sidebar-accent-foreground group-data-[collapsible=icon]:!size-8 group-data-[collapsible=icon]:!p-2 [&>span:last-child]:truncate [&>svg]:size-4 [&>svg]:shrink-0",{variants:{variant:{default:"hover:bg-sidebar-accent hover:text-sidebar-accent-foreground",outline:"bg-background shadow-[0_0_0_1px_hsl(var(--sidebar-border))] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground hover:shadow-[0_0_0_1px_hsl(var(--sidebar-accent))]"},size:{default:"h-8 text-sm",sm:"h-7 text-xs",lg:"h-12 text-sm group-data-[collapsible=icon]:!p-0"}},defaultVariants:{variant:"default",size:"default"}}),yR=p.forwardRef(({asChild:e=!1,isActive:t=!1,variant:o="default",size:n="default",tooltip:a,className:r,...c},s)=>{const l=e?Bo:"button",{isMobile:u,state:y}=Q$(),h=d.jsx(l,{ref:s,"data-sidebar":"menu-button","data-size":n,"data-active":t,className:S(L1e({variant:o,size:n}),r),...c});return a?(typeof a=="string"&&(a={children:a}),d.jsxs(eR,{children:[d.jsx(tR,{asChild:!0,children:h}),d.jsx(WP,{side:"right",align:"center",hidden:y!=="collapsed"||u,...a})]})):h});yR.displayName="SidebarMenuButton";const I1e=p.forwardRef(({className:e,asChild:t=!1,showOnHover:o=!1,...n},a)=>{const r=t?Bo:"button";return d.jsx(r,{ref:a,"data-sidebar":"menu-action",className:S("absolute right-1 top-1.5 flex aspect-square w-5 items-center justify-center rounded-md p-0 text-sidebar-foreground outline-none ring-sidebar-ring transition-transform hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 peer-hover/menu-button:text-sidebar-accent-foreground [&>svg]:size-4 [&>svg]:shrink-0","after:absolute after:-inset-2 after:md:hidden","peer-data-[size=sm]/menu-button:top-1","peer-data-[size=default]/menu-button:top-1.5","peer-data-[size=lg]/menu-button:top-2.5","group-data-[collapsible=icon]:hidden",o&&"group-focus-within/menu-item:opacity-100 group-hover/menu-item:opacity-100 data-[state=open]:opacity-100 peer-data-[active=true]/menu-button:text-sidebar-accent-foreground md:opacity-0",e),...n})});I1e.displayName="SidebarMenuAction";const A1e=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,"data-sidebar":"menu-badge",className:S("pointer-events-none absolute right-1 flex h-5 min-w-5 select-none items-center justify-center rounded-md px-1 text-xs font-medium tabular-nums text-sidebar-foreground","peer-hover/menu-button:text-sidebar-accent-foreground peer-data-[active=true]/menu-button:text-sidebar-accent-foreground","peer-data-[size=sm]/menu-button:top-1","peer-data-[size=default]/menu-button:top-1.5","peer-data-[size=lg]/menu-button:top-2.5","group-data-[collapsible=icon]:hidden",e),...t}));A1e.displayName="SidebarMenuBadge";const P1e=p.forwardRef(({className:e,showIcon:t=!1,...o},n)=>{const[a]=p.useState(()=>`${Math.floor(Math.random()*40)+50}%`);return d.jsxs("div",{ref:n,"data-sidebar":"menu-skeleton",className:S("flex h-8 items-center gap-2 rounded-md px-2",e),...o,children:[t&&d.jsx(HP,{className:"size-4 rounded-md","data-sidebar":"menu-skeleton-icon"}),d.jsx(HP,{className:"h-4 max-w-[--skeleton-width] flex-1","data-sidebar":"menu-skeleton-text",style:{"--skeleton-width":a}})]})});P1e.displayName="SidebarMenuSkeleton";const T1e=p.forwardRef(({className:e,...t},o)=>d.jsx("ul",{ref:o,"data-sidebar":"menu-sub",className:S("mx-3.5 flex min-w-0 translate-x-px flex-col gap-1 border-l border-sidebar-border px-2.5 py-0.5","group-data-[collapsible=icon]:hidden",e),...t}));T1e.displayName="SidebarMenuSub";const D1e=p.forwardRef(({...e},t)=>d.jsx("li",{ref:t,...e}));D1e.displayName="SidebarMenuSubItem";const E1e=p.forwardRef(({asChild:e=!1,size:t="md",isActive:o,className:n,...a},r)=>{const c=e?Bo:"a";return d.jsx(c,{ref:r,"data-sidebar":"menu-sub-button","data-size":t,"data-active":o,className:S("flex h-7 min-w-0 -translate-x-px items-center gap-2 overflow-hidden rounded-md px-2 text-sidebar-foreground outline-none ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 active:bg-sidebar-accent active:text-sidebar-accent-foreground disabled:pointer-events-none disabled:opacity-50 aria-disabled:pointer-events-none aria-disabled:opacity-50 [&>span:last-child]:truncate [&>svg]:size-4 [&>svg]:shrink-0 [&>svg]:text-sidebar-accent-foreground","data-[active=true]:bg-sidebar-accent data-[active=true]:text-sidebar-accent-foreground",t==="sm"&&"text-xs",t==="md"&&"text-sm","group-data-[collapsible=icon]:hidden",n),...a})});E1e.displayName="SidebarMenuSubButton";var fR=["PageUp","PageDown"],mR=["ArrowUp","ArrowDown","ArrowLeft","ArrowRight"],kR={"from-left":["Home","PageDown","ArrowDown","ArrowLeft"],"from-right":["Home","PageDown","ArrowDown","ArrowRight"],"from-bottom":["Home","PageDown","ArrowDown","ArrowLeft"],"from-top":["Home","PageDown","ArrowUp","ArrowLeft"]},Es="Slider",[RP,z1e,O1e]=en(Es),[gR]=Xe(Es,[O1e]),[q1e,J$]=gR(Es),vR=p.forwardRef((e,t)=>{const{name:o,min:n=0,max:a=100,step:r=1,orientation:c="horizontal",disabled:s=!1,minStepsBetweenThumbs:l=0,defaultValue:u=[n],value:y,onValueChange:h=()=>{},onValueCommit:f=()=>{},inverted:k=!1,form:m,...g}=e,_=p.useRef(new Set),v=p.useRef(0),M=c==="horizontal"?j1e:H1e,[x=[],N]=Ke({prop:y,defaultProp:u,onChange:z=>{[..._.current][v.current]?.focus(),h(z)}}),C=p.useRef(x);function $(z){const O=U1e(x,z);q(z,O)}function L(z){q(z,v.current)}function A(){const z=C.current[v.current];x[v.current]!==z&&f(x)}function q(z,O,{commit:D}={commit:!1}){const U=Y1e(r),G=X1e(Math.round((z-n)/r)*r+n,U),H=i1(G,[n,a]);N((Y=[])=>{const P=B1e(Y,H,O);if(K1e(P,l*r)){v.current=P.indexOf(H);const F=String(P)!==String(Y);return F&&D&&f(P),F?P:Y}else return Y})}return d.jsx(q1e,{scope:e.__scopeSlider,name:o,disabled:s,min:n,max:a,valueIndexToChangeRef:v,thumbs:_.current,values:x,orientation:c,form:m,children:d.jsx(RP.Provider,{scope:e.__scopeSlider,children:d.jsx(RP.Slot,{scope:e.__scopeSlider,children:d.jsx(M,{"aria-disabled":s,"data-disabled":s?"":void 0,...g,ref:t,onPointerDown:X(g.onPointerDown,()=>{s||(C.current=x)}),min:n,max:a,inverted:k,onSlideStart:s?void 0:$,onSlideMove:s?void 0:L,onSlideEnd:s?void 0:A,onHomeKeyDown:()=>!s&&q(n,0,{commit:!0}),onEndKeyDown:()=>!s&&q(a,x.length-1,{commit:!0}),onStepKeyDown:({event:z,direction:O})=>{if(!s){const G=fR.includes(z.key)||z.shiftKey&&mR.includes(z.key)?10:1,H=v.current,Y=x[H],P=r*G*O;q(Y+P,H,{commit:!0})}}})})})})});vR.displayName=Es;var[_R,bR]=gR(Es,{startEdge:"left",endEdge:"right",size:"width",direction:1}),j1e=p.forwardRef((e,t)=>{const{min:o,max:n,dir:a,inverted:r,onSlideStart:c,onSlideMove:s,onSlideEnd:l,onStepKeyDown:u,...y}=e,[h,f]=p.useState(null),k=be(t,M=>f(M)),m=p.useRef(void 0),g=Yt(a),_=g==="ltr",v=_&&!r||!_&&r;function b(M){const x=m.current||h.getBoundingClientRect(),N=[0,x.width],$=YP(N,v?[o,n]:[n,o]);return m.current=x,$(M-x.left)}return d.jsx(_R,{scope:e.__scopeSlider,startEdge:v?"left":"right",endEdge:v?"right":"left",direction:v?1:-1,size:"width",children:d.jsx(MR,{dir:g,"data-orientation":"horizontal",...y,ref:k,style:{...y.style,"--radix-slider-thumb-transform":"translateX(-50%)"},onSlideStart:M=>{const x=b(M.clientX);c?.(x)},onSlideMove:M=>{const x=b(M.clientX);s?.(x)},onSlideEnd:()=>{m.current=void 0,l?.()},onStepKeyDown:M=>{const N=kR[v?"from-left":"from-right"].includes(M.key);u?.({event:M,direction:N?-1:1})}})})}),H1e=p.forwardRef((e,t)=>{const{min:o,max:n,inverted:a,onSlideStart:r,onSlideMove:c,onSlideEnd:s,onStepKeyDown:l,...u}=e,y=p.useRef(null),h=be(t,y),f=p.useRef(void 0),k=!a;function m(g){const _=f.current||y.current.getBoundingClientRect(),v=[0,_.height],M=YP(v,k?[n,o]:[o,n]);return f.current=_,M(g-_.top)}return d.jsx(_R,{scope:e.__scopeSlider,startEdge:k?"bottom":"top",endEdge:k?"top":"bottom",size:"height",direction:k?1:-1,children:d.jsx(MR,{"data-orientation":"vertical",...u,ref:h,style:{...u.style,"--radix-slider-thumb-transform":"translateY(50%)"},onSlideStart:g=>{const _=m(g.clientY);r?.(_)},onSlideMove:g=>{const _=m(g.clientY);c?.(_)},onSlideEnd:()=>{f.current=void 0,s?.()},onStepKeyDown:g=>{const v=kR[k?"from-bottom":"from-top"].includes(g.key);l?.({event:g,direction:v?-1:1})}})})}),MR=p.forwardRef((e,t)=>{const{__scopeSlider:o,onSlideStart:n,onSlideMove:a,onSlideEnd:r,onHomeKeyDown:c,onEndKeyDown:s,onStepKeyDown:l,...u}=e,y=J$(Es,o);return d.jsx(se.span,{...u,ref:t,onKeyDown:X(e.onKeyDown,h=>{h.key==="Home"?(c(h),h.preventDefault()):h.key==="End"?(s(h),h.preventDefault()):fR.concat(mR).includes(h.key)&&(l(h),h.preventDefault())}),onPointerDown:X(e.onPointerDown,h=>{const f=h.target;f.setPointerCapture(h.pointerId),h.preventDefault(),y.thumbs.has(f)?f.focus():n(h)}),onPointerMove:X(e.onPointerMove,h=>{h.target.hasPointerCapture(h.pointerId)&&a(h)}),onPointerUp:X(e.onPointerUp,h=>{const f=h.target;f.hasPointerCapture(h.pointerId)&&(f.releasePointerCapture(h.pointerId),r(h))})})}),wR="SliderTrack",xR=p.forwardRef((e,t)=>{const{__scopeSlider:o,...n}=e,a=J$(wR,o);return d.jsx(se.span,{"data-disabled":a.disabled?"":void 0,"data-orientation":a.orientation,...n,ref:t})});xR.displayName=wR;var GP="SliderRange",NR=p.forwardRef((e,t)=>{const{__scopeSlider:o,...n}=e,a=J$(GP,o),r=bR(GP,o),c=p.useRef(null),s=be(t,c),l=a.values.length,u=a.values.map(f=>SR(f,a.min,a.max)),y=l>1?Math.min(...u):0,h=100-Math.max(...u);return d.jsx(se.span,{"data-orientation":a.orientation,"data-disabled":a.disabled?"":void 0,...n,ref:s,style:{...e.style,[r.startEdge]:y+"%",[r.endEdge]:h+"%"}})});NR.displayName=GP;var KP="SliderThumb",CR=p.forwardRef((e,t)=>{const o=z1e(e.__scopeSlider),[n,a]=p.useState(null),r=be(t,s=>a(s)),c=p.useMemo(()=>n?o().findIndex(s=>s.ref.current===n):-1,[o,n]);return d.jsx(V1e,{...e,ref:r,index:c})}),V1e=p.forwardRef((e,t)=>{const{__scopeSlider:o,index:n,name:a,...r}=e,c=J$(KP,o),s=bR(KP,o),[l,u]=p.useState(null),y=be(t,b=>u(b)),h=l?c.form||!!l.closest("form"):!0,f=Ad(l),k=c.values[n],m=k===void 0?0:SR(k,c.min,c.max),g=W1e(n,c.values.length),_=f?.[s.size],v=_?R1e(_,m,s.direction):0;return p.useEffect(()=>{if(l)return c.thumbs.add(l),()=>{c.thumbs.delete(l)}},[l,c.thumbs]),d.jsxs("span",{style:{transform:"var(--radix-slider-thumb-transform)",position:"absolute",[s.startEdge]:`calc(${m}% + ${v}px)`},children:[d.jsx(RP.ItemSlot,{scope:e.__scopeSlider,children:d.jsx(se.span,{role:"slider","aria-label":e["aria-label"]||g,"aria-valuemin":c.min,"aria-valuenow":k,"aria-valuemax":c.max,"aria-orientation":c.orientation,"data-orientation":c.orientation,"data-disabled":c.disabled?"":void 0,tabIndex:c.disabled?void 0:0,...r,ref:y,style:k===void 0?{display:"none"}:e.style,onFocus:X(e.onFocus,()=>{c.valueIndexToChangeRef.current=n})})}),h&&d.jsx($R,{name:a??(c.name?c.name+(c.values.length>1?"[]":""):void 0),form:c.form,value:k},n)]})});CR.displayName=KP;var F1e="RadioBubbleInput",$R=p.forwardRef(({__scopeSlider:e,value:t,...o},n)=>{const a=p.useRef(null),r=be(a,n),c=ks(t);return p.useEffect(()=>{const s=a.current;if(!s)return;const l=window.HTMLInputElement.prototype,y=Object.getOwnPropertyDescriptor(l,"value").set;if(c!==t&&y){const h=new Event("input",{bubbles:!0});y.call(s,t),s.dispatchEvent(h)}},[c,t]),d.jsx(se.input,{style:{display:"none"},...o,ref:r,defaultValue:t})});$R.displayName=F1e;function B1e(e=[],t,o){const n=[...e];return n[o]=t,n.sort((a,r)=>a-r)}function SR(e,t,o){const r=100/(o-t)*(e-t);return i1(r,[0,100])}function W1e(e,t){return t>2?`Value ${e+1} of ${t}`:t===2?["Minimum","Maximum"][e]:void 0}function U1e(e,t){if(e.length===1)return 0;const o=e.map(a=>Math.abs(a-t)),n=Math.min(...o);return o.indexOf(n)}function R1e(e,t,o){const n=e/2,r=YP([0,50],[0,n]);return(n-r(t)*o)*o}function G1e(e){return e.slice(0,-1).map((t,o)=>e[o+1]-t)}function K1e(e,t){if(t>0){const o=G1e(e);return Math.min(...o)>=t}return!0}function YP(e,t){return o=>{if(e[0]===e[1]||t[0]===t[1])return t[0];const n=(t[1]-t[0])/(e[1]-e[0]);return t[0]+n*(o-e[0])}}function Y1e(e){return(String(e).split(".")[1]||"").length}function X1e(e,t){const o=Math.pow(10,t);return Math.round(e*o)/o}var LR=vR,Z1e=xR,Q1e=NR,J1e=CR;const IR=p.forwardRef(({className:e,...t},o)=>d.jsxs(LR,{ref:o,className:S("relative flex w-full touch-none select-none items-center",e),...t,children:[d.jsx(Z1e,{className:"relative h-2 w-full grow overflow-hidden rounded-full bg-secondary",children:d.jsx(Q1e,{className:"absolute h-full bg-primary"})}),d.jsx(J1e,{className:"block h-5 w-5 rounded-full border-2 border-primary bg-background ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50"})]}));IR.displayName=LR.displayName;var ele=(e,t,o,n,a,r,c,s)=>{let l=document.documentElement,u=["light","dark"];function y(k){(Array.isArray(e)?e:[e]).forEach(m=>{let g=m==="class",_=g&&r?a.map(v=>r[v]||v):a;g?(l.classList.remove(..._),l.classList.add(r&&r[k]?r[k]:k)):l.setAttribute(m,k)}),h(k)}function h(k){s&&u.includes(k)&&(l.style.colorScheme=k)}function f(){return window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light"}if(n)y(n);else try{let k=localStorage.getItem(t)||o,m=c&&k==="system"?f():k;y(m)}catch{}},tle=p.createContext(void 0),ole={setTheme:e=>{},themes:[]},nle=()=>{var e;return(e=p.useContext(tle))!=null?e:ole};p.memo(({forcedTheme:e,storageKey:t,attribute:o,enableSystem:n,enableColorScheme:a,defaultTheme:r,value:c,themes:s,nonce:l,scriptProps:u})=>{let y=JSON.stringify([o,t,r,e,s,c,n,a]).slice(1,-1);return p.createElement("script",{...u,suppressHydrationWarning:!0,nonce:typeof window>"u"?l:"",dangerouslySetInnerHTML:{__html:`(${ele.toString()})(${y})`}})});function ale(e){if(typeof document>"u")return;let t=document.head||document.getElementsByTagName("head")[0],o=document.createElement("style");o.type="text/css",t.appendChild(o),o.styleSheet?o.styleSheet.cssText=e:o.appendChild(document.createTextNode(e))}const rle=e=>{switch(e){case"success":return sle;case"info":return lle;case"warning":return dle;case"error":return ule;default:return null}},ile=Array(12).fill(0),cle=({visible:e,className:t})=>w.createElement("div",{className:["sonner-loading-wrapper",t].filter(Boolean).join(" "),"data-visible":e},w.createElement("div",{className:"sonner-spinner"},ile.map((o,n)=>w.createElement("div",{className:"sonner-loading-bar",key:`spinner-bar-${n}`})))),sle=w.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor",height:"20",width:"20"},w.createElement("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z",clipRule:"evenodd"})),dle=w.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",height:"20",width:"20"},w.createElement("path",{fillRule:"evenodd",d:"M9.401 3.003c1.155-2 4.043-2 5.197 0l7.355 12.748c1.154 2-.29 4.5-2.599 4.5H4.645c-2.309 0-3.752-2.5-2.598-4.5L9.4 3.003zM12 8.25a.75.75 0 01.75.75v3.75a.75.75 0 01-1.5 0V9a.75.75 0 01.75-.75zm0 8.25a.75.75 0 100-1.5.75.75 0 000 1.5z",clipRule:"evenodd"})),lle=w.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor",height:"20",width:"20"},w.createElement("path",{fillRule:"evenodd",d:"M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a.75.75 0 000 1.5h.253a.25.25 0 01.244.304l-.459 2.066A1.75 1.75 0 0010.747 15H11a.75.75 0 000-1.5h-.253a.25.25 0 01-.244-.304l.459-2.066A1.75 1.75 0 009.253 9H9z",clipRule:"evenodd"})),ule=w.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor",height:"20",width:"20"},w.createElement("path",{fillRule:"evenodd",d:"M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-8-5a.75.75 0 01.75.75v4.5a.75.75 0 01-1.5 0v-4.5A.75.75 0 0110 5zm0 10a1 1 0 100-2 1 1 0 000 2z",clipRule:"evenodd"})),hle=w.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"12",height:"12",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"},w.createElement("line",{x1:"18",y1:"6",x2:"6",y2:"18"}),w.createElement("line",{x1:"6",y1:"6",x2:"18",y2:"18"})),ple=()=>{const[e,t]=w.useState(document.hidden);return w.useEffect(()=>{const o=()=>{t(document.hidden)};return document.addEventListener("visibilitychange",o),()=>window.removeEventListener("visibilitychange",o)},[]),e};let XP=1;class yle{constructor(){this.subscribe=t=>(this.subscribers.push(t),()=>{const o=this.subscribers.indexOf(t);this.subscribers.splice(o,1)}),this.publish=t=>{this.subscribers.forEach(o=>o(t))},this.addToast=t=>{this.publish(t),this.toasts=[...this.toasts,t]},this.create=t=>{var o;const{message:n,...a}=t,r=typeof t?.id=="number"||((o=t.id)==null?void 0:o.length)>0?t.id:XP++,c=this.toasts.find(l=>l.id===r),s=t.dismissible===void 0?!0:t.dismissible;return this.dismissedToasts.has(r)&&this.dismissedToasts.delete(r),c?this.toasts=this.toasts.map(l=>l.id===r?(this.publish({...l,...t,id:r,title:n}),{...l,...t,id:r,dismissible:s,title:n}):l):this.addToast({title:n,...a,dismissible:s,id:r}),r},this.dismiss=t=>(t?(this.dismissedToasts.add(t),requestAnimationFrame(()=>this.subscribers.forEach(o=>o({id:t,dismiss:!0})))):this.toasts.forEach(o=>{this.subscribers.forEach(n=>n({id:o.id,dismiss:!0}))}),t),this.message=(t,o)=>this.create({...o,message:t}),this.error=(t,o)=>this.create({...o,message:t,type:"error"}),this.success=(t,o)=>this.create({...o,type:"success",message:t}),this.info=(t,o)=>this.create({...o,type:"info",message:t}),this.warning=(t,o)=>this.create({...o,type:"warning",message:t}),this.loading=(t,o)=>this.create({...o,type:"loading",message:t}),this.promise=(t,o)=>{if(!o)return;let n;o.loading!==void 0&&(n=this.create({...o,promise:t,type:"loading",message:o.loading,description:typeof o.description!="function"?o.description:void 0}));const a=Promise.resolve(t instanceof Function?t():t);let r=n!==void 0,c;const s=a.then(async u=>{if(c=["resolve",u],w.isValidElement(u))r=!1,this.create({id:n,type:"default",message:u});else if(mle(u)&&!u.ok){r=!1;const h=typeof o.error=="function"?await o.error(`HTTP error! status: ${u.status}`):o.error,f=typeof o.description=="function"?await o.description(`HTTP error! status: ${u.status}`):o.description,m=typeof h=="object"&&!w.isValidElement(h)?h:{message:h};this.create({id:n,type:"error",description:f,...m})}else if(u instanceof Error){r=!1;const h=typeof o.error=="function"?await o.error(u):o.error,f=typeof o.description=="function"?await o.description(u):o.description,m=typeof h=="object"&&!w.isValidElement(h)?h:{message:h};this.create({id:n,type:"error",description:f,...m})}else if(o.success!==void 0){r=!1;const h=typeof o.success=="function"?await o.success(u):o.success,f=typeof o.description=="function"?await o.description(u):o.description,m=typeof h=="object"&&!w.isValidElement(h)?h:{message:h};this.create({id:n,type:"success",description:f,...m})}}).catch(async u=>{if(c=["reject",u],o.error!==void 0){r=!1;const y=typeof o.error=="function"?await o.error(u):o.error,h=typeof o.description=="function"?await o.description(u):o.description,k=typeof y=="object"&&!w.isValidElement(y)?y:{message:y};this.create({id:n,type:"error",description:h,...k})}}).finally(()=>{r&&(this.dismiss(n),n=void 0),o.finally==null||o.finally.call(o)}),l=()=>new Promise((u,y)=>s.then(()=>c[0]==="reject"?y(c[1]):u(c[1])).catch(y));return typeof n!="string"&&typeof n!="number"?{unwrap:l}:Object.assign(n,{unwrap:l})},this.custom=(t,o)=>{const n=o?.id||XP++;return this.create({jsx:t(n),id:n,...o}),n},this.getActiveToasts=()=>this.toasts.filter(t=>!this.dismissedToasts.has(t.id)),this.subscribers=[],this.toasts=[],this.dismissedToasts=new Set}}const St=new yle,fle=(e,t)=>{const o=t?.id||XP++;return St.addToast({title:e,...t,id:o}),o},mle=e=>e&&typeof e=="object"&&"ok"in e&&typeof e.ok=="boolean"&&"status"in e&&typeof e.status=="number",kle=fle,gle=()=>St.toasts,vle=()=>St.getActiveToasts(),Eo=Object.assign(kle,{success:St.success,info:St.info,warning:St.warning,error:St.error,custom:St.custom,message:St.message,promise:St.promise,dismiss:St.dismiss,loading:St.loading},{getHistory:gle,getToasts:vle});ale("[data-sonner-toaster][dir=ltr],html[dir=ltr]{--toast-icon-margin-start:-3px;--toast-icon-margin-end:4px;--toast-svg-margin-start:-1px;--toast-svg-margin-end:0px;--toast-button-margin-start:auto;--toast-button-margin-end:0;--toast-close-button-start:0;--toast-close-button-end:unset;--toast-close-button-transform:translate(-35%, -35%)}[data-sonner-toaster][dir=rtl],html[dir=rtl]{--toast-icon-margin-start:4px;--toast-icon-margin-end:-3px;--toast-svg-margin-start:0px;--toast-svg-margin-end:-1px;--toast-button-margin-start:0;--toast-button-margin-end:auto;--toast-close-button-start:unset;--toast-close-button-end:0;--toast-close-button-transform:translate(35%, -35%)}[data-sonner-toaster]{position:fixed;width:var(--width);font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;--gray1:hsl(0, 0%, 99%);--gray2:hsl(0, 0%, 97.3%);--gray3:hsl(0, 0%, 95.1%);--gray4:hsl(0, 0%, 93%);--gray5:hsl(0, 0%, 90.9%);--gray6:hsl(0, 0%, 88.7%);--gray7:hsl(0, 0%, 85.8%);--gray8:hsl(0, 0%, 78%);--gray9:hsl(0, 0%, 56.1%);--gray10:hsl(0, 0%, 52.3%);--gray11:hsl(0, 0%, 43.5%);--gray12:hsl(0, 0%, 9%);--border-radius:8px;box-sizing:border-box;padding:0;margin:0;list-style:none;outline:0;z-index:999999999;transition:transform .4s ease}@media (hover:none) and (pointer:coarse){[data-sonner-toaster][data-lifted=true]{transform:none}}[data-sonner-toaster][data-x-position=right]{right:var(--offset-right)}[data-sonner-toaster][data-x-position=left]{left:var(--offset-left)}[data-sonner-toaster][data-x-position=center]{left:50%;transform:translateX(-50%)}[data-sonner-toaster][data-y-position=top]{top:var(--offset-top)}[data-sonner-toaster][data-y-position=bottom]{bottom:var(--offset-bottom)}[data-sonner-toast]{--y:translateY(100%);--lift-amount:calc(var(--lift) * var(--gap));z-index:var(--z-index);position:absolute;opacity:0;transform:var(--y);touch-action:none;transition:transform .4s,opacity .4s,height .4s,box-shadow .2s;box-sizing:border-box;outline:0;overflow-wrap:anywhere}[data-sonner-toast][data-styled=true]{padding:16px;background:var(--normal-bg);border:1px solid var(--normal-border);color:var(--normal-text);border-radius:var(--border-radius);box-shadow:0 4px 12px rgba(0,0,0,.1);width:var(--width);font-size:13px;display:flex;align-items:center;gap:6px}[data-sonner-toast]:focus-visible{box-shadow:0 4px 12px rgba(0,0,0,.1),0 0 0 2px rgba(0,0,0,.2)}[data-sonner-toast][data-y-position=top]{top:0;--y:translateY(-100%);--lift:1;--lift-amount:calc(1 * var(--gap))}[data-sonner-toast][data-y-position=bottom]{bottom:0;--y:translateY(100%);--lift:-1;--lift-amount:calc(var(--lift) * var(--gap))}[data-sonner-toast][data-styled=true] [data-description]{font-weight:400;line-height:1.4;color:#3f3f3f}[data-rich-colors=true][data-sonner-toast][data-styled=true] [data-description]{color:inherit}[data-sonner-toaster][data-sonner-theme=dark] [data-description]{color:#e8e8e8}[data-sonner-toast][data-styled=true] [data-title]{font-weight:500;line-height:1.5;color:inherit}[data-sonner-toast][data-styled=true] [data-icon]{display:flex;height:16px;width:16px;position:relative;justify-content:flex-start;align-items:center;flex-shrink:0;margin-left:var(--toast-icon-margin-start);margin-right:var(--toast-icon-margin-end)}[data-sonner-toast][data-promise=true] [data-icon]>svg{opacity:0;transform:scale(.8);transform-origin:center;animation:sonner-fade-in .3s ease forwards}[data-sonner-toast][data-styled=true] [data-icon]>*{flex-shrink:0}[data-sonner-toast][data-styled=true] [data-icon] svg{margin-left:var(--toast-svg-margin-start);margin-right:var(--toast-svg-margin-end)}[data-sonner-toast][data-styled=true] [data-content]{display:flex;flex-direction:column;gap:2px}[data-sonner-toast][data-styled=true] [data-button]{border-radius:4px;padding-left:8px;padding-right:8px;height:24px;font-size:12px;color:var(--normal-bg);background:var(--normal-text);margin-left:var(--toast-button-margin-start);margin-right:var(--toast-button-margin-end);border:none;font-weight:500;cursor:pointer;outline:0;display:flex;align-items:center;flex-shrink:0;transition:opacity .4s,box-shadow .2s}[data-sonner-toast][data-styled=true] [data-button]:focus-visible{box-shadow:0 0 0 2px rgba(0,0,0,.4)}[data-sonner-toast][data-styled=true] [data-button]:first-of-type{margin-left:var(--toast-button-margin-start);margin-right:var(--toast-button-margin-end)}[data-sonner-toast][data-styled=true] [data-cancel]{color:var(--normal-text);background:rgba(0,0,0,.08)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast][data-styled=true] [data-cancel]{background:rgba(255,255,255,.3)}[data-sonner-toast][data-styled=true] [data-close-button]{position:absolute;left:var(--toast-close-button-start);right:var(--toast-close-button-end);top:0;height:20px;width:20px;display:flex;justify-content:center;align-items:center;padding:0;color:var(--gray12);background:var(--normal-bg);border:1px solid var(--gray4);transform:var(--toast-close-button-transform);border-radius:50%;cursor:pointer;z-index:1;transition:opacity .1s,background .2s,border-color .2s}[data-sonner-toast][data-styled=true] [data-close-button]:focus-visible{box-shadow:0 4px 12px rgba(0,0,0,.1),0 0 0 2px rgba(0,0,0,.2)}[data-sonner-toast][data-styled=true] [data-disabled=true]{cursor:not-allowed}[data-sonner-toast][data-styled=true]:hover [data-close-button]:hover{background:var(--gray2);border-color:var(--gray5)}[data-sonner-toast][data-swiping=true]::before{content:'';position:absolute;left:-100%;right:-100%;height:100%;z-index:-1}[data-sonner-toast][data-y-position=top][data-swiping=true]::before{bottom:50%;transform:scaleY(3) translateY(50%)}[data-sonner-toast][data-y-position=bottom][data-swiping=true]::before{top:50%;transform:scaleY(3) translateY(-50%)}[data-sonner-toast][data-swiping=false][data-removed=true]::before{content:'';position:absolute;inset:0;transform:scaleY(2)}[data-sonner-toast][data-expanded=true]::after{content:'';position:absolute;left:0;height:calc(var(--gap) + 1px);bottom:100%;width:100%}[data-sonner-toast][data-mounted=true]{--y:translateY(0);opacity:1}[data-sonner-toast][data-expanded=false][data-front=false]{--scale:var(--toasts-before) * 0.05 + 1;--y:translateY(calc(var(--lift-amount) * var(--toasts-before))) scale(calc(-1 * var(--scale)));height:var(--front-toast-height)}[data-sonner-toast]>*{transition:opacity .4s}[data-sonner-toast][data-x-position=right]{right:0}[data-sonner-toast][data-x-position=left]{left:0}[data-sonner-toast][data-expanded=false][data-front=false][data-styled=true]>*{opacity:0}[data-sonner-toast][data-visible=false]{opacity:0;pointer-events:none}[data-sonner-toast][data-mounted=true][data-expanded=true]{--y:translateY(calc(var(--lift) * var(--offset)));height:var(--initial-height)}[data-sonner-toast][data-removed=true][data-front=true][data-swipe-out=false]{--y:translateY(calc(var(--lift) * -100%));opacity:0}[data-sonner-toast][data-removed=true][data-front=false][data-swipe-out=false][data-expanded=true]{--y:translateY(calc(var(--lift) * var(--offset) + var(--lift) * -100%));opacity:0}[data-sonner-toast][data-removed=true][data-front=false][data-swipe-out=false][data-expanded=false]{--y:translateY(40%);opacity:0;transition:transform .5s,opacity .2s}[data-sonner-toast][data-removed=true][data-front=false]::before{height:calc(var(--initial-height) + 20%)}[data-sonner-toast][data-swiping=true]{transform:var(--y) translateY(var(--swipe-amount-y,0)) translateX(var(--swipe-amount-x,0));transition:none}[data-sonner-toast][data-swiped=true]{user-select:none}[data-sonner-toast][data-swipe-out=true][data-y-position=bottom],[data-sonner-toast][data-swipe-out=true][data-y-position=top]{animation-duration:.2s;animation-timing-function:ease-out;animation-fill-mode:forwards}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=left]{animation-name:swipe-out-left}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=right]{animation-name:swipe-out-right}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=up]{animation-name:swipe-out-up}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=down]{animation-name:swipe-out-down}@keyframes swipe-out-left{from{transform:var(--y) translateX(var(--swipe-amount-x));opacity:1}to{transform:var(--y) translateX(calc(var(--swipe-amount-x) - 100%));opacity:0}}@keyframes swipe-out-right{from{transform:var(--y) translateX(var(--swipe-amount-x));opacity:1}to{transform:var(--y) translateX(calc(var(--swipe-amount-x) + 100%));opacity:0}}@keyframes swipe-out-up{from{transform:var(--y) translateY(var(--swipe-amount-y));opacity:1}to{transform:var(--y) translateY(calc(var(--swipe-amount-y) - 100%));opacity:0}}@keyframes swipe-out-down{from{transform:var(--y) translateY(var(--swipe-amount-y));opacity:1}to{transform:var(--y) translateY(calc(var(--swipe-amount-y) + 100%));opacity:0}}@media (max-width:600px){[data-sonner-toaster]{position:fixed;right:var(--mobile-offset-right);left:var(--mobile-offset-left);width:100%}[data-sonner-toaster][dir=rtl]{left:calc(var(--mobile-offset-left) * -1)}[data-sonner-toaster] [data-sonner-toast]{left:0;right:0;width:calc(100% - var(--mobile-offset-left) * 2)}[data-sonner-toaster][data-x-position=left]{left:var(--mobile-offset-left)}[data-sonner-toaster][data-y-position=bottom]{bottom:var(--mobile-offset-bottom)}[data-sonner-toaster][data-y-position=top]{top:var(--mobile-offset-top)}[data-sonner-toaster][data-x-position=center]{left:var(--mobile-offset-left);right:var(--mobile-offset-right);transform:none}}[data-sonner-toaster][data-sonner-theme=light]{--normal-bg:#fff;--normal-border:var(--gray4);--normal-text:var(--gray12);--success-bg:hsl(143, 85%, 96%);--success-border:hsl(145, 92%, 87%);--success-text:hsl(140, 100%, 27%);--info-bg:hsl(208, 100%, 97%);--info-border:hsl(221, 91%, 93%);--info-text:hsl(210, 92%, 45%);--warning-bg:hsl(49, 100%, 97%);--warning-border:hsl(49, 91%, 84%);--warning-text:hsl(31, 92%, 45%);--error-bg:hsl(359, 100%, 97%);--error-border:hsl(359, 100%, 94%);--error-text:hsl(360, 100%, 45%)}[data-sonner-toaster][data-sonner-theme=light] [data-sonner-toast][data-invert=true]{--normal-bg:#000;--normal-border:hsl(0, 0%, 20%);--normal-text:var(--gray1)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast][data-invert=true]{--normal-bg:#fff;--normal-border:var(--gray3);--normal-text:var(--gray12)}[data-sonner-toaster][data-sonner-theme=dark]{--normal-bg:#000;--normal-bg-hover:hsl(0, 0%, 12%);--normal-border:hsl(0, 0%, 20%);--normal-border-hover:hsl(0, 0%, 25%);--normal-text:var(--gray1);--success-bg:hsl(150, 100%, 6%);--success-border:hsl(147, 100%, 12%);--success-text:hsl(150, 86%, 65%);--info-bg:hsl(215, 100%, 6%);--info-border:hsl(223, 43%, 17%);--info-text:hsl(216, 87%, 65%);--warning-bg:hsl(64, 100%, 6%);--warning-border:hsl(60, 100%, 9%);--warning-text:hsl(46, 87%, 65%);--error-bg:hsl(358, 76%, 10%);--error-border:hsl(357, 89%, 16%);--error-text:hsl(358, 100%, 81%)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast] [data-close-button]{background:var(--normal-bg);border-color:var(--normal-border);color:var(--normal-text)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast] [data-close-button]:hover{background:var(--normal-bg-hover);border-color:var(--normal-border-hover)}[data-rich-colors=true][data-sonner-toast][data-type=success]{background:var(--success-bg);border-color:var(--success-border);color:var(--success-text)}[data-rich-colors=true][data-sonner-toast][data-type=success] [data-close-button]{background:var(--success-bg);border-color:var(--success-border);color:var(--success-text)}[data-rich-colors=true][data-sonner-toast][data-type=info]{background:var(--info-bg);border-color:var(--info-border);color:var(--info-text)}[data-rich-colors=true][data-sonner-toast][data-type=info] [data-close-button]{background:var(--info-bg);border-color:var(--info-border);color:var(--info-text)}[data-rich-colors=true][data-sonner-toast][data-type=warning]{background:var(--warning-bg);border-color:var(--warning-border);color:var(--warning-text)}[data-rich-colors=true][data-sonner-toast][data-type=warning] [data-close-button]{background:var(--warning-bg);border-color:var(--warning-border);color:var(--warning-text)}[data-rich-colors=true][data-sonner-toast][data-type=error]{background:var(--error-bg);border-color:var(--error-border);color:var(--error-text)}[data-rich-colors=true][data-sonner-toast][data-type=error] [data-close-button]{background:var(--error-bg);border-color:var(--error-border);color:var(--error-text)}.sonner-loading-wrapper{--size:16px;height:var(--size);width:var(--size);position:absolute;inset:0;z-index:10}.sonner-loading-wrapper[data-visible=false]{transform-origin:center;animation:sonner-fade-out .2s ease forwards}.sonner-spinner{position:relative;top:50%;left:50%;height:var(--size);width:var(--size)}.sonner-loading-bar{animation:sonner-spin 1.2s linear infinite;background:var(--gray11);border-radius:6px;height:8%;left:-10%;position:absolute;top:-3.9%;width:24%}.sonner-loading-bar:first-child{animation-delay:-1.2s;transform:rotate(.0001deg) translate(146%)}.sonner-loading-bar:nth-child(2){animation-delay:-1.1s;transform:rotate(30deg) translate(146%)}.sonner-loading-bar:nth-child(3){animation-delay:-1s;transform:rotate(60deg) translate(146%)}.sonner-loading-bar:nth-child(4){animation-delay:-.9s;transform:rotate(90deg) translate(146%)}.sonner-loading-bar:nth-child(5){animation-delay:-.8s;transform:rotate(120deg) translate(146%)}.sonner-loading-bar:nth-child(6){animation-delay:-.7s;transform:rotate(150deg) translate(146%)}.sonner-loading-bar:nth-child(7){animation-delay:-.6s;transform:rotate(180deg) translate(146%)}.sonner-loading-bar:nth-child(8){animation-delay:-.5s;transform:rotate(210deg) translate(146%)}.sonner-loading-bar:nth-child(9){animation-delay:-.4s;transform:rotate(240deg) translate(146%)}.sonner-loading-bar:nth-child(10){animation-delay:-.3s;transform:rotate(270deg) translate(146%)}.sonner-loading-bar:nth-child(11){animation-delay:-.2s;transform:rotate(300deg) translate(146%)}.sonner-loading-bar:nth-child(12){animation-delay:-.1s;transform:rotate(330deg) translate(146%)}@keyframes sonner-fade-in{0%{opacity:0;transform:scale(.8)}100%{opacity:1;transform:scale(1)}}@keyframes sonner-fade-out{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(.8)}}@keyframes sonner-spin{0%{opacity:1}100%{opacity:.15}}@media (prefers-reduced-motion){.sonner-loading-bar,[data-sonner-toast],[data-sonner-toast]>*{transition:none!important;animation:none!important}}.sonner-loader{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);transform-origin:center;transition:opacity .2s,transform .2s}.sonner-loader[data-visible=false]{opacity:0;transform:scale(.8) translate(-50%,-50%)}");function eS(e){return e.label!==void 0}const _le=3,ble="24px",Mle="16px",AR=4e3,wle=356,xle=14,Nle=45,Cle=200;function zo(...e){return e.filter(Boolean).join(" ")}function $le(e){const[t,o]=e.split("-"),n=[];return t&&n.push(t),o&&n.push(o),n}const Sle=e=>{var t,o,n,a,r,c,s,l,u;const{invert:y,toast:h,unstyled:f,interacting:k,setHeights:m,visibleToasts:g,heights:_,index:v,toasts:b,expanded:M,removeToast:x,defaultRichColors:N,closeButton:C,style:$,cancelButtonStyle:L,actionButtonStyle:A,className:q="",descriptionClassName:z="",duration:O,position:D,gap:U,expandByDefault:G,classNames:H,icons:Y,closeButtonAriaLabel:P="Close toast"}=e,[F,ne]=w.useState(null),[de,B]=w.useState(null),[W,K]=w.useState(!1),[R,re]=w.useState(!1),[V,te]=w.useState(!1),[fe,pe]=w.useState(!1),[le,ee]=w.useState(!1),[_e,j]=w.useState(0),[ue,xe]=w.useState(0),Ce=w.useRef(h.duration||O||AR),De=w.useRef(null),$e=w.useRef(null),Pe=v===0,T=v+1<=g,I=h.type,E=h.dismissible!==!1,Q=h.className||"",Z=h.descriptionClassName||"",J=w.useMemo(()=>_.findIndex(ce=>ce.toastId===h.id)||0,[_,h.id]),ae=w.useMemo(()=>{var ce;return(ce=h.closeButton)!=null?ce:C},[h.closeButton,C]),Ne=w.useMemo(()=>h.duration||O||AR,[h.duration,O]),Se=w.useRef(0),Te=w.useRef(0),dt=w.useRef(0),Ve=w.useRef(null),[nt,wt]=D.split("-"),Lt=w.useMemo(()=>_.reduce((ce,Ae,qe)=>qe>=J?ce:ce+Ae.height,0),[_,J]),qo=ple(),uo=h.invert||y,ho=I==="loading";Te.current=w.useMemo(()=>J*U+Lt,[J,Lt]),w.useEffect(()=>{Ce.current=Ne},[Ne]),w.useEffect(()=>{K(!0)},[]),w.useEffect(()=>{const ce=$e.current;if(ce){const Ae=ce.getBoundingClientRect().height;return xe(Ae),m(qe=>[{toastId:h.id,height:Ae,position:h.position},...qe]),()=>m(qe=>qe.filter(Fe=>Fe.toastId!==h.id))}},[m,h.id]),w.useLayoutEffect(()=>{if(!W)return;const ce=$e.current,Ae=ce.style.height;ce.style.height="auto";const qe=ce.getBoundingClientRect().height;ce.style.height=Ae,xe(qe),m(Fe=>Fe.find(je=>je.toastId===h.id)?Fe.map(je=>je.toastId===h.id?{...je,height:qe}:je):[{toastId:h.id,height:qe,position:h.position},...Fe])},[W,h.title,h.description,m,h.id,h.jsx,h.action,h.cancel]);const oe=w.useCallback(()=>{re(!0),j(Te.current),m(ce=>ce.filter(Ae=>Ae.toastId!==h.id)),setTimeout(()=>{x(h)},Cle)},[h,x,m,Te]);w.useEffect(()=>{if(h.promise&&I==="loading"||h.duration===1/0||h.type==="loading")return;let ce;return M||k||qo?(()=>{if(dt.current<Se.current){const Fe=new Date().getTime()-Se.current;Ce.current=Ce.current-Fe}dt.current=new Date().getTime()})():Ce.current!==1/0&&(Se.current=new Date().getTime(),ce=setTimeout(()=>{h.onAutoClose==null||h.onAutoClose.call(h,h),oe()},Ce.current)),()=>clearTimeout(ce)},[M,k,h,I,qo,oe]),w.useEffect(()=>{h.delete&&(oe(),h.onDismiss==null||h.onDismiss.call(h,h))},[oe,h.delete]);function ve(){var ce;if(Y?.loading){var Ae;return w.createElement("div",{className:zo(H?.loader,h==null||(Ae=h.classNames)==null?void 0:Ae.loader,"sonner-loader"),"data-visible":I==="loading"},Y.loading)}return w.createElement(cle,{className:zo(H?.loader,h==null||(ce=h.classNames)==null?void 0:ce.loader),visible:I==="loading"})}const he=h.icon||Y?.[I]||rle(I);var me,Le;return w.createElement("li",{tabIndex:0,ref:$e,className:zo(q,Q,H?.toast,h==null||(t=h.classNames)==null?void 0:t.toast,H?.default,H?.[I],h==null||(o=h.classNames)==null?void 0:o[I]),"data-sonner-toast":"","data-rich-colors":(me=h.richColors)!=null?me:N,"data-styled":!(h.jsx||h.unstyled||f),"data-mounted":W,"data-promise":!!h.promise,"data-swiped":le,"data-removed":R,"data-visible":T,"data-y-position":nt,"data-x-position":wt,"data-index":v,"data-front":Pe,"data-swiping":V,"data-dismissible":E,"data-type":I,"data-invert":uo,"data-swipe-out":fe,"data-swipe-direction":de,"data-expanded":!!(M||G&&W),"data-testid":h.testId,style:{"--index":v,"--toasts-before":v,"--z-index":b.length-v,"--offset":`${R?_e:Te.current}px`,"--initial-height":G?"auto":`${ue}px`,...$,...h.style},onDragEnd:()=>{te(!1),ne(null),Ve.current=null},onPointerDown:ce=>{ce.button!==2&&(ho||!E||(De.current=new Date,j(Te.current),ce.target.setPointerCapture(ce.pointerId),ce.target.tagName!=="BUTTON"&&(te(!0),Ve.current={x:ce.clientX,y:ce.clientY})))},onPointerUp:()=>{var ce,Ae,qe;if(fe||!E)return;Ve.current=null;const Fe=Number(((ce=$e.current)==null?void 0:ce.style.getPropertyValue("--swipe-amount-x").replace("px",""))||0),gt=Number(((Ae=$e.current)==null?void 0:Ae.style.getPropertyValue("--swipe-amount-y").replace("px",""))||0),je=new Date().getTime()-((qe=De.current)==null?void 0:qe.getTime()),ot=F==="x"?Fe:gt,Qo=Math.abs(ot)/je;if(Math.abs(ot)>=Nle||Qo>.11){j(Te.current),h.onDismiss==null||h.onDismiss.call(h,h),B(F==="x"?Fe>0?"right":"left":gt>0?"down":"up"),oe(),pe(!0);return}else{var It,po;(It=$e.current)==null||It.style.setProperty("--swipe-amount-x","0px"),(po=$e.current)==null||po.style.setProperty("--swipe-amount-y","0px")}ee(!1),te(!1),ne(null)},onPointerMove:ce=>{var Ae,qe,Fe;if(!Ve.current||!E||((Ae=window.getSelection())==null?void 0:Ae.toString().length)>0)return;const je=ce.clientY-Ve.current.y,ot=ce.clientX-Ve.current.x;var Qo;const It=(Qo=e.swipeDirections)!=null?Qo:$le(D);!F&&(Math.abs(ot)>1||Math.abs(je)>1)&&ne(Math.abs(ot)>Math.abs(je)?"x":"y");let po={x:0,y:0};const CG=Bc=>1/(1.5+Math.abs(Bc)/20);if(F==="y"){if(It.includes("top")||It.includes("bottom"))if(It.includes("top")&&je<0||It.includes("bottom")&&je>0)po.y=je;else{const Bc=je*CG(je);po.y=Math.abs(Bc)<Math.abs(je)?Bc:je}}else if(F==="x"&&(It.includes("left")||It.includes("right")))if(It.includes("left")&&ot<0||It.includes("right")&&ot>0)po.x=ot;else{const Bc=ot*CG(ot);po.x=Math.abs(Bc)<Math.abs(ot)?Bc:ot}(Math.abs(po.x)>0||Math.abs(po.y)>0)&&ee(!0),(qe=$e.current)==null||qe.style.setProperty("--swipe-amount-x",`${po.x}px`),(Fe=$e.current)==null||Fe.style.setProperty("--swipe-amount-y",`${po.y}px`)}},ae&&!h.jsx&&I!=="loading"?w.createElement("button",{"aria-label":P,"data-disabled":ho,"data-close-button":!0,onClick:ho||!E?()=>{}:()=>{oe(),h.onDismiss==null||h.onDismiss.call(h,h)},className:zo(H?.closeButton,h==null||(n=h.classNames)==null?void 0:n.closeButton)},(Le=Y?.close)!=null?Le:hle):null,(I||h.icon||h.promise)&&h.icon!==null&&(Y?.[I]!==null||h.icon)?w.createElement("div",{"data-icon":"",className:zo(H?.icon,h==null||(a=h.classNames)==null?void 0:a.icon)},h.promise||h.type==="loading"&&!h.icon?h.icon||ve():null,h.type!=="loading"?he:null):null,w.createElement("div",{"data-content":"",className:zo(H?.content,h==null||(r=h.classNames)==null?void 0:r.content)},w.createElement("div",{"data-title":"",className:zo(H?.title,h==null||(c=h.classNames)==null?void 0:c.title)},h.jsx?h.jsx:typeof h.title=="function"?h.title():h.title),h.description?w.createElement("div",{"data-description":"",className:zo(z,Z,H?.description,h==null||(s=h.classNames)==null?void 0:s.description)},typeof h.description=="function"?h.description():h.description):null),w.isValidElement(h.cancel)?h.cancel:h.cancel&&eS(h.cancel)?w.createElement("button",{"data-button":!0,"data-cancel":!0,style:h.cancelButtonStyle||L,onClick:ce=>{eS(h.cancel)&&E&&(h.cancel.onClick==null||h.cancel.onClick.call(h.cancel,ce),oe())},className:zo(H?.cancelButton,h==null||(l=h.classNames)==null?void 0:l.cancelButton)},h.cancel.label):null,w.isValidElement(h.action)?h.action:h.action&&eS(h.action)?w.createElement("button",{"data-button":!0,"data-action":!0,style:h.actionButtonStyle||A,onClick:ce=>{eS(h.action)&&(h.action.onClick==null||h.action.onClick.call(h.action,ce),!ce.defaultPrevented&&oe())},className:zo(H?.actionButton,h==null||(u=h.classNames)==null?void 0:u.actionButton)},h.action.label):null)};function PR(){if(typeof window>"u"||typeof document>"u")return"ltr";const e=document.documentElement.getAttribute("dir");return e==="auto"||!e?window.getComputedStyle(document.documentElement).direction:e}function Lle(e,t){const o={};return[e,t].forEach((n,a)=>{const r=a===1,c=r?"--mobile-offset":"--offset",s=r?Mle:ble;function l(u){["top","right","bottom","left"].forEach(y=>{o[`${c}-${y}`]=typeof u=="number"?`${u}px`:u})}typeof n=="number"||typeof n=="string"?l(n):typeof n=="object"?["top","right","bottom","left"].forEach(u=>{n[u]===void 0?o[`${c}-${u}`]=s:o[`${c}-${u}`]=typeof n[u]=="number"?`${n[u]}px`:n[u]}):l(s)}),o}const Ile=w.forwardRef(function(t,o){const{id:n,invert:a,position:r="bottom-right",hotkey:c=["altKey","KeyT"],expand:s,closeButton:l,className:u,offset:y,mobileOffset:h,theme:f="light",richColors:k,duration:m,style:g,visibleToasts:_=_le,toastOptions:v,dir:b=PR(),gap:M=xle,icons:x,containerAriaLabel:N="Notifications"}=t,[C,$]=w.useState([]),L=w.useMemo(()=>n?C.filter(W=>W.toasterId===n):C.filter(W=>!W.toasterId),[C,n]),A=w.useMemo(()=>Array.from(new Set([r].concat(L.filter(W=>W.position).map(W=>W.position)))),[L,r]),[q,z]=w.useState([]),[O,D]=w.useState(!1),[U,G]=w.useState(!1),[H,Y]=w.useState(f!=="system"?f:typeof window<"u"&&window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light"),P=w.useRef(null),F=c.join("+").replace(/Key/g,"").replace(/Digit/g,""),ne=w.useRef(null),de=w.useRef(!1),B=w.useCallback(W=>{$(K=>{var R;return(R=K.find(re=>re.id===W.id))!=null&&R.delete||St.dismiss(W.id),K.filter(({id:re})=>re!==W.id)})},[]);return w.useEffect(()=>St.subscribe(W=>{if(W.dismiss){requestAnimationFrame(()=>{$(K=>K.map(R=>R.id===W.id?{...R,delete:!0}:R))});return}setTimeout(()=>{h1.flushSync(()=>{$(K=>{const R=K.findIndex(re=>re.id===W.id);return R!==-1?[...K.slice(0,R),{...K[R],...W},...K.slice(R+1)]:[W,...K]})})})}),[C]),w.useEffect(()=>{if(f!=="system"){Y(f);return}if(f==="system"&&(window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches?Y("dark"):Y("light")),typeof window>"u")return;const W=window.matchMedia("(prefers-color-scheme: dark)");try{W.addEventListener("change",({matches:K})=>{Y(K?"dark":"light")})}catch{W.addListener(({matches:R})=>{try{Y(R?"dark":"light")}catch(re){console.error(re)}})}},[f]),w.useEffect(()=>{C.length<=1&&D(!1)},[C]),w.useEffect(()=>{const W=K=>{var R;if(c.every(te=>K[te]||K.code===te)){var V;D(!0),(V=P.current)==null||V.focus()}K.code==="Escape"&&(document.activeElement===P.current||(R=P.current)!=null&&R.contains(document.activeElement))&&D(!1)};return document.addEventListener("keydown",W),()=>document.removeEventListener("keydown",W)},[c]),w.useEffect(()=>{if(P.current)return()=>{ne.current&&(ne.current.focus({preventScroll:!0}),ne.current=null,de.current=!1)}},[P.current]),w.createElement("section",{ref:o,"aria-label":`${N} ${F}`,tabIndex:-1,"aria-live":"polite","aria-relevant":"additions text","aria-atomic":"false",suppressHydrationWarning:!0},A.map((W,K)=>{var R;const[re,V]=W.split("-");return L.length?w.createElement("ol",{key:W,dir:b==="auto"?PR():b,tabIndex:-1,ref:P,className:u,"data-sonner-toaster":!0,"data-sonner-theme":H,"data-y-position":re,"data-x-position":V,style:{"--front-toast-height":`${((R=q[0])==null?void 0:R.height)||0}px`,"--width":`${wle}px`,"--gap":`${M}px`,...g,...Lle(y,h)},onBlur:te=>{de.current&&!te.currentTarget.contains(te.relatedTarget)&&(de.current=!1,ne.current&&(ne.current.focus({preventScroll:!0}),ne.current=null))},onFocus:te=>{te.target instanceof HTMLElement&&te.target.dataset.dismissible==="false"||de.current||(de.current=!0,ne.current=te.relatedTarget)},onMouseEnter:()=>D(!0),onMouseMove:()=>D(!0),onMouseLeave:()=>{U||D(!1)},onDragEnd:()=>D(!1),onPointerDown:te=>{te.target instanceof HTMLElement&&te.target.dataset.dismissible==="false"||G(!0)},onPointerUp:()=>G(!1)},L.filter(te=>!te.position&&K===0||te.position===W).map((te,fe)=>{var pe,le;return w.createElement(Sle,{key:te.id,icons:x,index:fe,toast:te,defaultRichColors:k,duration:(pe=v?.duration)!=null?pe:m,className:v?.className,descriptionClassName:v?.descriptionClassName,invert:a,visibleToasts:_,closeButton:(le=v?.closeButton)!=null?le:l,interacting:U,position:W,style:v?.style,unstyled:v?.unstyled,classNames:v?.classNames,cancelButtonStyle:v?.cancelButtonStyle,actionButtonStyle:v?.actionButtonStyle,closeButtonAriaLabel:v?.closeButtonAriaLabel,removeToast:B,toasts:L.filter(ee=>ee.position==te.position),heights:q.filter(ee=>ee.position==te.position),setHeights:z,expandByDefault:s,gap:M,expanded:O,swipeDirections:t.swipeDirections})})):null}))}),Ale=({...e})=>{const{theme:t="system"}=nle();return d.jsx(Ile,{theme:t,className:"toaster group",icons:{success:d.jsx(Vo,{className:"h-4 w-4"}),info:d.jsx(td,{className:"h-4 w-4"}),warning:d.jsx(sn,{className:"h-4 w-4"}),error:d.jsx(an,{className:"h-4 w-4"}),loading:d.jsx(qt,{className:"h-4 w-4 animate-spin"})},toastOptions:{classNames:{toast:"group toast group-[.toaster]:bg-background group-[.toaster]:text-foreground group-[.toaster]:border-border group-[.toaster]:shadow-lg",description:"group-[.toast]:text-muted-foreground",actionButton:"group-[.toast]:bg-primary group-[.toast]:text-primary-foreground",cancelButton:"group-[.toast]:bg-muted group-[.toast]:text-muted-foreground"}},...e})};var tS="Switch",[Ple]=Xe(tS),[Tle,Dle]=Ple(tS),TR=p.forwardRef((e,t)=>{const{__scopeSwitch:o,name:n,checked:a,defaultChecked:r,required:c,disabled:s,value:l="on",onCheckedChange:u,form:y,...h}=e,[f,k]=p.useState(null),m=be(t,M=>k(M)),g=p.useRef(!1),_=f?y||!!f.closest("form"):!0,[v,b]=Ke({prop:a,defaultProp:r??!1,onChange:u,caller:tS});return d.jsxs(Tle,{scope:o,checked:v,disabled:s,children:[d.jsx(se.button,{type:"button",role:"switch","aria-checked":v,"aria-required":c,"data-state":OR(v),"data-disabled":s?"":void 0,disabled:s,value:l,...h,ref:m,onClick:X(e.onClick,M=>{b(x=>!x),_&&(g.current=M.isPropagationStopped(),g.current||M.stopPropagation())})}),_&&d.jsx(zR,{control:f,bubbles:!g.current,name:n,value:l,checked:v,required:c,disabled:s,form:y,style:{transform:"translateX(-100%)"}})]})});TR.displayName=tS;var DR="SwitchThumb",ER=p.forwardRef((e,t)=>{const{__scopeSwitch:o,...n}=e,a=Dle(DR,o);return d.jsx(se.span,{"data-state":OR(a.checked),"data-disabled":a.disabled?"":void 0,...n,ref:t})});ER.displayName=DR;var Ele="SwitchBubbleInput",zR=p.forwardRef(({__scopeSwitch:e,control:t,checked:o,bubbles:n=!0,...a},r)=>{const c=p.useRef(null),s=be(c,r),l=ks(o),u=Ad(t);return p.useEffect(()=>{const y=c.current;if(!y)return;const h=window.HTMLInputElement.prototype,k=Object.getOwnPropertyDescriptor(h,"checked").set;if(l!==o&&k){const m=new Event("click",{bubbles:n});k.call(y,o),y.dispatchEvent(m)}},[l,o,n]),d.jsx("input",{type:"checkbox","aria-hidden":!0,defaultChecked:o,...a,tabIndex:-1,ref:s,style:{...a.style,...u,position:"absolute",pointerEvents:"none",opacity:0,margin:0}})});zR.displayName=Ele;function OR(e){return e?"checked":"unchecked"}var qR=TR,zle=ER;const ZP=p.forwardRef(({className:e,...t},o)=>d.jsx(qR,{className:S("peer inline-flex h-6 w-11 shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=unchecked]:bg-input",e),...t,ref:o,children:d.jsx(zle,{className:S("pointer-events-none block h-5 w-5 rounded-full bg-background shadow-lg ring-0 transition-transform data-[state=checked]:translate-x-5 data-[state=unchecked]:translate-x-0")})}));ZP.displayName=qR.displayName;const oS=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{className:"relative w-full overflow-auto",children:d.jsx("table",{ref:o,className:S("w-full caption-bottom text-sm",e),...t})}));oS.displayName="Table";const nS=p.forwardRef(({className:e,...t},o)=>d.jsx("thead",{ref:o,className:S("[&_tr]:border-b",e),...t}));nS.displayName="TableHeader";const aS=p.forwardRef(({className:e,...t},o)=>d.jsx("tbody",{ref:o,className:S("[&_tr:last-child]:border-0",e),...t}));aS.displayName="TableBody";const jR=p.forwardRef(({className:e,...t},o)=>d.jsx("tfoot",{ref:o,className:S("border-t bg-muted/50 font-medium [&>tr]:last:border-b-0",e),...t}));jR.displayName="TableFooter";const lo=p.forwardRef(({className:e,...t},o)=>d.jsx("tr",{ref:o,className:S("border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted",e),...t}));lo.displayName="TableRow";const zs=p.forwardRef(({className:e,...t},o)=>d.jsx("th",{ref:o,className:S("h-12 px-4 text-left align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pr-0",e),...t}));zs.displayName="TableHead";const Oo=p.forwardRef(({className:e,...t},o)=>d.jsx("td",{ref:o,className:S("p-4 align-middle [&:has([role=checkbox])]:pr-0",e),...t}));Oo.displayName="TableCell";const QP=p.forwardRef(({className:e,...t},o)=>d.jsx("caption",{ref:o,className:S("mt-4 text-sm text-muted-foreground",e),...t}));QP.displayName="TableCaption";var rS="Tabs",[Ole]=Xe(rS,[Ao]),HR=Ao(),[qle,JP]=Ole(rS),VR=p.forwardRef((e,t)=>{const{__scopeTabs:o,value:n,onValueChange:a,defaultValue:r,orientation:c="horizontal",dir:s,activationMode:l="automatic",...u}=e,y=Yt(s),[h,f]=Ke({prop:n,onChange:a,defaultProp:r??"",caller:rS});return d.jsx(qle,{scope:o,baseId:We(),value:h,onValueChange:f,orientation:c,dir:y,activationMode:l,children:d.jsx(se.div,{dir:y,"data-orientation":c,...u,ref:t})})});VR.displayName=rS;var FR="TabsList",BR=p.forwardRef((e,t)=>{const{__scopeTabs:o,loop:n=!0,...a}=e,r=JP(FR,o),c=HR(o);return d.jsx(Hd,{asChild:!0,...c,orientation:r.orientation,dir:r.dir,loop:n,children:d.jsx(se.div,{role:"tablist","aria-orientation":r.orientation,...a,ref:t})})});BR.displayName=FR;var WR="TabsTrigger",UR=p.forwardRef((e,t)=>{const{__scopeTabs:o,value:n,disabled:a=!1,...r}=e,c=JP(WR,o),s=HR(o),l=KR(c.baseId,n),u=YR(c.baseId,n),y=n===c.value;return d.jsx(Vd,{asChild:!0,...s,focusable:!a,active:y,children:d.jsx(se.button,{type:"button",role:"tab","aria-selected":y,"aria-controls":u,"data-state":y?"active":"inactive","data-disabled":a?"":void 0,disabled:a,id:l,...r,ref:t,onMouseDown:X(e.onMouseDown,h=>{!a&&h.button===0&&h.ctrlKey===!1?c.onValueChange(n):h.preventDefault()}),onKeyDown:X(e.onKeyDown,h=>{[" ","Enter"].includes(h.key)&&c.onValueChange(n)}),onFocus:X(e.onFocus,()=>{const h=c.activationMode!=="manual";!y&&!a&&h&&c.onValueChange(n)})})})});UR.displayName=WR;var RR="TabsContent",GR=p.forwardRef((e,t)=>{const{__scopeTabs:o,value:n,forceMount:a,children:r,...c}=e,s=JP(RR,o),l=KR(s.baseId,n),u=YR(s.baseId,n),y=n===s.value,h=p.useRef(y);return p.useEffect(()=>{const f=requestAnimationFrame(()=>h.current=!1);return()=>cancelAnimationFrame(f)},[]),d.jsx(Qe,{present:a||y,children:({present:f})=>d.jsx(se.div,{"data-state":y?"active":"inactive","data-orientation":s.orientation,role:"tabpanel","aria-labelledby":l,hidden:!f,id:u,tabIndex:0,...c,ref:t,style:{...e.style,animationDuration:h.current?"0s":void 0},children:f&&r})})});GR.displayName=RR;function KR(e,t){return`${e}-trigger-${t}`}function YR(e,t){return`${e}-content-${t}`}var jle=VR,XR=BR,ZR=UR,QR=GR;const Hle=jle,JR=p.forwardRef(({className:e,...t},o)=>d.jsx(XR,{ref:o,className:S("inline-flex h-10 items-center justify-center rounded-md bg-muted p-1 text-muted-foreground",e),...t}));JR.displayName=XR.displayName;const eG=p.forwardRef(({className:e,...t},o)=>d.jsx(ZR,{ref:o,className:S("inline-flex items-center justify-center whitespace-nowrap rounded-sm px-3 py-1.5 text-sm font-medium ring-offset-background transition-all focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=active]:bg-background data-[state=active]:text-foreground data-[state=active]:shadow-sm",e),...t}));eG.displayName=ZR.displayName;const tG=p.forwardRef(({className:e,...t},o)=>d.jsx(QR,{ref:o,className:S("mt-2 ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2",e),...t}));tG.displayName=QR.displayName;const eT=p.forwardRef(({className:e,...t},o)=>d.jsx("textarea",{className:S("flex min-h-[80px] w-full rounded-md border border-input bg-background px-3 py-2 text-base ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",e),ref:o,...t}));eT.displayName="Textarea";var oG="Toggle",tT=p.forwardRef((e,t)=>{const{pressed:o,defaultPressed:n,onPressedChange:a,...r}=e,[c,s]=Ke({prop:o,onChange:a,defaultProp:n??!1,caller:oG});return d.jsx(se.button,{type:"button","aria-pressed":c,"data-state":c?"on":"off","data-disabled":e.disabled?"":void 0,...r,ref:t,onClick:X(e.onClick,()=>{e.disabled||s(!c)})})});tT.displayName=oG;var nG=tT,_n="ToggleGroup",[aG]=Xe(_n,[Ao]),rG=Ao(),oT=w.forwardRef((e,t)=>{const{type:o,...n}=e;if(o==="single"){const a=n;return d.jsx(Vle,{...a,ref:t})}if(o==="multiple"){const a=n;return d.jsx(Fle,{...a,ref:t})}throw new Error(`Missing prop \`type\` expected on \`${_n}\``)});oT.displayName=_n;var[iG,cG]=aG(_n),Vle=w.forwardRef((e,t)=>{const{value:o,defaultValue:n,onValueChange:a=()=>{},...r}=e,[c,s]=Ke({prop:o,defaultProp:n??"",onChange:a,caller:_n});return d.jsx(iG,{scope:e.__scopeToggleGroup,type:"single",value:w.useMemo(()=>c?[c]:[],[c]),onItemActivate:s,onItemDeactivate:w.useCallback(()=>s(""),[s]),children:d.jsx(sG,{...r,ref:t})})}),Fle=w.forwardRef((e,t)=>{const{value:o,defaultValue:n,onValueChange:a=()=>{},...r}=e,[c,s]=Ke({prop:o,defaultProp:n??[],onChange:a,caller:_n}),l=w.useCallback(y=>s((h=[])=>[...h,y]),[s]),u=w.useCallback(y=>s((h=[])=>h.filter(f=>f!==y)),[s]);return d.jsx(iG,{scope:e.__scopeToggleGroup,type:"multiple",value:c,onItemActivate:l,onItemDeactivate:u,children:d.jsx(sG,{...r,ref:t})})});oT.displayName=_n;var[Ble,Wle]=aG(_n),sG=w.forwardRef((e,t)=>{const{__scopeToggleGroup:o,disabled:n=!1,rovingFocus:a=!0,orientation:r,dir:c,loop:s=!0,...l}=e,u=rG(o),y=Yt(c),h={role:"group",dir:y,...l};return d.jsx(Ble,{scope:o,rovingFocus:a,disabled:n,children:a?d.jsx(Hd,{asChild:!0,...u,orientation:r,dir:y,loop:s,children:d.jsx(se.div,{...h,ref:t})}):d.jsx(se.div,{...h,ref:t})})}),iS="ToggleGroupItem",dG=w.forwardRef((e,t)=>{const o=cG(iS,e.__scopeToggleGroup),n=Wle(iS,e.__scopeToggleGroup),a=rG(e.__scopeToggleGroup),r=o.value.includes(e.value),c=n.disabled||e.disabled,s={...e,pressed:r,disabled:c},l=w.useRef(null);return n.rovingFocus?d.jsx(Vd,{asChild:!0,...a,focusable:!c,active:r,ref:l,children:d.jsx(lG,{...s,ref:t})}):d.jsx(lG,{...s,ref:t})});dG.displayName=iS;var lG=w.forwardRef((e,t)=>{const{__scopeToggleGroup:o,value:n,...a}=e,r=cG(iS,o),c={role:"radio","aria-checked":e.pressed,"aria-pressed":void 0},s=r.type==="single"?c:void 0;return d.jsx(tT,{...s,...a,ref:t,onPressedChange:l=>{l?r.onItemActivate(n):r.onItemDeactivate(n)}})}),uG=oT,hG=dG;const pG=Wo("inline-flex items-center justify-center rounded-md text-sm font-medium ring-offset-background transition-colors hover:bg-muted hover:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=on]:bg-accent data-[state=on]:text-accent-foreground [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0 gap-2",{variants:{variant:{default:"bg-transparent",outline:"border border-input bg-transparent hover:bg-accent hover:text-accent-foreground"},size:{default:"h-10 px-3 min-w-10",sm:"h-9 px-2.5 min-w-9",lg:"h-11 px-5 min-w-11"}},defaultVariants:{variant:"default",size:"default"}}),yG=p.forwardRef(({className:e,variant:t,size:o,...n},a)=>d.jsx(nG,{ref:a,className:S(pG({variant:t,size:o,className:e})),...n}));yG.displayName=nG.displayName;const fG=p.createContext({size:"default",variant:"default"}),mG=p.forwardRef(({className:e,variant:t,size:o,children:n,...a},r)=>d.jsx(uG,{ref:r,className:S("flex items-center justify-center gap-1",e),...a,children:d.jsx(fG.Provider,{value:{variant:t,size:o},children:n})}));mG.displayName=uG.displayName;const kG=p.forwardRef(({className:e,children:t,variant:o,size:n,...a},r)=>{const c=p.useContext(fG);return d.jsx(hG,{ref:r,className:S(pG({variant:c.variant||o,size:c.size||n}),e),...a,children:t})});kG.displayName=hG.displayName;const Ule=p.forwardRef(({className:e,...t},o)=>d.jsx("h1",{ref:o,className:S("scroll-m-20 text-4xl font-extrabold tracking-tight lg:text-5xl",e),...t}));Ule.displayName="TypographyH1";const Rle=p.forwardRef(({className:e,...t},o)=>d.jsx("h2",{ref:o,className:S("scroll-m-20 border-b pb-2 text-3xl font-semibold tracking-tight first:mt-0",e),...t}));Rle.displayName="TypographyH2";const Gle=p.forwardRef(({className:e,...t},o)=>d.jsx("h3",{ref:o,className:S("scroll-m-20 text-2xl font-semibold tracking-tight",e),...t}));Gle.displayName="TypographyH3";const Kle=p.forwardRef(({className:e,...t},o)=>d.jsx("h4",{ref:o,className:S("scroll-m-20 text-xl font-semibold tracking-tight",e),...t}));Kle.displayName="TypographyH4";const Yle=p.forwardRef(({className:e,...t},o)=>d.jsx("p",{ref:o,className:S("leading-7 [&:not(:first-child)]:mt-6",e),...t}));Yle.displayName="TypographyP";const Xle=p.forwardRef(({className:e,...t},o)=>d.jsx("blockquote",{ref:o,className:S("mt-6 border-l-2 pl-6 italic",e),...t}));Xle.displayName="TypographyBlockquote";const Zle=p.forwardRef(({className:e,...t},o)=>d.jsx("ul",{ref:o,className:S("my-6 ml-6 list-disc [&>li]:mt-2",e),...t}));Zle.displayName="TypographyList";const Qle=p.forwardRef(({className:e,...t},o)=>d.jsx("code",{ref:o,className:S("relative rounded bg-muted px-[0.3rem] py-[0.2rem] font-mono text-sm font-semibold",e),...t}));Qle.displayName="TypographyInlineCode";const Jle=p.forwardRef(({className:e,...t},o)=>d.jsx("p",{ref:o,className:S("text-xl text-muted-foreground",e),...t}));Jle.displayName="TypographyLead";const e2e=p.forwardRef(({className:e,...t},o)=>d.jsx("div",{ref:o,className:S("text-lg font-semibold",e),...t}));e2e.displayName="TypographyLarge";const t2e=p.forwardRef(({className:e,...t},o)=>d.jsx("small",{ref:o,className:S("text-sm font-medium leading-none",e),...t}));t2e.displayName="TypographySmall";const o2e=p.forwardRef(({className:e,...t},o)=>d.jsx("p",{ref:o,className:S("text-sm text-muted-foreground",e),...t}));o2e.displayName="TypographyMuted";const n2e=w.forwardRef(({schema:e,className:t,...o},n)=>{const{"data-obj-id":a,"data-obj-type":r,style:c,...s}=o;return d.jsx(K$,{ref:n,orientation:e.orientation,className:t,...s,"data-obj-id":a,"data-obj-type":r,style:c})});ie.register("separator",n2e,{namespace:"ui",label:"Separator",inputs:[{name:"orientation",type:"enum",enum:["horizontal","vertical"],defaultValue:"horizontal",label:"Orientation"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{orientation:"horizontal",className:"my-2 sm:my-4"}}),ie.register("image",({schema:e,className:t,...o})=>{const{"data-obj-id":n,"data-obj-type":a,style:r,...c}=o;return d.jsx("img",{src:e.src,alt:e.alt||"",className:t,...c,"data-obj-id":n,"data-obj-type":a,style:r})},{namespace:"ui",label:"Image",icon:"image",category:"basic",inputs:[{name:"src",type:"string",label:"Source URL"},{name:"alt",type:"string",label:"Alt Text"},{name:"className",type:"string",label:"Classes"}],defaultProps:{className:"max-w-full h-auto"}});function a2e(e){return e.split("-").map(t=>t.charAt(0).toUpperCase()+t.slice(1)).join("")}const r2e={Home:"House"},gG=w.forwardRef(({schema:e,className:t,...o},n)=>{const{"data-obj-id":a,"data-obj-type":r,style:c,...s}=o,l=a2e(e.name),u=r2e[l]||l,y=zS[u];if(!y)return console.warn(`Icon "${e.name}" (lookup: "${l}"${u!==l?` -> "${u}"`:""}) not found in lucide-react`),null;const h=e.size?{width:e.size,height:e.size}:void 0,f=S(e.color,e.className,t);return d.jsx(y,{ref:n,className:f,style:{...h,...c},...s,"data-obj-id":a,"data-obj-type":r})});gG.displayName="IconRenderer",ie.register("icon",gG,{namespace:"ui",label:"Icon",icon:"smile",category:"basic",inputs:[{name:"name",type:"string",label:"Icon Name",defaultValue:"smile"},{name:"size",type:"number",label:"Size (px)"},{name:"color",type:"string",label:"Color Class"},{name:"className",type:"string",label:"CSS Class"}]}),ie.register("html",({schema:e,className:t,...o})=>{const{"data-obj-id":n,"data-obj-type":a,style:r,...c}=o;return d.jsx("div",{className:S("prose prose-sm max-w-none dark:prose-invert",t),dangerouslySetInnerHTML:{__html:e.html},...c,"data-obj-id":n,"data-obj-type":a,style:r})},{namespace:"ui",label:"HTML Content",inputs:[{name:"html",type:"string",label:"HTML",description:"Raw HTML content"}]}),ie.register("button-group",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t;return d.jsx("div",{className:S("flex flex-wrap sm:inline-flex rounded-md shadow-sm",e.className),role:"group",...r,"data-obj-id":o,"data-obj-type":n,style:a,children:e.buttons?.map((c,s)=>d.jsx(Ee,{variant:c.variant||e.variant,size:c.size||e.size,className:S("rounded-none",s===0&&"rounded-l-md",s===(e.buttons?.length||0)-1&&"rounded-r-md",s>0&&"-ml-px",c.className),children:c.label},s))})},{namespace:"ui",label:"Button Group",inputs:[{name:"variant",type:"enum",enum:["default","destructive","outline","secondary","ghost","link"],defaultValue:"default",label:"Variant"},{name:"size",type:"enum",enum:["default","sm","lg","icon"],defaultValue:"default",label:"Size"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{variant:"default",size:"default",buttons:[{label:"Left"},{label:"Middle"},{label:"Right"}]}}),ie.register("pagination",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,onPageChange:r,...c}=t,s=e.currentPage||e.page||1,l=e.totalPages||1,u=(h,f)=>{f.preventDefault(),h!==s&&(h<1||h>l||r&&r(h))},y=()=>l<=7?Array.from({length:l},(h,f)=>f+1):s<=3?[1,2,3,4,5,-1,l]:s>=l-2?[1,-1,l-4,l-3,l-2,l-1,l]:[1,-1,s-1,s,s+1,-1,l];return d.jsx(MB,{className:e.className,...c,"data-obj-id":o,"data-obj-type":n,style:a,children:d.jsxs(wB,{children:[d.jsx(I$,{children:d.jsx(xB,{href:"#",onClick:h=>u(s-1,h),className:s<=1?"pointer-events-none opacity-50":"cursor-pointer","aria-disabled":s<=1})}),y().map((h,f)=>d.jsx(I$,{children:h===-1?d.jsx(CB,{}):d.jsx(A$,{href:"#",isActive:h===s,onClick:k=>u(h,k),className:"cursor-pointer",children:h})},f)),d.jsx(I$,{children:d.jsx(NB,{href:"#",onClick:h=>u(s+1,h),className:s>=l?"pointer-events-none opacity-50":"cursor-pointer","aria-disabled":s>=l})})]})})},{namespace:"ui",label:"Pagination",inputs:[{name:"currentPage",type:"number",label:"Current Page",defaultValue:1},{name:"totalPages",type:"number",label:"Total Pages",defaultValue:10},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{currentPage:1,totalPages:10}}),ie.register("navigation-menu",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t;return d.jsx(mB,{className:e.className,...r,"data-obj-id":o,"data-obj-type":n,style:a,children:d.jsx(kB,{children:e.items?.map((c,s)=>d.jsx(Rce,{children:c.children?d.jsxs(d.Fragment,{children:[d.jsx(gB,{children:c.label}),d.jsx(vB,{children:d.jsx("ul",{className:"grid w-full gap-3 p-4 sm:w-[400px] md:w-[500px] md:grid-cols-2 lg:w-[600px]",children:c.children.map((l,u)=>d.jsx("li",{children:d.jsx(_B,{asChild:!0,children:d.jsxs("a",{className:S("block select-none space-y-1 rounded-md p-3 leading-none no-underline outline-none transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground"),href:l.href,children:[d.jsx("div",{className:"text-sm font-medium leading-none",children:l.label}),l.description&&d.jsx("p",{className:"line-clamp-2 text-sm leading-snug text-muted-foreground",children:l.description})]})})},u))})})]}):d.jsx(_B,{href:c.href,children:c.label})},s))})})},{namespace:"ui",label:"Navigation Menu",inputs:[{name:"className",type:"string",label:"CSS Class"}],defaultProps:{items:[{label:"Home",href:"/"},{label:"About",href:"/about"}]}}),ie.register("form",({schema:e,className:t,onAction:o,...n})=>{const{defaultValues:a={},fields:r=[],submitLabel:c="Submit",cancelLabel:s="Cancel",showCancel:l=!1,showSubmit:u=!0,layout:y="vertical",columns:h=1,onSubmit:f,onChange:k,onCancel:m,resetOnSubmit:g=!1,validationMode:_="onSubmit",disabled:v=!1}=e,b=HK({defaultValues:a,mode:_}),[M,x]=w.useState(!1),[N,C]=w.useState(null);w.useEffect(()=>{b.reset(a)},[a]),w.useEffect(()=>{if(o){const K=b.watch(R=>{o({type:"form_change",data:R,formData:R})});return()=>K.unsubscribe()}},[b,o]);const $=b.handleSubmit(async K=>{x(!0),C(null);let R=K;if(K&&(K.nativeEvent||typeof K.preventDefault=="function"||typeof K.stopPropagation=="function"||K.target||K.bubbles))R=b.getValues();else if(!R||Object.keys(R).length===0){const V=b.getValues();V&&Object.keys(V).length>0&&(R=V)}try{if(o){const V=await o({type:"form_submit",data:R,formData:R});if(V?.error){C(V.error);return}}f&&typeof f=="function"&&await f(R),g&&b.reset()}catch(V){const te=V instanceof Error?V.message:typeof V=="string"?V:"An error occurred during submission";C(te),typeof process<"u"&&process.env?.NODE_ENV==="development"&&console.error("Form submission error:",V)}finally{x(!1)}}),L=()=>{b.reset(),m&&typeof m=="function"&&m(),o&&o({type:"form_cancel",data:b.getValues()})},A=h===1?"":h===2?"sm:grid-cols-2":h===3?"sm:grid-cols-2 md:grid-cols-3":"sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4",q=h>1?S("grid gap-4",A):"space-y-4",{"data-obj-id":z,"data-obj-type":O,style:D,onSubmit:U,onChange:G,submitLabel:H,cancelLabel:Y,showSubmit:P,showCancel:F,resetOnSubmit:ne,defaultValues:de,inputType:B,...W}=n;return d.jsx($ie,{...b,children:d.jsxs("form",{onSubmit:$,className:t,...W,"data-obj-id":z,"data-obj-type":O,style:D,children:[N&&d.jsxs(YS,{variant:"destructive",className:"mb-4",children:[d.jsx(tn,{className:"h-4 w-4"}),d.jsx(XS,{children:N})]}),e.children?d.jsx("div",{className:e.fieldContainerClass||"space-y-4",children:we(e.children)}):d.jsx("div",{className:e.fieldContainerClass||q,children:r.map(K=>{const{name:R,label:re,description:V,type:te="input",required:fe=!1,disabled:pe=!1,validation:le={},condition:ee,..._e}=K;if(ee){const xe=ee.field,Ce=b.watch(xe),De=Ce!=null;if(ee.equals!==void 0&&Ce!==ee.equals||ee.notEquals!==void 0&&Ce===ee.notEquals||ee.in&&(!De||!ee.in.includes(Ce)))return null}const j={...le};fe&&(j.required=typeof le.required=="string"?le.required:`${re||R} is required`);const ue=K.id??R;return d.jsx(Sie,{control:b.control,name:R,rules:j,render:({field:xe})=>d.jsxs(jV,{children:[re&&d.jsxs(HV,{children:[re,fe&&d.jsx("span",{className:"text-destructive ml-1","aria-label":"required",children:"*"})]}),d.jsx(VV,{children:i2e(te,{..._e,field:K.field||K,...xe,inputType:_e.inputType,options:_e.options,placeholder:_e.placeholder,disabled:v||pe||M})}),V&&d.jsx(FV,{children:V}),d.jsx(BV,{})]})},ue)})}),e.showActions!==!1&&d.jsxs("div",{className:`flex gap-2 ${y==="horizontal"?"justify-end":"justify-start"} mt-6`,children:[l&&d.jsx(Ee,{type:"button",variant:"outline",onClick:L,disabled:M||v,children:s}),u&&d.jsxs(Ee,{type:"submit",disabled:M||v,children:[M&&d.jsx(qt,{className:"mr-2 h-4 w-4 animate-spin"}),c]})]})]})})},{namespace:"ui",label:"Form",inputs:[{name:"fields",type:"array",label:"Fields",description:"Array of field configurations with name, label, type, validation, etc."},{name:"defaultValues",type:"object",label:"Default Values",description:"Object with default values for form fields"},{name:"submitLabel",type:"string",label:"Submit Button Label",defaultValue:"Submit"},{name:"cancelLabel",type:"string",label:"Cancel Button Label",defaultValue:"Cancel"},{name:"showCancel",type:"boolean",label:"Show Cancel Button",defaultValue:!1},{name:"layout",type:"enum",enum:["vertical","horizontal"],label:"Layout",defaultValue:"vertical"},{name:"columns",type:"number",label:"Number of Columns",defaultValue:1,description:"For multi-column layouts (1-4)"},{name:"validationMode",type:"enum",enum:["onSubmit","onBlur","onChange","onTouched","all"],label:"Validation Mode",defaultValue:"onSubmit"},{name:"resetOnSubmit",type:"boolean",label:"Reset After Submit",defaultValue:!1},{name:"disabled",type:"boolean",label:"Disabled",defaultValue:!1},{name:"className",type:"string",label:"CSS Class"},{name:"fieldContainerClass",type:"string",label:"Field Container CSS Class"}],defaultProps:{submitLabel:"Submit",cancelLabel:"Cancel",showCancel:!1,layout:"vertical",columns:1,validationMode:"onSubmit",resetOnSubmit:!1,disabled:!1,fields:[{name:"name",label:"Name",type:"input",required:!0,placeholder:"Enter your name"},{name:"email",label:"Email",type:"input",inputType:"email",required:!0,placeholder:"Enter your email"}]}});function i2e(e,t){const o=ie.get(e);if(o)return d.jsx(o,{schema:t,...t});const{inputType:n,options:a=[],placeholder:r,...c}=t;switch(e){case"input":if(n==="file"){const{value:s,...l}=c;return d.jsx(Yo,{type:"file",placeholder:r,...l})}return d.jsx(Yo,{type:n||"text",placeholder:r,...c,value:c.value??""});case"textarea":return d.jsx(eT,{placeholder:r,...c,value:c.value??""});case"checkbox":{const{value:s,onChange:l,...u}=c;return d.jsx(Pd,{checked:s,onCheckedChange:l,...u})}case"switch":{const{value:s,onChange:l,...u}=c;return d.jsx(ZP,{checked:s,onCheckedChange:l,...u})}case"select":{const{value:s,onChange:l,...u}=c;return!a||a.length===0?d.jsx("div",{className:"text-sm text-muted-foreground",children:"No options available"}):d.jsxs(Xo,{value:s,onValueChange:l,...u,children:[d.jsx(To,{children:d.jsx(Zo,{placeholder:r??"Select an option"})}),d.jsx(Do,{children:a.map(y=>d.jsx(kt,{value:y.value,children:y.label},y.value))})]})}default:return d.jsx(Yo,{type:n||"text",placeholder:r,...c})}}function c2e(e){return e.split("-").map(t=>t.charAt(0).toUpperCase()+t.slice(1)).join("")}const s2e={Home:"House"},vG=w.forwardRef(({schema:e,...t},o)=>{const{"data-obj-id":n,"data-obj-type":a,style:r,...c}=t;let s=null;if(e.icon){const y=c2e(e.icon),h=s2e[y]||y;s=zS[h]}const l=e.loading||t.loading,u=e.disabled||t.disabled||l;return d.jsxs(Ee,{ref:o,type:e.buttonType||"button",variant:e.variant,size:e.size,className:e.className,disabled:u,...c,"data-obj-id":n,"data-obj-type":a,style:r,children:[l&&d.jsx(qt,{className:"mr-2 h-4 w-4 animate-spin"}),!l&&s&&e.iconPosition!=="right"&&d.jsx(s,{className:"mr-2 h-4 w-4"}),e.label||we(e.body||e.children),!l&&s&&e.iconPosition==="right"&&d.jsx(s,{className:"ml-2 h-4 w-4"})]})});vG.displayName="ButtonRenderer",ie.register("button",vG,{namespace:"ui",label:"Button",inputs:[{name:"label",type:"string",label:"Label",defaultValue:"Button"},{name:"variant",type:"enum",label:"Variant",enum:["default","secondary","destructive","outline","ghost","link"],defaultValue:"default"},{name:"size",type:"enum",label:"Size",enum:["default","sm","lg","icon"],defaultValue:"default"},{name:"className",type:"string",label:"CSS Class",advanced:!0}],defaultProps:{label:"Button",variant:"default",size:"default"}}),ie.register("label",({schema:e,className:t,...o})=>{const{"data-obj-id":n,"data-obj-type":a,style:r,...c}=o;return d.jsx(Vt,{className:t,...c,"data-obj-id":n,"data-obj-type":a,style:r,children:e.text||e.label||e.content})},{namespace:"ui",label:"Label",inputs:[{name:"text",type:"string",label:"Text",required:!0},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{text:"Label Text"}});const nT=({schema:e,className:t,onChange:o,value:n,...a})=>{const r=y=>{o&&o(y.target.value)},{"data-obj-id":c,"data-obj-type":s,style:l,...u}=a;return d.jsxs("div",{className:S("grid w-full items-center gap-1.5",e.wrapperClass),"data-obj-id":c,"data-obj-type":s,style:l,children:[e.label&&d.jsx(Vt,{htmlFor:e.id,className:S(e.required&&"text-destructive after:content-['*'] after:ml-0.5"),children:e.label}),d.jsx(Yo,{type:e.inputType||"text",id:e.id,name:e.name,placeholder:e.placeholder,className:t,required:e.required,disabled:e.disabled,readOnly:e.readOnly,value:n??e.value??"",defaultValue:n===void 0?e.defaultValue:void 0,onChange:r,min:e.min,max:e.max,step:e.step,maxLength:e.maxLength,pattern:e.pattern,...u}),e.description&&d.jsx("p",{className:"text-sm text-muted-foreground",children:e.description}),e.error&&d.jsx("p",{className:"text-sm font-medium text-destructive",children:e.error})]})};ie.register("input",nT,{namespace:"ui",label:"Input Field",inputs:[{name:"label",type:"string",label:"Label"},{name:"name",type:"string",label:"Field Name"},{name:"placeholder",type:"string",label:"Placeholder"},{name:"inputType",type:"enum",label:"Type",enum:["text","email","password","number","tel","url","date","time","datetime-local"],defaultValue:"text"},{name:"required",type:"boolean",label:"Required"},{name:"disabled",type:"boolean",label:"Disabled"},{name:"description",type:"string",label:"Description"}],defaultProps:{inputType:"text"}}),ie.register("email",e=>d.jsx(nT,{...e,schema:{...e.schema,inputType:"email"}}),{namespace:"ui",label:"Email Input",icon:"mail",inputs:[{name:"label",type:"string",label:"Label"},{name:"name",type:"string",label:"Field Name"},{name:"placeholder",type:"string",label:"Placeholder"},{name:"required",type:"boolean",label:"Required"},{name:"disabled",type:"boolean",label:"Disabled"},{name:"description",type:"string",label:"Description"}]}),ie.register("password",e=>d.jsx(nT,{...e,schema:{...e.schema,inputType:"password"}}),{namespace:"ui",label:"Password Input",icon:"lock",inputs:[{name:"label",type:"string",label:"Label"},{name:"name",type:"string",label:"Field Name"},{name:"placeholder",type:"string",label:"Placeholder"},{name:"required",type:"boolean",label:"Required"},{name:"disabled",type:"boolean",label:"Disabled"},{name:"description",type:"string",label:"Description"}]});const d2e=({schema:e,className:t,onChange:o,value:n,...a})=>{const r=y=>{o&&o(y.target.value)},{"data-obj-id":c,"data-obj-type":s,style:l,...u}=a;return d.jsxs("div",{className:S("grid w-full gap-1.5",e.wrapperClass),"data-obj-id":c,"data-obj-type":s,style:l,children:[e.label&&d.jsx(Vt,{htmlFor:e.id,className:S(e.required&&"text-destructive after:content-['*'] after:ml-0.5"),children:e.label}),d.jsx(eT,{id:e.id,name:e.name,placeholder:e.placeholder,className:t,disabled:e.disabled,readOnly:e.readOnly,required:e.required,rows:e.rows,value:n??e.value??"",defaultValue:n===void 0?e.defaultValue:void 0,onChange:r,...u})]})};ie.register("textarea",d2e,{namespace:"ui",label:"Textarea",inputs:[{name:"label",type:"string",label:"Label"},{name:"placeholder",type:"string",label:"Placeholder"},{name:"rows",type:"number",label:"Rows"},{name:"required",type:"boolean",label:"Required"},{name:"disabled",type:"boolean",label:"Disabled"},{name:"id",type:"string",label:"ID",required:!0}],defaultProps:{label:"Textarea label",placeholder:"Enter text here...",rows:3,id:"textarea-field"}});const l2e=({schema:e,className:t,onChange:o,value:n,...a})=>{const{"data-obj-id":r,"data-obj-type":c,style:s,...l}=a,u=y=>{o&&o(y)};return d.jsxs("div",{className:S("flex items-center space-x-2",e.wrapperClass),"data-obj-id":r,"data-obj-type":c,style:s,children:[d.jsx(Pd,{id:e.id,className:t,checked:n??e.checked??!1,defaultChecked:n===void 0?e.defaultChecked:void 0,onCheckedChange:u,disabled:e.disabled,required:e.required,name:e.name,...l}),d.jsx(Vt,{htmlFor:e.id,className:S("text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70",e.required&&"text-destructive after:content-['*'] after:ml-0.5"),children:e.label})]})};ie.register("checkbox",l2e,{namespace:"ui",label:"Checkbox",inputs:[{name:"label",type:"string",label:"Label",required:!0},{name:"id",type:"string",label:"ID",required:!0},{name:"checked",type:"boolean",label:"Checked"},{name:"required",type:"boolean",label:"Required"},{name:"disabled",type:"boolean",label:"Disabled"}],defaultProps:{label:"Checkbox label",id:"checkbox-field"}}),ie.register("switch",({schema:e,className:t,...o})=>{const{"data-obj-id":n,"data-obj-type":a,style:r,...c}=o;return d.jsxs("div",{className:`flex items-center space-x-2 ${e.wrapperClass||""}`,"data-obj-id":n,"data-obj-type":a,style:r,children:[d.jsx(ZP,{id:e.id,className:t,...c}),d.jsx(Vt,{htmlFor:e.id,children:e.label})]})},{namespace:"ui",label:"Switch",inputs:[{name:"label",type:"string",label:"Label",required:!0},{name:"id",type:"string",label:"ID",required:!0},{name:"checked",type:"boolean",label:"Checked"}],defaultProps:{label:"Switch label",id:"switch-field"}});const u2e=({schema:e,className:t,onChange:o,value:n,...a})=>{const{"data-obj-id":r,"data-obj-type":c,style:s,...l}=a,u=y=>{o&&o(y)};return d.jsxs("div",{className:S("grid w-full items-center gap-1.5",e.wrapperClass),"data-obj-id":r,"data-obj-type":c,style:s,children:[e.label&&d.jsx(Vt,{className:S(e.required&&"text-destructive after:content-['*'] after:ml-0.5"),children:e.label}),d.jsxs(Xo,{defaultValue:n===void 0?e.defaultValue:void 0,value:n??e.value,onValueChange:u,disabled:e.disabled,required:e.required,name:e.name,...l,children:[d.jsx(To,{className:t,children:d.jsx(Zo,{placeholder:e.placeholder})}),d.jsx(Do,{children:e.options?.map(y=>d.jsx(kt,{value:y.value,disabled:y.disabled,children:y.label},y.value))})]})]})};ie.register("select",u2e,{namespace:"ui",label:"Select",inputs:[{name:"label",type:"string",label:"Label"},{name:"placeholder",type:"string",label:"Placeholder"},{name:"defaultValue",type:"string",label:"Default Value"},{name:"required",type:"boolean",label:"Required"},{name:"disabled",type:"boolean",label:"Disabled"},{name:"options",type:"array",label:"Options",description:"Array of {label, value} objects"}],defaultProps:{label:"Select an option",placeholder:"Choose...",options:[{label:"Option 1",value:"option1"},{label:"Option 2",value:"option2"},{label:"Option 3",value:"option3"}]}}),ie.register("radio-group",({schema:e,className:t,...o})=>{const{"data-obj-id":n,"data-obj-type":a,style:r,...c}=o;return d.jsx(iW,{defaultValue:e.defaultValue,className:t,...c,"data-obj-id":n,"data-obj-type":a,style:r,children:e.options?.map(s=>d.jsxs("div",{className:"flex items-center space-x-2",children:[d.jsx(cW,{value:s.value,id:`${e.id}-${s.value}`}),d.jsx(Vt,{htmlFor:`${e.id}-${s.value}`,children:s.label})]},s.value))})},{namespace:"ui",label:"Radio Group",inputs:[{name:"defaultValue",type:"string",label:"Default Value"},{name:"id",type:"string",label:"Group ID",required:!0},{name:"options",type:"array",label:"Options",description:"Array of {label, value} objects"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{id:"radio-group",options:[{label:"Option 1",value:"option1"},{label:"Option 2",value:"option2"},{label:"Option 3",value:"option3"}]}}),ie.register("slider",({schema:e,className:t,...o})=>{const{"data-obj-id":n,"data-obj-type":a,style:r,...c}=o,s=Array.isArray(e.defaultValue)?e.defaultValue:e.defaultValue!==void 0?[e.defaultValue]:void 0;return d.jsx(IR,{defaultValue:s,max:e.max,min:e.min,step:e.step,className:t,...c,"data-obj-id":n,"data-obj-type":a,style:r})},{namespace:"ui",label:"Slider",inputs:[{name:"defaultValue",type:"array",label:"Default Value",defaultValue:[50]},{name:"max",type:"number",label:"Max",defaultValue:100},{name:"min",type:"number",label:"Min",defaultValue:0},{name:"step",type:"number",label:"Step",defaultValue:1},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{defaultValue:[50],max:100,min:0,step:1,className:"w-full"}}),ie.register("toggle",({schema:e,...t})=>d.jsx(yG,{variant:e.variant,size:e.size,pressed:e.pressed,"aria-label":e.ariaLabel,...t,children:e.label||we(e.children)}),{namespace:"ui",label:"Toggle",inputs:[{name:"label",type:"string",label:"Label"},{name:"pressed",type:"boolean",label:"Pressed"},{name:"variant",type:"enum",enum:["default","outline"],defaultValue:"default",label:"Variant"},{name:"size",type:"enum",enum:["default","sm","lg"],defaultValue:"default",label:"Size"},{name:"ariaLabel",type:"string",label:"Aria Label"}],defaultProps:{label:"Toggle",variant:"default",size:"default"}}),ie.register("input-otp",({schema:e,className:t,onChange:o,value:n,...a})=>{const r=e.maxLength||6,c=Array.from({length:r}),s=l=>{o&&o(l)};return d.jsx(nF,{maxLength:r,className:t,value:n??e.value,onChange:s,...a,children:d.jsx(aF,{children:c.map((l,u)=>d.jsx(rF,{index:u},u))})})},{namespace:"ui",label:"Input OTP",inputs:[{name:"maxLength",type:"number",label:"Max Length",defaultValue:6},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{maxLength:6}}),ie.register("calendar",({schema:e,className:t,...o})=>d.jsx(Uz,{mode:e.mode||"single",selected:e.value||e.defaultValue,className:t,...o}),{namespace:"ui",label:"Calendar",inputs:[{name:"mode",type:"enum",enum:["default","single","multiple","range"],defaultValue:"single",label:"Mode"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{mode:"single",className:"rounded-md border"}}),ie.register("date-picker",({schema:e,className:t,value:o,onChange:n,...a})=>{const r=y=>{n&&n(y)},{"data-obj-id":c,"data-obj-type":s,style:l,...u}=a;return d.jsxs("div",{className:`grid w-full max-w-sm items-center gap-1.5 ${e.wrapperClass||""}`,"data-obj-id":c,"data-obj-type":s,style:l,children:[e.label&&d.jsx(Vt,{htmlFor:e.id,children:e.label}),d.jsxs(t1,{children:[d.jsx(o1,{asChild:!0,children:d.jsxs(Ee,{id:e.id,variant:"outline",className:S("w-full justify-start text-left font-normal",!o&&"text-muted-foreground",t),...u,children:[d.jsx(Xc,{className:"mr-2 h-4 w-4"}),o?ys(o,e.format||"PPP"):d.jsx("span",{children:e.placeholder||"Pick a date"})]})}),d.jsx(Ss,{className:"w-auto p-0",children:d.jsx(Uz,{mode:"single",selected:o,onSelect:r,initialFocus:!0})})]})]})},{namespace:"ui",label:"Date Picker",inputs:[{name:"label",type:"string",label:"Label"},{name:"placeholder",type:"string",label:"Placeholder"},{name:"format",type:"string",label:"Date Format",description:'date-fns format string (e.g., "PPP", "yyyy-MM-dd")'},{name:"id",type:"string",label:"ID",required:!0}],defaultProps:{label:"Date",placeholder:"Pick a date",format:"PPP",id:"date-picker-field"}}),ie.register("file-upload",({schema:e,className:t,value:o,onChange:n,...a})=>{const[r,c]=w.useState(o||[]),[s,l]=w.useState(!1),[u,y]=w.useState(0),h=w.useRef(null);w.useEffect(()=>{if(s){const M=setInterval(()=>{y(x=>x>=100?(clearInterval(M),l(!1),0):x+5)},50);return()=>clearInterval(M)}},[s]);const f=M=>{const x=Array.from(M.target.files||[]);if(x.length>0){l(!0),y(0);const N=e.multiple?[...r,...x]:x;setTimeout(()=>{c(N),n&&n(N)},1e3)}},k=M=>{const x=r.filter((N,C)=>C!==M);c(x),n&&n(x)},m=()=>{h.current?.click()},{"data-obj-id":g,"data-obj-type":_,style:v,...b}=a;return d.jsxs("div",{className:`grid w-full max-w-sm items-center gap-2 ${e.wrapperClass||""}`,"data-obj-id":g,"data-obj-type":_,style:v,children:[e.label&&d.jsx(Vt,{htmlFor:e.id,children:e.label}),d.jsxs("div",{className:S("relative flex flex-col gap-3 group/upload",t),children:[d.jsx("input",{ref:h,type:"file",id:e.id,className:"hidden",accept:e.accept,multiple:e.multiple,onChange:f,...b}),d.jsxs("div",{onClick:m,className:S("relative overflow-hidden cursor-pointer rounded-lg border-2 border-dashed transition-all duration-300 min-h-[120px] flex flex-col items-center justify-center p-4 sm:p-6 gap-3",s?"border-cyan-400 bg-cyan-950/30":"border-slate-700 bg-slate-900/50 hover:bg-slate-900 hover:border-cyan-500/50 hover:shadow-[0_0_20px_-5px_rgba(6,182,212,0.3)]"),children:[d.jsx("div",{className:"absolute inset-0 bg-[url('https://grainy-gradients.vercel.app/noise.svg')] opacity-5 pointer-events-none"}),d.jsx("div",{className:"absolute inset-0 bg-[linear-gradient(to_right,#80808012_1px,transparent_1px),linear-gradient(to_bottom,#80808012_1px,transparent_1px)] bg-[size:14px_24px] pointer-events-none"}),d.jsx("div",{className:S("relative z-10 p-3 rounded-full bg-slate-800 border border-slate-700 transition-all duration-500",s?"scale-110 shadow-[0_0_30px_cyan] border-cyan-400 animate-bounce":"group-hover/upload:scale-110 group-hover/upload:shadow-lg group-hover/upload:border-cyan-500"),children:s?d.jsx(rd,{className:"w-8 h-8 text-cyan-300 animate-pulse"}):d.jsx(dd,{className:"w-6 h-6 text-slate-400 group-hover/upload:text-cyan-400"})}),d.jsx("div",{className:"relative z-10 text-center",children:d.jsx("p",{className:S("text-xs font-mono uppercase tracking-widest transition-colors",s?"text-cyan-300":"text-slate-500 group-hover/upload:text-cyan-200"),children:s?"INITIATING LAUNCH SEQUENCE...":e.buttonText||"DROP PAYLOAD OR CLICK TO UPLOAD"})}),s&&d.jsx("div",{className:"absolute bottom-0 left-0 h-1 bg-cyan-500 shadow-[0_0_10px_cyan] transition-all duration-75 ease-out",style:{width:`${u}%`}})]}),r.length>0&&d.jsx("div",{className:"flex flex-col gap-2 mt-1 perspective-1000",children:r.map((M,x)=>d.jsxs("div",{className:"relative group/file overflow-hidden flex items-center justify-between p-3 border border-border bg-card/80 rounded-sm text-sm transition-all hover:border-primary/30 hover:shadow-lg hover:shadow-primary/10 animate-in slide-in-from-bottom-2 fade-in",children:[d.jsx("div",{className:"absolute left-0 top-0 bottom-0 w-[2px] bg-primary/50 group-hover/file:bg-primary group-hover/file:shadow-[0_0_8px_hsl(var(--primary))]"}),d.jsxs("div",{className:"flex items-center gap-3 z-10",children:[d.jsx(Vo,{className:"w-4 h-4 text-emerald-500 rounded-full"}),d.jsx("span",{className:"truncate max-w-[150px] sm:max-w-[200px] md:max-w-[300px] text-muted-foreground group-hover/file:text-foreground font-mono text-xs transition-colors",children:M.name})]}),d.jsx(Ee,{type:"button",variant:"ghost",size:"sm",className:"h-6 w-6 p-0 hover:bg-destructive/10 hover:text-destructive",onClick:()=>k(x),children:d.jsx(bo,{className:"h-3 w-3"})}),d.jsx("div",{className:"absolute inset-0 bg-gradient-to-r from-transparent via-primary/5 to-transparent -translate-x-full group-hover/file:animate-[shimmer_1s_infinite] pointer-events-none"})]},x))})]})]})},{namespace:"ui",label:"File Upload",inputs:[{name:"label",type:"string",label:"Label"},{name:"buttonText",type:"string",label:"Button Text"},{name:"accept",type:"string",label:"Accepted File Types",description:'MIME types (e.g., "image/*,application/pdf")'},{name:"multiple",type:"boolean",label:"Allow Multiple Files"},{name:"id",type:"string",label:"ID",required:!0}],defaultProps:{label:"Upload files",buttonText:"Choose files",multiple:!0,id:"file-upload-field"}});function h2e({options:e,value:t,onValueChange:o,placeholder:n="Select option...",searchPlaceholder:a="Search...",emptyText:r="No option found.",className:c,disabled:s}){const[l,u]=p.useState(!1);return d.jsxs(t1,{open:l,onOpenChange:u,children:[d.jsx(o1,{asChild:!0,children:d.jsxs(Ee,{variant:"outline",role:"combobox","aria-expanded":l,className:S("w-[200px] justify-between",c),disabled:s,children:[t?e.find(y=>y.value===t)?.label:n,d.jsx(Qc,{className:"ml-2 h-4 w-4 shrink-0 opacity-50"})]})}),d.jsx(Ss,{className:"w-[200px] p-0",children:d.jsxs(GI,{children:[d.jsx(KI,{placeholder:a}),d.jsxs(YI,{children:[d.jsx(XI,{children:r}),d.jsx(ZI,{children:e.map(y=>d.jsxs(QI,{value:y.value,onSelect:h=>{o?.(h===t?"":h),u(!1)},children:[d.jsx(yo,{className:S("mr-2 h-4 w-4",t===y.value?"opacity-100":"opacity-0")}),y.label]},y.value))})]})]})})]})}const p2e=Wo("space-y-2"),y2e=p.forwardRef(({className:e,label:t,description:o,error:n,required:a,htmlFor:r,children:c,...s},l)=>{const u=p.useId(),y=r||u,h=`${y}-description`,f=`${y}-error`;return d.jsxs("div",{ref:l,className:S(p2e(),e),...s,children:[t&&d.jsx(Vt,{htmlFor:y,className:S(n&&"text-destructive",a&&"after:content-['*'] after:ml-0.5 after:text-destructive"),children:t}),d.jsx(Bo,{id:y,"aria-describedby":[o&&h,n&&f].filter(Boolean).join(" ")||void 0,"aria-invalid":!!n,children:c}),o&&!n&&d.jsx("p",{id:h,className:"text-[0.8rem] text-muted-foreground",children:o}),n&&d.jsx("p",{id:f,className:"text-[0.8rem] font-medium text-destructive",children:n})]})});y2e.displayName="Field";const d1=[{value:"equals",label:"Equals"},{value:"notEquals",label:"Does not equal"},{value:"contains",label:"Contains"},{value:"notContains",label:"Does not contain"},{value:"isEmpty",label:"Is empty"},{value:"isNotEmpty",label:"Is not empty"},{value:"greaterThan",label:"Greater than"},{value:"lessThan",label:"Less than"},{value:"greaterOrEqual",label:"Greater than or equal"},{value:"lessOrEqual",label:"Less than or equal"},{value:"before",label:"Before"},{value:"after",label:"After"},{value:"between",label:"Between"},{value:"in",label:"In"},{value:"notIn",label:"Not in"}],f2e=["equals","notEquals","contains","notContains","isEmpty","isNotEmpty"],m2e=["equals","notEquals","greaterThan","lessThan","greaterOrEqual","lessOrEqual","isEmpty","isNotEmpty"],k2e=["equals","notEquals"],g2e=["equals","notEquals","before","after","between","isEmpty","isNotEmpty"],v2e=["equals","notEquals","in","notIn","isEmpty","isNotEmpty"];function aT({fields:e=[],value:t,onChange:o,className:n,showClearAll:a=!0}){const[r,c]=p.useState(t||{id:"root",logic:"and",conditions:[]});p.useEffect(()=>{t&&JSON.stringify(t)!==JSON.stringify(r)&&c(t)},[t]);const s=v=>{c(v),o?.(v)},l=()=>{const v={id:crypto.randomUUID(),field:e[0]?.value||"",operator:"equals",value:""};s({...r,conditions:[...r.conditions,v]})},u=v=>{s({...r,conditions:r.conditions.filter(b=>b.id!==v)})},y=()=>{s({...r,conditions:[]})},h=(v,b)=>{s({...r,conditions:r.conditions.map(M=>M.id===v?{...M,...b}:M)})},f=()=>{s({...r,logic:r.logic==="and"?"or":"and"})},k=v=>{switch(e.find(x=>x.value===v)?.type||"text"){case"number":return d1.filter(x=>m2e.includes(x.value));case"boolean":return d1.filter(x=>k2e.includes(x.value));case"date":return d1.filter(x=>g2e.includes(x.value));case"select":return d1.filter(x=>v2e.includes(x.value));default:return d1.filter(x=>f2e.includes(x.value))}},m=v=>!["isEmpty","isNotEmpty"].includes(v),g=v=>{switch(e.find(x=>x.value===v)?.type||"text"){case"number":return"number";case"date":return"date";default:return"text"}},_=v=>{const b=e.find(C=>C.value===v.field);if(b?.type==="select"&&b.options)return d.jsxs(Xo,{value:String(v.value||""),onValueChange:C=>h(v.id,{value:C}),children:[d.jsx(To,{className:"h-9 text-sm",children:d.jsx(Zo,{placeholder:"Select value"})}),d.jsx(Do,{children:b.options.map(C=>d.jsx(kt,{value:C.value,children:C.label},C.value))})]});if(b?.type==="boolean")return d.jsxs(Xo,{value:String(v.value||""),onValueChange:C=>h(v.id,{value:C==="true"}),children:[d.jsx(To,{className:"h-9 text-sm",children:d.jsx(Zo,{placeholder:"Select value"})}),d.jsxs(Do,{children:[d.jsx(kt,{value:"true",children:"True"}),d.jsx(kt,{value:"false",children:"False"})]})]});const M=g(v.field),x=()=>v.value?M==="date"&&typeof v.value=="string"?v.value.split("T")[0]:String(v.value):"",N=C=>{let $=C;b?.type==="number"&&C!==""?$=parseFloat(C)||0:b?.type==="date"&&($=C),h(v.id,{value:$})};return d.jsx(Yo,{type:M,className:"h-9 text-sm",placeholder:"Value",value:x(),onChange:C=>N(C.target.value)})};return d.jsxs("div",{className:S("space-y-3",n),children:[d.jsxs("div",{className:"flex items-center justify-between",children:[d.jsxs("div",{className:"flex items-center gap-2",children:[d.jsx("span",{className:"text-sm font-medium",children:"Where"}),r.conditions.length>1&&d.jsx(Ee,{variant:"outline",size:"sm",onClick:f,className:"h-7 text-xs",children:r.logic.toUpperCase()})]}),a&&r.conditions.length>0&&d.jsxs(Ee,{variant:"ghost",size:"sm",onClick:y,className:"h-7 text-xs text-muted-foreground hover:text-destructive",children:[d.jsx(ts,{className:"h-3 w-3 mr-1"}),"Clear all"]})]}),d.jsx("div",{className:"space-y-2",children:r.conditions.map(v=>d.jsxs("div",{className:"flex items-start gap-2",children:[d.jsxs("div",{className:"flex-1 grid grid-cols-12 gap-2",children:[d.jsx("div",{className:"col-span-4",children:d.jsxs(Xo,{value:v.field,onValueChange:b=>h(v.id,{field:b}),children:[d.jsx(To,{className:"h-9 text-sm",children:d.jsx(Zo,{placeholder:"Select field"})}),d.jsx(Do,{children:e.map(b=>d.jsx(kt,{value:b.value,children:b.label},b.value))})]})}),d.jsx("div",{className:"col-span-4",children:d.jsxs(Xo,{value:v.operator,onValueChange:b=>h(v.id,{operator:b}),children:[d.jsx(To,{className:"h-9 text-sm",children:d.jsx(Zo,{placeholder:"Operator"})}),d.jsx(Do,{children:k(v.field).map(b=>d.jsx(kt,{value:b.value,children:b.label},b.value))})]})}),m(v.operator)&&d.jsx("div",{className:"col-span-4",children:_(v)})]}),d.jsxs(Ee,{variant:"ghost",size:"icon-sm",className:"h-9 w-9 shrink-0",onClick:()=>u(v.id),children:[d.jsx(bo,{className:"h-4 w-4"}),d.jsx("span",{className:"sr-only",children:"Remove condition"})]})]},v.id))}),d.jsxs(Ee,{variant:"outline",size:"sm",onClick:l,className:"h-8",disabled:e.length===0,children:[d.jsx(es,{className:"h-3 w-3"}),"Add filter"]})]})}aT.displayName="FilterBuilder";const _2e=p.forwardRef(({className:e,startContent:t,endContent:o,children:n,...a},r)=>d.jsxs("div",{ref:r,className:S("flex w-full items-center rounded-md border border-input bg-transparent ring-offset-background focus-within:ring-2 focus-within:ring-ring focus-within:ring-offset-2","has-[[data-invalid]]:border-destructive",e),...a,children:[t&&d.jsx("div",{className:"flex items-center px-3 text-muted-foreground bg-muted/50 border-r h-full self-stretch rounded-l-md",children:t}),d.jsx("div",{className:"flex-1 relative [&_input]:border-0 [&_input]:shadow-none [&_input]:focus-visible:ring-0 [&_input]:bg-transparent",children:n}),o&&d.jsx("div",{className:"flex items-center px-3 text-muted-foreground bg-muted/50 border-l h-full self-stretch rounded-r-md",children:o})]}));_2e.displayName="InputGroup";const b2e=p.forwardRef(({className:e,children:t,...o},n)=>d.jsx("select",{className:S("flex h-10 w-full items-center justify-between rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",e),ref:n,...o,children:t}));b2e.displayName="NativeSelect";function M2e({className:e,...t}){return d.jsx("div",{role:"status","aria-label":"Loading",className:S("flex items-center justify-center",e),...t,children:d.jsx(qt,{className:"animate-spin text-muted-foreground w-full h-full min-w-4 min-h-4"})})}function w2e({fields:e=[],value:t=[],onChange:o,className:n}){const[a,r]=p.useState(t||[]);p.useEffect(()=>{t&&JSON.stringify(t)!==JSON.stringify(a)&&r(t)},[t]);const c=y=>{r(y),o?.(y)},s=()=>{const y={id:crypto.randomUUID(),field:e[0]?.value||"",order:"asc"};c([...a,y])},l=(y,h)=>{c(a.map(f=>f.id===y?{...f,...h}:f))},u=y=>{c(a.filter(h=>h.id!==y))};return d.jsxs("div",{className:S("space-y-3",n),children:[d.jsx("div",{className:"space-y-2",children:a.map((y,h)=>d.jsxs("div",{className:"flex items-center gap-2",children:[d.jsx("span",{className:"text-sm font-medium w-16 text-muted-foreground",children:h===0?"Sort by":"Then by"}),d.jsx("div",{className:"flex-1",children:d.jsxs(Xo,{value:y.field,onValueChange:f=>l(y.id,{field:f}),children:[d.jsx(To,{className:"h-9",children:d.jsx(Zo,{placeholder:"Select field"})}),d.jsx(Do,{children:e.map(f=>d.jsx(kt,{value:f.value,children:f.label},f.value))})]})}),d.jsx("div",{className:"w-28",children:d.jsxs(Xo,{value:y.order,onValueChange:f=>l(y.id,{order:f}),children:[d.jsx(To,{className:"h-9",children:d.jsx(Zo,{})}),d.jsxs(Do,{children:[d.jsx(kt,{value:"asc",children:"A -> Z"}),d.jsx(kt,{value:"desc",children:"Z -> A"})]})]})}),d.jsx(Ee,{variant:"ghost",size:"icon-sm",className:"h-9 w-9 shrink-0",onClick:()=>u(y.id),children:d.jsx(bo,{className:"h-4 w-4"})})]},y.id))}),d.jsxs(Ee,{variant:"outline",size:"sm",onClick:s,className:"h-8",disabled:e.length===0,children:[d.jsx(es,{className:"h-3 w-3 mr-2"}),"Add sort"]})]})}ie.register("combobox",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t;return d.jsx(h2e,{options:e.options||[],placeholder:e.placeholder,value:e.value,disabled:e.disabled,className:e.className,...r,"data-obj-id":o,"data-obj-type":n,style:a})},{namespace:"ui",label:"Combobox",inputs:[{name:"placeholder",type:"string",label:"Placeholder"},{name:"value",type:"string",label:"Value"},{name:"disabled",type:"boolean",label:"Disabled",defaultValue:!1},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{placeholder:"Select option...",options:[]}}),ie.register("command",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t;return d.jsxs(GI,{className:e.className,...r,"data-obj-id":o,"data-obj-type":n,style:a,children:[d.jsx(KI,{placeholder:e.placeholder||"Type a command or search..."}),d.jsxs(YI,{children:[d.jsx(XI,{children:e.emptyText||"No results found."}),e.groups?.map((c,s)=>d.jsx(ZI,{heading:c.heading,children:c.items?.map((l,u)=>d.jsx(QI,{value:l.value,children:l.label},u))},s))]})]})},{namespace:"ui",label:"Command",inputs:[{name:"placeholder",type:"string",label:"Placeholder"},{name:"emptyText",type:"string",label:"Empty Text"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{placeholder:"Type a command or search...",emptyText:"No results found.",groups:[]}});const x2e=w.forwardRef(({schema:e,className:t,...o},n)=>{const{"data-obj-id":a,"data-obj-type":r,style:c,...s}=o,l=e.clickable||!!o.onClick,u=e.hoverable||l;return d.jsxs(Rz,{ref:n,className:S(t,u&&"transition-colors hover:bg-muted/50",l&&"cursor-pointer active:bg-muted"),...s,"data-obj-id":a,"data-obj-type":r,style:c,children:[(e.title||e.description||e.header)&&d.jsxs(Gz,{children:[e.title&&d.jsx(Kz,{children:e.title}),e.description&&d.jsx(Yz,{children:e.description}),e.header&&we(e.header)]}),(e.children||e.body)&&d.jsx(Xz,{children:we(e.children||e.body)}),e.footer&&d.jsx(Zz,{className:"flex justify-between",children:we(e.footer)})]})});ie.register("card",x2e,{namespace:"ui",label:"Card",inputs:[{name:"title",type:"string",label:"Title"},{name:"description",type:"string",label:"Description"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{title:"Card Title",description:"Card description goes here",className:"w-full"},isContainer:!0,resizable:!0,resizeConstraints:{width:!0,height:!0,minWidth:200,minHeight:100}});const N2e=({schema:e,className:t,onChange:o,value:n,...a})=>{const{"data-obj-id":r,"data-obj-type":c,style:s,...l}=a,u=h=>{o&&o(h)},y=e.orientation==="vertical";return d.jsxs(Hle,{defaultValue:n===void 0?e.defaultValue:void 0,value:n??e.value,onValueChange:u,orientation:e.orientation||"horizontal",className:S(t,y&&"flex gap-2"),...l,"data-obj-id":r,"data-obj-type":c,style:s,children:[d.jsx(JR,{className:S(y&&"flex-col h-auto items-stretch bg-muted/50 p-1"),children:e.items?.map(h=>d.jsx(eG,{value:h.value,disabled:h.disabled,className:S(y&&"justify-start"),children:h.label},h.value))}),e.items?.map(h=>d.jsx(tG,{value:h.value,className:S("mt-2 ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2",y&&"mt-0 flex-1"),children:we(h.content||h.body)},h.value))]})};ie.register("tabs",N2e,{namespace:"ui",label:"Tabs",inputs:[{name:"defaultValue",type:"string",label:"Default Value",required:!0},{name:"className",type:"string",label:"CSS Class"},{name:"items",type:"array",label:"Items"}],defaultProps:{defaultValue:"tab1",items:[{label:"Tab 1",value:"tab1",body:[{type:"text",content:"Content for Tab 1"}]},{label:"Tab 2",value:"tab2",body:[{type:"text",content:"Content for Tab 2"}]},{label:"Tab 3",value:"tab3",body:[{type:"text",content:"Content for Tab 3"}]}],className:"w-full"}});const C2e={1:"grid-cols-1",2:"grid-cols-2",3:"grid-cols-3",4:"grid-cols-4",5:"grid-cols-5",6:"grid-cols-6",7:"grid-cols-7",8:"grid-cols-8",9:"grid-cols-9",10:"grid-cols-10",11:"grid-cols-11",12:"grid-cols-12"},$2e={1:"sm:grid-cols-1",2:"sm:grid-cols-2",3:"sm:grid-cols-3",4:"sm:grid-cols-4",5:"sm:grid-cols-5",6:"sm:grid-cols-6",7:"sm:grid-cols-7",8:"sm:grid-cols-8",9:"sm:grid-cols-9",10:"sm:grid-cols-10",11:"sm:grid-cols-11",12:"sm:grid-cols-12"},S2e={1:"md:grid-cols-1",2:"md:grid-cols-2",3:"md:grid-cols-3",4:"md:grid-cols-4",5:"md:grid-cols-5",6:"md:grid-cols-6",7:"md:grid-cols-7",8:"md:grid-cols-8",9:"md:grid-cols-9",10:"md:grid-cols-10",11:"md:grid-cols-11",12:"md:grid-cols-12"},L2e={1:"lg:grid-cols-1",2:"lg:grid-cols-2",3:"lg:grid-cols-3",4:"lg:grid-cols-4",5:"lg:grid-cols-5",6:"lg:grid-cols-6",7:"lg:grid-cols-7",8:"lg:grid-cols-8",9:"lg:grid-cols-9",10:"lg:grid-cols-10",11:"lg:grid-cols-11",12:"lg:grid-cols-12"},I2e={1:"xl:grid-cols-1",2:"xl:grid-cols-2",3:"xl:grid-cols-3",4:"xl:grid-cols-4",5:"xl:grid-cols-5",6:"xl:grid-cols-6",7:"xl:grid-cols-7",8:"xl:grid-cols-8",9:"xl:grid-cols-9",10:"xl:grid-cols-10",11:"xl:grid-cols-11",12:"xl:grid-cols-12"},A2e={0:"gap-0",1:"gap-1",2:"gap-2",3:"gap-3",4:"gap-4",5:"gap-5",6:"gap-6",8:"gap-8",10:"gap-10",12:"gap-12"};ie.register("grid",({schema:e,className:t,...o})=>{let n=2,a,r,c,s;typeof e.columns=="number"?n=e.columns:typeof e.columns=="object"&&e.columns!==null&&(n=e.columns.xs??1,a=e.columns.sm,r=e.columns.md,c=e.columns.lg,s=e.columns.xl),e.smColumns&&(a=e.smColumns),e.mdColumns&&(r=e.mdColumns),e.lgColumns&&(c=e.lgColumns),e.xlColumns&&(s=e.xlColumns);const l=e.gap??4,u=S("grid",C2e[n]||"grid-cols-2",a&&$2e[a],r&&S2e[r],c&&L2e[c],s&&I2e[s],A2e[l]||`gap-[${l*.25}rem]`,t),{"data-obj-id":y,"data-obj-type":h,style:f,...k}=o;return d.jsx("div",{className:u,...k,"data-obj-id":y,"data-obj-type":h,style:f,children:e.children&&we(e.children)})},{namespace:"ui",label:"Grid Layout",inputs:[{name:"columns",type:"number",label:"Base Columns (Mobile)",defaultValue:2,description:"Number of columns on mobile devices"},{name:"smColumns",type:"number",label:"SM Columns (Tablet)",description:"Columns at sm breakpoint (>640px)"},{name:"mdColumns",type:"number",label:"MD Columns (Laptop)",description:"Columns at md breakpoint (>768px)"},{name:"lgColumns",type:"number",label:"LG Columns (Desktop)",description:"Columns at lg breakpoint (>1024px)"},{name:"xlColumns",type:"number",label:"XL Columns (Wide)",description:"Columns at xl breakpoint (>1280px)"},{name:"gap",type:"number",label:"Gap",defaultValue:4,description:"Gap between items (0-12)"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{columns:1,mdColumns:2,lgColumns:4,gap:4,children:[{type:"card",title:"Card 1",description:"First card"},{type:"card",title:"Card 2",description:"Second card"},{type:"card",title:"Card 3",description:"Third card"},{type:"card",title:"Card 4",description:"Fourth card"}]},isContainer:!0,resizable:!0,resizeConstraints:{width:!0,height:!0,minWidth:200,minHeight:100}}),ie.register("flex",({schema:e,className:t,...o})=>{const n=e.direction||"row",a=e.justify||"start",r=e.align||"start",c=e.gap||2,s=e.wrap||!1,l=S("flex",n==="row"&&"flex-row",n==="col"&&"flex-col",n==="row-reverse"&&"flex-row-reverse",n==="col-reverse"&&"flex-col-reverse",a==="start"&&"justify-start",a==="end"&&"justify-end",a==="center"&&"justify-center",a==="between"&&"justify-between",a==="around"&&"justify-around",a==="evenly"&&"justify-evenly",r==="start"&&"items-start",r==="end"&&"items-end",r==="center"&&"items-center",r==="baseline"&&"items-baseline",r==="stretch"&&"items-stretch",c===0&&"gap-0",c===1&&"gap-1",c===2&&"gap-1.5 sm:gap-2",c===3&&"gap-2 sm:gap-3",c===4&&"gap-2 sm:gap-3 md:gap-4",c===5&&"gap-3 sm:gap-4 md:gap-5",c===6&&"gap-3 sm:gap-4 md:gap-6",c===7&&"gap-4 sm:gap-5 md:gap-7",c===8&&"gap-4 sm:gap-6 md:gap-8",s&&"flex-wrap",t),{"data-obj-id":u,"data-obj-type":y,style:h,...f}=o;return d.jsx("div",{className:l,...f,"data-obj-id":u,"data-obj-type":y,style:h,children:e.children&&we(e.children)})},{namespace:"ui",label:"Flex Layout",inputs:[{name:"direction",type:"enum",enum:["row","col","row-reverse","col-reverse"],label:"Direction",defaultValue:"row"},{name:"justify",type:"enum",enum:["start","end","center","between","around","evenly"],label:"Justify Content",defaultValue:"start"},{name:"align",type:"enum",enum:["start","end","center","baseline","stretch"],label:"Align Items",defaultValue:"start"},{name:"gap",type:"number",label:"Gap",defaultValue:2,description:"Gap between items (0-8)"},{name:"wrap",type:"boolean",label:"Wrap",defaultValue:!1,description:"Allow flex items to wrap"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{direction:"row",justify:"start",align:"center",gap:2,wrap:!1,children:[{type:"button",label:"Button 1"},{type:"button",label:"Button 2"},{type:"button",label:"Button 3"}]}});const P2e=w.forwardRef(({schema:e,className:t,...o},n)=>{const a=e.direction||"col",r=e.justify||"start",c=e.align||"stretch",s=e.gap??e.spacing??2,l=e.wrap||!1,u=S("flex",a==="row"&&"flex-row",a==="col"&&"flex-col",a==="row-reverse"&&"flex-row-reverse",a==="col-reverse"&&"flex-col-reverse",r==="start"&&"justify-start",r==="end"&&"justify-end",r==="center"&&"justify-center",r==="between"&&"justify-between",r==="around"&&"justify-around",r==="evenly"&&"justify-evenly",c==="start"&&"items-start",c==="end"&&"items-end",c==="center"&&"items-center",c==="baseline"&&"items-baseline",c==="stretch"&&"items-stretch",s===0&&"gap-0",s===1&&"gap-1",s===2&&"gap-1.5 sm:gap-2",s===3&&"gap-2 sm:gap-3",s===4&&"gap-2 sm:gap-3 md:gap-4",s===5&&"gap-3 sm:gap-4 md:gap-5",s===6&&"gap-3 sm:gap-4 md:gap-6",s===8&&"gap-4 sm:gap-6 md:gap-8",s===10&&"gap-5 sm:gap-7 md:gap-10",l&&"flex-wrap",t),{"data-obj-id":y,"data-obj-type":h,style:f,...k}=o;return d.jsx("div",{ref:n,className:u,...k,"data-obj-id":y,"data-obj-type":h,style:f,children:e.children&&we(e.children)})});ie.register("stack",P2e,{namespace:"ui",label:"Stack",inputs:[{name:"direction",type:"enum",label:"Direction",enum:["col","row","col-reverse","row-reverse"],defaultValue:"col"},{name:"gap",type:"number",label:"Gap",defaultValue:2},{name:"align",type:"enum",label:"Align Items",enum:["start","end","center","stretch","baseline"],defaultValue:"stretch"},{name:"justify",type:"enum",label:"Justify Content",enum:["start","end","center","between","around","evenly"],defaultValue:"start"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{direction:"col",gap:2,align:"stretch",children:[]},isContainer:!0,resizable:!0,resizeConstraints:{width:!0,height:!0,minWidth:100,minHeight:50}});const T2e=w.forwardRef(({schema:e,className:t,...o},n)=>{const a=e.maxWidth||"xl",r=e.padding||4,c=e.centered!==!1,s=S("w-full",a==="sm"&&"max-w-sm",a==="md"&&"max-w-md",a==="lg"&&"max-w-lg",a==="xl"&&"max-w-xl",a==="2xl"&&"max-w-2xl",a==="3xl"&&"max-w-3xl",a==="4xl"&&"max-w-4xl",a==="5xl"&&"max-w-5xl",a==="6xl"&&"max-w-6xl",a==="7xl"&&"max-w-7xl",a==="full"&&"max-w-full",a==="screen"&&"max-w-screen-2xl",c&&"mx-auto",r===0&&"p-0",r===1&&"p-0.5 sm:p-1",r===2&&"p-1 sm:p-2",r===3&&"p-2 sm:p-3",r===4&&"p-2 sm:p-3 md:p-4",r===5&&"p-3 sm:p-4 md:p-5",r===6&&"p-3 sm:p-4 md:p-6",r===7&&"p-4 sm:p-5 md:p-7",r===8&&"p-4 sm:p-6 md:p-8",r===10&&"p-5 sm:p-7 md:p-10",r===12&&"p-6 sm:p-8 md:p-12",r===16&&"p-8 sm:p-10 md:p-16",t),{"data-obj-id":l,"data-obj-type":u,style:y,...h}=o;return d.jsx("div",{ref:n,className:s,...h,"data-obj-id":l,"data-obj-type":u,style:y,children:e.children&&we(e.children)})});ie.register("container",T2e,{namespace:"ui",label:"Container",inputs:[{name:"maxWidth",type:"enum",enum:["sm","md","lg","xl","2xl","3xl","4xl","5xl","6xl","7xl","full","screen"],label:"Max Width",defaultValue:"xl"},{name:"padding",type:"number",label:"Padding",defaultValue:4,description:"Padding value (0, 1-8, 10, 12, 16)"},{name:"centered",type:"boolean",label:"Center Horizontally",defaultValue:!0},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{maxWidth:"xl",padding:4,centered:!0,children:[{type:"text",content:"Container content goes here"}]},isContainer:!0,resizable:!0,resizeConstraints:{width:!0,height:!0,minWidth:200,minHeight:100}});const l1=({schema:e,className:t,...o})=>{let n=[];if(e.regions&&e.regions.length>0)n=e.regions.flatMap(l=>l.components||[]);else{const l=e.body||e.children;n=Array.isArray(l)?l:l?[l]:[]}const{"data-obj-id":a,"data-obj-type":r,style:c,...s}=o;return d.jsx("div",{className:S("min-h-full w-full bg-background p-4 md:p-6 lg:p-8",t),...s,"data-obj-id":a,"data-obj-type":r,style:c,children:d.jsxs("div",{className:"mx-auto max-w-7xl space-y-8",children:[(e.title||e.description)&&d.jsxs("div",{className:"space-y-2",children:[e.title&&d.jsx("h1",{className:"text-3xl font-bold tracking-tight text-foreground",children:e.title}),e.description&&d.jsx("p",{className:"text-muted-foreground",children:e.description})]}),d.jsx("div",{className:"space-y-6",children:n.map((l,u)=>d.jsx(Gc,{schema:l},l?.id||u))})]})})},u1={namespace:"ui",label:"Page",icon:"Layout",category:"layout",inputs:[{name:"title",type:"string",label:"Title"},{name:"description",type:"string",label:"Description"},{name:"body",type:"array",label:"Content",itemType:"component"}]};ie.register("page",l1,u1),ie.register("app",l1,{...u1,label:"App Page"}),ie.register("utility",l1,{...u1,label:"Utility Page"}),ie.register("home",l1,{...u1,label:"Home Page"}),ie.register("record",l1,{...u1,label:"Record Page"}),["aside","main","header","nav","footer","section","article"].forEach(e=>{const t=w.forwardRef(({schema:o,className:n,...a},r)=>{const{"data-obj-id":c,"data-obj-type":s,style:l,...u}=a,y=e;return d.jsx(y,{ref:r,className:n,...u,"data-obj-id":c,"data-obj-type":s,style:l,children:we(o.children||o.body)})});t.displayName=`Semantic${e.charAt(0).toUpperCase()+e.slice(1)}`,ie.register(e,t,{namespace:"ui",label:e.charAt(0).toUpperCase()+e.slice(1),category:"layout",inputs:[{name:"className",type:"string",label:"CSS Class"}]})}),ie.register("aspect-ratio",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t;return d.jsx(lZ,{ratio:e.ratio||16/9,className:e.className,...r,"data-obj-id":o,"data-obj-type":n,style:a,children:e.image?d.jsx("img",{src:e.image,alt:e.alt||"",className:"rounded-md object-cover w-full h-full"}):we(e.children||e.body)})},{namespace:"ui",label:"Aspect Ratio",inputs:[{name:"ratio",type:"number",label:"Ratio",defaultValue:16/9},{name:"image",type:"string",label:"Image URL"},{name:"alt",type:"string",label:"Alt Text"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{ratio:16/9}}),ie.register("sidebar-provider",({schema:e,...t})=>d.jsx(nR,{...t,children:we(e.body)}),{namespace:"ui",label:"Sidebar Provider",inputs:[{name:"defaultOpen",type:"boolean",label:"Default Open",defaultValue:!0}],defaultProps:{defaultOpen:!0},defaultChildren:[{type:"sidebar"},{type:"sidebar-inset"}]}),ie.register("sidebar",({schema:e,...t})=>d.jsx(aR,{...t,children:we(e.body)}),{namespace:"ui",label:"Sidebar",inputs:[{name:"collapsible",type:"enum",enum:["offcanvas","icon","none"],defaultValue:"icon",label:"Collapsible"},{name:"side",type:"enum",enum:["left","right"],defaultValue:"left",label:"Side"},{name:"variant",type:"enum",enum:["sidebar","floating","inset"],defaultValue:"sidebar",label:"Variant"}],defaultProps:{collapsible:"icon",side:"left",variant:"sidebar"},defaultChildren:[{type:"sidebar-header"},{type:"sidebar-content"},{type:"sidebar-footer"}]}),ie.register("sidebar-header",({schema:e,...t})=>d.jsx(iR,{...t,children:we(e.body)}),{label:"Sidebar Header",defaultChildren:[{type:"text",content:"Sidebar Header"}]}),ie.register("sidebar-content",({schema:e,...t})=>d.jsx(sR,{...t,children:we(e.body)}),{label:"Sidebar Content",defaultChildren:[{type:"sidebar-group"}]}),ie.register("sidebar-group",({schema:e,...t})=>d.jsxs(dR,{...t,children:[e.label&&d.jsx(lR,{children:e.label}),d.jsx(uR,{children:we(e.body)})]}),{namespace:"ui",label:"Sidebar Group",inputs:[{name:"label",type:"string",label:"Label"}],defaultProps:{label:"Menu"},defaultChildren:[{type:"sidebar-menu"}]}),ie.register("sidebar-menu",({schema:e,...t})=>d.jsx(hR,{...t,children:we(e.body)}),{label:"Sidebar Menu",defaultChildren:[{type:"sidebar-menu-item"},{type:"sidebar-menu-item"}]}),ie.register("sidebar-menu-item",({schema:e,...t})=>d.jsx(pR,{...t,children:we(e.body)}),{label:"Sidebar Menu Item",defaultChildren:[{type:"sidebar-menu-button"}]}),ie.register("sidebar-menu-button",({schema:e,...t})=>d.jsx(yR,{isActive:e.active,...t,children:we(e.body)}),{namespace:"ui",label:"Sidebar Menu Button",inputs:[{name:"active",type:"boolean",label:"Active",defaultValue:!1},{name:"size",type:"enum",enum:["default","sm","lg"],defaultValue:"default",label:"Size"},{name:"tooltip",type:"string",label:"Tooltip"}],defaultProps:{size:"default"},defaultChildren:[{type:"text",content:"Menu Item"}]}),ie.register("sidebar-footer",({schema:e,...t})=>d.jsx(cR,{...t,children:we(e.body)}),{label:"Sidebar Footer",defaultChildren:[{type:"text",content:"Footer"}]}),ie.register("sidebar-inset",({schema:e,...t})=>d.jsx(rR,{...t,children:we(e.body)}),{label:"Sidebar Inset",defaultChildren:[{type:"div",className:"p-4",body:[{type:"text",content:"Main content area"}]}]}),ie.register("sidebar-trigger",({className:e,...t})=>d.jsx(UP,{className:e,...t}),{namespace:"ui",label:"Sidebar Trigger",inputs:[{name:"className",type:"string",label:"CSS Class"}]}),ie.register("header-bar",({schema:e})=>d.jsxs("header",{className:"flex h-14 sm:h-16 shrink-0 items-center gap-2 border-b px-3 sm:px-4",children:[d.jsx(UP,{}),d.jsx(K$,{orientation:"vertical",className:"mr-2 h-4"}),d.jsx(eL,{children:d.jsx(tL,{children:e.crumbs?.map((t,o)=>d.jsxs(w.Fragment,{children:[d.jsx(oL,{children:o===e.crumbs.length-1?d.jsx(aL,{children:t.label}):d.jsx(nL,{href:t.href||"#",children:t.label})}),o<e.crumbs.length-1&&d.jsx(rL,{})]},o))})})]}),{namespace:"ui",label:"Header Bar",inputs:[{name:"crumbs",type:"array",label:"Breadcrumbs"}],defaultProps:{crumbs:[{label:"Home",href:"#"},{label:"Current Page"}]}}),ie.register("badge",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t;return d.jsx(MZ,{variant:e.variant,className:e.className,...r,"data-obj-id":o,"data-obj-type":n,style:a,children:e.label||we(e.body)})},{namespace:"ui",label:"Badge",inputs:[{name:"label",type:"string",label:"Label"},{name:"variant",type:"enum",enum:["default","secondary","destructive","outline"],defaultValue:"default",label:"Variant"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{label:"Badge",variant:"default"}}),ie.register("avatar",({schema:e,className:t,...o})=>d.jsxs(JE,{className:t,...o,children:[d.jsx(ez,{src:e.src,alt:e.alt}),d.jsx(tz,{children:e.fallback})]}),{namespace:"ui",label:"Avatar",inputs:[{name:"src",type:"string",label:"Image URL"},{name:"alt",type:"string",label:"Alt Text"},{name:"fallback",type:"string",label:"Fallback Initials",defaultValue:"CN"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{fallback:"CN",alt:"Avatar"}}),ie.register("alert",({schema:e,className:t,...o})=>d.jsxs(YS,{variant:e.variant,className:t,...o,children:[d.jsx(zE,{children:e.title}),d.jsx(XS,{children:e.description||we(e.body)})]}),{namespace:"ui",label:"Alert",inputs:[{name:"title",type:"string",label:"Title",required:!0},{name:"description",type:"string",label:"Description"},{name:"variant",type:"enum",enum:["default","destructive"],defaultValue:"default",label:"Variant"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{title:"Alert Title",description:"This is an alert message.",variant:"default"}}),ie.register("list",({schema:e,className:t,...o})=>{const a=g1(e.bind)||e.items||[],r=e.ordered?"ol":"ul",c=e.ordered?"list-decimal":"list-disc";return d.jsxs("div",{className:S("space-y-2",e.wrapperClass),children:[e.title&&d.jsx("h3",{className:"text-lg font-semibold tracking-tight",children:e.title}),d.jsx(r,{className:S("ml-6 [&>li]:mt-2",c,t),...o,children:a.map((s,l)=>d.jsx("li",{className:S(typeof s=="object"&&s.className),children:typeof s=="string"?s:s.content||we(s.body)},l))})]})},{namespace:"ui",label:"List",inputs:[{name:"title",type:"string",label:"Title"},{name:"ordered",type:"boolean",label:"Ordered List (numbered)",defaultValue:!1},{name:"items",type:"array",label:"List Items",description:"Array of strings or objects with content/body"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{ordered:!1,items:["First item","Second item","Third item"],className:"text-sm"}});const _G=({node:e,onNodeClick:t})=>{const[o,n]=w.useState(!1),a=e.children&&e.children.length>0,r=s=>{s.stopPropagation(),n(!o)},c=()=>{t&&t(e)};return d.jsxs("div",{className:"relative",children:[d.jsxs("div",{className:S("group flex items-center py-1.5 px-2 rounded-sm cursor-pointer transition-colors","hover:bg-accent hover:text-accent-foreground",o&&a&&"bg-accent/50"),onClick:c,children:[a?d.jsx("button",{onClick:r,className:"mr-2 p-0.5 h-5 w-5 flex items-center justify-center rounded-sm hover:bg-muted text-muted-foreground transition-colors",children:o?d.jsx(Zt,{className:"h-4 w-4"}):d.jsx(Ot,{className:"h-4 w-4"})}):d.jsx("span",{className:"mr-2 w-5 flex justify-center",children:d.jsx("div",{className:"w-1 h-1 rounded-full bg-muted-foreground/50"})}),e.icon==="folder"||a?o?d.jsx(Zs,{className:"h-4 w-4 mr-2 text-primary"}):d.jsx(Qs,{className:"h-4 w-4 mr-2 text-muted-foreground group-hover:text-primary transition-colors"}):d.jsx(Xs,{className:"h-4 w-4 mr-2 text-muted-foreground group-hover:text-primary transition-colors"}),d.jsx("span",{className:S("text-sm transition-colors",o?"font-medium text-foreground":"text-muted-foreground group-hover:text-foreground"),children:e.label})]}),a&&o&&d.jsx("div",{className:"relative ml-[11px] pl-3 border-l border-border animate-in slide-in-from-left-2 fade-in duration-200",children:e.children.map(s=>d.jsx(_G,{node:s,onNodeClick:t},s.id))})]})};ie.register("tree-view",({schema:e,className:t,...o})=>{const n=c=>{e.onNodeClick&&e.onNodeClick(c)},r=g1(e.bind)||e.nodes||e.data||[];return d.jsxs("div",{className:S("relative border rounded-lg p-3 bg-card text-card-foreground",t),...o,children:[e.title&&d.jsx("div",{className:"flex items-center gap-2 mb-3 pb-2 border-b",children:d.jsx("h3",{className:"text-sm font-semibold",children:e.title})}),d.jsx("div",{className:"space-y-1",children:r.map(c=>d.jsx(_G,{node:c,onNodeClick:n},c.id))})]})},{namespace:"ui",label:"Tree View",inputs:[{name:"title",type:"string",label:"Title"},{name:"nodes",type:"array",label:"Tree Nodes",description:"Array of { id, label, icon, children, data }"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{title:"File Explorer",nodes:[{id:"1",label:"Documents",icon:"folder",children:[{id:"1-1",label:"Resume.pdf",icon:"file"},{id:"1-2",label:"Cover Letter.docx",icon:"file"}]},{id:"2",label:"Photos",icon:"folder",children:[{id:"2-1",label:"Vacation",icon:"folder",children:[{id:"2-1-1",label:"Beach.jpg",icon:"file"}]},{id:"2-2",label:"Family.jpg",icon:"file"}]},{id:"3",label:"README.md",icon:"file"}]}});const D2e=e=>{if(!e)return null;const t=e.split("-").map(n=>n.charAt(0).toUpperCase()+n.slice(1)).join("");return fD[t]||fD[e]},E2e=({schema:e})=>{const t=e.icon?D2e(e.icon):null;return d.jsxs("div",{className:S("group relative flex flex-col p-4 sm:p-5 md:p-6 rounded-xl border bg-card text-card-foreground shadow-sm",e.className),children:[d.jsxs("div",{className:"flex items-center justify-between mb-2",children:[e.label&&d.jsx("p",{className:"text-sm font-medium text-muted-foreground",children:e.label}),t&&d.jsx(t,{className:"h-4 w-4 text-muted-foreground"})]}),d.jsx("div",{className:"flex items-baseline gap-2",children:d.jsx("h3",{className:"text-2xl font-bold tracking-tight",children:e.value})}),(e.trend||e.description)&&d.jsxs("div",{className:"mt-1 flex items-center text-xs text-muted-foreground",children:[e.trend==="up"&&d.jsx(sd,{className:"mr-1 h-3 w-3 text-emerald-500"}),e.trend==="down"&&d.jsx(cd,{className:"mr-1 h-3 w-3 text-rose-500"}),e.trend==="neutral"&&d.jsx(ad,{className:"mr-1 h-3 w-3"}),d.jsx("span",{className:S(e.trend==="up"&&"text-emerald-500 font-medium",e.trend==="down"&&"text-rose-500 font-medium"),children:e.description})]})]})};ie.register("statistic",E2e,{namespace:"ui",label:"Statistic",category:"data-display",icon:"Activity",inputs:[{name:"label",type:"string",label:"Label"},{name:"value",type:"string",label:"Value"},{name:"description",type:"string",label:"Description"},{name:"trend",type:"enum",enum:[{label:"Up",value:"up"},{label:"Down",value:"down"},{label:"Neutral",value:"neutral"}],label:"Trend"}],defaultProps:{label:"Total Revenue",value:"$45,231.89",trend:"up",description:"+20.1% from last month"}}),ie.register("breadcrumb",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t;return d.jsx(eL,{className:e.className,...r,"data-obj-id":o,"data-obj-type":n,style:a,children:d.jsx(tL,{children:e.items?.map((c,s)=>d.jsxs("div",{className:"flex items-center",children:[d.jsx(oL,{children:s===(e.items?.length||0)-1?d.jsx(aL,{children:c.label}):d.jsx(nL,{href:c.href,children:c.label})}),s<(e.items?.length||0)-1&&d.jsx(rL,{})]},s))})})},{namespace:"ui",label:"Breadcrumb",inputs:[{name:"className",type:"string",label:"CSS Class"}],defaultProps:{items:[{label:"Home",href:"/"},{label:"Products",href:"/products"},{label:"Product"}]}}),ie.register("kbd",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t,c=Array.isArray(e.keys)?e.keys:[e.keys||e.label||"K"];return d.jsx("div",{className:S("inline-flex flex-wrap gap-1",e.className),children:c.map((s,l)=>d.jsx("kbd",{className:"pointer-events-none inline-flex h-5 select-none items-center gap-1 rounded border bg-muted px-1.5 font-mono text-[10px] font-medium text-muted-foreground opacity-100",...r,...l===0?{"data-obj-id":o,"data-obj-type":n,style:a}:{},children:s},l))})},{namespace:"ui",label:"Keyboard Key",inputs:[{name:"label",type:"string",label:"Label"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{label:"K"}});const z2e=({schema:e,className:t})=>{const n=g1(e.bind)||e.data||e.props?.data||[],a=e.columns||e.props?.columns||[];if(n&&!Array.isArray(n))return d.jsx("div",{className:"text-red-500 p-2 border border-red-200 bg-red-50 rounded text-sm",children:"Table data must be an array"});const r=Array.isArray(n)?n:[];return d.jsx("div",{className:S("rounded-md border",t),children:d.jsxs(oS,{children:[d.jsx(nS,{children:d.jsx(lo,{children:a.map((c,s)=>d.jsx(zs,{children:c.label||c.header},c.key||c.accessorKey||s))})}),d.jsx(aS,{children:r.length===0?d.jsx(lo,{children:d.jsx(Oo,{colSpan:a.length,className:"h-24 text-center",children:"No results."})}):r.map((c,s)=>d.jsx(lo,{children:a.map((l,u)=>{const y=l.key||l.accessorKey||"",h=y?c[y]:"";return d.jsx(Oo,{children:h},l.key||l.accessorKey||u)})},c.id||s))})]})})};ie.register("table",z2e,{namespace:"ui"}),ie.register("progress",({schema:e,className:t,...o})=>d.jsx(UB,{value:e.value,className:t,...o}),{namespace:"ui",label:"Progress",inputs:[{name:"value",type:"number",label:"Value",defaultValue:0},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{value:50,className:"w-full"}}),ie.register("skeleton",({schema:e,className:t,...o})=>d.jsx(HP,{className:t,...o,style:{width:e.width,height:e.height}}),{namespace:"ui",label:"Skeleton",inputs:[{name:"width",type:"string",label:"Width"},{name:"height",type:"string",label:"Height"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{width:"100%",height:"20px",className:"rounded-md"}}),ie.register("toaster",()=>d.jsx(Ale,{}),{namespace:"ui",label:"Toaster",inputs:[],defaultProps:{}}),ie.register("loading",({schema:e,className:t,...o})=>{const n=e.size||"md",a=e.fullscreen||!1,r=d.jsxs("div",{className:S("flex flex-col items-center justify-center gap-2",t),children:[d.jsx(M2e,{className:S(n==="sm"&&"h-4 w-4",n==="md"&&"h-8 w-8",n==="lg"&&"h-12 w-12",n==="xl"&&"h-16 w-16")}),e.text&&d.jsx("p",{className:"text-sm text-muted-foreground",children:e.text})]});return a?d.jsx("div",{className:"fixed inset-0 z-50 flex items-center justify-center bg-background/80 backdrop-blur-sm",...o,children:r}):d.jsx("div",{className:"flex items-center justify-center p-8",...o,children:r})},{namespace:"ui",label:"Loading",inputs:[{name:"text",type:"string",label:"Loading Text"},{name:"size",type:"enum",enum:["sm","md","lg","xl"],label:"Size",defaultValue:"md"},{name:"fullscreen",type:"boolean",label:"Fullscreen Overlay",defaultValue:!1},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{text:"Loading...",size:"md",fullscreen:!1}}),ie.register("toast",({schema:e})=>{const t=()=>{(e.variant==="success"?Eo.success:e.variant==="error"?Eo.error:e.variant==="warning"?Eo.warning:e.variant==="info"?Eo.info:Eo)(e.title||"Notification",{description:e.description,duration:e.duration})};return d.jsx(Ee,{onClick:t,variant:e.buttonVariant,className:e.className,children:e.buttonLabel||"Show Toast"})},{namespace:"ui",label:"Toast",inputs:[{name:"title",type:"string",label:"Title"},{name:"description",type:"string",label:"Description"},{name:"variant",type:"enum",enum:["default","success","warning","error","info"],defaultValue:"default",label:"Variant"},{name:"duration",type:"number",label:"Duration (ms)"},{name:"buttonLabel",type:"string",label:"Button Label"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{title:"Notification",buttonLabel:"Show Toast",variant:"default",duration:5e3}}),ie.register("spinner",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t,c={sm:"h-4 w-4",md:"h-6 w-6",lg:"h-8 w-8",xl:"h-12 w-12"};return d.jsx(qt,{className:S("animate-spin",c[e.size||"md"],e.className),...r,"data-obj-id":o,"data-obj-type":n,style:a})},{namespace:"ui",label:"Spinner",inputs:[{name:"size",type:"enum",enum:["sm","md","lg","xl"],defaultValue:"md",label:"Size"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{size:"md"}}),ie.register("empty",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t;return d.jsxs("div",{className:S("flex flex-col items-center justify-center p-8 text-center",e.className),...r,"data-obj-id":o,"data-obj-type":n,style:a,children:[d.jsx(ed,{className:"h-12 w-12 text-muted-foreground mb-4"}),d.jsx("h3",{className:"text-lg font-semibold",children:e.title||"No data"}),e.description&&d.jsx("p",{className:"text-sm text-muted-foreground mt-2",children:e.description})]})},{namespace:"ui",label:"Empty",inputs:[{name:"title",type:"string",label:"Title",defaultValue:"No data"},{name:"description",type:"string",label:"Description"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{title:"No data"}}),ie.register("sonner",({schema:e,...t})=>{const o=()=>{(e.variant==="success"?Eo.success:e.variant==="error"?Eo.error:e.variant==="warning"?Eo.warning:e.variant==="info"?Eo.info:Eo)(e.message||e.title||"Notification",{description:e.description})};return d.jsx(Ee,{onClick:o,variant:e.buttonVariant,className:e.className,...t,children:e.buttonLabel||"Show Toast"})},{namespace:"ui",label:"Sonner Toast",inputs:[{name:"message",type:"string",label:"Message"},{name:"description",type:"string",label:"Description"},{name:"variant",type:"enum",enum:["default","success","error","warning","info"],defaultValue:"default",label:"Variant"},{name:"buttonLabel",type:"string",label:"Button Label"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{message:"Notification",buttonLabel:"Show Toast",variant:"default"}}),ie.register("dialog",({schema:e,className:t,...o})=>d.jsxs(Boe,{modal:e.modal,defaultOpen:e.defaultOpen,...o,children:[d.jsx(Woe,{asChild:!0,children:we(e.trigger)}),d.jsxs(Gq,{className:t,children:[d.jsxs(Kq,{children:[e.title&&d.jsx(Xq,{children:e.title}),e.description&&d.jsx(Zq,{children:e.description})]}),we(e.content),e.footer&&d.jsx(Yq,{children:we(e.footer)})]})]}),{namespace:"ui",label:"Dialog",inputs:[{name:"title",type:"string",label:"Title"},{name:"description",type:"string",label:"Description"},{name:"modal",type:"boolean",label:"Modal",defaultValue:!0},{name:"defaultOpen",type:"boolean",label:"Default Open"},{name:"trigger",type:"slot",label:"Trigger",description:"Element that opens the dialog"},{name:"content",type:"slot",label:"Content",description:"Main content of the dialog"},{name:"footer",type:"slot",label:"Footer"},{name:"className",type:"string",label:"Content CSS Class"}],defaultProps:{title:"Dialog Title",description:"Dialog description goes here",modal:!0,trigger:[{type:"button",label:"Open Dialog"}],content:[{type:"text",content:"Dialog content goes here"}]}}),ie.register("sheet",({schema:e,className:t,...o})=>d.jsxs(FU,{modal:e.modal,defaultOpen:e.defaultOpen,...o,children:[d.jsx(Xde,{asChild:!0,children:we(e.trigger)}),d.jsxs(EP,{side:e.side||"right",className:t,children:[d.jsxs(zP,{children:[e.title&&d.jsx(OP,{children:e.title}),e.description&&d.jsx(qP,{children:e.description})]}),we(e.content),e.footer&&d.jsx(WU,{children:we(e.footer)})]})]}),{namespace:"ui",label:"Sheet",inputs:[{name:"title",type:"string",label:"Title"},{name:"description",type:"string",label:"Description"},{name:"side",type:"enum",enum:["top","right","bottom","left"],defaultValue:"right",label:"Side"},{name:"modal",type:"boolean",label:"Modal",defaultValue:!0},{name:"defaultOpen",type:"boolean",label:"Default Open"},{name:"trigger",type:"slot",label:"Trigger"},{name:"content",type:"slot",label:"Content"},{name:"footer",type:"slot",label:"Footer"},{name:"className",type:"string",label:"Content CSS Class"}],defaultProps:{title:"Sheet Title",description:"Sheet description",side:"right",modal:!0,trigger:[{type:"button",label:"Open Sheet"}],content:[{type:"text",content:"Sheet content goes here"}]}}),ie.register("popover",({schema:e,className:t,...o})=>d.jsxs(t1,{modal:e.modal,defaultOpen:e.defaultOpen,...o,children:[d.jsx(o1,{asChild:!0,children:we(e.trigger)}),d.jsx(Ss,{align:e.align,side:e.side,className:t,children:we(e.content)})]}),{namespace:"ui",label:"Popover",inputs:[{name:"modal",type:"boolean",label:"Modal"},{name:"defaultOpen",type:"boolean",label:"Default Open"},{name:"align",type:"enum",enum:["start","center","end"],label:"Align"},{name:"side",type:"enum",enum:["top","right","bottom","left"],label:"Side"},{name:"trigger",type:"slot",label:"Trigger"},{name:"content",type:"slot",label:"Content"},{name:"className",type:"string",label:"Content CSS Class"}],defaultProps:{trigger:[{type:"button",label:"Open Popover",variant:"outline"}],content:[{type:"text",content:"Popover content goes here"}],align:"center",side:"bottom"}}),ie.register("tooltip",({schema:e,className:t,...o})=>d.jsx(JU,{delayDuration:e.delayDuration,children:d.jsxs(eR,{...o,children:[d.jsx(tR,{asChild:!0,children:we(e.trigger)}),d.jsx(WP,{side:e.side,align:e.align,className:t,children:e.content||we(e.body)})]})}),{namespace:"ui",label:"Tooltip",inputs:[{name:"delayDuration",type:"number",label:"Delay Duration",defaultValue:700},{name:"side",type:"enum",enum:["top","right","bottom","left"],label:"Side"},{name:"align",type:"enum",enum:["start","center","end"],label:"Align"},{name:"trigger",type:"slot",label:"Trigger"},{name:"content",type:"string",label:"Content Text"},{name:"body",type:"slot",label:"Rich Content"},{name:"className",type:"string",label:"Content CSS Class"}],defaultProps:{trigger:[{type:"button",label:"Hover me",variant:"outline"}],content:"Tooltip content",delayDuration:700,side:"top"}}),ie.register("alert-dialog",({schema:e,className:t,...o})=>d.jsxs(nZ,{defaultOpen:e.defaultOpen,...o,children:[d.jsx(aZ,{asChild:!0,children:we(e.trigger)}),d.jsxs(LE,{className:t,children:[d.jsxs(IE,{children:[e.title&&d.jsx(PE,{children:e.title}),e.description&&d.jsx(TE,{children:e.description})]}),we(e.content),d.jsxs(AE,{children:[e.cancelText&&d.jsx(EE,{children:e.cancelText}),e.actionText&&d.jsx(DE,{onClick:e.onAction,children:e.actionText})]})]})]}),{namespace:"ui",label:"Alert Dialog",inputs:[{name:"title",type:"string",label:"Title"},{name:"description",type:"string",label:"Description"},{name:"cancelText",type:"string",label:"Cancel Text",defaultValue:"Cancel"},{name:"actionText",type:"string",label:"Action Text",defaultValue:"Continue"},{name:"defaultOpen",type:"boolean",label:"Default Open"},{name:"trigger",type:"slot",label:"Trigger"},{name:"content",type:"slot",label:"Content/Body"},{name:"className",type:"string",label:"Content CSS Class"}],defaultProps:{title:"Are you sure?",description:"This action cannot be undone.",cancelText:"Cancel",actionText:"Continue",trigger:[{type:"button",label:"Open Alert",variant:"destructive"}]}}),ie.register("drawer",({schema:e,className:t,...o})=>d.jsxs(eV,{shouldScaleBackground:e.shouldScaleBackground,defaultOpen:e.defaultOpen,...o,children:[d.jsx(Yre,{asChild:!0,children:we(e.trigger)}),d.jsxs(oV,{className:t,children:[d.jsxs(nV,{children:[e.title&&d.jsx(rV,{children:e.title}),e.description&&d.jsx(iV,{children:e.description})]}),we(e.content),e.footer&&d.jsxs(aV,{children:[we(e.footer),e.showClose&&d.jsx(Zre,{asChild:!0,children:d.jsx("button",{children:"Close"})})]})]})]}),{namespace:"ui",label:"Drawer",inputs:[{name:"title",type:"string",label:"Title"},{name:"description",type:"string",label:"Description"},{name:"shouldScaleBackground",type:"boolean",label:"Scale Background"},{name:"defaultOpen",type:"boolean",label:"Default Open"},{name:"showClose",type:"boolean",label:"Show Close Button in Footer"},{name:"trigger",type:"slot",label:"Trigger"},{name:"content",type:"slot",label:"Content"},{name:"footer",type:"slot",label:"Footer"},{name:"className",type:"string",label:"Content CSS Class"}],defaultProps:{title:"Drawer Title",description:"Drawer description",trigger:[{type:"button",label:"Open Drawer"}],content:[{type:"text",content:"Drawer content goes here"}]}}),ie.register("hover-card",({schema:e,className:t,...o})=>d.jsxs(qie,{openDelay:e.openDelay,closeDelay:e.closeDelay,...o,children:[d.jsx(jie,{asChild:!0,children:we(e.trigger)}),d.jsx(XV,{align:e.align,side:e.side,className:t,children:we(e.content)})]}),{namespace:"ui",label:"Hover Card",inputs:[{name:"openDelay",type:"number",label:"Open Delay"},{name:"closeDelay",type:"number",label:"Close Delay"},{name:"side",type:"enum",enum:["top","right","bottom","left"],label:"Side"},{name:"align",type:"enum",enum:["start","center","end"],label:"Align"},{name:"trigger",type:"slot",label:"Trigger"},{name:"content",type:"slot",label:"Content"},{name:"className",type:"string",label:"Content CSS Class"}],defaultProps:{trigger:[{type:"button",label:"Hover me",variant:"link"}],content:[{type:"text",content:"Hover card content appears on hover"}],side:"top"}});const bG=e=>e?e.map((t,o)=>t.type==="separator"?d.jsx(KA,{},o):t.type==="label"?d.jsx(GA,{children:t.label},o):t.children?d.jsxs(Mie,{children:[d.jsxs(AV,{inset:t.inset,children:[t.icon&&d.jsx("span",{className:"mr-2",children:t.icon}),t.label]}),d.jsx(PV,{children:bG(t.children)})]},o):d.jsxs(DV,{disabled:t.disabled,inset:t.inset,onSelect:t.onSelect,children:[t.icon&&d.jsx("span",{className:"mr-2",children:t.icon}),t.label,t.shortcut&&d.jsx("span",{className:"ml-auto text-xs tracking-widest opacity-60",children:t.shortcut})]},o)):null;ie.register("dropdown-menu",({schema:e,className:t,...o})=>d.jsxs(_ie,{modal:e.modal,defaultOpen:e.defaultOpen,...o,children:[d.jsx(bie,{asChild:!0,children:we(e.trigger)}),d.jsxs(TV,{align:e.align,side:e.side,className:t,children:[e.label&&d.jsx(GA,{children:e.label}),e.label&&d.jsx(KA,{}),bG(e.items)]})]}),{namespace:"ui",label:"Dropdown Menu",inputs:[{name:"label",type:"string",label:"Menu Label"},{name:"side",type:"enum",enum:["top","right","bottom","left"],label:"Side"},{name:"align",type:"enum",enum:["start","center","end"],label:"Align"},{name:"trigger",type:"slot",label:"Trigger"},{name:"items",type:"array",label:"Items",description:'Recursive structure: { type?: "separator"|"label", label, icon, shortcut, disabled, children: [] }'},{name:"className",type:"string",label:"Content CSS Class"}],defaultProps:{trigger:[{type:"button",label:"Menu",variant:"outline"}],items:[{label:"Item 1"},{label:"Item 2"},{type:"separator"},{label:"Item 3"}],align:"start",side:"bottom"}});const MG=e=>e?e.map((t,o)=>t.type==="separator"?d.jsx(OH,{},o):t.type==="label"?d.jsx(zH,{children:t.label},o):t.children?d.jsxs(gre,{children:[d.jsx(PH,{inset:t.inset,children:t.label}),d.jsx(TH,{children:MG(t.children)})]},o):d.jsxs(EH,{disabled:t.disabled,inset:t.inset,onSelect:t.onSelect,children:[t.label,t.shortcut&&d.jsx(qH,{children:t.shortcut})]},o)):null;ie.register("context-menu",({schema:e,className:t,...o})=>{const n=e.triggerClassName||t||e.className||"h-[120px] w-full sm:h-[150px] sm:w-[300px] border border-dashed text-sm flex items-center justify-center",a=e.contentClassName;return d.jsxs(mre,{modal:e.modal,...o,children:[d.jsx(kre,{asChild:!0,children:d.jsx("div",{className:n,children:we(e.trigger||{type:"text",value:"Right click here"})})}),d.jsx(DH,{className:a,children:MG(e.items)})]})},{namespace:"ui",label:"Context Menu",inputs:[{name:"trigger",type:"slot",label:"Trigger Area"},{name:"triggerClassName",type:"string",label:"Trigger Area Class"},{name:"items",type:"array",label:"Items",description:'Recursive structure: { type?: "separator"|"label", label, shortcut, children }'},{name:"className",type:"string",label:"Content CSS Class"}],defaultProps:{items:[{label:"Action 1"},{label:"Action 2"},{type:"separator"},{label:"Action 3"}],trigger:[{type:"text",content:"Right click here"}]}}),ie.register("menubar",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,...r}=t;return d.jsx(EF,{className:e.className,...r,"data-obj-id":o,"data-obj-type":n,style:a,children:e.menus?.map((c,s)=>d.jsxs(wce,{children:[d.jsx(zF,{children:c.label}),d.jsx(jF,{children:c.items?.map((l,u)=>l.separator?d.jsx(HF,{},u):l.children?d.jsxs(xce,{children:[d.jsx(OF,{children:l.label}),d.jsx(qF,{children:l.children.map((y,h)=>d.jsx(oP,{children:y.label},h))})]},u):d.jsx(oP,{disabled:l.disabled,children:l.label},u))})]},s))})},{namespace:"ui",label:"Menubar",inputs:[{name:"className",type:"string",label:"CSS Class"}],defaultProps:{menus:[{label:"File",items:[{label:"New"},{label:"Open"},{separator:!0},{label:"Exit"}]}]}}),ie.register("accordion",({schema:e,className:t,...o})=>d.jsx(CY,{type:e.accordionType||"single",collapsible:e.collapsible,className:t,...o,children:e.items?.map((n,a)=>d.jsxs(mD,{value:n.value||`item-${a}`,children:[d.jsx(kD,{children:n.title}),d.jsx(gD,{children:we(n.content)})]},n.value||a))}),{namespace:"ui",label:"Accordion",inputs:[{name:"accordionType",type:"enum",enum:["single","multiple"],defaultValue:"single",label:"Type"},{name:"collapsible",type:"boolean",label:"Collapsible (for single type)"},{name:"items",type:"array",label:"Items",description:"Array of { trigger, content, value }"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{accordionType:"single",collapsible:!0,items:[{label:"Item 1",value:"item-1",content:[{type:"text",content:"Content for item 1"}]},{label:"Item 2",value:"item-2",content:[{type:"text",content:"Content for item 2"}]},{label:"Item 3",value:"item-3",content:[{type:"text",content:"Content for item 3"}]}],className:"w-full"}}),ie.register("collapsible",({schema:e,className:t,...o})=>d.jsxs(moe,{defaultOpen:e.defaultOpen,disabled:e.disabled,className:t,...o,children:[d.jsx(koe,{asChild:!0,children:we(e.trigger)}),d.jsx(goe,{children:we(e.content)})]}),{namespace:"ui",label:"Collapsible",inputs:[{name:"defaultOpen",type:"boolean",label:"Default Open"},{name:"disabled",type:"boolean",label:"Disabled"},{name:"trigger",type:"slot",label:"Trigger"},{name:"content",type:"slot",label:"Content"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{trigger:[{type:"button",label:"Toggle",variant:"outline"}],content:[{type:"text",content:"Collapsible content goes here"}],className:"w-full"}}),ie.register("toggle-group",({schema:e,...t})=>{const{"data-obj-id":o,"data-obj-type":n,style:a,type:r,...c}=t;return d.jsx(mG,{type:e.selectionType||"single",variant:e.variant,size:e.size,value:e.value,className:e.className,...c,"data-obj-id":o,"data-obj-type":n,style:a,children:e.items?.map((s,l)=>d.jsx(kG,{value:s.value,"aria-label":s.label,children:s.label},l))})},{namespace:"ui",label:"Toggle Group",inputs:[{name:"selectionType",type:"enum",enum:["single","multiple"],defaultValue:"single",label:"Selection Type"},{name:"variant",type:"enum",enum:["default","outline"],defaultValue:"default",label:"Variant"},{name:"size",type:"enum",enum:["default","sm","lg"],defaultValue:"default",label:"Size"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{selectionType:"single",variant:"default",size:"default",items:[{value:"bold",label:"Bold"},{value:"italic",label:"Italic"},{value:"underline",label:"Underline"}]}}),ie.register("carousel",({schema:e,className:t,...o})=>d.jsxs(iO,{opts:e.opts,orientation:e.orientation||"horizontal",className:t,...o,children:[d.jsx(cO,{children:e.items?.map((n,a)=>d.jsx(sO,{className:e.itemClassName,children:we(n)},a))}),e.showArrows&&d.jsxs(d.Fragment,{children:[d.jsx(dO,{}),d.jsx(lO,{})]})]}),{namespace:"ui",label:"Carousel",inputs:[{name:"orientation",type:"enum",enum:["horizontal","vertical"],defaultValue:"horizontal",label:"Orientation"},{name:"showArrows",type:"boolean",label:"Show Arrows",defaultValue:!0},{name:"items",type:"array",label:"Items",description:"Array of content schemas"},{name:"itemClassName",type:"string",label:"Item CSS Class"},{name:"className",type:"string",label:"Container CSS Class"}],defaultProps:{orientation:"horizontal",showArrows:!0,items:[[{type:"div",className:"p-4 sm:p-6 md:p-8 border rounded bg-slate-50",body:[{type:"text",content:"Slide 1"}]}],[{type:"div",className:"p-4 sm:p-6 md:p-8 border rounded bg-slate-50",body:[{type:"text",content:"Slide 2"}]}],[{type:"div",className:"p-4 sm:p-6 md:p-8 border rounded bg-slate-50",body:[{type:"text",content:"Slide 3"}]}]],className:"w-full max-w-xs"}}),ie.register("filter-builder",({schema:e,className:t,onChange:o,...n})=>{const a=r=>{o&&o({target:{name:e.name,value:r}})};return d.jsxs("div",{className:e.wrapperClass||"",children:[e.label&&d.jsx("label",{className:"text-sm font-medium mb-2 block",children:e.label}),d.jsx(aT,{fields:e.fields||[],value:e.value||n.value,onChange:a,className:t,...n})]})},{namespace:"ui",label:"Filter Builder",inputs:[{name:"label",type:"string",label:"Label"},{name:"name",type:"string",label:"Name",required:!0},{name:"fields",type:"array",label:"Fields",description:"Array of { value: string, label: string, type?: string } objects",required:!0},{name:"value",type:"object",label:"Initial Value",description:"FilterGroup object with conditions"}],defaultProps:{label:"Filters",name:"filters",fields:[{value:"name",label:"Name",type:"text"},{value:"email",label:"Email",type:"text"},{value:"age",label:"Age",type:"number"},{value:"status",label:"Status",type:"text"}],value:{id:"root",logic:"and",conditions:[]}}}),ie.register("scroll-area",({schema:e,className:t,...o})=>{const{"data-obj-id":n,"data-obj-type":a,style:r,...c}=o,s=e.orientation||"vertical";return d.jsxs(tU,{className:t,style:{height:e.height,width:e.width,...r},...c,"data-obj-id":n,"data-obj-type":a,children:[we(e.children),(s==="horizontal"||s==="both")&&d.jsx(B$,{orientation:"horizontal"}),(s==="vertical"||s==="both")&&d.jsx(B$,{orientation:"vertical"})]})},{namespace:"ui",label:"Scroll Area",inputs:[{name:"height",type:"string",label:"Height (e.g. 200px)"},{name:"width",type:"string",label:"Width"},{name:"orientation",type:"enum",enum:["vertical","horizontal","both"],defaultValue:"vertical",label:"Orientation"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{height:"200px",width:"100%",orientation:"vertical",children:[{type:"div",className:"p-4",body:[{type:"text",content:"Scrollable content goes here. Add more content to see scrolling behavior."}]}],className:"rounded-md border"}}),ie.register("resizable",({schema:e,className:t,...o})=>d.jsx(tde,{orientation:e.direction||"horizontal",className:t,...o,style:{minHeight:e.minHeight||"200px"},children:e.panels?.map((n,a)=>d.jsxs(w.Fragment,{children:[d.jsx(ode,{defaultSize:n.defaultSize,minSize:n.minSize,maxSize:n.maxSize,children:we(n.content)}),a<e.panels.length-1&&d.jsx(nde,{withHandle:e.withHandle})]},a))}),{namespace:"ui",label:"Resizable Panel Group",inputs:[{name:"direction",type:"enum",enum:["horizontal","vertical"],defaultValue:"horizontal",label:"Direction"},{name:"minHeight",type:"string",label:"Min Height"},{name:"withHandle",type:"boolean",label:"Show Handle Icon",defaultValue:!0},{name:"panels",type:"array",label:"Panels",description:"Array of { defaultSize, minSize, maxSize, content }"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{direction:"horizontal",minHeight:"200px",withHandle:!0,panels:[{defaultSize:50,content:[{type:"div",className:"p-4",body:[{type:"text",content:"Panel 1"}]}]},{defaultSize:50,content:[{type:"div",className:"p-4",body:[{type:"text",content:"Panel 2"}]}]}],className:"rounded-lg border"}}),ie.register("table",({schema:e,className:t,...o})=>d.jsxs(oS,{className:t,...o,children:[e.caption&&d.jsx(QP,{children:e.caption}),d.jsx(nS,{children:d.jsx(lo,{children:e.columns?.map((n,a)=>d.jsx(zs,{className:n.className,style:{width:n.width},children:n.header||n.label},a))})}),d.jsx(aS,{children:e.data?.map((n,a)=>d.jsx(lo,{children:e.columns?.map((r,c)=>d.jsx(Oo,{className:r.cellClassName,children:n[r.accessorKey||r.name]},c))},a))}),e.footer&&d.jsx(jR,{children:d.jsx(lo,{children:d.jsx(Oo,{colSpan:e.columns?.length,children:typeof e.footer=="string"?e.footer:we(e.footer)})})})]}),{namespace:"ui",label:"Table",inputs:[{name:"caption",type:"string",label:"Caption"},{name:"footer",type:"string",label:"Footer Content"},{name:"columns",type:"array",label:"Columns",description:"Array of { header, accessorKey, className, width }"},{name:"data",type:"array",label:"Data",description:"Array of objects"},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{caption:"Table Caption",columns:[{header:"Column 1",accessorKey:"col1"},{header:"Column 2",accessorKey:"col2"},{header:"Column 3",accessorKey:"col3"}],data:[{col1:"Row 1, Col 1",col2:"Row 1, Col 2",col3:"Row 1, Col 3"},{col1:"Row 2, Col 1",col2:"Row 2, Col 2",col3:"Row 2, Col 3"},{col1:"Row 3, Col 1",col2:"Row 3, Col 2",col3:"Row 3, Col 3"}]}});const O2e=({schema:e})=>{const{caption:t,columns:o=[],data:n=[],pagination:a=!0,pageSize:r=10,searchable:c=!0,selectable:s=!1,sortable:l=!0,exportable:u=!1,rowActions:y=!1,resizableColumns:h=!0,reorderableColumns:f=!0,className:k}=e,m=w.useMemo(()=>o.map(I=>({...I,header:I.header||I.label,accessorKey:I.accessorKey||I.name})),[o]),[g,_]=w.useState(""),[v,b]=w.useState(null),[M,x]=w.useState(null),[N,C]=w.useState(new Set),[$,L]=w.useState(1),[A,q]=w.useState(r),[z,O]=w.useState(m),[D,U]=w.useState({}),[G,H]=w.useState(null),[Y,P]=w.useState(null),F=w.useRef(null),ne=w.useRef(0),de=w.useRef(0);w.useEffect(()=>{O(m)},[m]);const B=w.useMemo(()=>g?n.filter(I=>z.some(E=>I[E.accessorKey]?.toString().toLowerCase().includes(g.toLowerCase()))):n,[n,g,z]),W=w.useMemo(()=>!v||!M?B:[...B].sort((I,E)=>{const Q=I[v],Z=E[v];if(Q===Z)return 0;const J=Q<Z?-1:1;return M==="asc"?J:-J}),[B,v,M]),K=Math.ceil(W.length/A),R=a?W.slice(($-1)*A,$*A):W,re=(I,E)=>I.id!==void 0?I.id:`row-${E}`,V=I=>{l&&(v===I?M==="asc"?x("desc"):M==="desc"&&(x(null),b(null)):(b(I),x("asc")))},te=I=>{const E=new Set;if(I&&R.forEach((Q,Z)=>{const J=($-1)*A+Z,ae=re(Q,J);E.add(ae)}),C(E),e.onSelectionChange){const Q=W.filter((Z,J)=>{const ae=re(Z,J);return E.has(ae)});e.onSelectionChange(Q)}},fe=(I,E)=>{const Q=new Set(N);if(E?Q.add(I):Q.delete(I),C(Q),e.onSelectionChange){const Z=W.filter((J,ae)=>{const Ne=re(J,ae);return Q.has(Ne)});e.onSelectionChange(Z)}},pe=()=>{const I=[z.map(J=>J.header).join(","),...W.map(J=>z.map(ae=>JSON.stringify(J[ae.accessorKey]||"")).join(","))].join(`
95
+ `),E=new Blob([I],{type:"text/csv"}),Q=window.URL.createObjectURL(E),Z=document.createElement("a");Z.href=Q,Z.download="table-export.csv",Z.click(),window.URL.revokeObjectURL(Q)},le=I=>v!==I?d.jsx(Qc,{className:"h-4 w-4 ml-1 opacity-50"}):M==="asc"?d.jsx(Zc,{className:"h-4 w-4 ml-1"}):d.jsx(Zt,{className:"h-4 w-4 ml-1"}),ee=(I,E)=>{if(!h)return;I.preventDefault(),I.stopPropagation(),F.current=E,ne.current=I.clientX;const Q=I.target.closest("th");Q&&(de.current=Q.offsetWidth),document.addEventListener("mousemove",_e),document.addEventListener("mouseup",j)},_e=I=>{if(!F.current)return;const E=I.clientX-ne.current,Q=Math.max(50,de.current+E);U(Z=>({...Z,[F.current]:Q}))},j=()=>{F.current=null,document.removeEventListener("mousemove",_e),document.removeEventListener("mouseup",j)},ue=(I,E)=>{f&&(H(E),I.dataTransfer.effectAllowed="move")},xe=(I,E)=>{f&&(I.preventDefault(),I.dataTransfer.dropEffect="move",P(E))},Ce=(I,E)=>{if(!f||G===null)return;if(I.preventDefault(),G===E){H(null),P(null);return}const Q=[...z],[Z]=Q.splice(G,1);Q.splice(E,0,Z),O(Q),H(null),P(null),e.onColumnsReorder&&e.onColumnsReorder(Q)},De=()=>{H(null),P(null)};w.useEffect(()=>()=>{document.removeEventListener("mousemove",_e),document.removeEventListener("mouseup",j)},[]);const $e=R.length>0&&R.every((I,E)=>{const Q=($-1)*A+E,Z=re(I,Q);return N.has(Z)}),Pe=R.some((I,E)=>{const Q=($-1)*A+E,Z=re(I,Q);return N.has(Z)})&&!$e,T=c||u||s&&N.size>0;return d.jsxs("div",{className:`flex flex-col h-full gap-4 ${k||""}`,children:[T&&d.jsxs("div",{className:"flex items-center justify-between gap-4 flex-none",children:[d.jsx("div",{className:"flex items-center gap-2 flex-1",children:c&&d.jsxs("div",{className:"relative max-w-sm flex-1",children:[d.jsx(cn,{className:"absolute left-2 top-1/2 transform -translate-y-1/2 h-4 w-4 text-muted-foreground"}),d.jsx(Yo,{placeholder:"Search...",value:g,onChange:I=>{_(I.target.value),L(1)},className:"pl-8"})]})}),d.jsxs("div",{className:"flex items-center gap-2",children:[u&&d.jsxs(Ee,{variant:"outline",size:"sm",onClick:pe,disabled:W.length===0,children:[d.jsx(Ys,{className:"h-4 w-4 mr-2"}),"Export CSV"]}),s&&N.size>0&&d.jsxs("div",{className:"text-sm text-muted-foreground",children:[N.size," selected"]})]})]}),d.jsx("div",{className:"rounded-md border flex-1 min-h-0 overflow-auto relative bg-background",children:d.jsxs(oS,{children:[t&&d.jsx(QP,{children:t}),d.jsx(nS,{className:"sticky top-0 bg-background z-10 shadow-sm",children:d.jsxs(lo,{children:[s&&d.jsx(zs,{className:"w-12 bg-background",children:d.jsx(Pd,{checked:$e?!0:Pe?"indeterminate":!1,onCheckedChange:te})}),z.map((I,E)=>{const Q=D[I.accessorKey]||I.width,Z=G===E,J=Y===E;return d.jsx(zs,{className:`${I.className||""} ${l&&I.sortable!==!1?"cursor-pointer select-none":""} ${Z?"opacity-50":""} ${J?"border-l-2 border-primary":""} relative group bg-background`,style:{width:Q,minWidth:Q},draggable:f,onDragStart:ae=>ue(ae,E),onDragOver:ae=>xe(ae,E),onDrop:ae=>Ce(ae,E),onDragEnd:De,onClick:()=>l&&I.sortable!==!1&&V(I.accessorKey),children:d.jsxs("div",{className:"flex items-center justify-between",children:[d.jsxs("div",{className:"flex items-center gap-1",children:[f&&d.jsx(Jc,{className:"h-4 w-4 opacity-0 group-hover:opacity-50 cursor-grab active:cursor-grabbing flex-shrink-0"}),d.jsx("span",{children:I.header}),l&&I.sortable!==!1&&le(I.accessorKey)]}),h&&I.resizable!==!1&&d.jsx("div",{className:"absolute right-0 top-0 h-full w-1 cursor-col-resize hover:bg-primary opacity-0 hover:opacity-100 transition-opacity",onMouseDown:ae=>ee(ae,I.accessorKey),onClick:ae=>ae.stopPropagation()})]})},I.accessorKey)}),y&&d.jsx(zs,{className:"w-24 text-right bg-background",children:"Actions"})]})}),d.jsx(aS,{children:R.length===0?d.jsx(lo,{children:d.jsx(Oo,{colSpan:z.length+(s?1:0)+(y?1:0),className:"h-96 text-center text-muted-foreground",children:d.jsxs("div",{className:"flex flex-col items-center justify-center gap-2",children:[d.jsx(cn,{className:"h-8 w-8 text-muted-foreground/50"}),d.jsx("p",{children:"No results found"}),d.jsx("p",{className:"text-xs text-muted-foreground/50",children:"Try adjusting your filters or search query."})]})})}):d.jsxs(d.Fragment,{children:[R.map((I,E)=>{const Q=($-1)*A+E,Z=re(I,Q),J=N.has(Z);return d.jsxs(lo,{"data-state":J?"selected":void 0,className:S(e.onRowClick&&"cursor-pointer"),onClick:ae=>{if(e.onRowClick&&!ae.defaultPrevented){const Ne=ae.target;if(Ne.closest("button")||Ne.closest('[role="checkbox"]')||Ne.closest("a"))return;e.onRowClick(I)}},children:[s&&d.jsx(Oo,{children:d.jsx(Pd,{checked:J,onCheckedChange:ae=>fe(Z,ae)})}),z.map((ae,Ne)=>{const Se=D[ae.accessorKey]||ae.width;return d.jsx(Oo,{className:ae.cellClassName,style:{width:Se,minWidth:Se,maxWidth:Se},children:I[ae.accessorKey]},Ne)}),y&&d.jsx(Oo,{className:"text-right",children:d.jsxs("div",{className:"flex items-center justify-end gap-1",children:[d.jsx(Ee,{variant:"ghost",size:"icon-sm",onClick:()=>e.onRowEdit?.(I),children:d.jsx(Nt,{className:"h-4 w-4"})}),d.jsx(Ee,{variant:"ghost",size:"icon-sm",onClick:()=>e.onRowDelete?.(I),children:d.jsx(ts,{className:"h-4 w-4 text-destructive"})})]})})]},Z)}),R.length>0&&Array.from({length:Math.max(0,A-R.length)}).map((I,E)=>d.jsx(lo,{className:"hover:bg-transparent",children:d.jsx(Oo,{colSpan:z.length+(s?1:0)+(y?1:0),className:"h-[52px] p-0"})},`empty-${E}`))]})})]})}),a&&W.length>0&&d.jsxs("div",{className:"flex items-center justify-between",children:[d.jsxs("div",{className:"flex items-center gap-2",children:[d.jsx("span",{className:"text-sm text-muted-foreground",children:"Rows per page:"}),d.jsxs(Xo,{value:A.toString(),onValueChange:I=>{q(Number(I)),L(1)},children:[d.jsx(To,{className:"w-20",children:d.jsx(Zo,{})}),d.jsxs(Do,{children:[d.jsx(kt,{value:"5",children:"5"}),d.jsx(kt,{value:"10",children:"10"}),d.jsx(kt,{value:"20",children:"20"}),d.jsx(kt,{value:"50",children:"50"}),d.jsx(kt,{value:"100",children:"100"})]})]})]}),d.jsxs("div",{className:"flex items-center gap-2",children:[d.jsxs("span",{className:"text-sm text-muted-foreground",children:["Page ",$," of ",K," (",W.length," total)"]}),d.jsxs("div",{className:"flex items-center gap-1",children:[d.jsx(Ee,{variant:"outline",size:"icon-sm",onClick:()=>L(1),disabled:$===1,children:d.jsx(Rs,{className:"h-4 w-4"})}),d.jsx(Ee,{variant:"outline",size:"icon-sm",onClick:()=>L(Math.max(1,$-1)),disabled:$===1,children:d.jsx(ea,{className:"h-4 w-4"})}),d.jsx(Ee,{variant:"outline",size:"icon-sm",onClick:()=>L(Math.min(K,$+1)),disabled:$===K,children:d.jsx(Ot,{className:"h-4 w-4"})}),d.jsx(Ee,{variant:"outline",size:"icon-sm",onClick:()=>L(K),disabled:$===K,children:d.jsx(Gs,{className:"h-4 w-4"})})]})]})]})]})};ie.register("data-table",O2e,{namespace:"ui",label:"Data Table",icon:"table",inputs:[{name:"caption",type:"string",label:"Caption"},{name:"columns",type:"array",label:"Columns",description:"Array of { header, accessorKey, className, width, sortable, filterable, resizable }",required:!0},{name:"data",type:"array",label:"Data",description:"Array of data objects",required:!0},{name:"pagination",type:"boolean",label:"Enable Pagination",defaultValue:!0},{name:"pageSize",type:"number",label:"Page Size",defaultValue:10},{name:"searchable",type:"boolean",label:"Enable Search",defaultValue:!0},{name:"selectable",type:"boolean",label:"Enable Row Selection",defaultValue:!1},{name:"sortable",type:"boolean",label:"Enable Sorting",defaultValue:!0},{name:"exportable",type:"boolean",label:"Enable Export",defaultValue:!1},{name:"rowActions",type:"boolean",label:"Show Row Actions",defaultValue:!1},{name:"resizableColumns",type:"boolean",label:"Enable Column Resizing",defaultValue:!0},{name:"reorderableColumns",type:"boolean",label:"Enable Column Reordering",defaultValue:!0},{name:"className",type:"string",label:"CSS Class"}],defaultProps:{caption:"Enterprise Data Table",pagination:!0,pageSize:10,searchable:!0,selectable:!0,sortable:!0,exportable:!0,rowActions:!0,resizableColumns:!0,reorderableColumns:!0,columns:[{header:"ID",accessorKey:"id",width:"80px"},{header:"Name",accessorKey:"name"},{header:"Email",accessorKey:"email"},{header:"Status",accessorKey:"status"},{header:"Role",accessorKey:"role"}],data:[{id:1,name:"John Doe",email:"john@example.com",status:"Active",role:"Admin"},{id:2,name:"Jane Smith",email:"jane@example.com",status:"Active",role:"User"},{id:3,name:"Bob Johnson",email:"bob@example.com",status:"Inactive",role:"User"},{id:4,name:"Alice Williams",email:"alice@example.com",status:"Active",role:"Manager"},{id:5,name:"Charlie Brown",email:"charlie@example.com",status:"Active",role:"User"},{id:6,name:"Diana Prince",email:"diana@example.com",status:"Active",role:"Admin"},{id:7,name:"Ethan Hunt",email:"ethan@example.com",status:"Inactive",role:"User"},{id:8,name:"Fiona Gallagher",email:"fiona@example.com",status:"Active",role:"User"},{id:9,name:"George Wilson",email:"george@example.com",status:"Active",role:"Manager"},{id:10,name:"Hannah Montana",email:"hannah@example.com",status:"Active",role:"User"},{id:11,name:"Ivan Drago",email:"ivan@example.com",status:"Inactive",role:"User"},{id:12,name:"Julia Roberts",email:"julia@example.com",status:"Active",role:"Admin"}]}});const q2e={grid:d.jsx(Qt,{className:"h-4 w-4"}),kanban:d.jsx(od,{className:"h-4 w-4"}),gallery:d.jsx(Js,{className:"h-4 w-4"}),calendar:d.jsx(Xc,{className:"h-4 w-4"}),timeline:d.jsx(Fs,{className:"h-4 w-4"}),gantt:d.jsx(Jt,{className:"h-4 w-4"}),map:d.jsx(nd,{className:"h-4 w-4"})},rT={grid:"Grid",kanban:"Kanban",gallery:"Gallery",calendar:"Calendar",timeline:"Timeline",gantt:"Gantt",map:"Map"},wG=({currentView:e,availableViews:t=["grid","kanban"],onViewChange:o,className:n})=>d.jsx("div",{className:S("flex items-center gap-1 bg-transparent",n),children:t.map(a=>{const r=e===a;return d.jsxs("button",{type:"button",onClick:()=>o(a),"aria-label":rT[a],title:rT[a],"aria-pressed":r,"data-state":r?"on":"off",className:S("inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-all focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50","hover:bg-muted hover:text-muted-foreground","gap-2 px-3 py-2","data-[state=on]:bg-background data-[state=on]:text-foreground data-[state=on]:shadow-sm border-transparent border data-[state=on]:border-border/50"),children:[q2e[a],d.jsx("span",{className:"hidden sm:inline-block text-xs font-medium",children:rT[a]})]},a)})});function j2e(e){switch(e){case"equals":return"=";case"notEquals":return"!=";case"contains":return"contains";case"notContains":return"notcontains";case"greaterThan":return">";case"greaterOrEqual":return">=";case"lessThan":return"<";case"lessOrEqual":return"<=";case"in":return"in";case"notIn":return"not in";case"before":return"<";case"after":return">";default:return"="}}function H2e(e){if(!e||!e.conditions||e.conditions.length===0)return[];const t=e.conditions.map(o=>o.operator==="isEmpty"?[o.field,"=",null]:o.operator==="isNotEmpty"?[o.field,"!=",null]:[o.field,j2e(o.operator),o.value]);return t.length===1?t[0]:[e.logic,...t]}const xG=({schema:e,className:t,onViewChange:o,onFilterChange:n,onSortChange:a,onSearchChange:r,...c})=>{const s=p.useMemo(()=>({...e,viewType:e.viewType||"grid"}),[e]),[l,u]=p.useState(s.viewType),[y,h]=p.useState(""),[f,k]=p.useState(!1),[m,g]=p.useState(()=>s.sort&&s.sort.length>0?s.sort.map(P=>({id:crypto.randomUUID(),field:P.field,order:P.order||"asc"})):[]),[_,v]=p.useState(!1),[b,M]=p.useState({id:"root",logic:"and",conditions:[]}),x=c.dataSource,[N,C]=p.useState([]),[$,L]=p.useState(!1),[A,q]=p.useState(null),z=p.useMemo(()=>s.id?`listview-${s.objectName}-${s.id}-view`:`listview-${s.objectName}-view`,[s.objectName,s.id]);p.useEffect(()=>{let P=!0;return(async()=>{if(!(!x||!s.objectName))try{const ne=await x.getObjectSchema(s.objectName);P&&q(ne)}catch(ne){console.warn("Failed to fetch object schema for ListView:",ne)}})(),()=>{P=!1}},[s.objectName,x]),p.useEffect(()=>{let P=!0;return(async()=>{if(!(!x||!s.objectName)){L(!0);try{let ne=[];const de=s.filters||[],B=H2e(b);de.length>0&&B.length>0?ne=["and",de,B]:B.length>0?ne=B:ne=de;const W=m.length>0?m.filter(re=>re.field).map(re=>({field:re.field,order:re.order})):void 0,K=await x.find(s.objectName,{$filter:ne,$orderby:W,$top:100});let R=[];Array.isArray(K)?R=K:K&&typeof K=="object"&&(Array.isArray(K.data)?R=K.data:Array.isArray(K.value)&&(R=K.value)),P&&C(R)}catch(ne){console.error("ListView data fetch error:",ne)}finally{P&&L(!1)}}})(),()=>{P=!1}},[s.objectName,x,s.filters,m,b]);const O=p.useMemo(()=>{const P=["grid"];return s.options?.kanban?.groupField&&P.push("kanban"),s.options?.gallery?.imageField&&P.push("gallery"),s.options?.calendar?.startDateField&&P.push("calendar"),(s.options?.timeline?.dateField||s.options?.calendar?.startDateField)&&P.push("timeline"),s.options?.gantt?.startDateField&&P.push("gantt"),(s.options?.map?.locationField||s.options?.map?.latitudeField&&s.options?.map?.longitudeField)&&P.push("map"),s.viewType&&!P.includes(s.viewType)&&["grid","kanban","calendar","timeline","gantt","map","gallery"].includes(s.viewType)&&P.push(s.viewType),P},[s.options,s.viewType]);p.useEffect(()=>{try{const P=localStorage.getItem(z);P&&["grid","kanban","calendar","timeline","gantt","map","gallery"].includes(P)&&O.includes(P)&&u(P)}catch(P){console.warn("Failed to load view preference from localStorage:",P)}},[z,O]);const D=p.useCallback(P=>{u(P);try{localStorage.setItem(z,P)}catch(F){console.warn("Failed to save view preference to localStorage:",F)}o?.(P)},[z,o]),U=p.useCallback(P=>{h(P),r?.(P)},[r]),G=p.useMemo(()=>{const P={objectName:s.objectName,fields:s.fields,filters:s.filters,sort:m,className:"h-full w-full",showSearch:!1};switch(l){case"grid":return{type:"object-grid",...P,columns:s.fields,...s.options?.grid||{}};case"kanban":return{type:"object-kanban",...P,groupBy:s.options?.kanban?.groupField||"status",groupField:s.options?.kanban?.groupField||"status",titleField:s.options?.kanban?.titleField||"name",cardFields:s.fields||[],...s.options?.kanban||{}};case"calendar":return{type:"object-calendar",...P,startDateField:s.options?.calendar?.startDateField||"start_date",endDateField:s.options?.calendar?.endDateField||"end_date",titleField:s.options?.calendar?.titleField||"name",...s.options?.calendar||{}};case"gallery":return{type:"object-gallery",...P,imageField:s.options?.gallery?.imageField,titleField:s.options?.gallery?.titleField||"name",subtitleField:s.options?.gallery?.subtitleField,...s.options?.gallery||{}};case"timeline":return{type:"object-timeline",...P,dateField:s.options?.timeline?.dateField||"created_at",titleField:s.options?.timeline?.titleField||"name",...s.options?.timeline||{}};case"gantt":return{type:"object-gantt",...P,startDateField:s.options?.gantt?.startDateField||"start_date",endDateField:s.options?.gantt?.endDateField||"end_date",progressField:s.options?.gantt?.progressField||"progress",dependenciesField:s.options?.gantt?.dependenciesField||"dependencies",...s.options?.gantt||{}};case"map":return{type:"object-map",...P,locationField:s.options?.map?.locationField||"location",...s.options?.map||{}};default:return P}},[l,s,m]),H=b.conditions&&b.conditions.length>0,Y=p.useMemo(()=>A?.fields?Object.entries(A.fields).map(([P,F])=>({value:P,label:F.label||P,type:F.type||"text",options:F.options})):(s.fields||[]).map(P=>typeof P=="string"?{value:P,label:P,type:"text"}:{value:P.name||P.fieldName,label:P.label||P.name,type:P.type||"text",options:P.options}),[A,s.fields]);return d.jsxs("div",{className:S("flex flex-col h-full bg-background",t),children:[d.jsxs("div",{className:"border-b px-4 py-2 flex items-center justify-between gap-4 bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60",children:[d.jsxs("div",{className:"flex items-center gap-2 flex-1 overflow-hidden",children:[d.jsx("div",{className:"flex items-center pr-2 border-r mr-2",children:d.jsx(wG,{currentView:l,availableViews:O,onViewChange:D})}),d.jsxs("div",{className:"flex items-center gap-1",children:[d.jsxs(t1,{open:_,onOpenChange:v,children:[d.jsx(o1,{asChild:!0,children:d.jsxs(Ee,{variant:H?"secondary":"ghost",size:"sm",className:S("h-8 px-2 lg:px-3 text-muted-foreground hover:text-primary",H&&"text-primary bg-secondary/50"),children:[d.jsx(id,{className:"h-4 w-4 mr-2"}),d.jsx("span",{className:"hidden lg:inline",children:"Filter"}),H&&d.jsx("span",{className:"ml-1.5 flex h-4 w-4 items-center justify-center rounded-full bg-primary/10 text-[10px] font-medium text-primary",children:b.conditions?.length||0})]})}),d.jsx(Ss,{align:"start",className:"w-[600px] p-4",children:d.jsxs("div",{className:"space-y-4",children:[d.jsx("div",{className:"flex items-center justify-between border-b pb-2",children:d.jsx("h4",{className:"font-medium text-sm",children:"Filter Records"})}),d.jsx(aT,{fields:Y,value:b,onChange:P=>{console.log("Filter Changed:",P),M(P),n&&n(P)}})]})})]}),d.jsxs(t1,{open:f,onOpenChange:k,children:[d.jsx(o1,{asChild:!0,children:d.jsxs(Ee,{variant:m.length>0?"secondary":"ghost",size:"sm",className:S("h-8 px-2 lg:px-3 text-muted-foreground hover:text-primary",m.length>0&&"text-primary bg-secondary/50"),children:[d.jsx(Us,{className:"h-4 w-4 mr-2"}),d.jsx("span",{className:"hidden lg:inline",children:"Sort"}),m.length>0&&d.jsx("span",{className:"ml-1.5 flex h-4 w-4 items-center justify-center rounded-full bg-primary/10 text-[10px] font-medium text-primary",children:m.length})]})}),d.jsx(Ss,{align:"start",className:"w-[600px] p-4",children:d.jsxs("div",{className:"space-y-4",children:[d.jsx("div",{className:"flex items-center justify-between border-b pb-2",children:d.jsx("h4",{className:"font-medium text-sm",children:"Sort Records"})}),d.jsx(w2e,{fields:Y,value:m,onChange:P=>{console.log("Sort Changed:",P),g(P),a&&a(P)}})]})})]})]})]}),d.jsx("div",{className:"flex items-center gap-2",children:d.jsxs("div",{className:"relative w-40 lg:w-64 transition-all",children:[d.jsx(cn,{className:"absolute left-2 top-1/2 -translate-y-1/2 h-4 w-4 text-muted-foreground"}),d.jsx(Yo,{placeholder:"Find...",value:y,onChange:P=>U(P.target.value),className:"pl-8 h-8 text-sm bg-muted/50 border-transparent hover:bg-muted focus:bg-background focus:border-input transition-colors"}),y&&d.jsx(Ee,{variant:"ghost",size:"sm",className:"absolute right-1 top-1/2 -translate-y-1/2 h-6 w-6 p-0 hover:bg-muted-foreground/20",onClick:()=>U(""),children:d.jsx(bo,{className:"h-3 w-3"})})]})})]}),d.jsx("div",{className:"flex-1 min-h-0 bg-background relative overflow-hidden",children:d.jsx(Gc,{schema:G,...c,data:N,loading:$})})]})},NG=e=>{const{schema:t}=e,o=mK(),n=e.dataSource||o.dataSource,a=g1(t.bind),[r,c]=w.useState([]),[s,l]=w.useState(!1);w.useEffect(()=>{let k=!0;if(e.data&&Array.isArray(e.data)){c(e.data);return}const m=async()=>{if(!(!n||!t.objectName)){k&&l(!0);try{const g=await n.find(t.objectName,{$filter:t.filter});let _=[];Array.isArray(g)?_=g:g&&typeof g=="object"&&(Array.isArray(g.value)?_=g.value:Array.isArray(g.data)&&(_=g.data)),k&&c(_)}catch(g){console.error("[ObjectGallery] Fetch error:",g)}finally{k&&l(!1)}}};return t.objectName&&!a&&!t.data&&!e.data&&m(),()=>{k=!1}},[t.objectName,n,a,t.data,t.filter,e.data]);const u=e.data||a||t.data||r||[],y=t.imageField||"image",h=t.titleField||"name",f=t.subtitleField;return s&&!u.length?d.jsx("div",{className:"p-4 text-sm text-muted-foreground",children:"Loading Gallery..."}):u.length?d.jsx("div",{className:S("grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 xl:grid-cols-5 gap-4 p-4",t.className),children:u.map((k,m)=>d.jsxs("div",{className:"group relative border rounded-lg overflow-hidden bg-card text-card-foreground shadow-sm hover:shadow-md transition-all",children:[d.jsx("div",{className:"aspect-square w-full overflow-hidden bg-muted relative",children:k[y]?d.jsx("img",{src:k[y],alt:k[h],className:"h-full w-full object-cover transition-transform group-hover:scale-105",onError:g=>{g.target.src=`https://placehold.co/400x400?text=${encodeURIComponent(k[h]?.[0]||"?")}`}}):d.jsx("div",{className:"flex h-full w-full items-center justify-center bg-secondary/50 text-muted-foreground",children:d.jsx("span",{className:"text-4xl font-light opacity-20",children:k[h]?.[0]?.toUpperCase()})})}),d.jsxs("div",{className:"p-3 border-t",children:[d.jsx("h3",{className:"font-medium truncate text-sm",title:k[h],children:k[h]||"Untitled"}),f&&d.jsx("p",{className:"text-xs text-muted-foreground truncate mt-1",children:k[f]})]})]},k._id||m))}):d.jsx("div",{className:"p-4 text-sm text-muted-foreground",children:"No items to display"})};ie.register("object-gallery",NG,{namespace:"plugin-list",label:"Gallery View",category:"view"}),ie.register("list-view",xG,{namespace:"plugin-list",label:"List View",category:"Views",icon:"LayoutList",inputs:[{name:"objectName",type:"string",label:"Object Name",required:!0},{name:"viewType",type:"enum",label:"Default View",enum:[{label:"Grid",value:"grid"},{label:"List",value:"list"},{label:"Kanban",value:"kanban"},{label:"Calendar",value:"calendar"},{label:"Chart",value:"chart"}],defaultValue:"grid"},{name:"fields",type:"array",label:"Fields"},{name:"filters",type:"array",label:"Filters"},{name:"sort",type:"array",label:"Sort"},{name:"options",type:"object",label:"View Options"}],defaultProps:{objectName:"",viewType:"grid",fields:[],filters:[],sort:[],options:{}}}),Ut.ListView=xG,Ut.ObjectGallery=NG,Ut.ViewSwitcher=wG,Object.defineProperty(Ut,Symbol.toStringTag,{value:"Module"})}));