@bvdm/delano 0.2.7 → 0.2.9

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.
@@ -16,6 +16,8 @@ const I = {
16
16
  block: <><circle cx="12" cy="12" r="8.5"/><path d="M6 6l12 12"/></>,
17
17
  trend: <><path d="M3 17l6-6 4 4 8-8"/><path d="M14 7h7v7"/></>,
18
18
  check: <><rect x="3.5" y="3.5" width="17" height="17" rx="2"/><path d="M8 12.5l3 3 5-6"/></>,
19
+ checkMark: <path d="M5 12.5l4 4 10-11"/>,
20
+ copy: <><rect x="8" y="4" width="11" height="14" rx="1.5"/><path d="M16 18v2a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2"/></>,
19
21
  warn: <><path d="M12 3.5 21 19H3z"/><path d="M12 10v4.5"/><circle cx="12" cy="17" r="0.6" fill="currentColor"/></>,
20
22
  doc: <><path d="M6 3.5h8l4 4V20.5H6z"/><path d="M14 3.5V8h4"/></>,
21
23
  plan: <><path d="M4 5.5h16"/><path d="M4 12h16"/><path d="M4 18.5h10"/></>,
@@ -81,6 +83,72 @@ const escapeHtml = (s) =>
81
83
  const titleCase = (s) =>
82
84
  String(s || "").replace(/-/g, " ").replace(/\b\w/g, (c) => c.toUpperCase());
83
85
 
86
+ const normalizeCopyValue = (value) => {
87
+ if (value == null) return "";
88
+ if (Array.isArray(value)) return value.map((item) => String(item).trim()).filter(Boolean).join(", ");
89
+ if (typeof value === "boolean" || typeof value === "number") return String(value);
90
+ if (typeof value === "object") return JSON.stringify(value);
91
+ return String(value).trim();
92
+ };
93
+
94
+ const isCopyableMetaKey = (key) => {
95
+ const normalized = String(key || "").toLowerCase();
96
+ return (
97
+ normalized === "id" ||
98
+ normalized === "slug" ||
99
+ normalized === "workstream" ||
100
+ normalized === "depends_on" ||
101
+ normalized === "conflicts_with" ||
102
+ /(?:^|_)(?:id|ids)$/.test(normalized)
103
+ );
104
+ };
105
+
106
+ const copyLabelFromMetaKey = (key, role) => {
107
+ const normalized = String(key || "").toLowerCase();
108
+ if (normalized === "id" && role) return `${titleCase(role)} ID`;
109
+ if (normalized === "workstream") return "workstream ID";
110
+ if (normalized === "depends_on") return "dependency IDs";
111
+ if (normalized === "conflicts_with") return "conflict IDs";
112
+ return normalized.replace(/_/g, " ") || "value";
113
+ };
114
+
115
+ async function copyTextToClipboard(text) {
116
+ if (navigator.clipboard && navigator.clipboard.writeText) {
117
+ try {
118
+ await navigator.clipboard.writeText(text);
119
+ return true;
120
+ } catch (_) {
121
+ /* fall through */
122
+ }
123
+ }
124
+
125
+ const textArea = document.createElement("textarea");
126
+ textArea.value = text;
127
+ textArea.setAttribute("readonly", "");
128
+ textArea.style.position = "fixed";
129
+ textArea.style.top = "-1000px";
130
+ textArea.style.opacity = "0";
131
+ document.body.appendChild(textArea);
132
+ textArea.select();
133
+ let ok = false;
134
+ try {
135
+ ok = document.execCommand("copy");
136
+ } catch (_) {
137
+ ok = false;
138
+ }
139
+ document.body.removeChild(textArea);
140
+ return ok;
141
+ }
142
+
143
+ function announceCopy(label) {
144
+ const live = document.getElementById("copy-live");
145
+ if (!live) return;
146
+ live.textContent = "";
147
+ window.setTimeout(() => {
148
+ live.textContent = `Copied ${label || "value"}`;
149
+ }, 10);
150
+ }
151
+
84
152
  const formatShortDateTime = (value) => {
85
153
  if (!value) return "";
86
154
  const date = new Date(value);
@@ -527,10 +595,48 @@ const Pagination = ({ page, totalPages, onPageChange }) => {
527
595
  /* ================================================================
528
596
  Reusable components
529
597
  ================================================================ */
530
- const Field = ({ label, children, mono }) => (
598
+ const CopyButton = ({ value, label = "value", className = "" }) => {
599
+ const [copied, setCopied] = useState(false);
600
+ const text = normalizeCopyValue(value);
601
+
602
+ useEffect(() => {
603
+ if (!copied) return undefined;
604
+ const timeout = window.setTimeout(() => setCopied(false), 1200);
605
+ return () => window.clearTimeout(timeout);
606
+ }, [copied]);
607
+
608
+ if (!text) return null;
609
+
610
+ const stateLabel = copied ? `Copied ${label}` : `Copy ${label}`;
611
+ const handleClick = async (event) => {
612
+ event.preventDefault();
613
+ event.stopPropagation();
614
+ const ok = await copyTextToClipboard(text);
615
+ if (!ok) return;
616
+ setCopied(true);
617
+ announceCopy(label);
618
+ };
619
+
620
+ return (
621
+ <button
622
+ className={`copy-btn${copied ? " is-copied" : ""}${className ? ` ${className}` : ""}`}
623
+ type="button"
624
+ onClick={handleClick}
625
+ aria-label={stateLabel}
626
+ title={stateLabel}
627
+ >
628
+ <Icon d={copied ? I.checkMark : I.copy} size={13} />
629
+ </button>
630
+ );
631
+ };
632
+
633
+ const Field = ({ label, children, mono, copyValue, copyLabel }) => (
531
634
  <div className="field">
532
635
  <div className="field-label">{label}</div>
533
- <div className={"field-value" + (mono ? " mono" : "")}>{children}</div>
636
+ <div className={"field-value" + (mono ? " mono" : "")}>
637
+ {children}
638
+ <CopyButton value={copyValue} label={copyLabel || label} />
639
+ </div>
534
640
  </div>
535
641
  );
536
642
 
@@ -753,19 +859,8 @@ function Sidebar({ index, projectSlug, route, section, onNavigate, onSelectProje
753
859
 
754
860
  return (
755
861
  <aside className="sidebar">
756
- <div className="brand">
757
- <div className="brand-mark">
758
- <Icon
759
- d={
760
- <>
761
- <rect x="3.5" y="3.5" width="17" height="17" rx="3" />
762
- <path d="M8 8h6a4 4 0 0 1 0 8H8z" />
763
- </>
764
- }
765
- size={18}
766
- />
767
- </div>
768
- <span className="brand-name">Delano</span>
862
+ <div className="brand" aria-label="Delano">
863
+ <img className="brand-logo" src="/delano-logo.svg" alt="Delano" />
769
864
  </div>
770
865
 
771
866
  <div className="nav-section">Workspace</div>
@@ -986,7 +1081,10 @@ function Overview({ index, project, docs, scrollTarget, onOpenWorkstream, onOpen
986
1081
  </div>
987
1082
 
988
1083
  <section className="summary overview-summary">
989
- <Field label="Project">{project.title}</Field>
1084
+ <Field label="Project" copyValue={project.slug} copyLabel="project ID">
1085
+ <span>{project.title}</span>
1086
+ <span className="field-id mono">{project.slug}</span>
1087
+ </Field>
990
1088
  <Field label="Status"><StatusChip>{project.status || "Planned"}</StatusChip></Field>
991
1089
  <Field label="Health">
992
1090
  <span className="health">
@@ -1116,11 +1214,29 @@ function Overview({ index, project, docs, scrollTarget, onOpenWorkstream, onOpen
1116
1214
  Workspace Pages
1117
1215
  ================================================================ */
1118
1216
  function WorkspacePage({ index, view, page, onPageChange, onOpenProject, onOpenProjectDoc, onOpenProjectWorkstream }) {
1217
+ const [projectFilter, setProjectFilter] = useState("all");
1119
1218
  const workspace = useMemo(() => getWorkspaceModel(index), [index]);
1120
1219
  const projectStats = useMemo(
1121
1220
  () => (index.projects || []).filter((p) => p.outline).map((project) => getProjectStats(index, project)),
1122
1221
  [index]
1123
1222
  );
1223
+ const projectFilterCounts = useMemo(() => {
1224
+ const active = projectStats.filter((stat) => statusLabel(stat.project.status) !== "Complete").length;
1225
+ return {
1226
+ all: projectStats.length,
1227
+ active,
1228
+ complete: projectStats.length - active,
1229
+ };
1230
+ }, [projectStats]);
1231
+ const filteredProjectStats = useMemo(() => {
1232
+ if (projectFilter === "active") {
1233
+ return projectStats.filter((stat) => statusLabel(stat.project.status) !== "Complete");
1234
+ }
1235
+ if (projectFilter === "complete") {
1236
+ return projectStats.filter((stat) => statusLabel(stat.project.status) === "Complete");
1237
+ }
1238
+ return projectStats;
1239
+ }, [projectFilter, projectStats]);
1124
1240
  const currentPage = page || 1;
1125
1241
 
1126
1242
  const titleMap = {
@@ -1133,7 +1249,7 @@ function WorkspacePage({ index, view, page, onPageChange, onOpenProject, onOpenP
1133
1249
  };
1134
1250
  const title = titleMap[view] || "Workspace";
1135
1251
  const itemsForView =
1136
- view === "workspace-projects" ? projectStats :
1252
+ view === "workspace-projects" ? filteredProjectStats :
1137
1253
  view === "workspace-current" ? workspace.current :
1138
1254
  view === "workspace-blockers" ? workspace.blockers :
1139
1255
  view === "workspace-validation" ? workspace.validation :
@@ -1166,10 +1282,31 @@ function WorkspacePage({ index, view, page, onPageChange, onOpenProject, onOpenP
1166
1282
  <Pagination page={pagination.safePage} totalPages={pagination.totalPages} onPageChange={onPageChange} />
1167
1283
  );
1168
1284
 
1285
+ const projectFilterControl = view === "workspace-projects" ? (
1286
+ <div className="project-filter" aria-label="Project status filter">
1287
+ {[
1288
+ ["all", "All"],
1289
+ ["active", "Active"],
1290
+ ["complete", "Complete"],
1291
+ ].map(([value, label]) => (
1292
+ <button
1293
+ className={"project-filter-option" + (projectFilter === value ? " is-active" : "")}
1294
+ type="button"
1295
+ onClick={() => setProjectFilter(value)}
1296
+ aria-pressed={projectFilter === value}
1297
+ key={value}
1298
+ >
1299
+ <span>{label}</span>
1300
+ <span className="mono">{projectFilterCounts[value]}</span>
1301
+ </button>
1302
+ ))}
1303
+ </div>
1304
+ ) : null;
1305
+
1169
1306
  const renderProjects = () =>
1170
- projectStats.length > 0 ? (
1307
+ filteredProjectStats.length > 0 ? (
1171
1308
  <div className="project-grid">
1172
- {projectStats.map((stat) => (
1309
+ {filteredProjectStats.map((stat) => (
1173
1310
  <button className="project-card" key={stat.project.slug} type="button" onClick={() => onOpenProject(stat.project.slug)}>
1174
1311
  <span className="project-card-head">
1175
1312
  <span className="project-card-title">{stat.project.title}</span>
@@ -1189,7 +1326,7 @@ function WorkspacePage({ index, view, page, onPageChange, onOpenProject, onOpenP
1189
1326
  ))}
1190
1327
  </div>
1191
1328
  ) : (
1192
- <div className="empty-state">No projects found.</div>
1329
+ <div className="empty-state">No projects match this filter.</div>
1193
1330
  );
1194
1331
 
1195
1332
  const renderTaskRows = (items, emptyText, kind) => {
@@ -1311,7 +1448,7 @@ function WorkspacePage({ index, view, page, onPageChange, onOpenProject, onOpenP
1311
1448
  };
1312
1449
 
1313
1450
  const count =
1314
- view === "workspace-projects" ? workspace.counts.projects :
1451
+ view === "workspace-projects" ? filteredProjectStats.length :
1315
1452
  view === "workspace-current" ? workspace.counts.current :
1316
1453
  view === "workspace-blockers" ? workspace.counts.blockers :
1317
1454
  view === "workspace-validation" ? workspace.counts.validation :
@@ -1321,9 +1458,8 @@ function WorkspacePage({ index, view, page, onPageChange, onOpenProject, onOpenP
1321
1458
 
1322
1459
  return (
1323
1460
  <div className="page">
1324
- <h1 className="page-title">{title}</h1>
1325
1461
  <section className="block">
1326
- <SectionHeader title={title} count={count} />
1462
+ <SectionHeader title={title} count={count} right={projectFilterControl} />
1327
1463
  {renderBody()}
1328
1464
  </section>
1329
1465
  </div>
@@ -1735,6 +1871,7 @@ function WorkstreamDetail({ index, project, wsPath, onBack, onOpenDoc }) {
1735
1871
  <ul className="checklist">
1736
1872
  {tasks.map((t, i) => {
1737
1873
  const done = statusLabel(t.status) === "Complete";
1874
+ const taskId = t.taskId || t.path.split("/").pop()?.replace(/\.md$/, "");
1738
1875
  return (
1739
1876
  <li key={i} className={done ? "done" : ""}>
1740
1877
  <span className="cb">
@@ -1745,7 +1882,10 @@ function WorkstreamDetail({ index, project, wsPath, onBack, onOpenDoc }) {
1745
1882
  </LinkButton>
1746
1883
  <span className="checklist-meta">
1747
1884
  <StatusChip>{t.status || "Planned"}</StatusChip>
1748
- <span className="mono">{t.taskId || t.path.split("/").pop()?.replace(/\.md$/, "")}</span>
1885
+ <span className="task-id-copy mono">
1886
+ <span>{taskId}</span>
1887
+ <CopyButton value={taskId} label="task ID" />
1888
+ </span>
1749
1889
  </span>
1750
1890
  </li>
1751
1891
  );
@@ -1784,12 +1924,22 @@ function WorkstreamDetail({ index, project, wsPath, onBack, onOpenDoc }) {
1784
1924
  <dd>{owner}</dd>
1785
1925
  </>
1786
1926
  )}
1787
- <dt>Source path</dt>
1788
- <dd className="mono small">{wsPath}</dd>
1927
+ <dt>
1928
+ <span>Source path</span>
1929
+ <CopyButton value={wsPath} label="source path" />
1930
+ </dt>
1931
+ <dd className="mono small">
1932
+ <span className="copy-value">{wsPath}</span>
1933
+ </dd>
1789
1934
  {wsOutline?.id && (
1790
1935
  <>
1791
- <dt>ID</dt>
1792
- <dd className="mono">{wsOutline.id}</dd>
1936
+ <dt>
1937
+ <span>ID</span>
1938
+ <CopyButton value={wsOutline.id} label="workstream ID" />
1939
+ </dt>
1940
+ <dd className="mono">
1941
+ <span>{wsOutline.id}</span>
1942
+ </dd>
1793
1943
  </>
1794
1944
  )}
1795
1945
  </dl>
@@ -1938,8 +2088,13 @@ function DocumentReader({ doc, project, index, onBack, onOpenAction, onOpenDoc,
1938
2088
  <div className="doc-meta-panel" aria-label="Document metadata">
1939
2089
  <div className="doc-meta-title">Metadata</div>
1940
2090
  <dl className="dl doc-meta-list">
1941
- <dt>Path</dt>
1942
- <dd className="mono">{doc.path}</dd>
2091
+ <dt>
2092
+ <span>Path</span>
2093
+ <CopyButton value={doc.path} label="source path" />
2094
+ </dt>
2095
+ <dd className="mono">
2096
+ <span className="copy-value">{doc.path}</span>
2097
+ </dd>
1943
2098
  {doc.status && (
1944
2099
  <>
1945
2100
  <dt>Status</dt>
@@ -1948,12 +2103,22 @@ function DocumentReader({ doc, project, index, onBack, onOpenAction, onOpenDoc,
1948
2103
  )}
1949
2104
  <dt>Updated</dt>
1950
2105
  <dd>{fmtDate(doc.updated)}</dd>
1951
- {props.map(([k, v]) => (
1952
- <React.Fragment key={k}>
1953
- <dt>{k}</dt>
1954
- <dd>{renderMetaValue(k, v)}</dd>
1955
- </React.Fragment>
1956
- ))}
2106
+ {props.map(([k, v]) => {
2107
+ const copyable = isCopyableMetaKey(k);
2108
+ return (
2109
+ <React.Fragment key={k}>
2110
+ <dt>
2111
+ <span>{k}</span>
2112
+ {copyable && (
2113
+ <CopyButton value={v} label={copyLabelFromMetaKey(k, doc.role)} />
2114
+ )}
2115
+ </dt>
2116
+ <dd>
2117
+ {renderMetaValue(k, v)}
2118
+ </dd>
2119
+ </React.Fragment>
2120
+ );
2121
+ })}
1957
2122
  </dl>
1958
2123
  </div>
1959
2124
  </aside>
@@ -2305,6 +2470,7 @@ function App() {
2305
2470
  <div className="content content-reader-head-c">{mainContent}</div>
2306
2471
 
2307
2472
  </div>
2473
+ <div id="copy-live" className="sr-only" aria-live="polite" aria-atomic="true"></div>
2308
2474
  </div>
2309
2475
  );
2310
2476
  }
@@ -0,0 +1,60 @@
1
+ <svg width="475" height="162" viewBox="0 0 475 162" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1_45)">
3
+ <g filter="url(#filter0_n_1_45)">
4
+ <path d="M55.4088 10C56.0393 10.5081 57.647 12.5621 58.1966 13.2506C61.799 17.7979 65.2999 22.4231 68.6969 27.1231C70.7226 29.9079 72.9327 32.5646 74.269 35.7216C74.79 36.9536 75.4008 38.2079 75.9611 39.4275C78.0623 43.9784 80.1253 48.5467 82.1479 53.1322C83.2807 55.6447 84.3862 58.1686 85.4656 60.7037C85.8868 61.6907 86.7304 63.5737 86.9551 64.5212C87.0912 65.0943 87.1839 67.301 87.2222 67.9856C87.3643 70.6104 87.4903 73.2361 87.6001 75.8624C87.722 78.3932 87.9055 81.4542 87.8097 83.9502C87.7996 84.2051 85.5502 88.8072 85.2792 89.381C83.9348 92.2388 82.6155 95.1087 81.3205 97.9905C80.5899 99.6049 79.8371 101.245 79.1397 102.874C78.8232 103.608 78.5713 104.81 78.3606 105.624L77.1644 110.213C76.4196 113.057 75.7021 115.91 75.0117 118.769C74.7941 119.659 74.5784 120.55 74.3557 121.439C73.7591 123.83 73.5031 126.309 73.1745 128.751C72.6757 132.451 72.2091 136.154 71.7747 139.861C71.5742 142.894 71.1267 146.04 70.8607 149.073C70.7921 149.851 71.0834 152.216 69.5374 151.449C69.2048 151.283 69.1071 146.362 68.9337 145.749C67.9929 136.648 67.0296 127.724 64.7977 118.831C64.1585 116.207 63.4997 113.588 62.8213 110.974C62.0989 108.205 61.3226 104.65 60.3126 102.004C58.8459 98.1605 56.9631 94.333 55.4134 90.5135C54.6413 88.6113 53.6075 86.767 52.9298 84.8248C52.672 84.0421 52.3331 80.4915 52.2137 79.437C51.9446 77.1043 51.7052 74.768 51.4958 72.429C51.3649 70.9958 51.163 69.4066 51.2102 67.982C51.3258 64.4971 51.5463 61.006 51.7727 57.5274C52.1985 50.9002 52.6659 44.2756 53.1752 37.6541C53.611 31.4317 54.0791 25.2116 54.5796 18.9941C54.7996 16.325 54.9958 12.5205 55.4088 10Z" fill="#232C2B"/>
5
+ <path d="M69.5374 151.449C68.9878 150.761 79.9164 66.7861 55.4088 10C54.9958 12.5205 54.7996 16.325 54.5796 18.9941C54.0791 25.2116 53.611 31.4317 53.1752 37.6541C52.6659 44.2756 52.1985 50.9002 51.7727 57.5274C51.5463 61.006 51.3258 64.4971 51.2102 67.982C51.163 69.4066 51.3649 70.9958 51.4958 72.429C51.7052 74.768 51.9446 77.1043 52.2137 79.437C52.3331 80.4915 52.672 84.0421 52.9298 84.8248C53.6075 86.767 54.6413 88.6113 55.4134 90.5135C56.9631 94.333 58.8459 98.1605 60.3126 102.004C61.3226 104.65 62.0989 108.205 62.8213 110.974C63.4997 113.588 64.1585 116.207 64.7977 118.831C67.0296 127.724 67.9929 136.648 68.9337 145.749C69.1071 146.362 69.2048 151.283 69.5374 151.449Z" fill="#32453E"/>
6
+ <path d="M71.111 89.3149C71.1548 89.2979 71.2755 41.2372 55.4089 10C54.9959 12.5205 54.7997 16.325 54.5797 18.9941C54.0792 25.2116 53.611 31.4317 53.1753 37.6541C52.666 44.2756 51.7728 57.5275 51.7728 57.5275L61.9762 71.602C61.9762 71.602 71.1686 89.2465 71.111 89.3149Z" fill="#44514D"/>
7
+ <path d="M124.343 46.5553L124.475 46.4929C124.568 46.8631 122.76 58.509 122.535 60.0715C121.681 66.0692 120.782 72.0606 119.838 78.0453C119.367 81.0735 118.899 84.1842 118.352 87.202C118.208 87.9967 117.55 89.8389 117.269 90.7016L115.342 96.6042C114.194 100.214 112.988 103.805 111.724 107.377C111.264 108.678 110.666 110.746 110.077 111.92C107.873 116.315 105.641 120.712 103.369 125.073C101.911 127.655 100.322 130.21 98.9993 132.864C96.4979 137.881 94.1558 142.985 91.8792 148.107C91.5718 148.798 91.083 150.024 90.6477 150.608C87.9166 150.927 85.1764 151.16 82.4301 151.306C80.7159 151.413 78.7184 151.561 77.0233 151.535C75.4552 151.567 73.2703 151.646 71.7354 151.519C72.4711 144.787 73.3821 138.075 74.4665 131.389C74.7749 129.453 75.0501 127.495 75.3967 125.551C76.2181 120.934 77.6119 116.329 78.796 111.787C79.3433 109.687 79.8784 107.51 80.479 105.449C81.2439 102.828 82.669 99.9769 83.7997 97.4629C87.849 88.4005 92.5282 79.629 97.804 71.2112C98.7443 69.6919 100.448 66.8413 101.496 65.4868C102.216 64.5543 104.978 62.1097 105.999 61.1841C108.189 59.219 110.408 57.2843 112.654 55.3808C113.637 54.5317 115.208 52.9617 116.196 52.3054C118.692 50.6498 121.743 47.8864 124.343 46.5553Z" fill="#25332D"/>
8
+ <path d="M71.7354 151.519C72.4711 144.787 73.3821 138.075 74.4665 131.389C74.7749 129.453 75.0501 127.495 75.3967 125.551C76.2181 120.934 77.6119 116.329 78.796 111.787C79.3433 109.687 79.8784 107.51 80.479 105.449C81.2439 102.828 82.669 99.9768 83.7997 97.4628C87.849 88.4005 92.5282 79.629 97.804 71.2111C98.7443 69.6919 100.448 66.8412 101.496 65.4867C102.216 64.5542 104.978 62.1096 105.999 61.1841C108.189 59.219 110.408 57.2842 112.654 55.3807C113.637 54.5316 115.208 52.9617 116.196 52.3053C118.692 50.6497 121.743 47.8863 124.343 46.5552C124.035 47.2584 123.101 48.699 122.67 49.3958C121.727 50.9084 120.811 52.438 119.924 53.9838C116.687 59.6298 113.593 65.356 110.647 71.157C105.93 80.3067 101.499 89.598 97.3606 99.0192C90.8351 113.604 84.9153 128.535 80.3017 143.83C80.1132 144.455 79.8804 145.222 79.7625 145.863C79.4067 147.804 78.6398 149.57 78.149 151.472C77.7852 151.471 77.3518 151.431 77.0233 151.535C75.4552 151.567 73.2703 151.646 71.7354 151.519Z" fill="#4A5E53"/>
9
+ <path d="M10 46.4442C10.9073 46.7506 12.6541 47.9953 13.4921 48.5285C21.9482 53.9085 29.4711 60.6157 37.0413 67.1303C38.0921 68.0346 39.0861 69.508 39.968 70.6088C41.0427 71.9505 42.0974 73.347 43.1503 74.712C44.7901 76.8668 46.3926 79.0491 47.9571 81.2583C48.522 82.0499 50.2665 84.42 50.6221 85.1347C51.7801 87.4648 53.1967 90.3256 54.2062 92.7367C55.5482 95.9424 57.4062 99.8028 58.5541 103.023C59.4081 105.419 60.3923 109.179 61.0474 111.698C62.0539 115.569 63.3799 120.056 64.1982 123.944C65.0181 127.84 65.7315 132.633 66.3348 136.566C66.8705 139.979 67.3463 143.401 67.7617 146.831C67.9195 148.147 68.2192 150.261 68.2535 151.539C67.1838 151.594 64.8104 151.446 63.6498 151.368C61.9077 151.252 59.3028 151.185 57.6294 150.904C56.7981 149.445 56.0114 147.571 55.1907 146.054C52.9859 141.982 50.6542 137.501 48.0998 133.662L36.7421 116.937C35.6012 115.292 34.4495 113.653 33.2869 112.022C32.7837 111.312 31.4838 109.559 31.1504 108.863C29.7391 105.922 28.3203 102.782 27.0453 99.7858L24.4782 93.7393C24.0518 92.7507 23.3051 91.2013 22.9849 90.2537C22.3378 88.3394 21.7712 86.2802 21.1559 84.341C19.075 77.7558 17.1022 71.1378 15.2383 64.4894L11.9512 53.2273C11.3289 51.1183 10.4944 48.5511 10 46.4442Z" fill="#36443F"/>
10
+ <path d="M10 46.4442C10.9073 46.7506 12.6541 47.9953 13.4921 48.5285C21.9482 53.9085 29.4711 60.6157 37.0413 67.1303C38.0921 68.0346 39.0861 69.508 39.968 70.6088C41.0427 71.9505 42.0974 73.347 43.1503 74.712C44.7901 76.8668 46.3926 79.0491 47.9571 81.2583C48.522 82.0499 50.2665 84.42 50.6221 85.1347C51.7801 87.4648 53.1967 90.3256 54.2062 92.7367C55.5481 95.9424 57.4062 99.8028 58.5541 103.023C59.4081 105.419 60.3923 109.179 61.0474 111.698C62.0539 115.569 63.3799 120.056 64.1982 123.944C65.0181 127.84 65.7315 132.633 66.3348 136.566C66.8705 139.979 67.3463 143.401 67.7617 146.831C67.9195 148.147 68.2192 150.261 68.2535 151.539C67.1838 151.594 64.8104 151.446 63.6498 151.368C61.9077 151.252 56.6963 123.578 48.6876 107.213C40.6832 90.8558 22.9849 68.2554 22.9849 68.2554L11.9512 53.2273C11.3289 51.1183 10.4944 48.5511 10 46.4442Z" fill="#26302E"/>
11
+ <path d="M130 95.8984C129.938 96.6631 124.822 107.124 124.126 108.642C122.509 112.162 121.032 115.784 119.311 119.251C117.616 122.668 115.734 126.016 113.948 129.388C113.057 131.068 112.038 133.484 110.924 134.939C109.581 136.69 99.9033 148.128 98.6204 148.848C96.9606 149.78 94.1881 150.121 92.2723 150.397C92.2118 149.802 95.5396 143.353 96.0082 142.386C100.212 133.708 105.186 125.422 110.348 117.279C110.754 116.638 112.076 115.292 112.639 114.666L116.595 110.263C120.852 105.552 125.511 100.395 130 95.8984Z" fill="#2E3F38"/>
12
+ <path d="M19.2043 108.281C19.8531 108.629 22.4064 110.637 23.1078 111.176C27.0124 114.181 30.8314 117.294 34.5603 120.511C35.8065 121.582 37.9719 123.337 39.0038 124.447C40.0238 125.544 41.5313 127.606 42.5029 128.838C46.8555 134.358 50.6067 140.307 54.0261 146.432C54.5289 147.333 56.0217 149.87 56.3073 150.76C55.1381 150.859 49.5147 149.788 48.717 148.967C46.1512 146.329 43.8151 143.351 41.2894 140.656C38.754 137.949 36.6936 134.586 34.5917 131.521C31.2726 126.714 28.0136 121.865 24.8155 116.977L21.0478 111.21C20.5004 110.368 19.638 109.129 19.2043 108.281Z" fill="#2E3F38"/>
13
+ </g>
14
+ <mask id="mask0_1_45" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="10" y="10" width="120" height="142">
15
+ <path d="M55.4088 10C56.0393 10.5081 57.647 12.5621 58.1966 13.2506C61.799 17.7979 65.2999 22.4231 68.6969 27.1231C70.7226 29.9079 72.9327 32.5646 74.269 35.7216C74.79 36.9536 75.4008 38.2079 75.9611 39.4275C78.0623 43.9784 80.1253 48.5467 82.1479 53.1322C83.2807 55.6447 84.3862 58.1686 85.4656 60.7037C85.8868 61.6907 86.7304 63.5737 86.9551 64.5212C87.0912 65.0943 87.1839 67.301 87.2222 67.9856C87.3643 70.6104 87.4903 73.2361 87.6001 75.8624C87.722 78.3932 87.9055 81.4542 87.8097 83.9502C87.7996 84.2051 85.5502 88.8072 85.2792 89.381C83.9348 92.2388 82.6155 95.1087 81.3205 97.9905C80.5899 99.6049 79.8371 101.245 79.1397 102.874C78.8232 103.608 78.5713 104.81 78.3606 105.624L77.1644 110.213C76.4196 113.057 75.7021 115.91 75.0117 118.769C74.7941 119.659 74.5784 120.55 74.3557 121.439C73.7591 123.83 73.5031 126.309 73.1745 128.751C72.6757 132.451 72.2091 136.154 71.7747 139.861C71.5742 142.894 71.1267 146.04 70.8607 149.073C70.7921 149.851 71.0834 152.216 69.5374 151.449C69.2048 151.283 69.1071 146.362 68.9337 145.749C67.9929 136.648 67.0296 127.724 64.7977 118.831C64.1585 116.207 63.4997 113.588 62.8213 110.974C62.0989 108.205 61.3226 104.65 60.3126 102.004C58.8459 98.1605 56.9631 94.333 55.4134 90.5135C54.6413 88.6113 53.6075 86.767 52.9298 84.8248C52.672 84.0421 52.3331 80.4915 52.2137 79.437C51.9446 77.1043 51.7052 74.768 51.4958 72.429C51.3649 70.9958 51.163 69.4066 51.2102 67.982C51.3258 64.4971 51.5463 61.006 51.7727 57.5274C52.1985 50.9002 52.6659 44.2756 53.1752 37.6541C53.611 31.4317 54.0791 25.2116 54.5796 18.9941C54.7996 16.325 54.9958 12.5205 55.4088 10Z" fill="#232C2B"/>
16
+ <path d="M69.5374 151.449C68.9878 150.761 79.9164 66.7861 55.4088 10C54.9958 12.5205 54.7996 16.325 54.5796 18.9941C54.0791 25.2116 53.611 31.4317 53.1752 37.6541C52.6659 44.2756 52.1985 50.9002 51.7727 57.5274C51.5463 61.006 51.3258 64.4971 51.2102 67.982C51.163 69.4066 51.3649 70.9958 51.4958 72.429C51.7052 74.768 51.9446 77.1043 52.2137 79.437C52.3331 80.4915 52.672 84.0421 52.9298 84.8248C53.6075 86.767 54.6413 88.6113 55.4134 90.5135C56.9631 94.333 58.8459 98.1605 60.3126 102.004C61.3226 104.65 62.0989 108.205 62.8213 110.974C63.4997 113.588 64.1585 116.207 64.7977 118.831C67.0296 127.724 67.9929 136.648 68.9337 145.749C69.1071 146.362 69.2048 151.283 69.5374 151.449Z" fill="#32453E"/>
17
+ <path d="M71.111 89.3149C71.1548 89.2979 71.2755 41.2372 55.4089 10C54.9959 12.5205 54.7997 16.325 54.5797 18.9941C54.0792 25.2116 53.611 31.4317 53.1753 37.6541C52.666 44.2756 51.7728 57.5275 51.7728 57.5275L61.9762 71.602C61.9762 71.602 71.1686 89.2465 71.111 89.3149Z" fill="#44514D"/>
18
+ <path d="M124.343 46.5553L124.475 46.4929C124.568 46.8631 122.76 58.509 122.535 60.0715C121.681 66.0692 120.782 72.0606 119.838 78.0453C119.367 81.0735 118.899 84.1842 118.352 87.202C118.208 87.9967 117.55 89.8389 117.269 90.7016L115.342 96.6042C114.194 100.214 112.988 103.805 111.724 107.377C111.264 108.678 110.666 110.746 110.077 111.92C107.873 116.315 105.641 120.712 103.369 125.073C101.911 127.655 100.322 130.21 98.9993 132.864C96.4979 137.881 94.1558 142.985 91.8792 148.107C91.5718 148.798 91.083 150.024 90.6477 150.608C87.9166 150.927 85.1764 151.16 82.4301 151.306C80.7159 151.413 78.7184 151.561 77.0233 151.535C75.4552 151.567 73.2703 151.646 71.7354 151.519C72.4711 144.787 73.3821 138.075 74.4665 131.389C74.7749 129.453 75.0501 127.495 75.3967 125.551C76.2181 120.934 77.6119 116.329 78.796 111.787C79.3433 109.687 79.8784 107.51 80.479 105.449C81.2439 102.828 82.669 99.9769 83.7997 97.4629C87.849 88.4005 92.5282 79.629 97.804 71.2112C98.7443 69.6919 100.448 66.8413 101.496 65.4868C102.216 64.5543 104.978 62.1097 105.999 61.1841C108.189 59.219 110.408 57.2843 112.654 55.3808C113.637 54.5317 115.208 52.9617 116.196 52.3054C118.692 50.6498 121.743 47.8864 124.343 46.5553Z" fill="#25332D"/>
19
+ <path d="M71.7354 151.519C72.4711 144.787 73.3821 138.075 74.4665 131.389C74.7749 129.453 75.0501 127.495 75.3967 125.551C76.2181 120.934 77.6119 116.329 78.796 111.787C79.3433 109.687 79.8784 107.51 80.479 105.449C81.2439 102.828 82.669 99.9768 83.7997 97.4628C87.849 88.4005 92.5282 79.629 97.804 71.2111C98.7443 69.6919 100.448 66.8412 101.496 65.4867C102.216 64.5542 104.978 62.1096 105.999 61.1841C108.189 59.219 110.408 57.2842 112.654 55.3807C113.637 54.5316 115.208 52.9617 116.196 52.3053C118.692 50.6497 121.743 47.8863 124.343 46.5552C124.035 47.2584 123.101 48.699 122.67 49.3958C121.727 50.9084 120.811 52.438 119.924 53.9838C116.687 59.6298 113.593 65.356 110.647 71.157C105.93 80.3067 101.499 89.598 97.3606 99.0192C90.8351 113.604 84.9153 128.535 80.3017 143.83C80.1132 144.455 79.8804 145.222 79.7625 145.863C79.4067 147.804 78.6398 149.57 78.149 151.472C77.7852 151.471 77.3518 151.431 77.0233 151.535C75.4552 151.567 73.2703 151.646 71.7354 151.519Z" fill="#4A5E53"/>
20
+ <path d="M10 46.4442C10.9073 46.7506 12.6541 47.9953 13.4921 48.5285C21.9482 53.9085 29.4711 60.6157 37.0413 67.1303C38.0921 68.0346 39.0861 69.508 39.968 70.6088C41.0427 71.9505 42.0974 73.347 43.1503 74.712C44.7901 76.8668 46.3926 79.0491 47.9571 81.2583C48.522 82.0499 50.2665 84.42 50.6221 85.1347C51.7801 87.4648 53.1967 90.3256 54.2062 92.7367C55.5482 95.9424 57.4062 99.8028 58.5541 103.023C59.4081 105.419 60.3923 109.179 61.0474 111.698C62.0539 115.569 63.3799 120.056 64.1982 123.944C65.0181 127.84 65.7315 132.633 66.3348 136.566C66.8705 139.979 67.3463 143.401 67.7617 146.831C67.9195 148.147 68.2192 150.261 68.2535 151.539C67.1838 151.594 64.8104 151.446 63.6498 151.368C61.9077 151.252 59.3028 151.185 57.6294 150.904C56.7981 149.445 56.0114 147.571 55.1907 146.054C52.9859 141.982 50.6542 137.501 48.0998 133.662L36.7421 116.937C35.6012 115.292 34.4495 113.653 33.2869 112.022C32.7837 111.312 31.4838 109.559 31.1504 108.863C29.7391 105.922 28.3203 102.782 27.0453 99.7858L24.4782 93.7393C24.0518 92.7507 23.3051 91.2013 22.9849 90.2537C22.3378 88.3394 21.7712 86.2802 21.1559 84.341C19.075 77.7558 17.1022 71.1378 15.2383 64.4894L11.9512 53.2273C11.3289 51.1183 10.4944 48.5511 10 46.4442Z" fill="#36443F"/>
21
+ <path d="M10 46.4442C10.9073 46.7506 12.6541 47.9953 13.4921 48.5285C21.9482 53.9085 29.4711 60.6157 37.0413 67.1303C38.0921 68.0346 39.0861 69.508 39.968 70.6088C41.0427 71.9505 42.0974 73.347 43.1503 74.712C44.7901 76.8668 46.3926 79.0491 47.9571 81.2583C48.522 82.0499 50.2665 84.42 50.6221 85.1347C51.7801 87.4648 53.1967 90.3256 54.2062 92.7367C55.5481 95.9424 57.4062 99.8028 58.5541 103.023C59.4081 105.419 60.3923 109.179 61.0474 111.698C62.0539 115.569 63.3799 120.056 64.1982 123.944C65.0181 127.84 65.7315 132.633 66.3348 136.566C66.8705 139.979 67.3463 143.401 67.7617 146.831C67.9195 148.147 68.2192 150.261 68.2535 151.539C67.1838 151.594 64.8104 151.446 63.6498 151.368C61.9077 151.252 56.6963 123.578 48.6876 107.213C40.6832 90.8558 22.9849 68.2554 22.9849 68.2554L11.9512 53.2273C11.3289 51.1183 10.4944 48.5511 10 46.4442Z" fill="#26302E"/>
22
+ <path d="M130 95.8984C129.938 96.6631 124.822 107.124 124.126 108.642C122.509 112.162 121.032 115.784 119.311 119.251C117.616 122.668 115.734 126.016 113.948 129.388C113.057 131.068 112.038 133.484 110.924 134.939C109.581 136.69 99.9033 148.128 98.6204 148.848C96.9606 149.78 94.1881 150.121 92.2723 150.397C92.2118 149.802 95.5396 143.353 96.0082 142.386C100.212 133.708 105.186 125.422 110.348 117.279C110.754 116.638 112.076 115.292 112.639 114.666L116.595 110.263C120.852 105.552 125.511 100.395 130 95.8984Z" fill="#2E3F38"/>
23
+ <path d="M19.2043 108.281C19.8531 108.629 22.4064 110.637 23.1078 111.176C27.0124 114.181 30.8314 117.294 34.5603 120.511C35.8065 121.582 37.9719 123.337 39.0038 124.447C40.0238 125.544 41.5313 127.606 42.5029 128.838C46.8555 134.358 50.6067 140.307 54.0261 146.432C54.5289 147.333 56.0217 149.87 56.3073 150.76C55.1381 150.859 49.5147 149.788 48.717 148.967C46.1512 146.329 43.8151 143.351 41.2894 140.656C38.754 137.949 36.6936 134.586 34.5917 131.521C31.2726 126.714 28.0136 121.865 24.8155 116.977L21.0478 111.21C20.5004 110.368 19.638 109.129 19.2043 108.281Z" fill="#2E3F38"/>
24
+ </mask>
25
+ <g mask="url(#mask0_1_45)">
26
+ <rect x="3.62885" y="10.056" width="131.508" height="143.498" fill="url(#paint0_radial_1_45)" fill-opacity="0.53"/>
27
+ </g>
28
+ </g>
29
+ <path d="M437.92 135.573C433.005 135.573 428.499 134.378 424.403 131.989C420.376 129.6 417.167 126.391 414.778 122.364C412.457 118.336 411.296 113.796 411.296 108.745C411.296 103.761 412.457 99.2557 414.778 95.2281C417.167 91.1321 420.376 87.8895 424.403 85.5002C428.499 83.1109 433.005 81.9163 437.92 81.9163C442.903 81.9163 447.409 83.1109 451.436 85.5002C455.464 87.8895 458.673 91.1321 461.062 95.2281C463.451 99.2557 464.646 103.761 464.646 108.745C464.646 113.796 463.451 118.336 461.062 122.364C458.673 126.391 455.464 129.6 451.436 131.989C447.409 134.378 442.903 135.573 437.92 135.573ZM437.92 127.791C441.265 127.791 444.303 126.937 447.033 125.231C449.764 123.524 451.914 121.237 453.484 118.37C455.123 115.503 455.942 112.294 455.942 108.745C455.942 105.127 455.123 101.918 453.484 99.1192C451.914 96.252 449.764 93.9651 447.033 92.2585C444.303 90.5519 441.265 89.6985 437.92 89.6985C434.575 89.6985 431.537 90.5519 428.806 92.2585C426.144 93.9651 423.994 96.252 422.355 99.1192C420.785 101.918 420 105.127 420 108.745C420 112.294 420.785 115.503 422.355 118.37C423.994 121.237 426.144 123.524 428.806 125.231C431.537 126.937 434.575 127.791 437.92 127.791Z" fill="#1A1814"/>
30
+ <path d="M356.652 134.549V82.8379H365.459V88.5722C369.486 84.0667 374.811 81.8139 381.433 81.8139C385.392 81.8139 388.874 82.6672 391.877 84.3739C394.881 86.0805 397.202 88.4357 398.84 91.4394C400.547 94.4431 401.4 97.9587 401.4 101.986V134.549H392.697V103.625C392.697 99.2558 391.468 95.8084 389.01 93.2825C386.553 90.7567 383.208 89.4938 378.975 89.4938C376.04 89.4938 373.412 90.1423 371.09 91.4394C368.838 92.7364 366.96 94.5455 365.459 96.8665V134.549H356.652Z" fill="#1A1814"/>
31
+ <path d="M319.437 135.471C315.682 135.471 312.371 134.822 309.504 133.525C306.637 132.16 304.384 130.317 302.746 127.996C301.176 125.675 300.391 122.944 300.391 119.804C300.391 114.957 302.234 111.134 305.92 108.335C309.675 105.468 314.727 104.034 321.075 104.034C326.468 104.034 331.383 105.127 335.821 107.311V101.065C335.821 97.1737 334.694 94.2383 332.441 92.2585C330.189 90.2788 326.912 89.289 322.611 89.289C320.154 89.289 317.628 89.6645 315.034 90.4154C312.44 91.098 309.572 92.2244 306.432 93.7945L303.156 87.0362C306.978 85.2613 310.528 83.9643 313.805 83.1451C317.082 82.2576 320.358 81.8139 323.635 81.8139C330.257 81.8139 335.377 83.384 338.995 86.5242C342.613 89.6645 344.422 94.17 344.422 100.041V134.549H335.821V129.736C333.5 131.648 330.974 133.081 328.243 134.037C325.513 134.993 322.577 135.471 319.437 135.471ZM308.787 119.599C308.787 122.33 309.914 124.548 312.167 126.255C314.488 127.893 317.491 128.712 321.178 128.712C324.113 128.712 326.775 128.303 329.165 127.484C331.622 126.596 333.841 125.197 335.821 123.285V113.967C333.773 112.67 331.588 111.748 329.267 111.202C327.014 110.588 324.454 110.281 321.587 110.281C317.696 110.281 314.59 111.134 312.269 112.841C309.948 114.547 308.787 116.8 308.787 119.599Z" fill="#1A1814"/>
32
+ <path d="M281.753 134.549V62.8702L290.56 61.027V134.549H281.753Z" fill="#1A1814"/>
33
+ <path d="M248.028 135.471C243.044 135.471 238.504 134.31 234.409 131.989C230.381 129.6 227.172 126.391 224.783 122.364C222.394 118.268 221.199 113.694 221.199 108.642C221.199 103.727 222.326 99.2558 224.578 95.2281C226.899 91.2004 230.005 87.9919 233.897 85.6026C237.788 83.2133 242.123 82.0187 246.901 82.0187C251.611 82.0187 255.81 83.2133 259.496 85.6026C263.182 87.9919 266.118 91.2345 268.302 95.3305C270.487 99.3581 271.579 103.864 271.579 108.847V111.509H230.005C230.415 114.581 231.473 117.38 233.18 119.906C234.886 122.364 237.037 124.309 239.631 125.743C242.293 127.176 245.229 127.893 248.437 127.893C251.031 127.893 253.523 127.484 255.912 126.664C258.37 125.845 260.452 124.685 262.159 123.183L267.688 128.917C264.753 131.102 261.681 132.74 258.472 133.832C255.332 134.925 251.85 135.471 248.028 135.471ZM230.108 104.649H262.875C262.397 101.782 261.373 99.2216 259.803 96.9689C258.302 94.6478 256.424 92.8388 254.171 91.5417C251.919 90.2447 249.427 89.5962 246.696 89.5962C243.897 89.5962 241.337 90.2447 239.016 91.5417C236.695 92.7705 234.75 94.5454 233.18 96.8665C231.61 99.1192 230.586 101.713 230.108 104.649Z" fill="#1A1814"/>
34
+ <path d="M186.112 135.368C181.265 135.368 176.862 134.174 172.902 131.784C168.943 129.395 165.803 126.221 163.482 122.261C161.161 118.234 160 113.694 160 108.642C160 103.659 161.161 99.1875 163.482 95.2281C165.803 91.2004 168.943 87.9919 172.902 85.6026C176.862 83.2133 181.299 82.0187 186.214 82.0187C189.149 82.0187 191.982 82.4965 194.713 83.4522C197.444 84.408 199.97 85.7733 202.291 87.5482V62.8702L211.097 61.027V134.549H202.393V129.327C197.887 133.354 192.46 135.368 186.112 135.368ZM187.033 127.688C190.173 127.688 193.041 127.108 195.635 125.948C198.297 124.719 200.516 123.046 202.291 120.93V96.3545C200.516 94.3065 198.297 92.7022 195.635 91.5417C193.041 90.3129 190.173 89.6986 187.033 89.6986C183.62 89.6986 180.514 90.5177 177.715 92.1561C174.916 93.7945 172.697 96.0473 171.059 98.9144C169.489 101.713 168.704 104.922 168.704 108.54C168.704 112.158 169.489 115.401 171.059 118.268C172.697 121.135 174.916 123.422 177.715 125.128C180.514 126.835 183.62 127.688 187.033 127.688Z" fill="#1A1814"/>
35
+ <defs>
36
+ <filter id="filter0_n_1_45" x="10" y="10" width="120" height="141.6" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
37
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
38
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
39
+ <feTurbulence type="fractalNoise" baseFrequency="1.953538179397583 1.953538179397583" stitchTiles="stitch" numOctaves="3" result="noise" seed="9169" />
40
+ <feColorMatrix in="noise" type="luminanceToAlpha" result="alphaNoise" />
41
+ <feComponentTransfer in="alphaNoise" result="coloredNoise1">
42
+ <feFuncA type="discrete" tableValues="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "/>
43
+ </feComponentTransfer>
44
+ <feComposite operator="in" in2="shape" in="coloredNoise1" result="noise1Clipped" />
45
+ <feFlood flood-color="rgba(65, 105, 88, 0.44)" result="color1Flood" />
46
+ <feComposite operator="in" in2="noise1Clipped" in="color1Flood" result="color1" />
47
+ <feMerge result="effect1_noise_1_45">
48
+ <feMergeNode in="shape" />
49
+ <feMergeNode in="color1" />
50
+ </feMerge>
51
+ </filter>
52
+ <radialGradient id="paint0_radial_1_45" cx="0" cy="0" r="1" gradientTransform="matrix(0.329188 -58.2809 94.3962 0.524543 75.3902 142.29)" gradientUnits="userSpaceOnUse">
53
+ <stop offset="0.000404775" stop-color="#00C26F" stop-opacity="0.5"/>
54
+ <stop offset="1" stop-color="#416958" stop-opacity="0"/>
55
+ </radialGradient>
56
+ <clipPath id="clip0_1_45">
57
+ <rect width="120" height="141.6" fill="white" transform="translate(10 10)"/>
58
+ </clipPath>
59
+ </defs>
60
+ </svg>
@@ -1,4 +1,54 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round">
2
- <rect x="3.5" y="3.5" width="17" height="17" rx="3"></rect>
3
- <path d="M8 8h6a4 4 0 0 1 0 8H8z"></path>
1
+ <svg width="150" height="150" viewBox="0 0 150 150" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_4_68)">
3
+ <g filter="url(#filter0_n_4_68)">
4
+ <path d="M59.5432 0C60.2112 0.538238 61.9142 2.71406 62.4964 3.44343C66.3125 8.26046 70.0211 13.1601 73.6196 18.1389C75.7655 21.0889 78.1067 23.9031 79.5223 27.2474C80.0742 28.5525 80.7212 29.8812 81.3147 31.1732C83.5406 35.994 85.726 40.8334 87.8686 45.6909C89.0686 48.3524 90.2397 51.0261 91.3831 53.7115C91.8293 54.7571 92.7229 56.7518 92.9609 57.7556C93.1051 58.3626 93.2033 60.7002 93.2438 61.4254C93.3944 64.2059 93.5278 66.9873 93.6442 69.7695C93.7734 72.4504 93.9677 75.693 93.8662 78.337C93.8556 78.607 91.4727 83.4822 91.1856 84.09C89.7614 87.1174 88.3639 90.1575 86.9921 93.2103C86.2181 94.9204 85.4206 96.6581 84.6819 98.383C84.3466 99.1613 84.0798 100.434 83.8566 101.297L82.5894 106.157C81.8005 109.171 81.0404 112.193 80.3091 115.222C80.0785 116.164 79.85 117.109 79.6141 118.05C78.9821 120.583 78.7109 123.209 78.3629 125.796C77.8344 129.715 77.3401 133.638 76.88 137.564C76.6676 140.777 76.1936 144.11 75.9117 147.323C75.8391 148.147 76.1477 150.652 74.51 149.84C74.1577 149.664 74.0541 144.451 73.8705 143.802C72.8738 134.161 71.8534 124.707 69.4891 115.287C68.812 112.508 68.1141 109.733 67.3954 106.964C66.6302 104.031 65.8078 100.265 64.7379 97.4618C63.1843 93.3903 61.1897 89.3358 59.5481 85.2897C58.7302 83.2747 57.6351 81.321 56.9172 79.2636C56.6441 78.4344 56.285 74.6732 56.1586 73.5561C55.8735 71.0851 55.6199 68.6102 55.3981 66.1324C55.2594 64.6142 55.0456 62.9307 55.0955 61.4216C55.218 57.7299 55.4516 54.0317 55.6915 50.3469C56.1425 43.3265 56.6377 36.3089 57.1771 29.2946C57.6387 22.7031 58.1346 16.114 58.6649 9.52764C58.8979 6.70017 59.1057 2.67001 59.5432 0Z" fill="#232C2B"/>
5
+ <path d="M74.51 149.84C73.9277 149.111 85.5047 60.1548 59.5432 0C59.1057 2.67001 58.8979 6.70017 58.6649 9.52764C58.1346 16.114 57.6387 22.7031 57.1771 29.2946C56.6377 36.3089 56.1425 43.3265 55.6915 50.3469C55.4516 54.0317 55.218 57.7299 55.0955 61.4216C55.0456 62.9307 55.2594 64.6142 55.3981 66.1324C55.6199 68.6102 55.8735 71.0851 56.1586 73.5561C56.285 74.6732 56.6441 78.4344 56.9172 79.2636C57.6351 81.321 58.7302 83.2747 59.5481 85.2897C61.1897 89.3358 63.1843 93.3903 64.7379 97.4618C65.8078 100.265 66.6302 104.031 67.3954 106.964C68.1141 109.733 68.812 112.508 69.4891 115.287C71.8534 124.707 72.8738 134.161 73.8705 143.802C74.0541 144.451 74.1577 149.664 74.51 149.84Z" fill="#32453E"/>
6
+ <path d="M76.1768 84.02C76.2233 84.002 76.3512 33.0902 59.5433 0C59.1058 2.67001 58.898 6.70017 58.665 9.52764C58.1347 16.114 57.6388 22.7031 57.1772 29.2946C56.6377 36.3089 55.6915 50.3469 55.6915 50.3469L66.5002 65.2564C66.5002 65.2564 76.2379 83.9476 76.1768 84.02Z" fill="#44514D"/>
7
+ <path d="M132.567 38.7238L132.707 38.6577C132.805 39.0498 130.89 51.3866 130.652 53.0418C129.746 59.3953 128.794 65.7421 127.795 72.0818C127.295 75.2896 126.8 78.5849 126.22 81.7817C126.068 82.6236 125.37 84.5751 125.073 85.4889L123.031 91.7417C121.815 95.5654 120.539 99.37 119.199 103.153C118.712 104.532 118.079 106.722 117.454 107.966C115.12 112.622 112.755 117.279 110.349 121.899C108.804 124.634 107.121 127.341 105.72 130.152C103.07 135.467 100.589 140.874 98.1771 146.299C97.8515 147.032 97.3337 148.33 96.8726 148.949C93.9794 149.288 91.0767 149.534 88.1675 149.689C86.3516 149.802 84.2356 149.959 82.44 149.931C80.7788 149.965 78.4643 150.049 76.8384 149.914C77.6177 142.783 78.5828 135.672 79.7315 128.59C80.0582 126.539 80.3497 124.465 80.7169 122.405C81.587 117.515 83.0634 112.637 84.3178 107.825C84.8975 105.601 85.4644 103.294 86.1007 101.111C86.911 98.3344 88.4205 95.3145 89.6184 92.6513C93.9079 83.0514 98.8647 73.7595 104.453 64.8423C105.449 63.2329 107.255 60.2132 108.364 58.7784C109.127 57.7905 112.054 55.2009 113.135 54.2204C115.455 52.1388 117.806 50.0893 120.184 48.0728C121.226 47.1734 122.889 45.5103 123.937 44.815C126.58 43.0611 129.813 40.1338 132.567 38.7238Z" fill="#25332D"/>
8
+ <path d="M76.8384 149.914C77.6177 142.783 78.5828 135.672 79.7315 128.59C80.0582 126.539 80.3497 124.465 80.7169 122.405C81.587 117.515 83.0634 112.637 84.3178 107.825C84.8975 105.601 85.4644 103.294 86.1007 101.111C86.911 98.3344 88.4205 95.3144 89.6184 92.6513C93.9079 83.0513 98.8647 73.7595 104.453 64.8423C105.449 63.2329 107.255 60.2132 108.364 58.7783C109.127 57.7905 112.054 55.2009 113.135 54.2204C115.455 52.1387 117.806 50.0892 120.184 48.0728C121.226 47.1734 122.889 45.5103 123.937 44.815C126.58 43.0611 129.813 40.1338 132.567 38.7238C132.24 39.4686 131.251 40.9947 130.795 41.7329C129.796 43.3352 128.825 44.9555 127.886 46.593C124.457 52.574 121.179 58.6398 118.059 64.7849C113.061 74.4774 108.367 84.3199 103.984 94.3C97.0711 109.75 90.8002 125.567 85.9128 141.769C85.7132 142.431 85.4665 143.243 85.3416 143.923C84.9648 145.978 84.1524 147.85 83.6324 149.865C83.2471 149.864 82.788 149.821 82.44 149.931C80.7788 149.965 78.4643 150.049 76.8384 149.914Z" fill="#4A5E53"/>
9
+ <path d="M11.4407 38.6062C12.4018 38.9307 14.2522 40.2493 15.1399 40.8141C24.0977 46.5133 32.0668 53.6184 40.0861 60.5194C41.1993 61.4773 42.2523 63.0381 43.1864 64.2043C44.3249 65.6255 45.4422 67.1049 46.5575 68.5508C48.2946 70.8335 49.9922 73.1453 51.6495 75.4855C52.2479 76.3241 54.0959 78.8348 54.4725 79.5919C55.6993 82.0602 57.1998 85.0907 58.2692 87.6448C59.6908 91.0407 61.6591 95.1301 62.8751 98.5408C63.7798 101.079 64.8224 105.063 65.5163 107.731C66.5825 111.831 67.9872 116.584 68.8541 120.704C69.7225 124.83 70.4783 129.908 71.1173 134.074C71.6848 137.689 72.1889 141.315 72.6289 144.948C72.7961 146.343 73.1136 148.581 73.1499 149.935C72.0168 149.994 69.5025 149.837 68.2731 149.754C66.4277 149.632 63.6682 149.561 61.8956 149.263C61.0149 147.717 60.1816 145.732 59.3122 144.125C56.9766 139.811 54.5066 135.064 51.8007 130.998L39.7692 113.281C38.5606 111.538 37.3405 109.802 36.109 108.074C35.5759 107.322 34.199 105.465 33.8457 104.728C32.3507 101.613 30.8477 98.2856 29.4972 95.1121L26.7777 88.7069C26.326 87.6596 25.5351 86.0183 25.1959 85.0145C24.5104 82.9867 23.9102 80.8054 23.2583 78.7511C21.054 71.7752 18.9642 64.7647 16.9897 57.7218L13.5076 45.7916C12.8484 43.5576 11.9644 40.838 11.4407 38.6062Z" fill="#36443F"/>
10
+ <path d="M11.4407 38.6062C12.4018 38.9307 14.2522 40.2493 15.1399 40.8141C24.0977 46.5133 32.0668 53.6184 40.0861 60.5194C41.1993 61.4773 42.2523 63.0381 43.1864 64.2043C44.3249 65.6255 45.4422 67.1049 46.5575 68.5508C48.2946 70.8335 49.9922 73.1453 51.6495 75.4855C52.2479 76.3241 54.0959 78.8348 54.4725 79.5919C55.6993 82.0602 57.1998 85.0907 58.2692 87.6448C59.6908 91.0407 61.6591 95.1301 62.8751 98.5408C63.7798 101.079 64.8224 105.063 65.5163 107.731C66.5825 111.831 67.9872 116.584 68.8541 120.704C69.7225 124.83 70.4783 129.907 71.1173 134.074C71.6848 137.689 72.1889 141.315 72.6289 144.948C72.7961 146.343 73.1136 148.581 73.1499 149.935C72.0168 149.994 69.5025 149.837 68.2731 149.754C66.4277 149.632 60.9071 120.316 52.4233 102.98C43.944 85.6524 25.1959 61.7112 25.1959 61.7112L13.5076 45.7916C12.8484 43.5576 11.9644 40.838 11.4407 38.6062Z" fill="#26302E"/>
11
+ <path d="M138.559 90.9941C138.493 91.8041 133.074 102.885 132.336 104.494C130.624 108.222 129.059 112.06 127.237 115.732C125.441 119.351 123.447 122.899 121.555 126.47C120.611 128.25 119.532 130.81 118.351 132.35C116.929 134.206 106.677 146.321 105.318 147.085C103.56 148.072 100.623 148.433 98.5935 148.725C98.5295 148.095 102.055 141.264 102.551 140.239C107.004 131.047 112.273 122.269 117.742 113.643C118.172 112.964 119.572 111.538 120.168 110.875L124.36 106.21C128.869 101.22 133.804 95.757 138.559 90.9941Z" fill="#2E3F38"/>
12
+ <path d="M21.191 104.112C21.8782 104.48 24.5831 106.607 25.3261 107.178C29.4623 110.361 33.5078 113.659 37.4579 117.066C38.7781 118.201 41.0719 120.061 42.165 121.236C43.2456 122.398 44.8425 124.582 45.8717 125.888C50.4825 131.735 54.4562 138.037 58.0785 144.526C58.6111 145.48 60.1924 148.167 60.495 149.111C59.2565 149.216 53.2995 148.08 52.4544 147.211C49.7365 144.417 47.2617 141.262 44.5863 138.406C41.9005 135.539 39.7178 131.977 37.4912 128.73C33.9752 123.638 30.5228 118.501 27.1351 113.323L23.1439 107.214C22.5639 106.322 21.6504 105.01 21.191 104.112Z" fill="#2E3F38"/>
13
+ </g>
14
+ <mask id="mask0_4_68" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="11" y="0" width="128" height="150">
15
+ <path d="M59.5432 0C60.2112 0.538238 61.9142 2.71406 62.4964 3.44343C66.3125 8.26046 70.0211 13.1601 73.6196 18.1389C75.7655 21.0889 78.1067 23.9031 79.5223 27.2474C80.0742 28.5525 80.7212 29.8812 81.3147 31.1732C83.5406 35.994 85.726 40.8334 87.8686 45.6909C89.0686 48.3524 90.2397 51.0261 91.3831 53.7115C91.8293 54.7571 92.7229 56.7518 92.9609 57.7556C93.1051 58.3626 93.2033 60.7002 93.2438 61.4254C93.3944 64.2059 93.5278 66.9873 93.6442 69.7695C93.7734 72.4504 93.9677 75.693 93.8662 78.337C93.8556 78.607 91.4727 83.4822 91.1856 84.09C89.7614 87.1174 88.3639 90.1575 86.9921 93.2103C86.2181 94.9204 85.4206 96.6581 84.6819 98.383C84.3466 99.1613 84.0798 100.434 83.8566 101.297L82.5894 106.157C81.8005 109.171 81.0404 112.193 80.3091 115.222C80.0785 116.164 79.85 117.109 79.6141 118.05C78.9821 120.583 78.7109 123.209 78.3629 125.796C77.8344 129.715 77.3401 133.638 76.88 137.564C76.6676 140.777 76.1936 144.11 75.9117 147.323C75.8391 148.147 76.1477 150.652 74.51 149.84C74.1577 149.664 74.0541 144.451 73.8705 143.802C72.8738 134.161 71.8534 124.707 69.4891 115.287C68.812 112.508 68.1141 109.733 67.3954 106.964C66.6302 104.031 65.8078 100.265 64.7379 97.4618C63.1843 93.3903 61.1897 89.3358 59.5481 85.2897C58.7302 83.2747 57.6351 81.321 56.9172 79.2636C56.6441 78.4344 56.285 74.6732 56.1586 73.5561C55.8735 71.0851 55.6199 68.6102 55.3981 66.1324C55.2594 64.6142 55.0456 62.9307 55.0955 61.4216C55.218 57.7299 55.4516 54.0317 55.6915 50.3469C56.1425 43.3265 56.6377 36.3089 57.1771 29.2946C57.6387 22.7031 58.1346 16.114 58.6649 9.52764C58.8979 6.70017 59.1057 2.67001 59.5432 0Z" fill="#232C2B"/>
16
+ <path d="M74.51 149.84C73.9277 149.111 85.5047 60.1548 59.5432 0C59.1057 2.67001 58.8979 6.70017 58.6649 9.52764C58.1346 16.114 57.6387 22.7031 57.1771 29.2946C56.6377 36.3089 56.1425 43.3265 55.6915 50.3469C55.4516 54.0317 55.218 57.7299 55.0955 61.4216C55.0456 62.9307 55.2594 64.6142 55.3981 66.1324C55.6199 68.6102 55.8735 71.0851 56.1586 73.5561C56.285 74.6732 56.6441 78.4344 56.9172 79.2636C57.6351 81.321 58.7302 83.2747 59.5481 85.2897C61.1897 89.3358 63.1843 93.3903 64.7379 97.4618C65.8078 100.265 66.6302 104.031 67.3954 106.964C68.1141 109.733 68.812 112.508 69.4891 115.287C71.8534 124.707 72.8738 134.161 73.8705 143.802C74.0541 144.451 74.1577 149.664 74.51 149.84Z" fill="#32453E"/>
17
+ <path d="M76.1768 84.02C76.2233 84.002 76.3512 33.0902 59.5433 0C59.1058 2.67001 58.898 6.70017 58.665 9.52764C58.1347 16.114 57.6388 22.7031 57.1772 29.2946C56.6377 36.3089 55.6915 50.3469 55.6915 50.3469L66.5002 65.2564C66.5002 65.2564 76.2379 83.9476 76.1768 84.02Z" fill="#44514D"/>
18
+ <path d="M132.567 38.7238L132.707 38.6577C132.805 39.0498 130.89 51.3866 130.652 53.0418C129.746 59.3953 128.794 65.7421 127.795 72.0818C127.295 75.2896 126.8 78.5849 126.22 81.7817C126.068 82.6236 125.37 84.5751 125.073 85.4889L123.031 91.7417C121.815 95.5654 120.539 99.37 119.199 103.153C118.712 104.532 118.079 106.722 117.454 107.966C115.12 112.622 112.755 117.279 110.349 121.899C108.804 124.634 107.121 127.341 105.72 130.152C103.07 135.467 100.589 140.874 98.1771 146.299C97.8515 147.032 97.3337 148.33 96.8726 148.949C93.9794 149.288 91.0767 149.534 88.1675 149.689C86.3516 149.802 84.2356 149.959 82.44 149.931C80.7788 149.965 78.4643 150.049 76.8384 149.914C77.6177 142.783 78.5828 135.672 79.7315 128.59C80.0582 126.539 80.3497 124.465 80.7169 122.405C81.587 117.515 83.0634 112.637 84.3178 107.825C84.8975 105.601 85.4644 103.294 86.1007 101.111C86.911 98.3344 88.4205 95.3145 89.6184 92.6513C93.9079 83.0514 98.8647 73.7595 104.453 64.8423C105.449 63.2329 107.255 60.2132 108.364 58.7784C109.127 57.7905 112.054 55.2009 113.135 54.2204C115.455 52.1388 117.806 50.0893 120.184 48.0728C121.226 47.1734 122.889 45.5103 123.937 44.815C126.58 43.0611 129.813 40.1338 132.567 38.7238Z" fill="#25332D"/>
19
+ <path d="M76.8384 149.914C77.6177 142.783 78.5828 135.672 79.7315 128.59C80.0582 126.539 80.3497 124.465 80.7169 122.405C81.587 117.515 83.0634 112.637 84.3178 107.825C84.8975 105.601 85.4644 103.294 86.1007 101.111C86.911 98.3344 88.4205 95.3144 89.6184 92.6513C93.9079 83.0513 98.8647 73.7595 104.453 64.8423C105.449 63.2329 107.255 60.2132 108.364 58.7783C109.127 57.7905 112.054 55.2009 113.135 54.2204C115.455 52.1387 117.806 50.0892 120.184 48.0728C121.226 47.1734 122.889 45.5103 123.937 44.815C126.58 43.0611 129.813 40.1338 132.567 38.7238C132.24 39.4686 131.251 40.9947 130.795 41.7329C129.796 43.3352 128.825 44.9555 127.886 46.593C124.457 52.574 121.179 58.6398 118.059 64.7849C113.061 74.4774 108.367 84.3199 103.984 94.3C97.0711 109.75 90.8002 125.567 85.9128 141.769C85.7132 142.431 85.4665 143.243 85.3416 143.923C84.9648 145.978 84.1524 147.85 83.6324 149.865C83.2471 149.864 82.788 149.821 82.44 149.931C80.7788 149.965 78.4643 150.049 76.8384 149.914Z" fill="#4A5E53"/>
20
+ <path d="M11.4407 38.6062C12.4018 38.9307 14.2522 40.2493 15.1399 40.8141C24.0977 46.5133 32.0668 53.6184 40.0861 60.5194C41.1993 61.4773 42.2523 63.0381 43.1864 64.2043C44.3249 65.6255 45.4422 67.1049 46.5575 68.5508C48.2946 70.8335 49.9922 73.1453 51.6495 75.4855C52.2479 76.3241 54.0959 78.8348 54.4725 79.5919C55.6993 82.0602 57.1998 85.0907 58.2692 87.6448C59.6908 91.0407 61.6591 95.1301 62.8751 98.5408C63.7798 101.079 64.8224 105.063 65.5163 107.731C66.5825 111.831 67.9872 116.584 68.8541 120.704C69.7225 124.83 70.4783 129.908 71.1173 134.074C71.6848 137.689 72.1889 141.315 72.6289 144.948C72.7961 146.343 73.1136 148.581 73.1499 149.935C72.0168 149.994 69.5025 149.837 68.2731 149.754C66.4277 149.632 63.6682 149.561 61.8956 149.263C61.0149 147.717 60.1816 145.732 59.3122 144.125C56.9766 139.811 54.5066 135.064 51.8007 130.998L39.7692 113.281C38.5606 111.538 37.3405 109.802 36.109 108.074C35.5759 107.322 34.199 105.465 33.8457 104.728C32.3507 101.613 30.8477 98.2856 29.4972 95.1121L26.7777 88.7069C26.326 87.6596 25.5351 86.0183 25.1959 85.0145C24.5104 82.9867 23.9102 80.8054 23.2583 78.7511C21.054 71.7752 18.9642 64.7647 16.9897 57.7218L13.5076 45.7916C12.8484 43.5576 11.9644 40.838 11.4407 38.6062Z" fill="#36443F"/>
21
+ <path d="M11.4407 38.6062C12.4018 38.9307 14.2522 40.2493 15.1399 40.8141C24.0977 46.5133 32.0668 53.6184 40.0861 60.5194C41.1993 61.4773 42.2523 63.0381 43.1864 64.2043C44.3249 65.6255 45.4422 67.1049 46.5575 68.5508C48.2946 70.8335 49.9922 73.1453 51.6495 75.4855C52.2479 76.3241 54.0959 78.8348 54.4725 79.5919C55.6993 82.0602 57.1998 85.0907 58.2692 87.6448C59.6908 91.0407 61.6591 95.1301 62.8751 98.5408C63.7798 101.079 64.8224 105.063 65.5163 107.731C66.5825 111.831 67.9872 116.584 68.8541 120.704C69.7225 124.83 70.4783 129.907 71.1173 134.074C71.6848 137.689 72.1889 141.315 72.6289 144.948C72.7961 146.343 73.1136 148.581 73.1499 149.935C72.0168 149.994 69.5025 149.837 68.2731 149.754C66.4277 149.632 60.9071 120.316 52.4233 102.98C43.944 85.6524 25.1959 61.7112 25.1959 61.7112L13.5076 45.7916C12.8484 43.5576 11.9644 40.838 11.4407 38.6062Z" fill="#26302E"/>
22
+ <path d="M138.559 90.9941C138.493 91.8041 133.074 102.885 132.336 104.494C130.624 108.222 129.059 112.06 127.237 115.732C125.441 119.351 123.447 122.899 121.555 126.47C120.611 128.25 119.532 130.81 118.351 132.35C116.929 134.206 106.677 146.321 105.318 147.085C103.56 148.072 100.623 148.433 98.5935 148.725C98.5295 148.095 102.055 141.264 102.551 140.239C107.004 131.047 112.273 122.269 117.742 113.643C118.172 112.964 119.572 111.538 120.168 110.875L124.36 106.21C128.869 101.22 133.804 95.757 138.559 90.9941Z" fill="#2E3F38"/>
23
+ <path d="M21.191 104.112C21.8782 104.48 24.5831 106.607 25.3261 107.178C29.4623 110.361 33.5078 113.659 37.4579 117.066C38.7781 118.201 41.0719 120.061 42.165 121.236C43.2456 122.398 44.8425 124.582 45.8717 125.888C50.4825 131.735 54.4562 138.037 58.0785 144.526C58.6111 145.48 60.1924 148.167 60.495 149.111C59.2565 149.216 53.2995 148.08 52.4544 147.211C49.7365 144.417 47.2617 141.262 44.5863 138.406C41.9005 135.539 39.7178 131.977 37.4912 128.73C33.9752 123.638 30.5228 118.501 27.1351 113.323L23.1439 107.214C22.5639 106.322 21.6504 105.01 21.191 104.112Z" fill="#2E3F38"/>
24
+ </mask>
25
+ <g mask="url(#mask0_4_68)">
26
+ <rect x="4.69159" y="0.0593872" width="139.309" height="152.011" fill="url(#paint0_radial_4_68)" fill-opacity="0.53"/>
27
+ </g>
28
+ </g>
29
+ <defs>
30
+ <filter id="filter0_n_4_68" x="11.4407" y="0" width="127.119" height="150" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
31
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
32
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
33
+ <feTurbulence type="fractalNoise" baseFrequency="1.8441401720046997 1.8441401720046997" stitchTiles="stitch" numOctaves="3" result="noise" seed="9169" />
34
+ <feColorMatrix in="noise" type="luminanceToAlpha" result="alphaNoise" />
35
+ <feComponentTransfer in="alphaNoise" result="coloredNoise1">
36
+ <feFuncA type="discrete" tableValues="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 "/>
37
+ </feComponentTransfer>
38
+ <feComposite operator="in" in2="shape" in="coloredNoise1" result="noise1Clipped" />
39
+ <feFlood flood-color="rgba(65, 105, 88, 0.44)" result="color1Flood" />
40
+ <feComposite operator="in" in2="noise1Clipped" in="color1Flood" result="color1" />
41
+ <feMerge result="effect1_noise_4_68">
42
+ <feMergeNode in="shape" />
43
+ <feMergeNode in="color1" />
44
+ </feMerge>
45
+ </filter>
46
+ <radialGradient id="paint0_radial_4_68" cx="0" cy="0" r="1" gradientTransform="matrix(0.348717 -61.7383 99.996 0.55566 80.7099 140.138)" gradientUnits="userSpaceOnUse">
47
+ <stop offset="0.000404775" stop-color="#00C26F" stop-opacity="0.5"/>
48
+ <stop offset="1" stop-color="#416958" stop-opacity="0"/>
49
+ </radialGradient>
50
+ <clipPath id="clip0_4_68">
51
+ <rect width="127.119" height="150" fill="white" transform="translate(11.4407)"/>
52
+ </clipPath>
53
+ </defs>
4
54
  </svg>
@@ -4,6 +4,9 @@
4
4
  <meta charset="utf-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1" />
6
6
  <title>Delano Viewer</title>
7
+ <link rel="icon" type="image/png" sizes="300x300" href="/favicon.png" />
8
+ <link rel="shortcut icon" type="image/png" href="/favicon.png" />
9
+ <link rel="apple-touch-icon" href="/favicon.png" />
7
10
  <link rel="preconnect" href="https://fonts.googleapis.com">
8
11
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9
12
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">