@richpods/tiny-geojson-tool 0.2.0 → 0.3.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.
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ref as I, computed as z, defineComponent as
|
|
2
|
-
import R, { LngLatBounds as
|
|
3
|
-
import { Protocol as
|
|
4
|
-
const
|
|
1
|
+
import { ref as I, computed as z, defineComponent as G, watch as Z, onMounted as n1, onUnmounted as v1, openBlock as h, createElementBlock as y, Fragment as $, renderList as i1, createElementVNode as n, normalizeClass as j, createStaticVNode as f1, createCommentVNode as F, normalizeStyle as J, toDisplayString as f, createTextVNode as P, withDirectives as F1, vModelText as I1, nextTick as $1, createVNode as K, useModel as z1, mergeModels as H1 } from "vue";
|
|
2
|
+
import R, { LngLatBounds as h1, Popup as y1 } from "maplibre-gl";
|
|
3
|
+
import { Protocol as w1 } from "pmtiles";
|
|
4
|
+
const R1 = {
|
|
5
5
|
toolSelect: "Select",
|
|
6
6
|
toolPoint: "Point",
|
|
7
7
|
toolMarker: "Marker",
|
|
@@ -40,7 +40,7 @@ const z1 = {
|
|
|
40
40
|
layerMarker: "Marker",
|
|
41
41
|
layerLine: "Line",
|
|
42
42
|
layerPolygon: "Polygon"
|
|
43
|
-
},
|
|
43
|
+
}, x1 = 10, b1 = [0, 20], k1 = 2, D = {
|
|
44
44
|
fill: "#555555",
|
|
45
45
|
fillOpacity: 0.6,
|
|
46
46
|
stroke: "#555555",
|
|
@@ -53,67 +53,67 @@ const z1 = {
|
|
|
53
53
|
small: 0.66,
|
|
54
54
|
medium: 1,
|
|
55
55
|
large: 1.5
|
|
56
|
-
},
|
|
56
|
+
}, E1 = {
|
|
57
57
|
fill: "editor-fill",
|
|
58
58
|
line: "editor-line",
|
|
59
59
|
points: "editor-points",
|
|
60
60
|
symbols: "editor-symbols",
|
|
61
61
|
labels: "editor-labels",
|
|
62
62
|
vertices: "editor-vertices"
|
|
63
|
-
}, H = "editor-geojson",
|
|
64
|
-
function
|
|
63
|
+
}, H = "editor-geojson", p1 = "drawing-temp", g1 = "drawing-temp-line", m1 = "drawing-temp-vertices", e1 = [0, 0, 0, 0];
|
|
64
|
+
function M1(e) {
|
|
65
65
|
if (!e) return null;
|
|
66
|
-
const
|
|
67
|
-
if (
|
|
66
|
+
const d = U1(e.bbox);
|
|
67
|
+
if (d) return d;
|
|
68
68
|
if (e.features.length === 0) return null;
|
|
69
|
-
const
|
|
70
|
-
let
|
|
71
|
-
for (const
|
|
72
|
-
const
|
|
73
|
-
if (
|
|
74
|
-
if (
|
|
75
|
-
const [
|
|
76
|
-
a1([
|
|
69
|
+
const r = new h1();
|
|
70
|
+
let c = !1;
|
|
71
|
+
for (const o of e.features) {
|
|
72
|
+
const m = o.geometry;
|
|
73
|
+
if (m) {
|
|
74
|
+
if (m.type === "Point") {
|
|
75
|
+
const [a, u] = m.coordinates;
|
|
76
|
+
a1([a, u]) && (r.extend([a, u]), c = !0);
|
|
77
77
|
continue;
|
|
78
78
|
}
|
|
79
|
-
if (
|
|
80
|
-
for (const [
|
|
81
|
-
a1([
|
|
79
|
+
if (m.type === "LineString") {
|
|
80
|
+
for (const [a, u] of m.coordinates)
|
|
81
|
+
a1([a, u]) && (r.extend([a, u]), c = !0);
|
|
82
82
|
continue;
|
|
83
83
|
}
|
|
84
|
-
if (
|
|
85
|
-
for (const
|
|
86
|
-
for (const [
|
|
87
|
-
a1([
|
|
84
|
+
if (m.type === "Polygon")
|
|
85
|
+
for (const a of m.coordinates)
|
|
86
|
+
for (const [u, v] of a)
|
|
87
|
+
a1([u, v]) && (r.extend([u, v]), c = !0);
|
|
88
88
|
}
|
|
89
89
|
}
|
|
90
|
-
return !
|
|
90
|
+
return !c || r.isEmpty() ? null : r;
|
|
91
91
|
}
|
|
92
|
-
function l1(e = e1,
|
|
93
|
-
const [
|
|
92
|
+
function l1(e = e1, d) {
|
|
93
|
+
const [r, c, o, m] = O1(e);
|
|
94
94
|
return {
|
|
95
|
-
top:
|
|
96
|
-
right:
|
|
97
|
-
bottom:
|
|
98
|
-
left:
|
|
95
|
+
top: N(r) + N(d?.top),
|
|
96
|
+
right: N(c) + N(d?.right),
|
|
97
|
+
bottom: N(o) + N(d?.bottom),
|
|
98
|
+
left: N(m) + N(d?.left)
|
|
99
99
|
};
|
|
100
100
|
}
|
|
101
|
-
function
|
|
101
|
+
function U1(e) {
|
|
102
102
|
if (!e || e.length !== 4 && e.length !== 6) return null;
|
|
103
|
-
const
|
|
104
|
-
return !Number.isFinite(
|
|
103
|
+
const d = e[0], r = e[1], c = e.length === 6 ? e[3] : e[2], o = e.length === 6 ? e[4] : e[3];
|
|
104
|
+
return !Number.isFinite(d) || !Number.isFinite(r) || !Number.isFinite(c) || !Number.isFinite(o) ? null : new h1([d, r], [c, o]);
|
|
105
105
|
}
|
|
106
106
|
function a1(e) {
|
|
107
107
|
return Number.isFinite(e[0]) && Number.isFinite(e[1]);
|
|
108
108
|
}
|
|
109
|
-
function
|
|
109
|
+
function O1(e) {
|
|
110
110
|
return Array.isArray(e) && e.length === 4 ? e : e1;
|
|
111
111
|
}
|
|
112
|
-
function
|
|
112
|
+
function N(e) {
|
|
113
113
|
return e === void 0 || !Number.isFinite(e) ? 0 : Math.max(0, e);
|
|
114
114
|
}
|
|
115
|
-
function
|
|
116
|
-
function
|
|
115
|
+
function C1(e) {
|
|
116
|
+
function d() {
|
|
117
117
|
return {
|
|
118
118
|
version: 8,
|
|
119
119
|
name: "Shortbread PMTiles",
|
|
@@ -254,62 +254,62 @@ function M1(e) {
|
|
|
254
254
|
]
|
|
255
255
|
};
|
|
256
256
|
}
|
|
257
|
-
return { getStyle:
|
|
257
|
+
return { getStyle: d };
|
|
258
258
|
}
|
|
259
|
-
const
|
|
260
|
-
function U(e,
|
|
259
|
+
const L1 = ["coalesce", ["get", "marker-size"], D.markerSize];
|
|
260
|
+
function U(e, d, r) {
|
|
261
261
|
return [
|
|
262
262
|
"match",
|
|
263
|
-
|
|
263
|
+
L1,
|
|
264
264
|
"small",
|
|
265
265
|
["literal", e],
|
|
266
266
|
"large",
|
|
267
|
-
["literal",
|
|
268
|
-
["literal",
|
|
267
|
+
["literal", r],
|
|
268
|
+
["literal", d]
|
|
269
269
|
];
|
|
270
270
|
}
|
|
271
|
-
function Y(e,
|
|
272
|
-
const
|
|
273
|
-
return
|
|
271
|
+
function Y(e, d) {
|
|
272
|
+
const r = ["==", ["get", "id"], e];
|
|
273
|
+
return d === "Polygon" ? [
|
|
274
274
|
{
|
|
275
275
|
id: `editor-fill-${e}`,
|
|
276
276
|
type: "fill",
|
|
277
277
|
source: H,
|
|
278
|
-
filter:
|
|
278
|
+
filter: r,
|
|
279
279
|
paint: {
|
|
280
|
-
"fill-color": ["coalesce", ["get", "fill"],
|
|
281
|
-
"fill-opacity": ["coalesce", ["get", "fill-opacity"],
|
|
280
|
+
"fill-color": ["coalesce", ["get", "fill"], D.fill],
|
|
281
|
+
"fill-opacity": ["coalesce", ["get", "fill-opacity"], D.fillOpacity]
|
|
282
282
|
}
|
|
283
283
|
},
|
|
284
284
|
{
|
|
285
285
|
id: `editor-line-${e}`,
|
|
286
286
|
type: "line",
|
|
287
287
|
source: H,
|
|
288
|
-
filter:
|
|
288
|
+
filter: r,
|
|
289
289
|
paint: {
|
|
290
|
-
"line-color": ["coalesce", ["get", "stroke"],
|
|
290
|
+
"line-color": ["coalesce", ["get", "stroke"], D.stroke],
|
|
291
291
|
"line-opacity": [
|
|
292
292
|
"coalesce",
|
|
293
293
|
["get", "stroke-opacity"],
|
|
294
|
-
|
|
294
|
+
D.strokeOpacity
|
|
295
295
|
],
|
|
296
|
-
"line-width": ["coalesce", ["get", "stroke-width"],
|
|
296
|
+
"line-width": ["coalesce", ["get", "stroke-width"], D.strokeWidth]
|
|
297
297
|
}
|
|
298
298
|
}
|
|
299
|
-
] :
|
|
299
|
+
] : d === "LineString" ? [
|
|
300
300
|
{
|
|
301
301
|
id: `editor-line-${e}`,
|
|
302
302
|
type: "line",
|
|
303
303
|
source: H,
|
|
304
|
-
filter:
|
|
304
|
+
filter: r,
|
|
305
305
|
paint: {
|
|
306
|
-
"line-color": ["coalesce", ["get", "stroke"],
|
|
306
|
+
"line-color": ["coalesce", ["get", "stroke"], D.stroke],
|
|
307
307
|
"line-opacity": [
|
|
308
308
|
"coalesce",
|
|
309
309
|
["get", "stroke-opacity"],
|
|
310
|
-
|
|
310
|
+
D.strokeOpacity
|
|
311
311
|
],
|
|
312
|
-
"line-width": ["coalesce", ["get", "stroke-width"],
|
|
312
|
+
"line-width": ["coalesce", ["get", "stroke-width"], D.strokeWidth]
|
|
313
313
|
}
|
|
314
314
|
}
|
|
315
315
|
] : [
|
|
@@ -317,11 +317,11 @@ function Y(e, l) {
|
|
|
317
317
|
id: `editor-points-${e}`,
|
|
318
318
|
type: "circle",
|
|
319
319
|
source: H,
|
|
320
|
-
filter: ["all",
|
|
320
|
+
filter: ["all", r, ["!", ["has", "marker-symbol"]]],
|
|
321
321
|
paint: {
|
|
322
|
-
"circle-radius": ["coalesce", ["get", "circle-radius"],
|
|
323
|
-
"circle-color": ["coalesce", ["get", "fill"],
|
|
324
|
-
"circle-opacity": ["coalesce", ["get", "fill-opacity"],
|
|
322
|
+
"circle-radius": ["coalesce", ["get", "circle-radius"], D.circleRadius],
|
|
323
|
+
"circle-color": ["coalesce", ["get", "fill"], D.fill],
|
|
324
|
+
"circle-opacity": ["coalesce", ["get", "fill-opacity"], D.fillOpacity],
|
|
325
325
|
"circle-stroke-width": ["coalesce", ["get", "stroke-width"], 2],
|
|
326
326
|
"circle-stroke-color": ["coalesce", ["get", "stroke"], "#ffffff"],
|
|
327
327
|
"circle-stroke-opacity": ["coalesce", ["get", "stroke-opacity"], 1]
|
|
@@ -331,12 +331,12 @@ function Y(e, l) {
|
|
|
331
331
|
id: `editor-symbols-${e}`,
|
|
332
332
|
type: "symbol",
|
|
333
333
|
source: H,
|
|
334
|
-
filter: ["all",
|
|
334
|
+
filter: ["all", r, ["has", "marker-symbol"]],
|
|
335
335
|
layout: {
|
|
336
336
|
"icon-image": ["get", "marker-symbol"],
|
|
337
337
|
"icon-size": [
|
|
338
338
|
"match",
|
|
339
|
-
|
|
339
|
+
L1,
|
|
340
340
|
"small",
|
|
341
341
|
t1.small,
|
|
342
342
|
"large",
|
|
@@ -347,14 +347,14 @@ function Y(e, l) {
|
|
|
347
347
|
"icon-anchor": "bottom"
|
|
348
348
|
},
|
|
349
349
|
paint: {
|
|
350
|
-
"icon-color": ["coalesce", ["get", "marker-color"],
|
|
350
|
+
"icon-color": ["coalesce", ["get", "marker-color"], D.markerColor]
|
|
351
351
|
}
|
|
352
352
|
},
|
|
353
353
|
{
|
|
354
354
|
id: `editor-labels-${e}`,
|
|
355
355
|
type: "symbol",
|
|
356
356
|
source: H,
|
|
357
|
-
filter: ["all",
|
|
357
|
+
filter: ["all", r, ["has", "marker-label"]],
|
|
358
358
|
layout: {
|
|
359
359
|
"text-field": ["get", "marker-label"],
|
|
360
360
|
"text-size": 13,
|
|
@@ -427,22 +427,22 @@ function Y(e, l) {
|
|
|
427
427
|
}
|
|
428
428
|
];
|
|
429
429
|
}
|
|
430
|
-
function o1(e,
|
|
431
|
-
return
|
|
430
|
+
function o1(e, d) {
|
|
431
|
+
return d === "Polygon" ? [`editor-fill-${e}`, `editor-line-${e}`] : d === "LineString" ? [`editor-line-${e}`] : [
|
|
432
432
|
`editor-points-${e}`,
|
|
433
433
|
`editor-symbols-${e}`,
|
|
434
434
|
`editor-labels-${e}`
|
|
435
435
|
];
|
|
436
436
|
}
|
|
437
437
|
function X(e) {
|
|
438
|
-
const
|
|
439
|
-
for (const
|
|
440
|
-
|
|
441
|
-
return
|
|
438
|
+
const d = [];
|
|
439
|
+
for (const r of e)
|
|
440
|
+
r.geomType === "Polygon" ? d.push(`editor-fill-${r.id}`, `editor-line-${r.id}`) : r.geomType === "LineString" ? d.push(`editor-line-${r.id}`) : d.push(`editor-points-${r.id}`, `editor-symbols-${r.id}`);
|
|
441
|
+
return d;
|
|
442
442
|
}
|
|
443
|
-
function
|
|
443
|
+
function N1(e) {
|
|
444
444
|
return {
|
|
445
|
-
id:
|
|
445
|
+
id: E1.vertices,
|
|
446
446
|
type: "circle",
|
|
447
447
|
source: H,
|
|
448
448
|
filter: ["==", "id", e ?? ""],
|
|
@@ -452,38 +452,38 @@ function U1(e) {
|
|
|
452
452
|
}
|
|
453
453
|
};
|
|
454
454
|
}
|
|
455
|
-
function
|
|
456
|
-
const
|
|
457
|
-
for (const
|
|
458
|
-
if (!
|
|
459
|
-
for (const
|
|
455
|
+
function _1(e, d, r, c) {
|
|
456
|
+
const o = new Set(r.map((a) => a.id)), m = new Map(d.map((a) => [a.id, a.geomType]));
|
|
457
|
+
for (const a of d)
|
|
458
|
+
if (!o.has(a.id))
|
|
459
|
+
for (const u of o1(a.id, a.geomType))
|
|
460
|
+
e.getLayer(u) && e.removeLayer(u);
|
|
461
|
+
for (const a of r) {
|
|
462
|
+
const u = m.get(a.id);
|
|
463
|
+
if (u === void 0)
|
|
464
|
+
for (const v of Y(a.id, a.geomType))
|
|
465
|
+
e.addLayer(v, c);
|
|
466
|
+
else if (u !== a.geomType) {
|
|
467
|
+
for (const v of o1(a.id, u))
|
|
460
468
|
e.getLayer(v) && e.removeLayer(v);
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
if (v === void 0)
|
|
464
|
-
for (const y of Y(s.id, s.geomType))
|
|
465
|
-
e.addLayer(y, r);
|
|
466
|
-
else if (v !== s.geomType) {
|
|
467
|
-
for (const y of o1(s.id, v))
|
|
468
|
-
e.getLayer(y) && e.removeLayer(y);
|
|
469
|
-
for (const y of Y(s.id, s.geomType))
|
|
470
|
-
e.addLayer(y, r);
|
|
469
|
+
for (const v of Y(a.id, a.geomType))
|
|
470
|
+
e.addLayer(v, c);
|
|
471
471
|
}
|
|
472
472
|
}
|
|
473
|
-
for (let
|
|
474
|
-
const
|
|
475
|
-
for (const
|
|
476
|
-
e.moveLayer(
|
|
473
|
+
for (let a = r.length - 1; a >= 0; a--) {
|
|
474
|
+
const u = r[a];
|
|
475
|
+
for (const v of o1(u.id, u.geomType))
|
|
476
|
+
e.moveLayer(v, c);
|
|
477
477
|
}
|
|
478
478
|
}
|
|
479
|
-
function
|
|
479
|
+
function Z1() {
|
|
480
480
|
return [
|
|
481
481
|
{
|
|
482
482
|
id: "drawing-temp-fill",
|
|
483
483
|
type: "fill",
|
|
484
484
|
source: "drawing-temp",
|
|
485
485
|
paint: {
|
|
486
|
-
"fill-color":
|
|
486
|
+
"fill-color": D.fill,
|
|
487
487
|
"fill-opacity": 0.15
|
|
488
488
|
}
|
|
489
489
|
},
|
|
@@ -492,7 +492,7 @@ function O1() {
|
|
|
492
492
|
type: "line",
|
|
493
493
|
source: "drawing-temp-line",
|
|
494
494
|
paint: {
|
|
495
|
-
"line-color":
|
|
495
|
+
"line-color": D.stroke,
|
|
496
496
|
"line-width": 2,
|
|
497
497
|
"line-dasharray": [3, 3]
|
|
498
498
|
}
|
|
@@ -505,72 +505,72 @@ function O1() {
|
|
|
505
505
|
"circle-radius": 5,
|
|
506
506
|
"circle-color": "#ffffff",
|
|
507
507
|
"circle-stroke-width": 2,
|
|
508
|
-
"circle-stroke-color":
|
|
508
|
+
"circle-stroke-color": D.stroke
|
|
509
509
|
}
|
|
510
510
|
}
|
|
511
511
|
];
|
|
512
512
|
}
|
|
513
|
-
const N1 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M186.62 464H160a16 16 0 0 1-14.57-22.6l64.46-142.25L113.1 297l-35.3 42.77C71.07 348.23 65.7 352 52 352H34.08a17.66 17.66 0 0 1-14.7-7.06c-2.38-3.21-4.72-8.65-2.44-16.41l19.82-71c.15-.53.33-1.06.53-1.58a.4.4 0 0 0 0-.15 15 15 0 0 1-.53-1.59l-19.84-71.45c-2.15-7.61.2-12.93 2.56-16.06a16.83 16.83 0 0 1 13.6-6.7H52c10.23 0 20.16 4.59 26 12l34.57 42.05 97.32-1.44-64.44-142A16 16 0 0 1 160 48h26.91a25 25 0 0 1 19.35 9.8l125.05 152 57.77-1.52c4.23-.23 15.95-.31 18.66-.31C463 208 496 225.94 496 256c0 9.46-3.78 27-29.07 38.16-14.93 6.6-34.85 9.94-59.21 9.94-2.68 0-14.37-.08-18.66-.31l-57.76-1.54-125.36 152a25 25 0 0 1-19.32 9.75'/></svg>", Z1 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M256 48C141.31 48 48 141.31 48 256s93.31 208 208 208 208-93.31 208-208S370.69 48 256 48m0 319.91a20 20 0 1 1 20-20 20 20 0 0 1-20 20m21.72-201.15-5.74 122a16 16 0 0 1-32 0l-5.74-121.94v-.05a21.74 21.74 0 1 1 43.44 0Z'/></svg>", q1 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M424.11 192H360L268.8 70.4a16 16 0 0 0-25.6 0L152 192H87.89a32.57 32.57 0 0 0-32.62 32.44 30.3 30.3 0 0 0 1.31 9l46.27 163.14a50.72 50.72 0 0 0 48.84 36.91h208.62a51.21 51.21 0 0 0 49-36.86l46.33-163.36a15.6 15.6 0 0 0 .46-2.36l.53-4.93a13 13 0 0 0 .09-1.55A32.57 32.57 0 0 0 424.11 192M256 106.67 320 192H192Zm0 245a37.7 37.7 0 1 1 37.88-37.7A37.87 37.87 0 0 1 256 351.63Z'/></svg>", G1 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='m256 233.37 34.45-34.45a207.08 207.08 0 0 1-50.12-135.25c0-5 .19-10.05.54-15A207.1 207.1 0 0 0 120.67 98ZM313.14 176.23 391.33 98A207.07 207.07 0 0 0 273 48.8c-.41 4.9-.64 9.86-.64 14.87a175.25 175.25 0 0 0 40.78 112.56M335.77 198.86a175.25 175.25 0 0 0 112.56 40.81c5 0 10-.23 14.87-.64A207.07 207.07 0 0 0 414 120.67ZM176.23 313.14a175.23 175.23 0 0 0-112.56-40.81q-7.52 0-14.87.64A207.07 207.07 0 0 0 98 391.33ZM256 278.63l-34.45 34.45a207.08 207.08 0 0 1 50.12 135.25c0 5-.19 10.05-.54 15A207.06 207.06 0 0 0 391.33 414ZM448.33 271.67a207.08 207.08 0 0 1-135.25-50.12L278.63 256 414 391.33a207.1 207.1 0 0 0 49.39-120.2c-5.01.35-10.02.54-15.06.54M233.37 256 98 120.67a207.06 207.06 0 0 0-49.39 120.2c5-.35 10-.54 15-.54a207.08 207.08 0 0 1 135.25 50.12ZM120.67 414A207.07 207.07 0 0 0 239 463.2q.63-7.35.64-14.87a175.23 175.23 0 0 0-40.81-112.56Z'/></svg>", j1 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M432 230.7a79.4 79.4 0 0 0-32-6.7H112a79.5 79.5 0 0 0-32 6.69A80.09 80.09 0 0 0 32 304v112a16 16 0 0 0 32 0v-8a8.1 8.1 0 0 1 8-8h368a8.1 8.1 0 0 1 8 8v8a16 16 0 0 0 32 0V304a80.09 80.09 0 0 0-48-73.3M376 80H136a56 56 0 0 0-56 56v72a4 4 0 0 0 5.11 3.84A95.5 95.5 0 0 1 112 208h4.23a4 4 0 0 0 4-3.55A32 32 0 0 1 152 176h56a32 32 0 0 1 31.8 28.45 4 4 0 0 0 4 3.55h24.46a4 4 0 0 0 4-3.55A32 32 0 0 1 304 176h56a32 32 0 0 1 31.8 28.45 4 4 0 0 0 4 3.55h4.2a95.5 95.5 0 0 1 26.89 3.85A4 4 0 0 0 432 208v-72a56 56 0 0 0-56-56'/></svg>", J1 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M392 208h-24v-5.74A63.93 63.93 0 0 0 321.65 96a111 111 0 0 0-27.59-47.29A108.62 108.62 0 0 0 216 16c-29.91 0-57.78 12.28-79 34.68a56 56 0 0 0-67.51 77.54A63.91 63.91 0 0 0 80 231.39V440a56.06 56.06 0 0 0 56 56h176a56.06 56.06 0 0 0 56-56v-8h24a72.08 72.08 0 0 0 72-72v-80a72.08 72.08 0 0 0-72-72M176 416a16 16 0 0 1-32 0V256a16 16 0 0 1 32 0Zm64 0a16 16 0 0 1-32 0V256a16 16 0 0 1 32 0Zm64 0a16 16 0 0 1-32 0V256a16 16 0 0 1 32 0Zm16-224c-8.33 0-20.55-5.18-26.69-11.31A16 16 0 0 0 282 176H160a16 16 0 0 0-15 10.53c-6.83 18.68-23.6 21.47-33 21.47a32 32 0 0 1 0-64c.09 0 9.12.34 16.4 5.8a16 16 0 1 0 19.2-25.6A63.7 63.7 0 0 0 112 112a63.6 63.6 0 0 0-14 1.57A24 24 0 0 1 120 80a23.78 23.78 0 0 1 19.38 9.84 51.4 51.4 0 0 1 4.71 7.9A16 16 0 0 0 176 96c0-6.77-3.61-15.17-10.76-25-.46-.63-1-1.25-1.45-1.86C178.39 55.44 196.64 48 216 48a76.86 76.86 0 0 1 55.23 23.18A80.2 80.2 0 0 1 292.61 142a16 16 0 0 0 12.73 18.71 16.3 16.3 0 0 0 3 .28 16 16 0 0 0 15.7-13 112 112 0 0 0 1.96-19.42 32 32 0 0 1-6 63.43m112 168a40 40 0 0 1-40 40h-24V240h24a40 40 0 0 1 40 40Z'/></svg>", W1 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M388 448a92 92 0 1 1 92-92 92.1 92.1 0 0 1-92 92m0-152a60 60 0 1 0 60 60 60.07 60.07 0 0 0-60-60M124 448a92 92 0 1 1 92-92 92.1 92.1 0 0 1-92 92m0-152a60 60 0 1 0 60 60 60.07 60.07 0 0 0-60-60M320 128a31.89 31.89 0 0 0 32-32.1A31.55 31.55 0 0 0 320.2 64a32 32 0 1 0-.2 64'/><path d='M367.55 192h-43.76a4 4 0 0 1-3.51-2.08l-31.74-58.17a31 31 0 0 0-49.38-7.75l-69.86 70.4a32.56 32.56 0 0 0-9.3 22.4c0 17.4 12.6 23.6 18.5 27.1 28.5 16.42 48.57 28.43 59.58 35.1a4 4 0 0 1 1.92 3.41v69.12c0 8.61 6.62 16 15.23 16.43A16 16 0 0 0 272 352v-86a16 16 0 0 0-6.66-13l-37-26.61a4 4 0 0 1-.58-6l42-44.79a4 4 0 0 1 6.42.79L298 215.77a16 16 0 0 0 14 8.23h56a16 16 0 0 0 16-16.77c-.42-8.61-7.84-15.23-16.45-15.23'/></svg>", K1 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M416 473.14a6.83 6.83 0 0 0-3.57-6c-27.07-14.55-51.76-36.82-62.62-48a10.05 10.05 0 0 0-12.72-1.51c-50.33 32.42-111.61 32.44-161.95.05a10.09 10.09 0 0 0-12.82 1.56c-10.77 11.28-35.19 33.3-62.43 47.75a7.11 7.11 0 0 0-3.89 5.73 6.73 6.73 0 0 0 7.92 7.15c20.85-4.18 41-13.68 60.2-23.83a8.71 8.71 0 0 1 8-.06 185.14 185.14 0 0 0 167.81 0 8.82 8.82 0 0 1 8.09.06c19.1 10 39.22 19.59 60 23.8a6.73 6.73 0 0 0 8-6.71ZM476.71 246.91c-3.49-8.39-10.9-14.89-20.9-18.35L432 219.08V136a64 64 0 0 0-64-64h-32v-8a40 40 0 0 0-40-40h-80a40 40 0 0 0-40 40v8h-32a64 64 0 0 0-64 64v83.15l-23.58 9.39c-9.94 3.3-17.63 10-21.15 18.44-2.45 5.89-5.25 15-1.3 26.46l.1.3 46.66 119.44A23.33 23.33 0 0 0 102.58 408c.5 0 1 0 1.53-.05 31.32-2 56-17.27 72.6-31.61C200.42 396.81 228.31 408 256 408s55.43-11.2 79.14-31.7c16.59 14.36 41.3 29.67 72.61 31.65a23.36 23.36 0 0 0 23.37-14.74l46.65-119c3.28-8.09 2.9-17.76-1.06-27.3M269 154.21l-1.14-.4a39.53 39.53 0 0 0-23.73 0l-.58.18-126.07 50.23a4 4 0 0 1-5.48-3.72V136a32 32 0 0 1 32-32h224a32 32 0 0 1 32 32v64.44a4 4 0 0 1-5.48 3.72Z'/></svg>", Y1 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M400 32H112a48 48 0 0 0-48 48v320a47.9 47.9 0 0 0 16 35.74V454a26 26 0 0 0 26 26h28a26 26 0 0 0 26-26v-6h192v6a26 26 0 0 0 26 26h28a26 26 0 0 0 26-26v-18.26A47.9 47.9 0 0 0 448 400V80a48 48 0 0 0-48-48M147.47 399.82a32 32 0 1 1 28.35-28.35 32 32 0 0 1-28.35 28.35M236 288H112a16 16 0 0 1-16-16V144a16 16 0 0 1 16-16h124a4 4 0 0 1 4 4v152a4 4 0 0 1-4 4m20-192H112.46c-8.6 0-16-6.6-16.44-15.19A16 16 0 0 1 112 64h287.54c8.6 0 16 6.6 16.44 15.19A16 16 0 0 1 400 96zm20 32h124a16 16 0 0 1 16 16v128a16 16 0 0 1-16 16H276a4 4 0 0 1-4-4V132a4 4 0 0 1 4-4m60.18 243.47a32 32 0 1 1 28.35 28.35 32 32 0 0 1-28.35-28.35'/></svg>", X1 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M432 176H320V64a48 48 0 0 0-48-48H80a48 48 0 0 0-48 48v416a16 16 0 0 0 16 16h104a8 8 0 0 0 8-8v-71.55c0-8.61 6.62-16 15.23-16.43A16 16 0 0 1 192 416v72a8 8 0 0 0 8 8h264a16 16 0 0 0 16-16V224a48 48 0 0 0-48-48M98.08 431.87a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m0-80a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m0-80a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m0-80a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m0-80a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m80 240a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m0-80a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m0-80a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m0-80a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m80 320a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m0-80a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m0-80a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m0-80a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m0-80a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79M444 464H320V208h112a16 16 0 0 1 16 16v236a4 4 0 0 1-4 4'/><path d='M400 400a16 16 0 1 0 16 16 16 16 0 0 0-16-16M400 320a16 16 0 1 0 16 16 16 16 0 0 0-16-16M400 240a16 16 0 1 0 16 16 16 16 0 0 0-16-16M336 400a16 16 0 1 0 16 16 16 16 0 0 0-16-16M336 320a16 16 0 1 0 16 16 16 16 0 0 0-16-16M336 240a16 16 0 1 0 16 16 16 16 0 0 0-16-16'/></svg>", Q1 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M432 64H96a16 16 0 0 0-16 16v192a96.11 96.11 0 0 0 96 96h112a96.11 96.11 0 0 0 96-96v-80h18a62.07 62.07 0 0 0 62-62V96a32 32 0 0 0-32-32m0 66a30 30 0 0 1-30 30h-18V96h48ZM400 400H64a16 16 0 0 0 0 32h336a16 16 0 0 0 0-32'/></svg>", e0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><circle cx='256' cy='272' r='64'/><path d='M432 144h-59c-3 0-6.72-1.94-9.62-5l-25.94-40.94a15.5 15.5 0 0 0-1.37-1.85C327.11 85.76 315 80 302 80h-92c-13 0-25.11 5.76-34.07 16.21a15.5 15.5 0 0 0-1.37 1.85l-25.94 41c-2.22 2.42-5.34 5-8.62 5v-8a16 16 0 0 0-16-16h-24a16 16 0 0 0-16 16v8h-4a48.05 48.05 0 0 0-48 48V384a48.05 48.05 0 0 0 48 48h352a48.05 48.05 0 0 0 48-48V192a48.05 48.05 0 0 0-48-48M256 368a96 96 0 1 1 96-96 96.11 96.11 0 0 1-96 96'/></svg>", t0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M447.68 220.78a16 16 0 0 0-1-3.08l-37.78-88.16C400.19 109.17 379 96 354.89 96H157.11c-24.09 0-45.3 13.17-54 33.54L65.29 217.7A15.7 15.7 0 0 0 64 224v176a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-16h256v16a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V224a16 16 0 0 0-.32-3.22M144 320a32 32 0 1 1 32-32 32 32 0 0 1-32 32m224 0a32 32 0 1 1 32-32 32 32 0 0 1-32 32M104.26 208l28.23-65.85C136.11 133.69 146 128 157.11 128h197.78c11.1 0 21 5.69 24.62 14.15L407.74 208Z'/></svg>", a0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><circle cx='176' cy='416' r='32'/><circle cx='400' cy='416' r='32'/><path d='M456.8 120.78a23.92 23.92 0 0 0-18.56-8.78H133.89l-6.13-34.78A16 16 0 0 0 112 64H48a16 16 0 0 0 0 32h50.58l45.66 258.78A16 16 0 0 0 160 368h256a16 16 0 0 0 0-32H173.42l-5.64-32h241.66A24.07 24.07 0 0 0 433 284.71l28.8-144a24 24 0 0 0-5-19.93'/></svg>", o0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M472 432h-48a24 24 0 0 1-24-24V104a24 24 0 0 1 24-24h48a24 24 0 0 1 24 24v304a24 24 0 0 1-24 24M344 432h-48a24 24 0 0 1-24-24V184a24 24 0 0 1 24-24h48a24 24 0 0 1 24 24v224a24 24 0 0 1-24 24M216 432h-48a24 24 0 0 1-24-24V248a24 24 0 0 1 24-24h48a24 24 0 0 1 24 24v160a24 24 0 0 1-24 24M88 432H40a24 24 0 0 1-24-24v-96a24 24 0 0 1 24-24h48a24 24 0 0 1 24 24v96a24 24 0 0 1-24 24'/></svg>", l0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M256 48C141.31 48 48 141.31 48 256s93.31 208 208 208 208-93.31 208-208S370.69 48 256 48m108.25 138.29-134.4 160a16 16 0 0 1-12 5.71h-.27a16 16 0 0 1-11.89-5.3l-57.6-64a16 16 0 1 1 23.78-21.4l45.29 50.32 122.59-145.91a16 16 0 0 1 24.5 20.58'/></svg>", r0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M256 48C141.31 48 48 141.31 48 256s93.31 208 208 208 208-93.31 208-208S370.69 48 256 48m75.31 260.69a16 16 0 1 1-22.62 22.62L256 278.63l-52.69 52.68a16 16 0 0 1-22.62-22.62L233.37 256l-52.68-52.69a16 16 0 0 1 22.62-22.62L256 233.37l52.69-52.68a16 16 0 0 1 22.62 22.62L278.63 256Z'/></svg>", n0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M376 432H116c-32.37 0-60.23-8.57-80.59-24.77C12.24 388.78 0 361.39 0 328c0-57.57 42-90.58 87.56-100.75a16 16 0 0 0 12.12-12.39c7.68-36.68 24.45-68.15 49.18-92A153.57 153.57 0 0 1 256 80c35.5 0 68.24 11.69 94.68 33.8a156.24 156.24 0 0 1 42.05 56 16 16 0 0 0 11.37 9.16c27 5.61 51.07 17.33 69.18 33.85C498.61 235.88 512 267.42 512 304c0 36-14.38 68.88-40.49 92.59C446.36 419.43 412.44 432 376 432'/></svg>", i0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><circle cx='256' cy='256' r='24'/><path d='M256 48C141.31 48 48 141.31 48 256s93.31 208 208 208 208-93.31 208-208S370.69 48 256 48m105.07 113.33-46.88 117.2a64 64 0 0 1-35.66 35.66l-117.2 46.88a8 8 0 0 1-10.4-10.4l46.88-117.2a64 64 0 0 1 35.66-35.66l117.2-46.88a8 8 0 0 1 10.4 10.4'/></svg>", s0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M512 256c0-16.54-14.27-46.76-45.61-74a207 207 0 0 0-60.28-36.12 3.15 3.15 0 0 0-3.93 1.56c-.15.29-.3.57-.47.86l-9.59 15.9a183.24 183.24 0 0 0 .07 183.78l.23.39 8.74 16a4 4 0 0 0 4.94 1.82C479.63 337.42 512 281.49 512 256m-93.92-.14a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79'/><path d='M335.45 256a214.8 214.8 0 0 1 29.08-108l.12-.21 4.62-7.67a4 4 0 0 0-2.59-6 284 284 0 0 0-39.26-5.39 7.94 7.94 0 0 1-4.29-1.6c-19.28-14.66-57.5-40.3-96.46-46.89a16 16 0 0 0-18 20.18l10.62 37.17a4 4 0 0 1-2.42 4.84c-36.85 13.69-68.59 38.75-91.74 57.85a8 8 0 0 1-10.06.06q-4.72-3.75-9.69-7.39c-39.64-28.95-86.21-32.76-88.17-32.9a16 16 0 0 0-16.83 19.4c.42 1.93 9.19 40.69 31.7 71.61a8.09 8.09 0 0 1 0 9.55C9.57 291.52.8 330.29.38 332.22a16 16 0 0 0 16.83 19.4c2-.14 48.53-4 88.12-32.88q4.85-3.56 9.47-7.22a8 8 0 0 1 10.06.07c23.25 19.19 55.05 44.28 92 58a4 4 0 0 1 2.42 4.83l-10.66 37.18a16 16 0 0 0 18 20.18c17.16-2.9 51.88-12.86 96.05-46.83a8.15 8.15 0 0 1 4.36-1.65 287 287 0 0 0 39.22-5.3 4 4 0 0 0 2.69-5.83l-4.51-8.29A214.8 214.8 0 0 1 335.45 256'/></svg>", c0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M193.69 152.84a16 16 0 0 1 29.64 2.56l36.4 121.36 30-59.92a16 16 0 0 1 28.62 0L345.89 272h96.76A213.1 213.1 0 0 0 464 176.65C463.37 114.54 413.54 64 352.92 64c-48.09 0-80 29.54-96.92 51-16.88-21.49-48.83-51-96.92-51C98.46 64 48.63 114.54 48 176.65A211.1 211.1 0 0 0 56.93 240h93.18Z'/><path d='M321.69 295.16 304 259.78l-33.69 67.38A16 16 0 0 1 256 336q-.67 0-1.38-.06a16 16 0 0 1-14-11.34l-36.4-121.36-30 59.92A16 16 0 0 1 160 272H69.35q14 29.29 37.27 57.66c18.77 22.88 52.8 59.46 131.39 112.81a31.84 31.84 0 0 0 36 0c78.59-53.35 112.62-89.93 131.39-112.81a317 317 0 0 0 19-25.66H336a16 16 0 0 1-14.31-8.84M464 272h-21.35a260 260 0 0 1-18.25 32H464a16 16 0 0 0 0-32M48 240a16 16 0 0 0 0 32h21.35a225 225 0 0 1-12.42-32Z'/></svg>", u0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M80 480a16 16 0 0 1-16-16V68.13a24 24 0 0 1 11.9-20.72C88 40.38 112.38 32 160 32c37.21 0 78.83 14.71 115.55 27.68C305.12 70.13 333.05 80 352 80a183.8 183.8 0 0 0 71-14.5 18 18 0 0 1 25 16.58v219.36a20 20 0 0 1-12 18.31c-8.71 3.81-40.51 16.25-84 16.25-24.14 0-54.38-7.14-86.39-14.71C229.63 312.79 192.43 304 160 304c-36.87 0-55.74 5.58-64 9.11V464a16 16 0 0 1-16 16'/></svg>", d0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M394.23 197.56a300.4 300.4 0 0 0-53.37-90C301.2 61.65 249.05 32 208 32a16 16 0 0 0-15.48 20c13.87 53-14.88 97.07-45.31 143.72C122 234.36 96 274.27 96 320c0 88.22 71.78 160 160 160s160-71.78 160-160c0-43.3-7.32-84.49-21.77-122.44m-105.9 221.13C278 429.69 265.05 432 256 432s-22-2.31-32.33-13.31S208 390.24 208 368c0-25.14 8.82-44.28 17.34-62.78 4.95-10.74 10-21.67 13-33.37a8 8 0 0 1 12.49-4.51A126.5 126.5 0 0 1 275 292c18.17 24 29 52.42 29 76 0 22.24-5.42 39.77-15.67 50.69'/></svg>", p0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><circle cx='256' cy='256' r='48'/><path d='M475.93 303.91a67.49 67.49 0 0 0-44.34-115.53 5.2 5.2 0 0 1-4.58-3.21 5.21 5.21 0 0 1 1-5.51A67.83 67.83 0 0 0 378 66.33h-.25A67.13 67.13 0 0 0 332.35 84a5.21 5.21 0 0 1-5.52 1 5.23 5.23 0 0 1-3.22-4.58 67.68 67.68 0 0 0-135.23 0 5.2 5.2 0 0 1-3.21 4.58 5.21 5.21 0 0 1-5.52-1 67.1 67.1 0 0 0-45.44-17.69H134a67.91 67.91 0 0 0-50 113.34 5.21 5.21 0 0 1 1 5.51 5.2 5.2 0 0 1-4.58 3.21 67.71 67.71 0 0 0 0 135.23 5.23 5.23 0 0 1 4.58 3.23 5.22 5.22 0 0 1-1 5.52 67.54 67.54 0 0 0 50.08 113h.25A67.38 67.38 0 0 0 179.65 428a5.21 5.21 0 0 1 5.51-1 5.2 5.2 0 0 1 3.21 4.58 67.71 67.71 0 0 0 135.23 0 5.23 5.23 0 0 1 3.22-4.58 5.21 5.21 0 0 1 5.51 1 67.38 67.38 0 0 0 45.29 17.42h.25a67.48 67.48 0 0 0 50.08-113 5.22 5.22 0 0 1-1-5.52 5.23 5.23 0 0 1 4.58-3.22 67.3 67.3 0 0 0 44.4-19.77M256 336a80 80 0 1 1 80-80 80.09 80.09 0 0 1-80 80'/></svg>", g0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M256 48C141.31 48 48 141.31 48 256s93.31 208 208 208 208-93.31 208-208S370.69 48 256 48m143 304h-45.22a8 8 0 0 1-6.91-4l-16.14-27.68a8 8 0 0 1-.86-6l14.86-59.92a8 8 0 0 1 4.65-5.45l28.1-11.9a8 8 0 0 1 8.34 1.3l41.63 35.82a8 8 0 0 1 2.69 7.26 174.75 174.75 0 0 1-24.28 66.68A8 8 0 0 1 399 352M134.52 237.13l28.1 11.9a8 8 0 0 1 4.65 5.45l14.86 59.92a8 8 0 0 1-.86 6L165.13 348a8 8 0 0 1-6.91 4H113a8 8 0 0 1-6.82-3.81 174.75 174.75 0 0 1-24.28-66.68 8 8 0 0 1 2.69-7.26l41.63-35.82a8 8 0 0 1 8.3-1.3m256.94-87.24-18.07 51.38A8 8 0 0 1 369 206l-29.58 12.53a8 8 0 0 1-8.26-1.24L274.9 170.1a8 8 0 0 1-2.9-6.1v-33.58a8 8 0 0 1 3.56-6.65l42.83-28.54a8 8 0 0 1 7.66-.67A176.9 176.9 0 0 1 390 142a8 8 0 0 1 1.46 7.89M193.6 95.23l42.84 28.54a8 8 0 0 1 3.56 6.65V164a8 8 0 0 1-2.86 6.13l-56.26 47.19a8 8 0 0 1-8.26 1.24L143 206a8 8 0 0 1-4.43-4.72L120.5 149.9a8 8 0 0 1 1.5-7.9 176.9 176.9 0 0 1 64-47.48 8 8 0 0 1 7.6.71m17.31 327.46L191.18 373a8 8 0 0 1 .52-7l15.17-26a8 8 0 0 1 6.91-4h84.44a8 8 0 0 1 6.91 4l15.18 26a8 8 0 0 1 .53 7l-19.59 49.67a8 8 0 0 1-5.69 4.87 176.6 176.6 0 0 1-79 0 8 8 0 0 1-5.65-4.85'/></svg>", m0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M200 144h40v-40a40 40 0 1 0-40 40M352 104a40 40 0 0 0-80 0v40h40a40 40 0 0 0 40-40' class='ionicon-fill-none'/><path d='M80 416a64 64 0 0 0 64 64h92a4 4 0 0 0 4-4V292a4 4 0 0 0-4-4H88a8 8 0 0 0-8 8ZM240 252V144h32v108a4 4 0 0 0 4 4h140a47.9 47.9 0 0 0 16-2.75A48.09 48.09 0 0 0 464 208v-16a48 48 0 0 0-48-48h-40.54a2 2 0 0 1-1.7-3A72 72 0 0 0 256 58.82 72 72 0 0 0 138.24 141a2 2 0 0 1-1.7 3H96a48 48 0 0 0-48 48v16a48.09 48.09 0 0 0 32 45.25A47.9 47.9 0 0 0 96 256h140a4 4 0 0 0 4-4m32-148a40 40 0 1 1 40 40h-40Zm-74.86-39.9A40 40 0 0 1 240 104v40h-40a40 40 0 0 1-2.86-79.89ZM276 480h92a64 64 0 0 0 64-64V296a8 8 0 0 0-8-8H276a4 4 0 0 0-4 4v184a4 4 0 0 0 4 4'/></svg>", v0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M340.75 344.49c5.91-20.7 9.82-44.75 11.31-67.84a4.41 4.41 0 0 0-4.46-4.65h-71.06a4.43 4.43 0 0 0-4.47 4.39v55.3a4.44 4.44 0 0 0 4.14 4.38 273.5 273.5 0 0 1 59 11.39 4.45 4.45 0 0 0 5.54-2.97M323.58 377.31a260 260 0 0 0-46.6-9.09 4.42 4.42 0 0 0-4.91 4.29v65.24a4.47 4.47 0 0 0 6.76 3.7c15.9-9.27 29-24.84 40.84-45.43 1.94-3.36 4.89-9.15 6.67-12.69a4.29 4.29 0 0 0-2.76-6.02M235.29 368.4a257 257 0 0 0-46.56 8.82c-2.64.76-3.75 4.4-2.55 6.79 1.79 3.56 4 8.11 5.89 11.51 13 23 26.84 37.5 41.24 45.93a4.47 4.47 0 0 0 6.76-3.7v-65.27a4.16 4.16 0 0 0-4.78-4.08M235.6 272h-71.06a4.41 4.41 0 0 0-4.46 4.64c1.48 23.06 5.37 47.16 11.26 67.84a4.46 4.46 0 0 0 5.59 3 272.2 272.2 0 0 1 59-11.36 4.44 4.44 0 0 0 4.15-4.38V276.4a4.43 4.43 0 0 0-4.48-4.4M277 143.78a235.8 235.8 0 0 0 46.5-9.14 4.3 4.3 0 0 0 2.76-6c-1.79-3.57-4.27-8.68-6.17-12.09-12.29-22-26.14-37.35-41.24-46a4.48 4.48 0 0 0-6.76 3.7v65.23a4.43 4.43 0 0 0 4.91 4.3M276.54 240h71.06a4.39 4.39 0 0 0 4.46-4.58c-1.48-22.77-5.27-47.8-11.16-68.22a4.46 4.46 0 0 0-5.59-2.95c-19 5.74-38.79 10.43-59.09 12a4.4 4.4 0 0 0-4.15 4.32v55.11a4.4 4.4 0 0 0 4.47 4.32M233.31 70.56c-15.42 8.57-29.17 24.43-41.47 46.37-1.91 3.41-4.19 8.11-6 11.67a4.31 4.31 0 0 0 2.76 6 225.4 225.4 0 0 0 46.54 9.17 4.43 4.43 0 0 0 4.91-4.29V74.26a4.49 4.49 0 0 0-6.74-3.7M235.92 176.26c-20.3-1.55-40.11-6.24-59.09-12a4.46 4.46 0 0 0-5.59 2.95c-5.89 20.42-9.68 45.45-11.16 68.22a4.39 4.39 0 0 0 4.46 4.58h71.06a4.4 4.4 0 0 0 4.47-4.34v-55.09a4.4 4.4 0 0 0-4.15-4.32'/><path d='M414.39 97.61A224 224 0 1 0 97.61 414.39 224 224 0 1 0 414.39 97.61M176.6 430.85a219 219 0 0 1-12.48-19.66c-2-3.69-4.84-9.26-6.73-13.13a7.29 7.29 0 0 0-10.31-3.16c-4.3 2.41-10 5.72-14.13 8.43a147.3 147.3 0 0 1-23.57-22.43 249 249 0 0 1 30.41-18.36c1.86-1 2.77-2.14 2.18-4.18a374.8 374.8 0 0 1-14.09-82.17 4.36 4.36 0 0 0-4.3-4.17H66.84a2 2 0 0 1-2-1.7A98 98 0 0 1 64 256a96 96 0 0 1 .86-14.29 2 2 0 0 1 2-1.7h56.74c2.29 0 4.17-1.32 4.29-3.63a372.7 372.7 0 0 1 14-81.83 4.36 4.36 0 0 0-2.19-5.11 261 261 0 0 1-29.84-17.9 170 170 0 0 1 23.14-22.8c4.08 2.68 9.4 5.71 13.66 8.11a7.89 7.89 0 0 0 11-3.42c1.88-3.87 4-8.18 6.06-11.88a222 222 0 0 1 12.54-19.91A185 185 0 0 1 256 64c28.94 0 55.9 7 80.53 18.46a202 202 0 0 1 12 19c2.59 4.66 5.34 10.37 7.66 15.32a4.29 4.29 0 0 0 5.92 1.94c5.38-2.91 11.21-6.26 16.34-9.63a171.4 171.4 0 0 1 23.2 23 245 245 0 0 1-29.06 17.31 4.35 4.35 0 0 0-2.18 5.12 348.7 348.7 0 0 1 13.85 81.4 4.33 4.33 0 0 0 4.3 4.12l56.62-.07a2 2 0 0 1 2 1.7 117.5 117.5 0 0 1 0 28.62 2 2 0 0 1-2 1.72h-56.67a4.35 4.35 0 0 0-4.3 4.17 367.4 367.4 0 0 1-13.87 81.3 4.45 4.45 0 0 0 2.19 5.19c5 2.59 10.57 5.48 15.37 8.42s9.55 6.08 14.13 9.34a172.7 172.7 0 0 1-23 22.93c-2.44-1.61-5.34-3.44-7.84-4.94-1.72-1-4.89-2.77-6.65-3.76-3.82-2.14-7.88-.54-9.79 3.4s-4.83 9.59-6.87 13.25a212 212 0 0 1-12.35 19.53C310.91 442.37 284.94 448 256 448s-54.77-5.63-79.4-17.15'/></svg>", f0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M272 320.46V202.3l166.62-75.73a16 16 0 0 0 0-29.14l-176-80A16 16 0 0 0 240 32v288.46q8-.45 16-.46t16 .46'/><path d='M463.33 457.5c-8.56-42.85-35.11-78.74-76.78-103.8-32.5-19.55-72.67-31.3-114.55-33.7v79.75a16 16 0 1 1-32 0V320c-41.88 2.4-82.05 14.15-114.55 33.7-41.67 25.06-68.22 60.95-76.78 103.8a32.49 32.49 0 0 0 6.44 27.08C61.13 492 70 496 80 496h352c10 0 18.88-4.05 24.9-11.42a32.49 32.49 0 0 0 6.43-27.08'/></svg>", h0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M256 448a32 32 0 0 1-18-5.57c-78.59-53.35-112.62-89.93-131.39-112.8-40-48.75-59.15-98.8-58.61-153C48.63 114.52 98.46 64 159.08 64c44.08 0 74.61 24.83 92.39 45.51a6 6 0 0 0 9.06 0C278.31 88.81 308.84 64 352.92 64c60.62 0 110.45 50.52 111.08 112.64.54 54.21-18.63 104.26-58.61 153-18.77 22.87-52.8 59.45-131.39 112.8a32 32 0 0 1-18 5.56'/></svg>", y0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M256 64C150 64 64 150 64 256s86 192 192 192 192-86 192-192S362 64 256 64m-6 304a20 20 0 1 1 20-20 20 20 0 0 1-20 20m33.44-102C267.23 276.88 265 286.85 265 296a14 14 0 0 1-28 0c0-21.91 10.08-39.33 30.82-53.26C287.1 229.8 298 221.6 298 203.57c0-12.26-7-21.57-21.49-28.46-3.41-1.62-11-3.2-20.34-3.09-11.72.15-20.82 2.95-27.83 8.59C215.12 191.25 214 202.83 214 203a14 14 0 1 1-28-1.35c.11-2.43 1.8-24.32 24.77-42.8 11.91-9.58 27.06-14.56 45-14.78 12.7-.15 24.63 2 32.72 5.82C312.7 161.34 326 180.43 326 203.57c0 33.83-22.61 49.02-42.56 62.43'/></svg>", w0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M261.56 101.28a8 8 0 0 0-11.06 0L66.4 277.15a8 8 0 0 0-2.47 5.79L63.9 448a32 32 0 0 0 32 32H192a16 16 0 0 0 16-16V328a8 8 0 0 1 8-8h80a8 8 0 0 1 8 8v136a16 16 0 0 0 16 16h96.06a32 32 0 0 0 32-32V282.94a8 8 0 0 0-2.47-5.79Z'/><path d='m490.91 244.15-74.8-71.56V64a16 16 0 0 0-16-16h-48a16 16 0 0 0-16 16v32l-57.92-55.38C272.77 35.14 264.71 32 256 32c-8.68 0-16.72 3.14-22.14 8.63l-212.7 203.5c-6.22 6-7 15.87-1.34 22.37A16 16 0 0 0 43 267.56L250.5 69.28a8 8 0 0 1 11.06 0l207.52 198.28a16 16 0 0 0 22.59-.44c6.14-6.36 5.63-16.86-.76-22.97'/></svg>", x0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M183 352c-21.84-.52-39-18.9-39-40.74v-34.07a8 8 0 0 0-6-7.74c-33.75-8.85-58-39.71-58-77.45a80.14 80.14 0 0 1 66.27-78.82 8 8 0 0 0 6.62-6.83 104 104 0 0 1 206.22 0 8 8 0 0 0 6.62 6.83A80 80 0 0 1 352 272a74.33 74.33 0 0 1-47.45-17.41 7.93 7.93 0 0 0-9.92-.14A62.9 62.9 0 0 1 256 268a80.5 80.5 0 0 1-21.8-3.18 8 8 0 0 0-10.2 7.69V312a40 40 0 0 1-41 40'/><path d='M263.39 299.7a8 8 0 0 0-7.39 7.91V312a72.11 72.11 0 0 1-50.69 68.76 8 8 0 0 0-4.91 10.78l40.91 94.8A16 16 0 0 0 256 496a16 16 0 0 0 14.69-9.7l73.78-172.15a8 8 0 0 0-6.2-11.07 106.3 106.3 0 0 1-35.9-11.59 8 8 0 0 0-7.13-.2 95 95 0 0 1-31.85 8.41'/></svg>", b0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M256 56C145.72 56 56 145.72 56 256s89.72 200 200 200 200-89.72 200-200S366.28 56 256 56m0 82a26 26 0 1 1-26 26 26 26 0 0 1 26-26m48 226h-88a16 16 0 0 1 0-32h28v-88h-16a16 16 0 0 1 0-32h32a16 16 0 0 1 16 16v104h28a16 16 0 0 1 0 32'/></svg>", k0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M161.35 242a16 16 0 0 1 22.62-.68c73.63 69.36 147.51 111.56 234.45 133.07 11.73-32 12.77-67.22 2.64-101.58-13.44-45.59-44.74-85.31-90.49-114.86-40.84-26.38-81.66-33.25-121.15-39.89-49.82-8.38-96.88-16.3-141.79-63.85-5-5.26-11.81-7.37-18.32-5.66-7.44 2-12.43 7.88-14.82 17.6-5.6 22.75-2 86.51 13.75 153.82 25.29 108.14 65.65 162.86 95.06 189.73 38 34.69 87.62 53.9 136.93 53.9a186 186 0 0 0 27.77-2.04c41.71-6.32 76.43-27.27 96-57.75-89.49-23.28-165.94-67.55-242-139.16a16 16 0 0 1-.65-22.65M467.43 384.19c-16.83-2.59-33.13-5.84-49-9.77a157.7 157.7 0 0 1-12.13 25.68c-.73 1.25-1.5 2.49-2.29 3.71a584 584 0 0 0 58.56 12 16 16 0 1 0 4.87-31.62Z'/></svg>", M0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M64 480H48a32 32 0 0 1-32-32V112a32 32 0 0 1 32-32h16a32 32 0 0 1 32 32v336a32 32 0 0 1-32 32M240 176a32 32 0 0 0-32-32h-64a32 32 0 0 0-32 32v28a4 4 0 0 0 4 4h120a4 4 0 0 0 4-4ZM112 448a32 32 0 0 0 32 32h64a32 32 0 0 0 32-32v-30a2 2 0 0 0-2-2H114a2 2 0 0 0-2 2Z'/><rect width='128' height='144' x='112' y='240' rx='2' ry='2'/><path d='M320 480h-32a32 32 0 0 1-32-32V64a32 32 0 0 1 32-32h32a32 32 0 0 1 32 32v384a32 32 0 0 1-32 32M495.89 445.45l-32.23-340c-1.48-15.65-16.94-27-34.53-25.31l-31.85 3c-17.59 1.67-30.65 15.71-29.17 31.36l32.23 340c1.48 15.65 16.94 27 34.53 25.31l31.85-3c17.59-1.67 30.65-15.71 29.17-31.36'/></svg>", C0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><circle cx='256' cy='192' r='32'/><path d='M256 32c-88.22 0-160 68.65-160 153 0 40.17 18.31 93.59 54.42 158.78 29 52.34 62.55 99.67 80 123.22a31.75 31.75 0 0 0 51.22 0c17.42-23.55 51-70.88 80-123.22C397.69 278.61 416 225.19 416 185c0-84.35-71.78-153-160-153m0 224a64 64 0 1 1 64-64 64.07 64.07 0 0 1-64 64'/></svg>", L0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M48.17 113.34A32 32 0 0 0 32 141.24V438a32 32 0 0 0 47 28.37c.43-.23.85-.47 1.26-.74l84.14-55.05a8 8 0 0 0 3.63-6.72V46.45a8 8 0 0 0-12.51-6.63ZM212.36 39.31A8 8 0 0 0 200 46v357.56a8 8 0 0 0 3.63 6.72l96 62.42A8 8 0 0 0 312 466V108.67a8 8 0 0 0-3.64-6.73ZM464.53 46.47a31.64 31.64 0 0 0-31.5-.88 12 12 0 0 0-1.25.74l-84.15 55a8 8 0 0 0-3.63 6.72v357.46a8 8 0 0 0 12.52 6.63l107.07-73.46a32 32 0 0 0 16.41-28v-296a32.76 32.76 0 0 0-15.47-28.21'/></svg>", _0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M272 464h-32a32 32 0 0 1-32-32l.05-85.82a4 4 0 0 0-6-3.47l-74.34 43.06a31.48 31.48 0 0 1-43-11.52l-16.5-28.64-.06-.1a31.65 31.65 0 0 1 11.56-42.8l74.61-43.25a4 4 0 0 0 0-6.92l-74.54-43.21a31.41 31.41 0 0 1-11.55-43l16.44-28.55a31.48 31.48 0 0 1 19.27-14.74 31.14 31.14 0 0 1 23.8 3.2l74.31 43a4 4 0 0 0 6-3.47L208 80a32 32 0 0 1 32-32h32a32 32 0 0 1 32 32v85.72a4 4 0 0 0 6 3.47l74.34-43.06a31.51 31.51 0 0 1 43 11.52l16.49 28.64.06.09a31.52 31.52 0 0 1-11.64 42.86l-74.53 43.2a4 4 0 0 0 0 6.92l74.53 43.2a31.42 31.42 0 0 1 11.56 43l-16.44 28.55a31.48 31.48 0 0 1-19.27 14.74 31.14 31.14 0 0 1-23.8-3.2l-74.31-43a4 4 0 0 0-6 3.46L304 432a32 32 0 0 1-32 32m61.54-218.56'/></svg>", A0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M264 480A232 232 0 0 1 32 248c0-94 54-178.28 137.61-214.67a16 16 0 0 1 21.06 21.06C181.07 76.43 176 104.66 176 136c0 110.28 89.72 200 200 200 31.34 0 59.57-5.07 81.61-14.67a16 16 0 0 1 21.06 21.06C442.28 426 358 480 264 480'/></svg>", S0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M421.84 37.37a25.86 25.86 0 0 0-22.6-4.46L199.92 86.49A32.3 32.3 0 0 0 176 118v226c0 6.74-4.36 12.56-11.11 14.83l-.12.05-52 18C92.88 383.53 80 402 80 423.91a55.54 55.54 0 0 0 23.23 45.63A54.78 54.78 0 0 0 135.34 480a55.8 55.8 0 0 0 17.75-2.93l.38-.13 21.84-7.94A47.84 47.84 0 0 0 208 423.91v-212c0-7.29 4.77-13.21 12.16-15.07l.21-.06L395 150.14a4 4 0 0 1 5 3.86v141.93c0 6.75-4.25 12.38-11.11 14.68l-.25.09-50.89 18.11A49.09 49.09 0 0 0 304 375.92a55.67 55.67 0 0 0 23.23 45.8 54.63 54.63 0 0 0 49.88 7.35l.36-.12 21.84-7.95A47.83 47.83 0 0 0 432 375.92V58a25.74 25.74 0 0 0-10.16-20.63'/></svg>", V0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M272 464a16 16 0 0 1-16-16.42V264.13a8 8 0 0 0-8-8H64.41a16.31 16.31 0 0 1-15.49-10.65 16 16 0 0 1 8.41-19.87l384-176.15a16 16 0 0 1 21.22 21.19l-176 384A16 16 0 0 1 272 464'/></svg>", P0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M490.39 182.75c-5.55-13.19-14.77-22.7-26.67-27.49l-.16-.06a46.5 46.5 0 0 0-17-3.2h-.64c-27.24.41-55.05 23.56-69.19 57.61-10.37 24.9-11.56 51.68-3.18 71.64 5.54 13.2 14.78 22.71 26.73 27.5l.13.05a46.5 46.5 0 0 0 17 3.2c27.5 0 55.6-23.15 70-57.65 10.24-24.87 11.37-51.63 2.98-71.6M381.55 329.61c-15.71-9.44-30.56-18.37-40.26-34.41C314.53 250.8 298.37 224 256 224s-58.57 26.8-85.39 71.2c-9.72 16.06-24.6 25-40.36 34.48-18.07 10.86-36.74 22.08-44.8 44.16a66.9 66.9 0 0 0-4.65 25c0 35.95 28 65.2 62.4 65.2 17.75 0 36.64-6.15 56.63-12.66 19.22-6.26 39.09-12.73 56.27-12.73s37 6.47 56.15 12.73C332.2 457.85 351 464 368.8 464c34.35 0 62.3-29.25 62.3-65.2a67 67 0 0 0-4.75-25c-8.06-22.1-26.74-33.33-44.8-44.19M150 188.85c11.9 14.93 27 23.15 42.52 23.15a43 43 0 0 0 6.33-.47c32.37-4.76 52.54-44.26 45.92-90C242 102.3 234.6 84.39 224 71.11 212.12 56.21 197 48 181.49 48a43 43 0 0 0-6.33.47c-32.37 4.76-52.54 44.26-45.92 90 2.76 19.2 10.16 37.09 20.76 50.38M313.16 211.53a43 43 0 0 0 6.33.47c15.53 0 30.62-8.22 42.52-23.15 10.59-13.29 17.95-31.18 20.75-50.4 6.62-45.72-13.55-85.22-45.92-90a43 43 0 0 0-6.33-.47C315 48 299.88 56.21 288 71.11c-10.6 13.28-18 31.19-20.76 50.44-6.62 45.72 13.55 85.22 45.92 89.98M111.59 308.8l.14-.05c11.93-4.79 21.16-14.29 26.69-27.48 8.38-20 7.2-46.75-3.15-71.65C120.94 175.16 92.85 152 65.38 152a46.4 46.4 0 0 0-17 3.2l-.14.05c-11.9 4.75-21.13 14.29-26.66 27.48-8.38 20-7.2 46.75 3.15 71.65C39.06 288.84 67.15 312 94.62 312a46.4 46.4 0 0 0 16.97-3.2'/></svg>", B0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M336 96a80 80 0 1 0-96 78.39v283.17a32.1 32.1 0 0 0 2.49 12.38l10.07 24a3.92 3.92 0 0 0 6.88 0l10.07-24a32.1 32.1 0 0 0 2.49-12.38V174.39A80.13 80.13 0 0 0 336 96m-56 0a24 24 0 1 1 24-24 24 24 0 0 1-24 24'/></svg>", T0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M441.82 67.83C383.44 44.73 317.3 32 255.56 32 192 32 125.76 44.53 69 67.26 48.7 75.49 45.21 90 48.71 100.82L52.78 111a16 16 0 0 0 21.31 8.69c10.8-4.76 23.93-10.54 27-11.78C145.1 89.64 198.71 80 256 80c57.47 0 108.09 9.24 154.76 28.25 4.42 1.8 14.88 6.42 26.17 11.46a16 16 0 0 0 21.35-8.59L462 102l.34-.9c3.45-10.21.14-25.05-20.52-33.27'/><path d='M409.18 140.86C363.67 122.53 307.68 112 255.56 112a425 425 0 0 0-153.74 28.89c-.53.21-2.06.88-4.29 1.88a16 16 0 0 0-8 21.27c4 8.71 9.42 20.58 15.5 33.89C137.94 270 199.21 404 227.26 462A31.74 31.74 0 0 0 256 480a31.73 31.73 0 0 0 28.76-18.06l.06-.13 137.3-297.57a15.94 15.94 0 0 0-8.31-21.45c-2.26-.95-3.85-1.61-4.5-1.87Zm-215.1 83.07a32 32 0 1 1 29.85-29.85 32 32 0 0 1-29.85 29.85m64 128a32 32 0 1 1 29.85-29.85 32 32 0 0 1-29.85 29.85m64-112a32 32 0 1 1 29.85-29.85 32 32 0 0 1-29.85 29.85'/></svg>", D0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M357.57 223.94a79.48 79.48 0 0 0 56.58-23.44l77-76.95c6.09-6.09 6.65-16 .85-22.39a16 16 0 0 0-23.17-.56l-68.63 68.58a12.29 12.29 0 0 1-17.37 0c-4.79-4.78-4.53-12.86.25-17.64l68.33-68.33a16 16 0 0 0-.56-23.16A15.62 15.62 0 0 0 440.27 56a16.7 16.7 0 0 0-11.81 4.9l-68.27 68.26a12.29 12.29 0 0 1-17.37 0c-4.78-4.78-4.53-12.86.25-17.64l68.33-68.31a16 16 0 0 0-.56-23.16A15.62 15.62 0 0 0 400.26 16a16.73 16.73 0 0 0-11.81 4.9L311.5 97.85a79.5 79.5 0 0 0-23.44 56.59v8.23a16 16 0 0 1-4.69 11.33l-35.61 35.62a4 4 0 0 1-5.66 0L68.82 36.33a16 16 0 0 0-22.58-.06C31.09 51.28 23 72.47 23 97.54c-.1 41.4 21.66 89 56.79 124.08l85.45 85.45A64.8 64.8 0 0 0 211 326a64 64 0 0 0 16.21-2.08 16.2 16.2 0 0 1 4.07-.53 15.93 15.93 0 0 1 10.83 4.25l11.39 10.52a16.12 16.12 0 0 1 4.6 11.23v5.54a47.73 47.73 0 0 0 13.77 33.65l90.05 91.57.09.1a53.29 53.29 0 0 0 75.36-75.37L302.39 269.9a4 4 0 0 1 0-5.66L338 228.63a16 16 0 0 1 11.32-4.69Z'/><path d='M211 358a97.32 97.32 0 0 1-68.36-28.25l-13.86-13.86a8 8 0 0 0-11.3 0l-85 84.56c-15.15 15.15-20.56 37.45-13.06 59.29a31 31 0 0 0 1.49 3.6C31 484 50.58 496 72 496a55.68 55.68 0 0 0 39.64-16.44L225 365.66a4.69 4.69 0 0 0 1.32-3.72v-.26a4.63 4.63 0 0 0-5.15-4.27A97 97 0 0 1 211 358'/></svg>", F0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M256 368a16 16 0 0 1-7.94-2.11L108 285.84a8 8 0 0 0-12 6.94V368a16 16 0 0 0 8.23 14l144 80a16 16 0 0 0 15.54 0l144-80a16 16 0 0 0 8.23-14v-75.22a8 8 0 0 0-12-6.94l-140.06 80.05A16 16 0 0 1 256 368'/><path d='M495.92 190.5v-.11a16 16 0 0 0-8-12.28l-224-128a16 16 0 0 0-15.88 0l-224 128a16 16 0 0 0 0 27.78l224 128a16 16 0 0 0 15.88 0L461 221.28a2 2 0 0 1 3 1.74v144.53c0 8.61 6.62 16 15.23 16.43A16 16 0 0 0 496 368V192a15 15 0 0 0-.08-1.5'/></svg>", I0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='m461 349-34-19.64a89.5 89.5 0 0 1 20.94-16 22 22 0 0 0-21.28-38.51 133.6 133.6 0 0 0-38.55 32.1L300 256l88.09-50.86a133.5 133.5 0 0 0 38.55 32.1 22 22 0 1 0 21.28-38.51 89.7 89.7 0 0 1-20.94-16l34-19.64A22 22 0 1 0 439 125l-34 19.63a89.7 89.7 0 0 1-3.42-26.15A22 22 0 0 0 380 96h-.41a22 22 0 0 0-22 21.59 133.6 133.6 0 0 0 8.5 49.41L278 217.89V116.18a133.5 133.5 0 0 0 47.07-17.33 22 22 0 0 0-22.71-37.69A89.6 89.6 0 0 1 278 71.27V38a22 22 0 0 0-44 0v33.27a89.6 89.6 0 0 1-24.36-10.11 22 22 0 1 0-22.71 37.69A133.5 133.5 0 0 0 234 116.18v101.71L145.91 167a133.6 133.6 0 0 0 8.52-49.43 22 22 0 0 0-22-21.59H132a22 22 0 0 0-21.59 22.41 89.7 89.7 0 0 1-3.41 26.19L73 125a22 22 0 1 0-22 38.1l34 19.64a89.7 89.7 0 0 1-20.94 16 22 22 0 1 0 21.28 38.51 133.6 133.6 0 0 0 38.55-32.1L212 256l-88.09 50.86a133.6 133.6 0 0 0-38.55-32.1 22 22 0 1 0-21.28 38.51 89.7 89.7 0 0 1 20.94 16L51 349a22 22 0 1 0 22 38.1l34-19.63a89.7 89.7 0 0 1 3.42 26.15A22 22 0 0 0 132 416h.41a22 22 0 0 0 22-21.59 133.6 133.6 0 0 0-8.5-49.41L234 294.11v101.71a133.5 133.5 0 0 0-47.07 17.33 22 22 0 1 0 22.71 37.69A89.6 89.6 0 0 1 234 440.73V474a22 22 0 0 0 44 0v-33.27a89.6 89.6 0 0 1 24.36 10.11 22 22 0 0 0 22.71-37.69A133.5 133.5 0 0 0 278 395.82V294.11L366.09 345a133.6 133.6 0 0 0-8.52 49.43 22 22 0 0 0 22 21.59h.43a22 22 0 0 0 21.59-22.41 89.7 89.7 0 0 1 3.41-26.19l34 19.63A22 22 0 1 0 461 349'/></svg>", $0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M394 480a16 16 0 0 1-9.39-3L256 383.76 127.39 477a16 16 0 0 1-24.55-18.08L153 310.35 23 221.2a16 16 0 0 1 9-29.2h160.38l48.4-148.95a16 16 0 0 1 30.44 0l48.4 149H480a16 16 0 0 1 9.05 29.2L359 310.35l50.13 148.53A16 16 0 0 1 394 480'/></svg>", z0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M256 118a22 22 0 0 1-22-22V48a22 22 0 0 1 44 0v48a22 22 0 0 1-22 22M256 486a22 22 0 0 1-22-22v-48a22 22 0 0 1 44 0v48a22 22 0 0 1-22 22M369.14 164.86a22 22 0 0 1-15.56-37.55l33.94-33.94a22 22 0 0 1 31.11 31.11l-33.94 33.94a21.93 21.93 0 0 1-15.55 6.44M108.92 425.08a22 22 0 0 1-15.55-37.56l33.94-33.94a22 22 0 1 1 31.11 31.11l-33.94 33.94a21.94 21.94 0 0 1-15.56 6.45M464 278h-48a22 22 0 0 1 0-44h48a22 22 0 0 1 0 44M96 278H48a22 22 0 0 1 0-44h48a22 22 0 0 1 0 44M403.08 425.08a21.94 21.94 0 0 1-15.56-6.45l-33.94-33.94a22 22 0 0 1 31.11-31.11l33.94 33.94a22 22 0 0 1-15.55 37.56M142.86 164.86a21.9 21.9 0 0 1-15.55-6.44l-33.94-33.94a22 22 0 0 1 31.11-31.11l33.94 33.94a22 22 0 0 1-15.56 37.55M256 358a102 102 0 1 1 102-102 102.12 102.12 0 0 1-102 102'/></svg>", H0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M448 256a192.6 192.6 0 0 0 32-2.68A224 224 0 0 0 258.68 32 192.6 192.6 0 0 0 256 64c0 105.87 86.13 192 192 192M253.35 480c.94-5.67 1.65-11.4 2.09-17.18.37-4.88.56-9.86.56-14.79 0-105.87-86.13-192-192-192a192.6 192.6 0 0 0-32 2.68A224 224 0 0 0 253.35 480'/><path d='M289.61 222.39A222.53 222.53 0 0 1 224 64a226 226 0 0 1 2-30A224.1 224.1 0 0 0 34 226a226 226 0 0 1 30-2 222.53 222.53 0 0 1 158.39 65.61A222.53 222.53 0 0 1 288 448c0 5.74-.22 11.53-.65 17.22q-.5 6.42-1.36 12.79A224.12 224.12 0 0 0 478 286a226 226 0 0 1-30 2 222.53 222.53 0 0 1-158.39-65.61'/></svg>", R0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M96 416a16 16 0 0 1-14.3-23.16l24-48a16 16 0 0 1 28.62 14.32l-24 48A16 16 0 0 1 96 416M120 480a16 16 0 0 1-14.3-23.16l16-32a16 16 0 0 1 28.62 14.32l-16 32A16 16 0 0 1 120 480M376 416a16 16 0 0 1-14.3-23.16l24-48a16 16 0 0 1 28.62 14.32l-24 48A16 16 0 0 1 376 416M400 480a16 16 0 0 1-14.3-23.16l16-32a16 16 0 0 1 28.62 14.32l-16 32A16 16 0 0 1 400 480'/><path d='M405.84 136.9a151.25 151.25 0 0 0-47.6-81.9 153 153 0 0 0-241.81 51.86C60.5 110.16 16 156.65 16 213.33 16 272.15 63.91 320 122.8 320h66.31l-12.89 77.37A16 16 0 0 0 192 416h32v64a16 16 0 0 0 29 9.3l80-112a16 16 0 0 0-13-25.3h-27.51l8-32h103.84a91.56 91.56 0 0 0 1.51-183.1'/></svg>", E0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M491.31 324.69 432 265.37a31.8 31.8 0 0 0-22.63-9.37H272v-32h144a32 32 0 0 0 32-32V96a32 32 0 0 0-32-32H272V48a16 16 0 0 0-32 0v16H102.63A31.8 31.8 0 0 0 80 73.37l-59.31 59.32a16 16 0 0 0 0 22.62L80 214.63a31.8 31.8 0 0 0 22.63 9.37H240v32H96a32 32 0 0 0-32 32v96a32 32 0 0 0 32 32h144v48a16 16 0 0 0 32 0v-48h137.37a31.8 31.8 0 0 0 22.63-9.37l59.31-59.32a16 16 0 0 0 0-22.62'/></svg>", U0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><ellipse cx='256' cy='304' rx='32.05' ry='31.94' transform='rotate(-45 256.001 304)'/><path d='M352 32h-15a10 10 0 0 1-7.87-3.78A31.94 31.94 0 0 0 304 16h-96a32 32 0 0 0-26.11 13.52A6 6 0 0 1 177 32h-17c-36.81 0-64 28.84-64 64v255c0 23.27 25.6 42.06 83 60.94a753 753 0 0 0 73.77 19.73 16 16 0 0 0 6.46 0A753 753 0 0 0 333 411.94c57.4-18.88 83-37.67 83-60.94V96a64 64 0 0 0-64-64m-168 96h144a8 8 0 0 1 8 8v48a8 8 0 0 1-8 8H184a8 8 0 0 1-8-8v-48a8 8 0 0 1 8-8m76.18 239.87a64 64 0 1 1 59.69-59.69 64.07 64.07 0 0 1-59.69 59.69'/><path d='M395.31 468.69 347.63 421c-6.09-6.1-16-6.66-22.38-.86a16 16 0 0 0-.56 23.16l4.68 4.69H182.63l4.36-4.37c6.1-6.09 6.66-16 .86-22.38a16 16 0 0 0-23.16-.56l-48 48a16 16 0 1 0 22.62 22.62l11.32-11.3h210.74l11.32 11.31a16 16 0 0 0 22.62-22.62'/></svg>", O0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='m312.55 479.9-56.42-114-44.62-57a72.37 72.37 0 0 1-10.06-36.9V143.64H217a40 40 0 0 1 40 40v182.21' stroke-linecap='round' stroke-linejoin='round' class='ionicon-stroke-width'/><path d='M127.38 291.78v-74.07s37-74.07 74.07-74.07' stroke-linecap='round' stroke-linejoin='round' class='ionicon-fill-none ionicon-stroke-width'/><path d='M368.09 291.78a18.5 18.5 0 0 1-10.26-3.11L297.7 250a21.18 21.18 0 0 1-9.7-17.79v-23.7a5.65 5.65 0 0 1 8.69-4.77l81.65 54.11a18.52 18.52 0 0 1-10.29 33.93ZM171.91 493.47a18.5 18.5 0 0 1-14.83-7.41c-6.14-8.18-4-17.18 3.7-25.92l59.95-74.66a7.41 7.41 0 0 1 10.76 2.06c1.56 2.54 3.38 5.65 5.19 9.09 5.24 9.95 6 16.11-1.68 25.7-8 10-52 67.44-52 67.44-2.62 2.98-7.23 3.7-11.09 3.7'/><circle cx='257' cy='69.56' r='37.04' stroke-linecap='round' stroke-linejoin='round' stroke-width='16px'/></svg>", N0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M449.07 399.08 278.64 82.58c-12.08-22.44-44.26-22.44-56.35 0L51.87 399.08A32 32 0 0 0 80 446.25h340.89a32 32 0 0 0 28.18-47.17m-198.6-1.83a20 20 0 1 1 20-20 20 20 0 0 1-20 20m21.72-201.15-5.74 122a16 16 0 0 1-32 0l-5.74-121.95a21.73 21.73 0 0 1 21.5-22.69h.21a21.74 21.74 0 0 1 21.73 22.7Z'/></svg>", Z0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M265.12 60.12a12 12 0 0 0-18.23 0C215.23 97.15 112 225.17 112 320c0 88.37 55.64 144 144 144s144-55.63 144-144c0-94.83-103.23-222.85-134.88-259.88M272 412a12 12 0 0 1-11.34-16 11.89 11.89 0 0 1 11.41-8A60.06 60.06 0 0 0 332 328.07a11.89 11.89 0 0 1 8-11.41A12 12 0 0 1 356 328a84.09 84.09 0 0 1-84 84'/></svg>", q0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path fill-rule='evenodd' d='M331.295 353.764c.131.181-.091-.13 0 0a46 46 0 0 0-1.039-1.365 64 64 0 0 0-3.618-4.17c-3.112-3.302-7.69-7.537-13.87-11.725C300.287 328.047 281.56 320 256 320s-44.287 8.047-56.768 16.504c-6.18 4.188-10.758 8.423-13.87 11.725a64 64 0 0 0-3.618 4.17c.264-.361-.43.544 0 0l-1.586 2.142a16 16 0 0 0 2.135 20.463l62.586 60.5c6.202 5.995 16.039 5.995 22.241 0l62.587-60.5a16 16 0 0 0 2.136-20.463z' clip-rule='evenodd'/><path fill-rule='evenodd' d='M421.086 269.862c-.135-.218-.596-.966-.812-1.3a72 72 0 0 0-1.81-2.639c-1.552-2.163-3.813-5.096-6.861-8.536-6.099-6.88-15.362-15.802-28.417-24.637C356.915 214.969 315.967 198 256 198s-100.915 16.969-127.186 34.75c-13.055 8.835-22.318 17.757-28.417 24.637-3.049 3.44-5.31 6.373-6.861 8.536a71 71 0 0 0-1.81 2.639q-.324.502-.527.829l-.285.471a16 16 0 0 0 2.678 19.664l35.31 34a16 16 0 0 0 23.007-.84l.195-.209c.207-.219.565-.591 1.074-1.096a93 93 0 0 1 4.831-4.436c4.402-3.785 11.093-8.947 19.955-14.141C195.658 292.436 221.893 282 256 282s60.342 10.436 78.036 20.804c8.862 5.194 15.553 10.356 19.955 14.141a93 93 0 0 1 4.831 4.436 49 49 0 0 1 1.269 1.305l-.005-.006-.013-.015m0 0 .026.029a16.001 16.001 0 0 0 22.999.832l35.31-34a16 16 0 0 0 2.678-19.664' clip-rule='evenodd'/><path d='M507.974 181.264c.343.459 1.181 1.629 1.181 1.629a16 16 0 0 1-2.029 20.606l-36.69 35.5a16 16 0 0 1-23.345-1.17l-.003-.003-.085-.099q-.138-.16-.482-.548a108 108 0 0 0-2.197-2.379c-2.009-2.116-5.095-5.229-9.229-9.01-8.275-7.569-20.69-17.764-36.997-27.981C365.499 177.384 317.58 157 256 157s-109.499 20.384-142.098 40.809c-16.307 10.217-28.722 20.412-36.997 27.981-4.133 3.781-7.22 6.894-9.229 9.01a109 109 0 0 0-2.197 2.379q-.345.388-.482.548l-.047.054-.03.034-.004.006-.004.005-.004.004a16 16 0 0 1-23.344 1.169l-36.69-35.5a16 16 0 0 1-2.03-20.606l.011-.016.013-.017.03-.043.079-.113.24-.337q.295-.413.809-1.103c.686-.92 1.667-2.199 2.949-3.786 2.563-3.174 6.335-7.585 11.367-12.818 10.057-10.46 25.185-24.241 45.783-37.973C105.437 99.146 168.48 72 256 72s150.563 27.146 191.875 54.687c20.598 13.732 35.726 27.513 45.783 37.973 5.032 5.233 8.804 9.644 11.367 12.818a125 125 0 0 1 2.949 3.786'/></svg>", G0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M414.56 94.92V80a16 16 0 0 0-16-16H113.44a16 16 0 0 0-16 16v14.92c-1.46 11.37-9.65 90.74 36.93 144.69 24.87 28.8 60.36 44.85 105.63 47.86V416h-80a16 16 0 0 0 0 32h192a16 16 0 0 0 0-32h-80V287.47c45.27-3 80.76-19.06 105.63-47.86 46.58-53.95 38.37-133.32 36.93-144.69m-285.3 3.41a15 15 0 0 0 .18-2.33h253.12a15 15 0 0 0 .18 2.33 202 202 0 0 1 0 45.67H129.32a204.3 204.3 0 0 1-.06-45.67'/></svg>", j0 = {
|
|
513
|
+
const q1 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M186.62 464H160a16 16 0 0 1-14.57-22.6l64.46-142.25L113.1 297l-35.3 42.77C71.07 348.23 65.7 352 52 352H34.08a17.66 17.66 0 0 1-14.7-7.06c-2.38-3.21-4.72-8.65-2.44-16.41l19.82-71c.15-.53.33-1.06.53-1.58a.4.4 0 0 0 0-.15 15 15 0 0 1-.53-1.59l-19.84-71.45c-2.15-7.61.2-12.93 2.56-16.06a16.83 16.83 0 0 1 13.6-6.7H52c10.23 0 20.16 4.59 26 12l34.57 42.05 97.32-1.44-64.44-142A16 16 0 0 1 160 48h26.91a25 25 0 0 1 19.35 9.8l125.05 152 57.77-1.52c4.23-.23 15.95-.31 18.66-.31C463 208 496 225.94 496 256c0 9.46-3.78 27-29.07 38.16-14.93 6.6-34.85 9.94-59.21 9.94-2.68 0-14.37-.08-18.66-.31l-57.76-1.54-125.36 152a25 25 0 0 1-19.32 9.75'/></svg>", G1 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M256 48C141.31 48 48 141.31 48 256s93.31 208 208 208 208-93.31 208-208S370.69 48 256 48m0 319.91a20 20 0 1 1 20-20 20 20 0 0 1-20 20m21.72-201.15-5.74 122a16 16 0 0 1-32 0l-5.74-121.94v-.05a21.74 21.74 0 1 1 43.44 0Z'/></svg>", j1 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M424.11 192H360L268.8 70.4a16 16 0 0 0-25.6 0L152 192H87.89a32.57 32.57 0 0 0-32.62 32.44 30.3 30.3 0 0 0 1.31 9l46.27 163.14a50.72 50.72 0 0 0 48.84 36.91h208.62a51.21 51.21 0 0 0 49-36.86l46.33-163.36a15.6 15.6 0 0 0 .46-2.36l.53-4.93a13 13 0 0 0 .09-1.55A32.57 32.57 0 0 0 424.11 192M256 106.67 320 192H192Zm0 245a37.7 37.7 0 1 1 37.88-37.7A37.87 37.87 0 0 1 256 351.63Z'/></svg>", J1 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='m256 233.37 34.45-34.45a207.08 207.08 0 0 1-50.12-135.25c0-5 .19-10.05.54-15A207.1 207.1 0 0 0 120.67 98ZM313.14 176.23 391.33 98A207.07 207.07 0 0 0 273 48.8c-.41 4.9-.64 9.86-.64 14.87a175.25 175.25 0 0 0 40.78 112.56M335.77 198.86a175.25 175.25 0 0 0 112.56 40.81c5 0 10-.23 14.87-.64A207.07 207.07 0 0 0 414 120.67ZM176.23 313.14a175.23 175.23 0 0 0-112.56-40.81q-7.52 0-14.87.64A207.07 207.07 0 0 0 98 391.33ZM256 278.63l-34.45 34.45a207.08 207.08 0 0 1 50.12 135.25c0 5-.19 10.05-.54 15A207.06 207.06 0 0 0 391.33 414ZM448.33 271.67a207.08 207.08 0 0 1-135.25-50.12L278.63 256 414 391.33a207.1 207.1 0 0 0 49.39-120.2c-5.01.35-10.02.54-15.06.54M233.37 256 98 120.67a207.06 207.06 0 0 0-49.39 120.2c5-.35 10-.54 15-.54a207.08 207.08 0 0 1 135.25 50.12ZM120.67 414A207.07 207.07 0 0 0 239 463.2q.63-7.35.64-14.87a175.23 175.23 0 0 0-40.81-112.56Z'/></svg>", W1 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M432 230.7a79.4 79.4 0 0 0-32-6.7H112a79.5 79.5 0 0 0-32 6.69A80.09 80.09 0 0 0 32 304v112a16 16 0 0 0 32 0v-8a8.1 8.1 0 0 1 8-8h368a8.1 8.1 0 0 1 8 8v8a16 16 0 0 0 32 0V304a80.09 80.09 0 0 0-48-73.3M376 80H136a56 56 0 0 0-56 56v72a4 4 0 0 0 5.11 3.84A95.5 95.5 0 0 1 112 208h4.23a4 4 0 0 0 4-3.55A32 32 0 0 1 152 176h56a32 32 0 0 1 31.8 28.45 4 4 0 0 0 4 3.55h24.46a4 4 0 0 0 4-3.55A32 32 0 0 1 304 176h56a32 32 0 0 1 31.8 28.45 4 4 0 0 0 4 3.55h4.2a95.5 95.5 0 0 1 26.89 3.85A4 4 0 0 0 432 208v-72a56 56 0 0 0-56-56'/></svg>", K1 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M392 208h-24v-5.74A63.93 63.93 0 0 0 321.65 96a111 111 0 0 0-27.59-47.29A108.62 108.62 0 0 0 216 16c-29.91 0-57.78 12.28-79 34.68a56 56 0 0 0-67.51 77.54A63.91 63.91 0 0 0 80 231.39V440a56.06 56.06 0 0 0 56 56h176a56.06 56.06 0 0 0 56-56v-8h24a72.08 72.08 0 0 0 72-72v-80a72.08 72.08 0 0 0-72-72M176 416a16 16 0 0 1-32 0V256a16 16 0 0 1 32 0Zm64 0a16 16 0 0 1-32 0V256a16 16 0 0 1 32 0Zm64 0a16 16 0 0 1-32 0V256a16 16 0 0 1 32 0Zm16-224c-8.33 0-20.55-5.18-26.69-11.31A16 16 0 0 0 282 176H160a16 16 0 0 0-15 10.53c-6.83 18.68-23.6 21.47-33 21.47a32 32 0 0 1 0-64c.09 0 9.12.34 16.4 5.8a16 16 0 1 0 19.2-25.6A63.7 63.7 0 0 0 112 112a63.6 63.6 0 0 0-14 1.57A24 24 0 0 1 120 80a23.78 23.78 0 0 1 19.38 9.84 51.4 51.4 0 0 1 4.71 7.9A16 16 0 0 0 176 96c0-6.77-3.61-15.17-10.76-25-.46-.63-1-1.25-1.45-1.86C178.39 55.44 196.64 48 216 48a76.86 76.86 0 0 1 55.23 23.18A80.2 80.2 0 0 1 292.61 142a16 16 0 0 0 12.73 18.71 16.3 16.3 0 0 0 3 .28 16 16 0 0 0 15.7-13 112 112 0 0 0 1.96-19.42 32 32 0 0 1-6 63.43m112 168a40 40 0 0 1-40 40h-24V240h24a40 40 0 0 1 40 40Z'/></svg>", Y1 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M388 448a92 92 0 1 1 92-92 92.1 92.1 0 0 1-92 92m0-152a60 60 0 1 0 60 60 60.07 60.07 0 0 0-60-60M124 448a92 92 0 1 1 92-92 92.1 92.1 0 0 1-92 92m0-152a60 60 0 1 0 60 60 60.07 60.07 0 0 0-60-60M320 128a31.89 31.89 0 0 0 32-32.1A31.55 31.55 0 0 0 320.2 64a32 32 0 1 0-.2 64'/><path d='M367.55 192h-43.76a4 4 0 0 1-3.51-2.08l-31.74-58.17a31 31 0 0 0-49.38-7.75l-69.86 70.4a32.56 32.56 0 0 0-9.3 22.4c0 17.4 12.6 23.6 18.5 27.1 28.5 16.42 48.57 28.43 59.58 35.1a4 4 0 0 1 1.92 3.41v69.12c0 8.61 6.62 16 15.23 16.43A16 16 0 0 0 272 352v-86a16 16 0 0 0-6.66-13l-37-26.61a4 4 0 0 1-.58-6l42-44.79a4 4 0 0 1 6.42.79L298 215.77a16 16 0 0 0 14 8.23h56a16 16 0 0 0 16-16.77c-.42-8.61-7.84-15.23-16.45-15.23'/></svg>", X1 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M416 473.14a6.83 6.83 0 0 0-3.57-6c-27.07-14.55-51.76-36.82-62.62-48a10.05 10.05 0 0 0-12.72-1.51c-50.33 32.42-111.61 32.44-161.95.05a10.09 10.09 0 0 0-12.82 1.56c-10.77 11.28-35.19 33.3-62.43 47.75a7.11 7.11 0 0 0-3.89 5.73 6.73 6.73 0 0 0 7.92 7.15c20.85-4.18 41-13.68 60.2-23.83a8.71 8.71 0 0 1 8-.06 185.14 185.14 0 0 0 167.81 0 8.82 8.82 0 0 1 8.09.06c19.1 10 39.22 19.59 60 23.8a6.73 6.73 0 0 0 8-6.71ZM476.71 246.91c-3.49-8.39-10.9-14.89-20.9-18.35L432 219.08V136a64 64 0 0 0-64-64h-32v-8a40 40 0 0 0-40-40h-80a40 40 0 0 0-40 40v8h-32a64 64 0 0 0-64 64v83.15l-23.58 9.39c-9.94 3.3-17.63 10-21.15 18.44-2.45 5.89-5.25 15-1.3 26.46l.1.3 46.66 119.44A23.33 23.33 0 0 0 102.58 408c.5 0 1 0 1.53-.05 31.32-2 56-17.27 72.6-31.61C200.42 396.81 228.31 408 256 408s55.43-11.2 79.14-31.7c16.59 14.36 41.3 29.67 72.61 31.65a23.36 23.36 0 0 0 23.37-14.74l46.65-119c3.28-8.09 2.9-17.76-1.06-27.3M269 154.21l-1.14-.4a39.53 39.53 0 0 0-23.73 0l-.58.18-126.07 50.23a4 4 0 0 1-5.48-3.72V136a32 32 0 0 1 32-32h224a32 32 0 0 1 32 32v64.44a4 4 0 0 1-5.48 3.72Z'/></svg>", Q1 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M400 32H112a48 48 0 0 0-48 48v320a47.9 47.9 0 0 0 16 35.74V454a26 26 0 0 0 26 26h28a26 26 0 0 0 26-26v-6h192v6a26 26 0 0 0 26 26h28a26 26 0 0 0 26-26v-18.26A47.9 47.9 0 0 0 448 400V80a48 48 0 0 0-48-48M147.47 399.82a32 32 0 1 1 28.35-28.35 32 32 0 0 1-28.35 28.35M236 288H112a16 16 0 0 1-16-16V144a16 16 0 0 1 16-16h124a4 4 0 0 1 4 4v152a4 4 0 0 1-4 4m20-192H112.46c-8.6 0-16-6.6-16.44-15.19A16 16 0 0 1 112 64h287.54c8.6 0 16 6.6 16.44 15.19A16 16 0 0 1 400 96zm20 32h124a16 16 0 0 1 16 16v128a16 16 0 0 1-16 16H276a4 4 0 0 1-4-4V132a4 4 0 0 1 4-4m60.18 243.47a32 32 0 1 1 28.35 28.35 32 32 0 0 1-28.35-28.35'/></svg>", e0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M432 176H320V64a48 48 0 0 0-48-48H80a48 48 0 0 0-48 48v416a16 16 0 0 0 16 16h104a8 8 0 0 0 8-8v-71.55c0-8.61 6.62-16 15.23-16.43A16 16 0 0 1 192 416v72a8 8 0 0 0 8 8h264a16 16 0 0 0 16-16V224a48 48 0 0 0-48-48M98.08 431.87a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m0-80a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m0-80a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m0-80a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m0-80a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m80 240a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m0-80a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m0-80a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m0-80a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m80 320a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m0-80a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m0-80a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m0-80a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79m0-80a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79M444 464H320V208h112a16 16 0 0 1 16 16v236a4 4 0 0 1-4 4'/><path d='M400 400a16 16 0 1 0 16 16 16 16 0 0 0-16-16M400 320a16 16 0 1 0 16 16 16 16 0 0 0-16-16M400 240a16 16 0 1 0 16 16 16 16 0 0 0-16-16M336 400a16 16 0 1 0 16 16 16 16 0 0 0-16-16M336 320a16 16 0 1 0 16 16 16 16 0 0 0-16-16M336 240a16 16 0 1 0 16 16 16 16 0 0 0-16-16'/></svg>", t0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M432 64H96a16 16 0 0 0-16 16v192a96.11 96.11 0 0 0 96 96h112a96.11 96.11 0 0 0 96-96v-80h18a62.07 62.07 0 0 0 62-62V96a32 32 0 0 0-32-32m0 66a30 30 0 0 1-30 30h-18V96h48ZM400 400H64a16 16 0 0 0 0 32h336a16 16 0 0 0 0-32'/></svg>", a0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><circle cx='256' cy='272' r='64'/><path d='M432 144h-59c-3 0-6.72-1.94-9.62-5l-25.94-40.94a15.5 15.5 0 0 0-1.37-1.85C327.11 85.76 315 80 302 80h-92c-13 0-25.11 5.76-34.07 16.21a15.5 15.5 0 0 0-1.37 1.85l-25.94 41c-2.22 2.42-5.34 5-8.62 5v-8a16 16 0 0 0-16-16h-24a16 16 0 0 0-16 16v8h-4a48.05 48.05 0 0 0-48 48V384a48.05 48.05 0 0 0 48 48h352a48.05 48.05 0 0 0 48-48V192a48.05 48.05 0 0 0-48-48M256 368a96 96 0 1 1 96-96 96.11 96.11 0 0 1-96 96'/></svg>", o0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M447.68 220.78a16 16 0 0 0-1-3.08l-37.78-88.16C400.19 109.17 379 96 354.89 96H157.11c-24.09 0-45.3 13.17-54 33.54L65.29 217.7A15.7 15.7 0 0 0 64 224v176a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-16h256v16a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V224a16 16 0 0 0-.32-3.22M144 320a32 32 0 1 1 32-32 32 32 0 0 1-32 32m224 0a32 32 0 1 1 32-32 32 32 0 0 1-32 32M104.26 208l28.23-65.85C136.11 133.69 146 128 157.11 128h197.78c11.1 0 21 5.69 24.62 14.15L407.74 208Z'/></svg>", l0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><circle cx='176' cy='416' r='32'/><circle cx='400' cy='416' r='32'/><path d='M456.8 120.78a23.92 23.92 0 0 0-18.56-8.78H133.89l-6.13-34.78A16 16 0 0 0 112 64H48a16 16 0 0 0 0 32h50.58l45.66 258.78A16 16 0 0 0 160 368h256a16 16 0 0 0 0-32H173.42l-5.64-32h241.66A24.07 24.07 0 0 0 433 284.71l28.8-144a24 24 0 0 0-5-19.93'/></svg>", r0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M472 432h-48a24 24 0 0 1-24-24V104a24 24 0 0 1 24-24h48a24 24 0 0 1 24 24v304a24 24 0 0 1-24 24M344 432h-48a24 24 0 0 1-24-24V184a24 24 0 0 1 24-24h48a24 24 0 0 1 24 24v224a24 24 0 0 1-24 24M216 432h-48a24 24 0 0 1-24-24V248a24 24 0 0 1 24-24h48a24 24 0 0 1 24 24v160a24 24 0 0 1-24 24M88 432H40a24 24 0 0 1-24-24v-96a24 24 0 0 1 24-24h48a24 24 0 0 1 24 24v96a24 24 0 0 1-24 24'/></svg>", n0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M256 48C141.31 48 48 141.31 48 256s93.31 208 208 208 208-93.31 208-208S370.69 48 256 48m108.25 138.29-134.4 160a16 16 0 0 1-12 5.71h-.27a16 16 0 0 1-11.89-5.3l-57.6-64a16 16 0 1 1 23.78-21.4l45.29 50.32 122.59-145.91a16 16 0 0 1 24.5 20.58'/></svg>", i0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M256 48C141.31 48 48 141.31 48 256s93.31 208 208 208 208-93.31 208-208S370.69 48 256 48m75.31 260.69a16 16 0 1 1-22.62 22.62L256 278.63l-52.69 52.68a16 16 0 0 1-22.62-22.62L233.37 256l-52.68-52.69a16 16 0 0 1 22.62-22.62L256 233.37l52.69-52.68a16 16 0 0 1 22.62 22.62L278.63 256Z'/></svg>", s0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M376 432H116c-32.37 0-60.23-8.57-80.59-24.77C12.24 388.78 0 361.39 0 328c0-57.57 42-90.58 87.56-100.75a16 16 0 0 0 12.12-12.39c7.68-36.68 24.45-68.15 49.18-92A153.57 153.57 0 0 1 256 80c35.5 0 68.24 11.69 94.68 33.8a156.24 156.24 0 0 1 42.05 56 16 16 0 0 0 11.37 9.16c27 5.61 51.07 17.33 69.18 33.85C498.61 235.88 512 267.42 512 304c0 36-14.38 68.88-40.49 92.59C446.36 419.43 412.44 432 376 432'/></svg>", c0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><circle cx='256' cy='256' r='24'/><path d='M256 48C141.31 48 48 141.31 48 256s93.31 208 208 208 208-93.31 208-208S370.69 48 256 48m105.07 113.33-46.88 117.2a64 64 0 0 1-35.66 35.66l-117.2 46.88a8 8 0 0 1-10.4-10.4l46.88-117.2a64 64 0 0 1 35.66-35.66l117.2-46.88a8 8 0 0 1 10.4 10.4'/></svg>", u0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M512 256c0-16.54-14.27-46.76-45.61-74a207 207 0 0 0-60.28-36.12 3.15 3.15 0 0 0-3.93 1.56c-.15.29-.3.57-.47.86l-9.59 15.9a183.24 183.24 0 0 0 .07 183.78l.23.39 8.74 16a4 4 0 0 0 4.94 1.82C479.63 337.42 512 281.49 512 256m-93.92-.14a16 16 0 1 1 13.79-13.79 16 16 0 0 1-13.79 13.79'/><path d='M335.45 256a214.8 214.8 0 0 1 29.08-108l.12-.21 4.62-7.67a4 4 0 0 0-2.59-6 284 284 0 0 0-39.26-5.39 7.94 7.94 0 0 1-4.29-1.6c-19.28-14.66-57.5-40.3-96.46-46.89a16 16 0 0 0-18 20.18l10.62 37.17a4 4 0 0 1-2.42 4.84c-36.85 13.69-68.59 38.75-91.74 57.85a8 8 0 0 1-10.06.06q-4.72-3.75-9.69-7.39c-39.64-28.95-86.21-32.76-88.17-32.9a16 16 0 0 0-16.83 19.4c.42 1.93 9.19 40.69 31.7 71.61a8.09 8.09 0 0 1 0 9.55C9.57 291.52.8 330.29.38 332.22a16 16 0 0 0 16.83 19.4c2-.14 48.53-4 88.12-32.88q4.85-3.56 9.47-7.22a8 8 0 0 1 10.06.07c23.25 19.19 55.05 44.28 92 58a4 4 0 0 1 2.42 4.83l-10.66 37.18a16 16 0 0 0 18 20.18c17.16-2.9 51.88-12.86 96.05-46.83a8.15 8.15 0 0 1 4.36-1.65 287 287 0 0 0 39.22-5.3 4 4 0 0 0 2.69-5.83l-4.51-8.29A214.8 214.8 0 0 1 335.45 256'/></svg>", d0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M193.69 152.84a16 16 0 0 1 29.64 2.56l36.4 121.36 30-59.92a16 16 0 0 1 28.62 0L345.89 272h96.76A213.1 213.1 0 0 0 464 176.65C463.37 114.54 413.54 64 352.92 64c-48.09 0-80 29.54-96.92 51-16.88-21.49-48.83-51-96.92-51C98.46 64 48.63 114.54 48 176.65A211.1 211.1 0 0 0 56.93 240h93.18Z'/><path d='M321.69 295.16 304 259.78l-33.69 67.38A16 16 0 0 1 256 336q-.67 0-1.38-.06a16 16 0 0 1-14-11.34l-36.4-121.36-30 59.92A16 16 0 0 1 160 272H69.35q14 29.29 37.27 57.66c18.77 22.88 52.8 59.46 131.39 112.81a31.84 31.84 0 0 0 36 0c78.59-53.35 112.62-89.93 131.39-112.81a317 317 0 0 0 19-25.66H336a16 16 0 0 1-14.31-8.84M464 272h-21.35a260 260 0 0 1-18.25 32H464a16 16 0 0 0 0-32M48 240a16 16 0 0 0 0 32h21.35a225 225 0 0 1-12.42-32Z'/></svg>", p0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M80 480a16 16 0 0 1-16-16V68.13a24 24 0 0 1 11.9-20.72C88 40.38 112.38 32 160 32c37.21 0 78.83 14.71 115.55 27.68C305.12 70.13 333.05 80 352 80a183.8 183.8 0 0 0 71-14.5 18 18 0 0 1 25 16.58v219.36a20 20 0 0 1-12 18.31c-8.71 3.81-40.51 16.25-84 16.25-24.14 0-54.38-7.14-86.39-14.71C229.63 312.79 192.43 304 160 304c-36.87 0-55.74 5.58-64 9.11V464a16 16 0 0 1-16 16'/></svg>", g0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M394.23 197.56a300.4 300.4 0 0 0-53.37-90C301.2 61.65 249.05 32 208 32a16 16 0 0 0-15.48 20c13.87 53-14.88 97.07-45.31 143.72C122 234.36 96 274.27 96 320c0 88.22 71.78 160 160 160s160-71.78 160-160c0-43.3-7.32-84.49-21.77-122.44m-105.9 221.13C278 429.69 265.05 432 256 432s-22-2.31-32.33-13.31S208 390.24 208 368c0-25.14 8.82-44.28 17.34-62.78 4.95-10.74 10-21.67 13-33.37a8 8 0 0 1 12.49-4.51A126.5 126.5 0 0 1 275 292c18.17 24 29 52.42 29 76 0 22.24-5.42 39.77-15.67 50.69'/></svg>", m0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><circle cx='256' cy='256' r='48'/><path d='M475.93 303.91a67.49 67.49 0 0 0-44.34-115.53 5.2 5.2 0 0 1-4.58-3.21 5.21 5.21 0 0 1 1-5.51A67.83 67.83 0 0 0 378 66.33h-.25A67.13 67.13 0 0 0 332.35 84a5.21 5.21 0 0 1-5.52 1 5.23 5.23 0 0 1-3.22-4.58 67.68 67.68 0 0 0-135.23 0 5.2 5.2 0 0 1-3.21 4.58 5.21 5.21 0 0 1-5.52-1 67.1 67.1 0 0 0-45.44-17.69H134a67.91 67.91 0 0 0-50 113.34 5.21 5.21 0 0 1 1 5.51 5.2 5.2 0 0 1-4.58 3.21 67.71 67.71 0 0 0 0 135.23 5.23 5.23 0 0 1 4.58 3.23 5.22 5.22 0 0 1-1 5.52 67.54 67.54 0 0 0 50.08 113h.25A67.38 67.38 0 0 0 179.65 428a5.21 5.21 0 0 1 5.51-1 5.2 5.2 0 0 1 3.21 4.58 67.71 67.71 0 0 0 135.23 0 5.23 5.23 0 0 1 3.22-4.58 5.21 5.21 0 0 1 5.51 1 67.38 67.38 0 0 0 45.29 17.42h.25a67.48 67.48 0 0 0 50.08-113 5.22 5.22 0 0 1-1-5.52 5.23 5.23 0 0 1 4.58-3.22 67.3 67.3 0 0 0 44.4-19.77M256 336a80 80 0 1 1 80-80 80.09 80.09 0 0 1-80 80'/></svg>", v0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M256 48C141.31 48 48 141.31 48 256s93.31 208 208 208 208-93.31 208-208S370.69 48 256 48m143 304h-45.22a8 8 0 0 1-6.91-4l-16.14-27.68a8 8 0 0 1-.86-6l14.86-59.92a8 8 0 0 1 4.65-5.45l28.1-11.9a8 8 0 0 1 8.34 1.3l41.63 35.82a8 8 0 0 1 2.69 7.26 174.75 174.75 0 0 1-24.28 66.68A8 8 0 0 1 399 352M134.52 237.13l28.1 11.9a8 8 0 0 1 4.65 5.45l14.86 59.92a8 8 0 0 1-.86 6L165.13 348a8 8 0 0 1-6.91 4H113a8 8 0 0 1-6.82-3.81 174.75 174.75 0 0 1-24.28-66.68 8 8 0 0 1 2.69-7.26l41.63-35.82a8 8 0 0 1 8.3-1.3m256.94-87.24-18.07 51.38A8 8 0 0 1 369 206l-29.58 12.53a8 8 0 0 1-8.26-1.24L274.9 170.1a8 8 0 0 1-2.9-6.1v-33.58a8 8 0 0 1 3.56-6.65l42.83-28.54a8 8 0 0 1 7.66-.67A176.9 176.9 0 0 1 390 142a8 8 0 0 1 1.46 7.89M193.6 95.23l42.84 28.54a8 8 0 0 1 3.56 6.65V164a8 8 0 0 1-2.86 6.13l-56.26 47.19a8 8 0 0 1-8.26 1.24L143 206a8 8 0 0 1-4.43-4.72L120.5 149.9a8 8 0 0 1 1.5-7.9 176.9 176.9 0 0 1 64-47.48 8 8 0 0 1 7.6.71m17.31 327.46L191.18 373a8 8 0 0 1 .52-7l15.17-26a8 8 0 0 1 6.91-4h84.44a8 8 0 0 1 6.91 4l15.18 26a8 8 0 0 1 .53 7l-19.59 49.67a8 8 0 0 1-5.69 4.87 176.6 176.6 0 0 1-79 0 8 8 0 0 1-5.65-4.85'/></svg>", f0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M200 144h40v-40a40 40 0 1 0-40 40M352 104a40 40 0 0 0-80 0v40h40a40 40 0 0 0 40-40' class='ionicon-fill-none'/><path d='M80 416a64 64 0 0 0 64 64h92a4 4 0 0 0 4-4V292a4 4 0 0 0-4-4H88a8 8 0 0 0-8 8ZM240 252V144h32v108a4 4 0 0 0 4 4h140a47.9 47.9 0 0 0 16-2.75A48.09 48.09 0 0 0 464 208v-16a48 48 0 0 0-48-48h-40.54a2 2 0 0 1-1.7-3A72 72 0 0 0 256 58.82 72 72 0 0 0 138.24 141a2 2 0 0 1-1.7 3H96a48 48 0 0 0-48 48v16a48.09 48.09 0 0 0 32 45.25A47.9 47.9 0 0 0 96 256h140a4 4 0 0 0 4-4m32-148a40 40 0 1 1 40 40h-40Zm-74.86-39.9A40 40 0 0 1 240 104v40h-40a40 40 0 0 1-2.86-79.89ZM276 480h92a64 64 0 0 0 64-64V296a8 8 0 0 0-8-8H276a4 4 0 0 0-4 4v184a4 4 0 0 0 4 4'/></svg>", h0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M340.75 344.49c5.91-20.7 9.82-44.75 11.31-67.84a4.41 4.41 0 0 0-4.46-4.65h-71.06a4.43 4.43 0 0 0-4.47 4.39v55.3a4.44 4.44 0 0 0 4.14 4.38 273.5 273.5 0 0 1 59 11.39 4.45 4.45 0 0 0 5.54-2.97M323.58 377.31a260 260 0 0 0-46.6-9.09 4.42 4.42 0 0 0-4.91 4.29v65.24a4.47 4.47 0 0 0 6.76 3.7c15.9-9.27 29-24.84 40.84-45.43 1.94-3.36 4.89-9.15 6.67-12.69a4.29 4.29 0 0 0-2.76-6.02M235.29 368.4a257 257 0 0 0-46.56 8.82c-2.64.76-3.75 4.4-2.55 6.79 1.79 3.56 4 8.11 5.89 11.51 13 23 26.84 37.5 41.24 45.93a4.47 4.47 0 0 0 6.76-3.7v-65.27a4.16 4.16 0 0 0-4.78-4.08M235.6 272h-71.06a4.41 4.41 0 0 0-4.46 4.64c1.48 23.06 5.37 47.16 11.26 67.84a4.46 4.46 0 0 0 5.59 3 272.2 272.2 0 0 1 59-11.36 4.44 4.44 0 0 0 4.15-4.38V276.4a4.43 4.43 0 0 0-4.48-4.4M277 143.78a235.8 235.8 0 0 0 46.5-9.14 4.3 4.3 0 0 0 2.76-6c-1.79-3.57-4.27-8.68-6.17-12.09-12.29-22-26.14-37.35-41.24-46a4.48 4.48 0 0 0-6.76 3.7v65.23a4.43 4.43 0 0 0 4.91 4.3M276.54 240h71.06a4.39 4.39 0 0 0 4.46-4.58c-1.48-22.77-5.27-47.8-11.16-68.22a4.46 4.46 0 0 0-5.59-2.95c-19 5.74-38.79 10.43-59.09 12a4.4 4.4 0 0 0-4.15 4.32v55.11a4.4 4.4 0 0 0 4.47 4.32M233.31 70.56c-15.42 8.57-29.17 24.43-41.47 46.37-1.91 3.41-4.19 8.11-6 11.67a4.31 4.31 0 0 0 2.76 6 225.4 225.4 0 0 0 46.54 9.17 4.43 4.43 0 0 0 4.91-4.29V74.26a4.49 4.49 0 0 0-6.74-3.7M235.92 176.26c-20.3-1.55-40.11-6.24-59.09-12a4.46 4.46 0 0 0-5.59 2.95c-5.89 20.42-9.68 45.45-11.16 68.22a4.39 4.39 0 0 0 4.46 4.58h71.06a4.4 4.4 0 0 0 4.47-4.34v-55.09a4.4 4.4 0 0 0-4.15-4.32'/><path d='M414.39 97.61A224 224 0 1 0 97.61 414.39 224 224 0 1 0 414.39 97.61M176.6 430.85a219 219 0 0 1-12.48-19.66c-2-3.69-4.84-9.26-6.73-13.13a7.29 7.29 0 0 0-10.31-3.16c-4.3 2.41-10 5.72-14.13 8.43a147.3 147.3 0 0 1-23.57-22.43 249 249 0 0 1 30.41-18.36c1.86-1 2.77-2.14 2.18-4.18a374.8 374.8 0 0 1-14.09-82.17 4.36 4.36 0 0 0-4.3-4.17H66.84a2 2 0 0 1-2-1.7A98 98 0 0 1 64 256a96 96 0 0 1 .86-14.29 2 2 0 0 1 2-1.7h56.74c2.29 0 4.17-1.32 4.29-3.63a372.7 372.7 0 0 1 14-81.83 4.36 4.36 0 0 0-2.19-5.11 261 261 0 0 1-29.84-17.9 170 170 0 0 1 23.14-22.8c4.08 2.68 9.4 5.71 13.66 8.11a7.89 7.89 0 0 0 11-3.42c1.88-3.87 4-8.18 6.06-11.88a222 222 0 0 1 12.54-19.91A185 185 0 0 1 256 64c28.94 0 55.9 7 80.53 18.46a202 202 0 0 1 12 19c2.59 4.66 5.34 10.37 7.66 15.32a4.29 4.29 0 0 0 5.92 1.94c5.38-2.91 11.21-6.26 16.34-9.63a171.4 171.4 0 0 1 23.2 23 245 245 0 0 1-29.06 17.31 4.35 4.35 0 0 0-2.18 5.12 348.7 348.7 0 0 1 13.85 81.4 4.33 4.33 0 0 0 4.3 4.12l56.62-.07a2 2 0 0 1 2 1.7 117.5 117.5 0 0 1 0 28.62 2 2 0 0 1-2 1.72h-56.67a4.35 4.35 0 0 0-4.3 4.17 367.4 367.4 0 0 1-13.87 81.3 4.45 4.45 0 0 0 2.19 5.19c5 2.59 10.57 5.48 15.37 8.42s9.55 6.08 14.13 9.34a172.7 172.7 0 0 1-23 22.93c-2.44-1.61-5.34-3.44-7.84-4.94-1.72-1-4.89-2.77-6.65-3.76-3.82-2.14-7.88-.54-9.79 3.4s-4.83 9.59-6.87 13.25a212 212 0 0 1-12.35 19.53C310.91 442.37 284.94 448 256 448s-54.77-5.63-79.4-17.15'/></svg>", y0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M272 320.46V202.3l166.62-75.73a16 16 0 0 0 0-29.14l-176-80A16 16 0 0 0 240 32v288.46q8-.45 16-.46t16 .46'/><path d='M463.33 457.5c-8.56-42.85-35.11-78.74-76.78-103.8-32.5-19.55-72.67-31.3-114.55-33.7v79.75a16 16 0 1 1-32 0V320c-41.88 2.4-82.05 14.15-114.55 33.7-41.67 25.06-68.22 60.95-76.78 103.8a32.49 32.49 0 0 0 6.44 27.08C61.13 492 70 496 80 496h352c10 0 18.88-4.05 24.9-11.42a32.49 32.49 0 0 0 6.43-27.08'/></svg>", w0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M256 448a32 32 0 0 1-18-5.57c-78.59-53.35-112.62-89.93-131.39-112.8-40-48.75-59.15-98.8-58.61-153C48.63 114.52 98.46 64 159.08 64c44.08 0 74.61 24.83 92.39 45.51a6 6 0 0 0 9.06 0C278.31 88.81 308.84 64 352.92 64c60.62 0 110.45 50.52 111.08 112.64.54 54.21-18.63 104.26-58.61 153-18.77 22.87-52.8 59.45-131.39 112.8a32 32 0 0 1-18 5.56'/></svg>", x0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M256 64C150 64 64 150 64 256s86 192 192 192 192-86 192-192S362 64 256 64m-6 304a20 20 0 1 1 20-20 20 20 0 0 1-20 20m33.44-102C267.23 276.88 265 286.85 265 296a14 14 0 0 1-28 0c0-21.91 10.08-39.33 30.82-53.26C287.1 229.8 298 221.6 298 203.57c0-12.26-7-21.57-21.49-28.46-3.41-1.62-11-3.2-20.34-3.09-11.72.15-20.82 2.95-27.83 8.59C215.12 191.25 214 202.83 214 203a14 14 0 1 1-28-1.35c.11-2.43 1.8-24.32 24.77-42.8 11.91-9.58 27.06-14.56 45-14.78 12.7-.15 24.63 2 32.72 5.82C312.7 161.34 326 180.43 326 203.57c0 33.83-22.61 49.02-42.56 62.43'/></svg>", b0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M261.56 101.28a8 8 0 0 0-11.06 0L66.4 277.15a8 8 0 0 0-2.47 5.79L63.9 448a32 32 0 0 0 32 32H192a16 16 0 0 0 16-16V328a8 8 0 0 1 8-8h80a8 8 0 0 1 8 8v136a16 16 0 0 0 16 16h96.06a32 32 0 0 0 32-32V282.94a8 8 0 0 0-2.47-5.79Z'/><path d='m490.91 244.15-74.8-71.56V64a16 16 0 0 0-16-16h-48a16 16 0 0 0-16 16v32l-57.92-55.38C272.77 35.14 264.71 32 256 32c-8.68 0-16.72 3.14-22.14 8.63l-212.7 203.5c-6.22 6-7 15.87-1.34 22.37A16 16 0 0 0 43 267.56L250.5 69.28a8 8 0 0 1 11.06 0l207.52 198.28a16 16 0 0 0 22.59-.44c6.14-6.36 5.63-16.86-.76-22.97'/></svg>", k0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M183 352c-21.84-.52-39-18.9-39-40.74v-34.07a8 8 0 0 0-6-7.74c-33.75-8.85-58-39.71-58-77.45a80.14 80.14 0 0 1 66.27-78.82 8 8 0 0 0 6.62-6.83 104 104 0 0 1 206.22 0 8 8 0 0 0 6.62 6.83A80 80 0 0 1 352 272a74.33 74.33 0 0 1-47.45-17.41 7.93 7.93 0 0 0-9.92-.14A62.9 62.9 0 0 1 256 268a80.5 80.5 0 0 1-21.8-3.18 8 8 0 0 0-10.2 7.69V312a40 40 0 0 1-41 40'/><path d='M263.39 299.7a8 8 0 0 0-7.39 7.91V312a72.11 72.11 0 0 1-50.69 68.76 8 8 0 0 0-4.91 10.78l40.91 94.8A16 16 0 0 0 256 496a16 16 0 0 0 14.69-9.7l73.78-172.15a8 8 0 0 0-6.2-11.07 106.3 106.3 0 0 1-35.9-11.59 8 8 0 0 0-7.13-.2 95 95 0 0 1-31.85 8.41'/></svg>", M0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M256 56C145.72 56 56 145.72 56 256s89.72 200 200 200 200-89.72 200-200S366.28 56 256 56m0 82a26 26 0 1 1-26 26 26 26 0 0 1 26-26m48 226h-88a16 16 0 0 1 0-32h28v-88h-16a16 16 0 0 1 0-32h32a16 16 0 0 1 16 16v104h28a16 16 0 0 1 0 32'/></svg>", C0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M161.35 242a16 16 0 0 1 22.62-.68c73.63 69.36 147.51 111.56 234.45 133.07 11.73-32 12.77-67.22 2.64-101.58-13.44-45.59-44.74-85.31-90.49-114.86-40.84-26.38-81.66-33.25-121.15-39.89-49.82-8.38-96.88-16.3-141.79-63.85-5-5.26-11.81-7.37-18.32-5.66-7.44 2-12.43 7.88-14.82 17.6-5.6 22.75-2 86.51 13.75 153.82 25.29 108.14 65.65 162.86 95.06 189.73 38 34.69 87.62 53.9 136.93 53.9a186 186 0 0 0 27.77-2.04c41.71-6.32 76.43-27.27 96-57.75-89.49-23.28-165.94-67.55-242-139.16a16 16 0 0 1-.65-22.65M467.43 384.19c-16.83-2.59-33.13-5.84-49-9.77a157.7 157.7 0 0 1-12.13 25.68c-.73 1.25-1.5 2.49-2.29 3.71a584 584 0 0 0 58.56 12 16 16 0 1 0 4.87-31.62Z'/></svg>", L0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M64 480H48a32 32 0 0 1-32-32V112a32 32 0 0 1 32-32h16a32 32 0 0 1 32 32v336a32 32 0 0 1-32 32M240 176a32 32 0 0 0-32-32h-64a32 32 0 0 0-32 32v28a4 4 0 0 0 4 4h120a4 4 0 0 0 4-4ZM112 448a32 32 0 0 0 32 32h64a32 32 0 0 0 32-32v-30a2 2 0 0 0-2-2H114a2 2 0 0 0-2 2Z'/><rect width='128' height='144' x='112' y='240' rx='2' ry='2'/><path d='M320 480h-32a32 32 0 0 1-32-32V64a32 32 0 0 1 32-32h32a32 32 0 0 1 32 32v384a32 32 0 0 1-32 32M495.89 445.45l-32.23-340c-1.48-15.65-16.94-27-34.53-25.31l-31.85 3c-17.59 1.67-30.65 15.71-29.17 31.36l32.23 340c1.48 15.65 16.94 27 34.53 25.31l31.85-3c17.59-1.67 30.65-15.71 29.17-31.36'/></svg>", _0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><circle cx='256' cy='192' r='32'/><path d='M256 32c-88.22 0-160 68.65-160 153 0 40.17 18.31 93.59 54.42 158.78 29 52.34 62.55 99.67 80 123.22a31.75 31.75 0 0 0 51.22 0c17.42-23.55 51-70.88 80-123.22C397.69 278.61 416 225.19 416 185c0-84.35-71.78-153-160-153m0 224a64 64 0 1 1 64-64 64.07 64.07 0 0 1-64 64'/></svg>", A0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M48.17 113.34A32 32 0 0 0 32 141.24V438a32 32 0 0 0 47 28.37c.43-.23.85-.47 1.26-.74l84.14-55.05a8 8 0 0 0 3.63-6.72V46.45a8 8 0 0 0-12.51-6.63ZM212.36 39.31A8 8 0 0 0 200 46v357.56a8 8 0 0 0 3.63 6.72l96 62.42A8 8 0 0 0 312 466V108.67a8 8 0 0 0-3.64-6.73ZM464.53 46.47a31.64 31.64 0 0 0-31.5-.88 12 12 0 0 0-1.25.74l-84.15 55a8 8 0 0 0-3.63 6.72v357.46a8 8 0 0 0 12.52 6.63l107.07-73.46a32 32 0 0 0 16.41-28v-296a32.76 32.76 0 0 0-15.47-28.21'/></svg>", S0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M272 464h-32a32 32 0 0 1-32-32l.05-85.82a4 4 0 0 0-6-3.47l-74.34 43.06a31.48 31.48 0 0 1-43-11.52l-16.5-28.64-.06-.1a31.65 31.65 0 0 1 11.56-42.8l74.61-43.25a4 4 0 0 0 0-6.92l-74.54-43.21a31.41 31.41 0 0 1-11.55-43l16.44-28.55a31.48 31.48 0 0 1 19.27-14.74 31.14 31.14 0 0 1 23.8 3.2l74.31 43a4 4 0 0 0 6-3.47L208 80a32 32 0 0 1 32-32h32a32 32 0 0 1 32 32v85.72a4 4 0 0 0 6 3.47l74.34-43.06a31.51 31.51 0 0 1 43 11.52l16.49 28.64.06.09a31.52 31.52 0 0 1-11.64 42.86l-74.53 43.2a4 4 0 0 0 0 6.92l74.53 43.2a31.42 31.42 0 0 1 11.56 43l-16.44 28.55a31.48 31.48 0 0 1-19.27 14.74 31.14 31.14 0 0 1-23.8-3.2l-74.31-43a4 4 0 0 0-6 3.46L304 432a32 32 0 0 1-32 32m61.54-218.56'/></svg>", V0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M264 480A232 232 0 0 1 32 248c0-94 54-178.28 137.61-214.67a16 16 0 0 1 21.06 21.06C181.07 76.43 176 104.66 176 136c0 110.28 89.72 200 200 200 31.34 0 59.57-5.07 81.61-14.67a16 16 0 0 1 21.06 21.06C442.28 426 358 480 264 480'/></svg>", P0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M421.84 37.37a25.86 25.86 0 0 0-22.6-4.46L199.92 86.49A32.3 32.3 0 0 0 176 118v226c0 6.74-4.36 12.56-11.11 14.83l-.12.05-52 18C92.88 383.53 80 402 80 423.91a55.54 55.54 0 0 0 23.23 45.63A54.78 54.78 0 0 0 135.34 480a55.8 55.8 0 0 0 17.75-2.93l.38-.13 21.84-7.94A47.84 47.84 0 0 0 208 423.91v-212c0-7.29 4.77-13.21 12.16-15.07l.21-.06L395 150.14a4 4 0 0 1 5 3.86v141.93c0 6.75-4.25 12.38-11.11 14.68l-.25.09-50.89 18.11A49.09 49.09 0 0 0 304 375.92a55.67 55.67 0 0 0 23.23 45.8 54.63 54.63 0 0 0 49.88 7.35l.36-.12 21.84-7.95A47.83 47.83 0 0 0 432 375.92V58a25.74 25.74 0 0 0-10.16-20.63'/></svg>", B0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M272 464a16 16 0 0 1-16-16.42V264.13a8 8 0 0 0-8-8H64.41a16.31 16.31 0 0 1-15.49-10.65 16 16 0 0 1 8.41-19.87l384-176.15a16 16 0 0 1 21.22 21.19l-176 384A16 16 0 0 1 272 464'/></svg>", T0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M490.39 182.75c-5.55-13.19-14.77-22.7-26.67-27.49l-.16-.06a46.5 46.5 0 0 0-17-3.2h-.64c-27.24.41-55.05 23.56-69.19 57.61-10.37 24.9-11.56 51.68-3.18 71.64 5.54 13.2 14.78 22.71 26.73 27.5l.13.05a46.5 46.5 0 0 0 17 3.2c27.5 0 55.6-23.15 70-57.65 10.24-24.87 11.37-51.63 2.98-71.6M381.55 329.61c-15.71-9.44-30.56-18.37-40.26-34.41C314.53 250.8 298.37 224 256 224s-58.57 26.8-85.39 71.2c-9.72 16.06-24.6 25-40.36 34.48-18.07 10.86-36.74 22.08-44.8 44.16a66.9 66.9 0 0 0-4.65 25c0 35.95 28 65.2 62.4 65.2 17.75 0 36.64-6.15 56.63-12.66 19.22-6.26 39.09-12.73 56.27-12.73s37 6.47 56.15 12.73C332.2 457.85 351 464 368.8 464c34.35 0 62.3-29.25 62.3-65.2a67 67 0 0 0-4.75-25c-8.06-22.1-26.74-33.33-44.8-44.19M150 188.85c11.9 14.93 27 23.15 42.52 23.15a43 43 0 0 0 6.33-.47c32.37-4.76 52.54-44.26 45.92-90C242 102.3 234.6 84.39 224 71.11 212.12 56.21 197 48 181.49 48a43 43 0 0 0-6.33.47c-32.37 4.76-52.54 44.26-45.92 90 2.76 19.2 10.16 37.09 20.76 50.38M313.16 211.53a43 43 0 0 0 6.33.47c15.53 0 30.62-8.22 42.52-23.15 10.59-13.29 17.95-31.18 20.75-50.4 6.62-45.72-13.55-85.22-45.92-90a43 43 0 0 0-6.33-.47C315 48 299.88 56.21 288 71.11c-10.6 13.28-18 31.19-20.76 50.44-6.62 45.72 13.55 85.22 45.92 89.98M111.59 308.8l.14-.05c11.93-4.79 21.16-14.29 26.69-27.48 8.38-20 7.2-46.75-3.15-71.65C120.94 175.16 92.85 152 65.38 152a46.4 46.4 0 0 0-17 3.2l-.14.05c-11.9 4.75-21.13 14.29-26.66 27.48-8.38 20-7.2 46.75 3.15 71.65C39.06 288.84 67.15 312 94.62 312a46.4 46.4 0 0 0 16.97-3.2'/></svg>", D0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M336 96a80 80 0 1 0-96 78.39v283.17a32.1 32.1 0 0 0 2.49 12.38l10.07 24a3.92 3.92 0 0 0 6.88 0l10.07-24a32.1 32.1 0 0 0 2.49-12.38V174.39A80.13 80.13 0 0 0 336 96m-56 0a24 24 0 1 1 24-24 24 24 0 0 1-24 24'/></svg>", F0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M441.82 67.83C383.44 44.73 317.3 32 255.56 32 192 32 125.76 44.53 69 67.26 48.7 75.49 45.21 90 48.71 100.82L52.78 111a16 16 0 0 0 21.31 8.69c10.8-4.76 23.93-10.54 27-11.78C145.1 89.64 198.71 80 256 80c57.47 0 108.09 9.24 154.76 28.25 4.42 1.8 14.88 6.42 26.17 11.46a16 16 0 0 0 21.35-8.59L462 102l.34-.9c3.45-10.21.14-25.05-20.52-33.27'/><path d='M409.18 140.86C363.67 122.53 307.68 112 255.56 112a425 425 0 0 0-153.74 28.89c-.53.21-2.06.88-4.29 1.88a16 16 0 0 0-8 21.27c4 8.71 9.42 20.58 15.5 33.89C137.94 270 199.21 404 227.26 462A31.74 31.74 0 0 0 256 480a31.73 31.73 0 0 0 28.76-18.06l.06-.13 137.3-297.57a15.94 15.94 0 0 0-8.31-21.45c-2.26-.95-3.85-1.61-4.5-1.87Zm-215.1 83.07a32 32 0 1 1 29.85-29.85 32 32 0 0 1-29.85 29.85m64 128a32 32 0 1 1 29.85-29.85 32 32 0 0 1-29.85 29.85m64-112a32 32 0 1 1 29.85-29.85 32 32 0 0 1-29.85 29.85'/></svg>", I0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M357.57 223.94a79.48 79.48 0 0 0 56.58-23.44l77-76.95c6.09-6.09 6.65-16 .85-22.39a16 16 0 0 0-23.17-.56l-68.63 68.58a12.29 12.29 0 0 1-17.37 0c-4.79-4.78-4.53-12.86.25-17.64l68.33-68.33a16 16 0 0 0-.56-23.16A15.62 15.62 0 0 0 440.27 56a16.7 16.7 0 0 0-11.81 4.9l-68.27 68.26a12.29 12.29 0 0 1-17.37 0c-4.78-4.78-4.53-12.86.25-17.64l68.33-68.31a16 16 0 0 0-.56-23.16A15.62 15.62 0 0 0 400.26 16a16.73 16.73 0 0 0-11.81 4.9L311.5 97.85a79.5 79.5 0 0 0-23.44 56.59v8.23a16 16 0 0 1-4.69 11.33l-35.61 35.62a4 4 0 0 1-5.66 0L68.82 36.33a16 16 0 0 0-22.58-.06C31.09 51.28 23 72.47 23 97.54c-.1 41.4 21.66 89 56.79 124.08l85.45 85.45A64.8 64.8 0 0 0 211 326a64 64 0 0 0 16.21-2.08 16.2 16.2 0 0 1 4.07-.53 15.93 15.93 0 0 1 10.83 4.25l11.39 10.52a16.12 16.12 0 0 1 4.6 11.23v5.54a47.73 47.73 0 0 0 13.77 33.65l90.05 91.57.09.1a53.29 53.29 0 0 0 75.36-75.37L302.39 269.9a4 4 0 0 1 0-5.66L338 228.63a16 16 0 0 1 11.32-4.69Z'/><path d='M211 358a97.32 97.32 0 0 1-68.36-28.25l-13.86-13.86a8 8 0 0 0-11.3 0l-85 84.56c-15.15 15.15-20.56 37.45-13.06 59.29a31 31 0 0 0 1.49 3.6C31 484 50.58 496 72 496a55.68 55.68 0 0 0 39.64-16.44L225 365.66a4.69 4.69 0 0 0 1.32-3.72v-.26a4.63 4.63 0 0 0-5.15-4.27A97 97 0 0 1 211 358'/></svg>", $0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M256 368a16 16 0 0 1-7.94-2.11L108 285.84a8 8 0 0 0-12 6.94V368a16 16 0 0 0 8.23 14l144 80a16 16 0 0 0 15.54 0l144-80a16 16 0 0 0 8.23-14v-75.22a8 8 0 0 0-12-6.94l-140.06 80.05A16 16 0 0 1 256 368'/><path d='M495.92 190.5v-.11a16 16 0 0 0-8-12.28l-224-128a16 16 0 0 0-15.88 0l-224 128a16 16 0 0 0 0 27.78l224 128a16 16 0 0 0 15.88 0L461 221.28a2 2 0 0 1 3 1.74v144.53c0 8.61 6.62 16 15.23 16.43A16 16 0 0 0 496 368V192a15 15 0 0 0-.08-1.5'/></svg>", z0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='m461 349-34-19.64a89.5 89.5 0 0 1 20.94-16 22 22 0 0 0-21.28-38.51 133.6 133.6 0 0 0-38.55 32.1L300 256l88.09-50.86a133.5 133.5 0 0 0 38.55 32.1 22 22 0 1 0 21.28-38.51 89.7 89.7 0 0 1-20.94-16l34-19.64A22 22 0 1 0 439 125l-34 19.63a89.7 89.7 0 0 1-3.42-26.15A22 22 0 0 0 380 96h-.41a22 22 0 0 0-22 21.59 133.6 133.6 0 0 0 8.5 49.41L278 217.89V116.18a133.5 133.5 0 0 0 47.07-17.33 22 22 0 0 0-22.71-37.69A89.6 89.6 0 0 1 278 71.27V38a22 22 0 0 0-44 0v33.27a89.6 89.6 0 0 1-24.36-10.11 22 22 0 1 0-22.71 37.69A133.5 133.5 0 0 0 234 116.18v101.71L145.91 167a133.6 133.6 0 0 0 8.52-49.43 22 22 0 0 0-22-21.59H132a22 22 0 0 0-21.59 22.41 89.7 89.7 0 0 1-3.41 26.19L73 125a22 22 0 1 0-22 38.1l34 19.64a89.7 89.7 0 0 1-20.94 16 22 22 0 1 0 21.28 38.51 133.6 133.6 0 0 0 38.55-32.1L212 256l-88.09 50.86a133.6 133.6 0 0 0-38.55-32.1 22 22 0 1 0-21.28 38.51 89.7 89.7 0 0 1 20.94 16L51 349a22 22 0 1 0 22 38.1l34-19.63a89.7 89.7 0 0 1 3.42 26.15A22 22 0 0 0 132 416h.41a22 22 0 0 0 22-21.59 133.6 133.6 0 0 0-8.5-49.41L234 294.11v101.71a133.5 133.5 0 0 0-47.07 17.33 22 22 0 1 0 22.71 37.69A89.6 89.6 0 0 1 234 440.73V474a22 22 0 0 0 44 0v-33.27a89.6 89.6 0 0 1 24.36 10.11 22 22 0 0 0 22.71-37.69A133.5 133.5 0 0 0 278 395.82V294.11L366.09 345a133.6 133.6 0 0 0-8.52 49.43 22 22 0 0 0 22 21.59h.43a22 22 0 0 0 21.59-22.41 89.7 89.7 0 0 1 3.41-26.19l34 19.63A22 22 0 1 0 461 349'/></svg>", H0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M394 480a16 16 0 0 1-9.39-3L256 383.76 127.39 477a16 16 0 0 1-24.55-18.08L153 310.35 23 221.2a16 16 0 0 1 9-29.2h160.38l48.4-148.95a16 16 0 0 1 30.44 0l48.4 149H480a16 16 0 0 1 9.05 29.2L359 310.35l50.13 148.53A16 16 0 0 1 394 480'/></svg>", R0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M256 118a22 22 0 0 1-22-22V48a22 22 0 0 1 44 0v48a22 22 0 0 1-22 22M256 486a22 22 0 0 1-22-22v-48a22 22 0 0 1 44 0v48a22 22 0 0 1-22 22M369.14 164.86a22 22 0 0 1-15.56-37.55l33.94-33.94a22 22 0 0 1 31.11 31.11l-33.94 33.94a21.93 21.93 0 0 1-15.55 6.44M108.92 425.08a22 22 0 0 1-15.55-37.56l33.94-33.94a22 22 0 1 1 31.11 31.11l-33.94 33.94a21.94 21.94 0 0 1-15.56 6.45M464 278h-48a22 22 0 0 1 0-44h48a22 22 0 0 1 0 44M96 278H48a22 22 0 0 1 0-44h48a22 22 0 0 1 0 44M403.08 425.08a21.94 21.94 0 0 1-15.56-6.45l-33.94-33.94a22 22 0 0 1 31.11-31.11l33.94 33.94a22 22 0 0 1-15.55 37.56M142.86 164.86a21.9 21.9 0 0 1-15.55-6.44l-33.94-33.94a22 22 0 0 1 31.11-31.11l33.94 33.94a22 22 0 0 1-15.56 37.55M256 358a102 102 0 1 1 102-102 102.12 102.12 0 0 1-102 102'/></svg>", E0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M448 256a192.6 192.6 0 0 0 32-2.68A224 224 0 0 0 258.68 32 192.6 192.6 0 0 0 256 64c0 105.87 86.13 192 192 192M253.35 480c.94-5.67 1.65-11.4 2.09-17.18.37-4.88.56-9.86.56-14.79 0-105.87-86.13-192-192-192a192.6 192.6 0 0 0-32 2.68A224 224 0 0 0 253.35 480'/><path d='M289.61 222.39A222.53 222.53 0 0 1 224 64a226 226 0 0 1 2-30A224.1 224.1 0 0 0 34 226a226 226 0 0 1 30-2 222.53 222.53 0 0 1 158.39 65.61A222.53 222.53 0 0 1 288 448c0 5.74-.22 11.53-.65 17.22q-.5 6.42-1.36 12.79A224.12 224.12 0 0 0 478 286a226 226 0 0 1-30 2 222.53 222.53 0 0 1-158.39-65.61'/></svg>", U0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M96 416a16 16 0 0 1-14.3-23.16l24-48a16 16 0 0 1 28.62 14.32l-24 48A16 16 0 0 1 96 416M120 480a16 16 0 0 1-14.3-23.16l16-32a16 16 0 0 1 28.62 14.32l-16 32A16 16 0 0 1 120 480M376 416a16 16 0 0 1-14.3-23.16l24-48a16 16 0 0 1 28.62 14.32l-24 48A16 16 0 0 1 376 416M400 480a16 16 0 0 1-14.3-23.16l16-32a16 16 0 0 1 28.62 14.32l-16 32A16 16 0 0 1 400 480'/><path d='M405.84 136.9a151.25 151.25 0 0 0-47.6-81.9 153 153 0 0 0-241.81 51.86C60.5 110.16 16 156.65 16 213.33 16 272.15 63.91 320 122.8 320h66.31l-12.89 77.37A16 16 0 0 0 192 416h32v64a16 16 0 0 0 29 9.3l80-112a16 16 0 0 0-13-25.3h-27.51l8-32h103.84a91.56 91.56 0 0 0 1.51-183.1'/></svg>", O0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M491.31 324.69 432 265.37a31.8 31.8 0 0 0-22.63-9.37H272v-32h144a32 32 0 0 0 32-32V96a32 32 0 0 0-32-32H272V48a16 16 0 0 0-32 0v16H102.63A31.8 31.8 0 0 0 80 73.37l-59.31 59.32a16 16 0 0 0 0 22.62L80 214.63a31.8 31.8 0 0 0 22.63 9.37H240v32H96a32 32 0 0 0-32 32v96a32 32 0 0 0 32 32h144v48a16 16 0 0 0 32 0v-48h137.37a31.8 31.8 0 0 0 22.63-9.37l59.31-59.32a16 16 0 0 0 0-22.62'/></svg>", N0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><ellipse cx='256' cy='304' rx='32.05' ry='31.94' transform='rotate(-45 256.001 304)'/><path d='M352 32h-15a10 10 0 0 1-7.87-3.78A31.94 31.94 0 0 0 304 16h-96a32 32 0 0 0-26.11 13.52A6 6 0 0 1 177 32h-17c-36.81 0-64 28.84-64 64v255c0 23.27 25.6 42.06 83 60.94a753 753 0 0 0 73.77 19.73 16 16 0 0 0 6.46 0A753 753 0 0 0 333 411.94c57.4-18.88 83-37.67 83-60.94V96a64 64 0 0 0-64-64m-168 96h144a8 8 0 0 1 8 8v48a8 8 0 0 1-8 8H184a8 8 0 0 1-8-8v-48a8 8 0 0 1 8-8m76.18 239.87a64 64 0 1 1 59.69-59.69 64.07 64.07 0 0 1-59.69 59.69'/><path d='M395.31 468.69 347.63 421c-6.09-6.1-16-6.66-22.38-.86a16 16 0 0 0-.56 23.16l4.68 4.69H182.63l4.36-4.37c6.1-6.09 6.66-16 .86-22.38a16 16 0 0 0-23.16-.56l-48 48a16 16 0 1 0 22.62 22.62l11.32-11.3h210.74l11.32 11.31a16 16 0 0 0 22.62-22.62'/></svg>", Z0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='m312.55 479.9-56.42-114-44.62-57a72.37 72.37 0 0 1-10.06-36.9V143.64H217a40 40 0 0 1 40 40v182.21' stroke-linecap='round' stroke-linejoin='round' class='ionicon-stroke-width'/><path d='M127.38 291.78v-74.07s37-74.07 74.07-74.07' stroke-linecap='round' stroke-linejoin='round' class='ionicon-fill-none ionicon-stroke-width'/><path d='M368.09 291.78a18.5 18.5 0 0 1-10.26-3.11L297.7 250a21.18 21.18 0 0 1-9.7-17.79v-23.7a5.65 5.65 0 0 1 8.69-4.77l81.65 54.11a18.52 18.52 0 0 1-10.29 33.93ZM171.91 493.47a18.5 18.5 0 0 1-14.83-7.41c-6.14-8.18-4-17.18 3.7-25.92l59.95-74.66a7.41 7.41 0 0 1 10.76 2.06c1.56 2.54 3.38 5.65 5.19 9.09 5.24 9.95 6 16.11-1.68 25.7-8 10-52 67.44-52 67.44-2.62 2.98-7.23 3.7-11.09 3.7'/><circle cx='257' cy='69.56' r='37.04' stroke-linecap='round' stroke-linejoin='round' stroke-width='16px'/></svg>", q0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M449.07 399.08 278.64 82.58c-12.08-22.44-44.26-22.44-56.35 0L51.87 399.08A32 32 0 0 0 80 446.25h340.89a32 32 0 0 0 28.18-47.17m-198.6-1.83a20 20 0 1 1 20-20 20 20 0 0 1-20 20m21.72-201.15-5.74 122a16 16 0 0 1-32 0l-5.74-121.95a21.73 21.73 0 0 1 21.5-22.69h.21a21.74 21.74 0 0 1 21.73 22.7Z'/></svg>", G0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M265.12 60.12a12 12 0 0 0-18.23 0C215.23 97.15 112 225.17 112 320c0 88.37 55.64 144 144 144s144-55.63 144-144c0-94.83-103.23-222.85-134.88-259.88M272 412a12 12 0 0 1-11.34-16 11.89 11.89 0 0 1 11.41-8A60.06 60.06 0 0 0 332 328.07a11.89 11.89 0 0 1 8-11.41A12 12 0 0 1 356 328a84.09 84.09 0 0 1-84 84'/></svg>", j0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path fill-rule='evenodd' d='M331.295 353.764c.131.181-.091-.13 0 0a46 46 0 0 0-1.039-1.365 64 64 0 0 0-3.618-4.17c-3.112-3.302-7.69-7.537-13.87-11.725C300.287 328.047 281.56 320 256 320s-44.287 8.047-56.768 16.504c-6.18 4.188-10.758 8.423-13.87 11.725a64 64 0 0 0-3.618 4.17c.264-.361-.43.544 0 0l-1.586 2.142a16 16 0 0 0 2.135 20.463l62.586 60.5c6.202 5.995 16.039 5.995 22.241 0l62.587-60.5a16 16 0 0 0 2.136-20.463z' clip-rule='evenodd'/><path fill-rule='evenodd' d='M421.086 269.862c-.135-.218-.596-.966-.812-1.3a72 72 0 0 0-1.81-2.639c-1.552-2.163-3.813-5.096-6.861-8.536-6.099-6.88-15.362-15.802-28.417-24.637C356.915 214.969 315.967 198 256 198s-100.915 16.969-127.186 34.75c-13.055 8.835-22.318 17.757-28.417 24.637-3.049 3.44-5.31 6.373-6.861 8.536a71 71 0 0 0-1.81 2.639q-.324.502-.527.829l-.285.471a16 16 0 0 0 2.678 19.664l35.31 34a16 16 0 0 0 23.007-.84l.195-.209c.207-.219.565-.591 1.074-1.096a93 93 0 0 1 4.831-4.436c4.402-3.785 11.093-8.947 19.955-14.141C195.658 292.436 221.893 282 256 282s60.342 10.436 78.036 20.804c8.862 5.194 15.553 10.356 19.955 14.141a93 93 0 0 1 4.831 4.436 49 49 0 0 1 1.269 1.305l-.005-.006-.013-.015m0 0 .026.029a16.001 16.001 0 0 0 22.999.832l35.31-34a16 16 0 0 0 2.678-19.664' clip-rule='evenodd'/><path d='M507.974 181.264c.343.459 1.181 1.629 1.181 1.629a16 16 0 0 1-2.029 20.606l-36.69 35.5a16 16 0 0 1-23.345-1.17l-.003-.003-.085-.099q-.138-.16-.482-.548a108 108 0 0 0-2.197-2.379c-2.009-2.116-5.095-5.229-9.229-9.01-8.275-7.569-20.69-17.764-36.997-27.981C365.499 177.384 317.58 157 256 157s-109.499 20.384-142.098 40.809c-16.307 10.217-28.722 20.412-36.997 27.981-4.133 3.781-7.22 6.894-9.229 9.01a109 109 0 0 0-2.197 2.379q-.345.388-.482.548l-.047.054-.03.034-.004.006-.004.005-.004.004a16 16 0 0 1-23.344 1.169l-36.69-35.5a16 16 0 0 1-2.03-20.606l.011-.016.013-.017.03-.043.079-.113.24-.337q.295-.413.809-1.103c.686-.92 1.667-2.199 2.949-3.786 2.563-3.174 6.335-7.585 11.367-12.818 10.057-10.46 25.185-24.241 45.783-37.973C105.437 99.146 168.48 72 256 72s150.563 27.146 191.875 54.687c20.598 13.732 35.726 27.513 45.783 37.973 5.032 5.233 8.804 9.644 11.367 12.818a125 125 0 0 1 2.949 3.786'/></svg>", J0 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='ionicon'><path d='M414.56 94.92V80a16 16 0 0 0-16-16H113.44a16 16 0 0 0-16 16v14.92c-1.46 11.37-9.65 90.74 36.93 144.69 24.87 28.8 60.36 44.85 105.63 47.86V416h-80a16 16 0 0 0 0 32h192a16 16 0 0 0 0-32h-80V287.47c45.27-3 80.76-19.06 105.63-47.86 46.58-53.95 38.37-133.32 36.93-144.69m-285.3 3.41a15 15 0 0 0 .18-2.33h253.12a15 15 0 0 0 .18 2.33 202 202 0 0 1 0 45.67H129.32a204.3 204.3 0 0 1-.06-45.67'/></svg>", W0 = {
|
|
514
514
|
"marker-pin": '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 27 41"><path d="M13.5 0C6.044 0 0 6.044 0 13.5 0 24.818 13.5 41 13.5 41S27 24.818 27 13.5C27 6.044 20.956 0 13.5 0z" fill="#000"/></svg>'
|
|
515
|
-
},
|
|
516
|
-
location:
|
|
517
|
-
pin:
|
|
518
|
-
flag:
|
|
519
|
-
star:
|
|
520
|
-
heart:
|
|
521
|
-
home:
|
|
522
|
-
business:
|
|
523
|
-
cafe:
|
|
524
|
-
restaurant:
|
|
525
|
-
car:
|
|
526
|
-
bus:
|
|
527
|
-
bicycle:
|
|
528
|
-
walk:
|
|
529
|
-
airplane:
|
|
530
|
-
boat:
|
|
531
|
-
train:
|
|
532
|
-
medical:
|
|
533
|
-
fitness:
|
|
534
|
-
school:
|
|
535
|
-
library:
|
|
536
|
-
cart:
|
|
537
|
-
basket:
|
|
538
|
-
gift:
|
|
539
|
-
camera:
|
|
540
|
-
"musical-notes":
|
|
541
|
-
football:
|
|
542
|
-
basketball:
|
|
543
|
-
golf:
|
|
544
|
-
tennisball:
|
|
545
|
-
fish:
|
|
546
|
-
leaf:
|
|
547
|
-
flower:
|
|
548
|
-
paw:
|
|
549
|
-
water:
|
|
550
|
-
flame:
|
|
551
|
-
snow:
|
|
552
|
-
sunny:
|
|
553
|
-
moon:
|
|
554
|
-
cloudy:
|
|
555
|
-
thunderstorm:
|
|
556
|
-
warning:
|
|
557
|
-
"information-circle":
|
|
558
|
-
"help-circle":
|
|
559
|
-
"checkmark-circle":
|
|
560
|
-
"close-circle":
|
|
561
|
-
"alert-circle":
|
|
562
|
-
wifi:
|
|
563
|
-
cellular:
|
|
564
|
-
globe:
|
|
565
|
-
compass:
|
|
566
|
-
navigate:
|
|
567
|
-
map:
|
|
568
|
-
"trail-sign":
|
|
569
|
-
bed:
|
|
570
|
-
beer:
|
|
571
|
-
wine:
|
|
572
|
-
pizza:
|
|
573
|
-
"ice-cream":
|
|
515
|
+
}, K0 = {
|
|
516
|
+
location: _0,
|
|
517
|
+
pin: D0,
|
|
518
|
+
flag: p0,
|
|
519
|
+
star: H0,
|
|
520
|
+
heart: w0,
|
|
521
|
+
home: b0,
|
|
522
|
+
business: e0,
|
|
523
|
+
cafe: t0,
|
|
524
|
+
restaurant: I0,
|
|
525
|
+
car: o0,
|
|
526
|
+
bus: Q1,
|
|
527
|
+
bicycle: Y1,
|
|
528
|
+
walk: Z0,
|
|
529
|
+
airplane: q1,
|
|
530
|
+
boat: X1,
|
|
531
|
+
train: N0,
|
|
532
|
+
medical: S0,
|
|
533
|
+
fitness: d0,
|
|
534
|
+
school: $0,
|
|
535
|
+
library: L0,
|
|
536
|
+
cart: l0,
|
|
537
|
+
basket: j1,
|
|
538
|
+
gift: f0,
|
|
539
|
+
camera: a0,
|
|
540
|
+
"musical-notes": P0,
|
|
541
|
+
football: v0,
|
|
542
|
+
basketball: J1,
|
|
543
|
+
golf: y0,
|
|
544
|
+
tennisball: E0,
|
|
545
|
+
fish: u0,
|
|
546
|
+
leaf: C0,
|
|
547
|
+
flower: m0,
|
|
548
|
+
paw: T0,
|
|
549
|
+
water: G0,
|
|
550
|
+
flame: g0,
|
|
551
|
+
snow: z0,
|
|
552
|
+
sunny: R0,
|
|
553
|
+
moon: V0,
|
|
554
|
+
cloudy: s0,
|
|
555
|
+
thunderstorm: U0,
|
|
556
|
+
warning: q0,
|
|
557
|
+
"information-circle": M0,
|
|
558
|
+
"help-circle": x0,
|
|
559
|
+
"checkmark-circle": n0,
|
|
560
|
+
"close-circle": i0,
|
|
561
|
+
"alert-circle": G1,
|
|
562
|
+
wifi: j0,
|
|
563
|
+
cellular: r0,
|
|
564
|
+
globe: h0,
|
|
565
|
+
compass: c0,
|
|
566
|
+
navigate: B0,
|
|
567
|
+
map: A0,
|
|
568
|
+
"trail-sign": O0,
|
|
569
|
+
bed: W1,
|
|
570
|
+
beer: K1,
|
|
571
|
+
wine: J0,
|
|
572
|
+
pizza: F0,
|
|
573
|
+
"ice-cream": k0
|
|
574
574
|
}, r1 = [
|
|
575
575
|
"marker-pin",
|
|
576
576
|
"location",
|
|
@@ -632,202 +632,202 @@ const N1 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' view
|
|
|
632
632
|
"pizza",
|
|
633
633
|
"ice-cream"
|
|
634
634
|
];
|
|
635
|
-
function
|
|
635
|
+
function Y0(e) {
|
|
636
636
|
return "data:image/svg+xml;charset=utf-8," + encodeURIComponent(e);
|
|
637
637
|
}
|
|
638
|
-
function
|
|
639
|
-
const
|
|
640
|
-
return
|
|
638
|
+
function A1(e) {
|
|
639
|
+
const d = W0[e];
|
|
640
|
+
return d ? Y0(d) : K0[e] ?? null;
|
|
641
641
|
}
|
|
642
|
-
async function
|
|
643
|
-
return
|
|
642
|
+
async function X0(e) {
|
|
643
|
+
return A1(e);
|
|
644
644
|
}
|
|
645
|
-
async function
|
|
646
|
-
if (e.hasImage(
|
|
645
|
+
async function Q0(e, d) {
|
|
646
|
+
if (e.hasImage(d))
|
|
647
647
|
return;
|
|
648
|
-
const
|
|
649
|
-
if (
|
|
648
|
+
const r = A1(d);
|
|
649
|
+
if (r)
|
|
650
650
|
try {
|
|
651
|
-
const
|
|
652
|
-
await new Promise((
|
|
653
|
-
|
|
654
|
-
}), e.hasImage(
|
|
651
|
+
const m = 5 * (window.devicePixelRatio || 1), a = Math.round(32 * m), u = new Image(a, a);
|
|
652
|
+
await new Promise((v, A) => {
|
|
653
|
+
u.onload = () => v(), u.onerror = A, u.src = r;
|
|
654
|
+
}), e.hasImage(d) || e.addImage(d, u, { pixelRatio: m, sdf: !0 });
|
|
655
655
|
} catch {
|
|
656
656
|
}
|
|
657
657
|
}
|
|
658
|
-
async function Q(e,
|
|
659
|
-
const
|
|
660
|
-
for (const
|
|
661
|
-
const
|
|
662
|
-
typeof
|
|
658
|
+
async function Q(e, d) {
|
|
659
|
+
const r = /* @__PURE__ */ new Set();
|
|
660
|
+
for (const c of d) {
|
|
661
|
+
const o = c.properties["marker-symbol"];
|
|
662
|
+
typeof o == "string" && o && r.add(o);
|
|
663
663
|
}
|
|
664
|
-
await Promise.all([...
|
|
664
|
+
await Promise.all([...r].map((c) => Q0(e, c)));
|
|
665
665
|
}
|
|
666
|
-
function
|
|
667
|
-
const e = I("select"),
|
|
668
|
-
() => (e.value === "draw-polygon" || e.value === "draw-line") &&
|
|
666
|
+
function ee() {
|
|
667
|
+
const e = I("select"), d = I([]), r = I(null), c = z(
|
|
668
|
+
() => (e.value === "draw-polygon" || e.value === "draw-line") && d.value.length > 0
|
|
669
669
|
);
|
|
670
|
-
function
|
|
671
|
-
|
|
670
|
+
function o(b) {
|
|
671
|
+
a(), r.value = null, e.value = b;
|
|
672
672
|
}
|
|
673
|
-
function
|
|
674
|
-
|
|
673
|
+
function m(b) {
|
|
674
|
+
d.value = [...d.value, b];
|
|
675
675
|
}
|
|
676
|
-
function
|
|
677
|
-
|
|
676
|
+
function a() {
|
|
677
|
+
d.value = [];
|
|
678
678
|
}
|
|
679
|
-
function
|
|
680
|
-
const
|
|
681
|
-
return
|
|
679
|
+
function u() {
|
|
680
|
+
const b = [...d.value];
|
|
681
|
+
return d.value = [], b;
|
|
682
682
|
}
|
|
683
|
-
function
|
|
684
|
-
|
|
683
|
+
function v(b) {
|
|
684
|
+
r.value = b;
|
|
685
685
|
}
|
|
686
|
-
function A(
|
|
687
|
-
const
|
|
688
|
-
return Math.sqrt((
|
|
686
|
+
function A(b, k, g) {
|
|
687
|
+
const C = b.project(k), s = b.project(g);
|
|
688
|
+
return Math.sqrt((C.x - s.x) ** 2 + (C.y - s.y) ** 2);
|
|
689
689
|
}
|
|
690
|
-
function
|
|
691
|
-
const
|
|
692
|
-
return e.value === "draw-polygon" &&
|
|
690
|
+
function x() {
|
|
691
|
+
const b = [], k = d.value, g = k[0];
|
|
692
|
+
return e.value === "draw-polygon" && k.length >= 3 && g && b.push({
|
|
693
693
|
type: "Feature",
|
|
694
694
|
properties: {},
|
|
695
695
|
geometry: {
|
|
696
696
|
type: "Polygon",
|
|
697
|
-
coordinates: [[...
|
|
697
|
+
coordinates: [[...k, g]]
|
|
698
698
|
}
|
|
699
|
-
}), { type: "FeatureCollection", features:
|
|
699
|
+
}), { type: "FeatureCollection", features: b };
|
|
700
700
|
}
|
|
701
|
-
function
|
|
702
|
-
const
|
|
703
|
-
if (
|
|
704
|
-
const
|
|
705
|
-
|
|
701
|
+
function w(b) {
|
|
702
|
+
const k = [], g = d.value;
|
|
703
|
+
if (g.length >= 1) {
|
|
704
|
+
const C = b ? [...g, b] : [...g];
|
|
705
|
+
C.length >= 2 && k.push({
|
|
706
706
|
type: "Feature",
|
|
707
707
|
properties: {},
|
|
708
708
|
geometry: {
|
|
709
709
|
type: "LineString",
|
|
710
|
-
coordinates:
|
|
710
|
+
coordinates: C
|
|
711
711
|
}
|
|
712
712
|
});
|
|
713
713
|
}
|
|
714
|
-
return { type: "FeatureCollection", features:
|
|
714
|
+
return { type: "FeatureCollection", features: k };
|
|
715
715
|
}
|
|
716
716
|
function V() {
|
|
717
717
|
return {
|
|
718
718
|
type: "FeatureCollection",
|
|
719
|
-
features:
|
|
719
|
+
features: d.value.map((b, k) => ({
|
|
720
720
|
type: "Feature",
|
|
721
|
-
properties: { index:
|
|
721
|
+
properties: { index: k },
|
|
722
722
|
geometry: {
|
|
723
723
|
type: "Point",
|
|
724
|
-
coordinates:
|
|
724
|
+
coordinates: b
|
|
725
725
|
}
|
|
726
726
|
}))
|
|
727
727
|
};
|
|
728
728
|
}
|
|
729
729
|
return {
|
|
730
730
|
activeTool: e,
|
|
731
|
-
drawingCoords:
|
|
732
|
-
selectedFeatureId:
|
|
733
|
-
isDrawing:
|
|
734
|
-
setTool:
|
|
735
|
-
addDrawingCoord:
|
|
736
|
-
cancelDrawing:
|
|
737
|
-
finishDrawing:
|
|
738
|
-
selectFeature:
|
|
731
|
+
drawingCoords: d,
|
|
732
|
+
selectedFeatureId: r,
|
|
733
|
+
isDrawing: c,
|
|
734
|
+
setTool: o,
|
|
735
|
+
addDrawingCoord: m,
|
|
736
|
+
cancelDrawing: a,
|
|
737
|
+
finishDrawing: u,
|
|
738
|
+
selectFeature: v,
|
|
739
739
|
distancePx: A,
|
|
740
|
-
getTempGeoJson:
|
|
741
|
-
getTempLineGeoJson:
|
|
740
|
+
getTempGeoJson: x,
|
|
741
|
+
getTempLineGeoJson: w,
|
|
742
742
|
getTempVerticesGeoJson: V
|
|
743
743
|
};
|
|
744
744
|
}
|
|
745
|
-
let
|
|
746
|
-
function
|
|
747
|
-
const
|
|
748
|
-
return Array.from(
|
|
745
|
+
let te = 0;
|
|
746
|
+
function ae(e) {
|
|
747
|
+
const d = crypto.getRandomValues(new Uint8Array(e));
|
|
748
|
+
return Array.from(d, (r) => r.toString(16).padStart(2, "0")).join("");
|
|
749
749
|
}
|
|
750
750
|
function W() {
|
|
751
|
-
return `richpods-${
|
|
751
|
+
return `richpods-${ae(6)}-${++te}`;
|
|
752
752
|
}
|
|
753
|
-
function
|
|
754
|
-
function
|
|
753
|
+
function oe(e) {
|
|
754
|
+
function d(x) {
|
|
755
755
|
e.value = {
|
|
756
756
|
...e.value,
|
|
757
|
-
features: [...e.value.features,
|
|
757
|
+
features: [...e.value.features, x]
|
|
758
758
|
};
|
|
759
759
|
}
|
|
760
|
-
function
|
|
760
|
+
function r(x) {
|
|
761
761
|
e.value = {
|
|
762
762
|
...e.value,
|
|
763
|
-
features: e.value.features.filter((
|
|
763
|
+
features: e.value.features.filter((w) => w.id !== x)
|
|
764
764
|
};
|
|
765
765
|
}
|
|
766
|
-
function
|
|
766
|
+
function c(x, w) {
|
|
767
767
|
e.value = {
|
|
768
768
|
...e.value,
|
|
769
|
-
features: e.value.features.map((V) => V.id ===
|
|
769
|
+
features: e.value.features.map((V) => V.id === x ? w(V) : V)
|
|
770
770
|
};
|
|
771
771
|
}
|
|
772
|
-
function
|
|
773
|
-
|
|
772
|
+
function o(x, w) {
|
|
773
|
+
c(x, (V) => ({
|
|
774
774
|
...V,
|
|
775
|
-
properties: { ...V.properties, ...
|
|
775
|
+
properties: { ...V.properties, ...w }
|
|
776
776
|
}));
|
|
777
777
|
}
|
|
778
|
-
function
|
|
779
|
-
const
|
|
778
|
+
function m(x) {
|
|
779
|
+
const w = W();
|
|
780
780
|
return {
|
|
781
781
|
type: "Feature",
|
|
782
|
-
id:
|
|
783
|
-
geometry: { type: "Polygon", coordinates:
|
|
784
|
-
properties: { id:
|
|
782
|
+
id: w,
|
|
783
|
+
geometry: { type: "Polygon", coordinates: x },
|
|
784
|
+
properties: { id: w }
|
|
785
785
|
};
|
|
786
786
|
}
|
|
787
|
-
function
|
|
788
|
-
const
|
|
787
|
+
function a(x) {
|
|
788
|
+
const w = W();
|
|
789
789
|
return {
|
|
790
790
|
type: "Feature",
|
|
791
|
-
id:
|
|
792
|
-
geometry: { type: "LineString", coordinates:
|
|
793
|
-
properties: { id:
|
|
791
|
+
id: w,
|
|
792
|
+
geometry: { type: "LineString", coordinates: x },
|
|
793
|
+
properties: { id: w }
|
|
794
794
|
};
|
|
795
795
|
}
|
|
796
|
-
function
|
|
797
|
-
const
|
|
796
|
+
function u(x) {
|
|
797
|
+
const w = W();
|
|
798
798
|
return {
|
|
799
799
|
type: "Feature",
|
|
800
|
-
id:
|
|
801
|
-
geometry: { type: "Point", coordinates:
|
|
802
|
-
properties: { id:
|
|
800
|
+
id: w,
|
|
801
|
+
geometry: { type: "Point", coordinates: x },
|
|
802
|
+
properties: { id: w }
|
|
803
803
|
};
|
|
804
804
|
}
|
|
805
|
-
function
|
|
806
|
-
const
|
|
805
|
+
function v(x) {
|
|
806
|
+
const w = W();
|
|
807
807
|
return {
|
|
808
808
|
type: "Feature",
|
|
809
|
-
id:
|
|
810
|
-
geometry: { type: "Point", coordinates:
|
|
811
|
-
properties: { id:
|
|
809
|
+
id: w,
|
|
810
|
+
geometry: { type: "Point", coordinates: x },
|
|
811
|
+
properties: { id: w, "marker-symbol": "location" }
|
|
812
812
|
};
|
|
813
813
|
}
|
|
814
|
-
function A(
|
|
815
|
-
return e.value.features.find((
|
|
814
|
+
function A(x) {
|
|
815
|
+
return e.value.features.find((w) => w.id === x);
|
|
816
816
|
}
|
|
817
817
|
return {
|
|
818
818
|
model: e,
|
|
819
|
-
addFeature:
|
|
820
|
-
removeFeature:
|
|
821
|
-
updateFeature:
|
|
822
|
-
updateFeatureProperties:
|
|
823
|
-
createPolygon:
|
|
824
|
-
createLineString:
|
|
825
|
-
createPoint:
|
|
826
|
-
createMarker:
|
|
819
|
+
addFeature: d,
|
|
820
|
+
removeFeature: r,
|
|
821
|
+
updateFeature: c,
|
|
822
|
+
updateFeatureProperties: o,
|
|
823
|
+
createPolygon: m,
|
|
824
|
+
createLineString: a,
|
|
825
|
+
createPoint: u,
|
|
826
|
+
createMarker: v,
|
|
827
827
|
getFeature: A
|
|
828
828
|
};
|
|
829
829
|
}
|
|
830
|
-
const
|
|
830
|
+
const le = 767, re = 0.2, ne = 240, ie = 320, se = 16, ce = 16, ue = /* @__PURE__ */ G({
|
|
831
831
|
__name: "EditorMap",
|
|
832
832
|
props: {
|
|
833
833
|
modelValue: {},
|
|
@@ -839,31 +839,31 @@ const ae = 767, oe = 0.2, le = 240, re = 320, ne = 16, ie = 16, se = /* @__PURE_
|
|
|
839
839
|
bboxPadding: {}
|
|
840
840
|
},
|
|
841
841
|
emits: ["update:modelValue", "featureClick", "featureDelete", "toolDone"],
|
|
842
|
-
setup(e, { emit:
|
|
843
|
-
const
|
|
844
|
-
let
|
|
845
|
-
const
|
|
846
|
-
|
|
847
|
-
() =>
|
|
842
|
+
setup(e, { expose: d, emit: r }) {
|
|
843
|
+
const c = e, o = r, m = I(null);
|
|
844
|
+
let a = null, u = null, v = !1, A = !1, x = [], w = [];
|
|
845
|
+
const V = I(c.modelValue);
|
|
846
|
+
Z(
|
|
847
|
+
() => c.modelValue,
|
|
848
848
|
(p) => {
|
|
849
|
-
|
|
849
|
+
V.value = p;
|
|
850
850
|
}
|
|
851
851
|
);
|
|
852
|
-
const
|
|
853
|
-
let
|
|
854
|
-
|
|
855
|
-
() =>
|
|
852
|
+
const b = oe(V), k = ee(), g = () => c.pointRadius ?? x1;
|
|
853
|
+
let C = null;
|
|
854
|
+
Z(
|
|
855
|
+
() => c.activeTool,
|
|
856
856
|
(p) => {
|
|
857
|
-
|
|
857
|
+
k.setTool(p), i();
|
|
858
858
|
}
|
|
859
859
|
);
|
|
860
|
-
function
|
|
860
|
+
function s(p) {
|
|
861
861
|
return p.map((M) => ({ id: M.id, geomType: M.geometry.type }));
|
|
862
862
|
}
|
|
863
|
-
function
|
|
864
|
-
if (!
|
|
865
|
-
const p =
|
|
866
|
-
switch (
|
|
863
|
+
function i() {
|
|
864
|
+
if (!a) return;
|
|
865
|
+
const p = a.getCanvas();
|
|
866
|
+
switch (c.activeTool) {
|
|
867
867
|
case "draw-point":
|
|
868
868
|
case "draw-marker":
|
|
869
869
|
case "draw-line":
|
|
@@ -877,237 +877,241 @@ const ae = 767, oe = 0.2, le = 240, re = 320, ne = 16, ie = 16, se = /* @__PURE_
|
|
|
877
877
|
p.style.cursor = "";
|
|
878
878
|
}
|
|
879
879
|
}
|
|
880
|
-
function
|
|
881
|
-
if (!
|
|
882
|
-
const p =
|
|
883
|
-
p && "setData" in p && p.setData(
|
|
880
|
+
function t() {
|
|
881
|
+
if (!a) return;
|
|
882
|
+
const p = a.getSource(H);
|
|
883
|
+
p && "setData" in p && p.setData(c.modelValue);
|
|
884
884
|
}
|
|
885
|
-
function
|
|
886
|
-
if (!
|
|
887
|
-
const p =
|
|
888
|
-
p && "setData" in p && p.setData(
|
|
889
|
-
const M =
|
|
885
|
+
function l() {
|
|
886
|
+
if (!a) return;
|
|
887
|
+
const p = a.getSource(p1);
|
|
888
|
+
p && "setData" in p && p.setData(k.getTempGeoJson());
|
|
889
|
+
const M = a.getSource(g1);
|
|
890
890
|
M && "setData" in M && M.setData(
|
|
891
|
-
|
|
891
|
+
k.getTempLineGeoJson(C ?? void 0)
|
|
892
892
|
);
|
|
893
|
-
const _ =
|
|
894
|
-
_ && "setData" in _ && _.setData(
|
|
893
|
+
const _ = a.getSource(m1);
|
|
894
|
+
_ && "setData" in _ && _.setData(k.getTempVerticesGeoJson());
|
|
895
895
|
}
|
|
896
|
-
|
|
897
|
-
() =>
|
|
896
|
+
Z(
|
|
897
|
+
() => c.modelValue,
|
|
898
898
|
async () => {
|
|
899
|
-
if (
|
|
900
|
-
const p =
|
|
901
|
-
|
|
899
|
+
if (t(), a && A) {
|
|
900
|
+
const p = s(c.modelValue.features);
|
|
901
|
+
_1(a, x, p, "drawing-temp-fill"), x = p, w = X(p), await Q(a, c.modelValue.features);
|
|
902
902
|
}
|
|
903
903
|
},
|
|
904
904
|
{ deep: !0 }
|
|
905
|
-
),
|
|
906
|
-
() =>
|
|
907
|
-
() =>
|
|
905
|
+
), Z(
|
|
906
|
+
() => k.drawingCoords.value,
|
|
907
|
+
() => l(),
|
|
908
908
|
{ deep: !0 }
|
|
909
909
|
);
|
|
910
|
-
function
|
|
911
|
-
if (!
|
|
912
|
-
const M =
|
|
910
|
+
function T(p) {
|
|
911
|
+
if (!A) return;
|
|
912
|
+
const M = c.activeTool;
|
|
913
913
|
if (M === "draw-point") {
|
|
914
|
-
const _ = [p.lngLat.lng, p.lngLat.lat], L =
|
|
915
|
-
|
|
916
|
-
...
|
|
917
|
-
features: [...
|
|
918
|
-
}),
|
|
914
|
+
const _ = [p.lngLat.lng, p.lngLat.lat], L = b.createPoint(_);
|
|
915
|
+
o("update:modelValue", {
|
|
916
|
+
...c.modelValue,
|
|
917
|
+
features: [...c.modelValue.features, L]
|
|
918
|
+
}), o("toolDone", L.id);
|
|
919
919
|
return;
|
|
920
920
|
}
|
|
921
921
|
if (M === "draw-marker") {
|
|
922
|
-
const _ = [p.lngLat.lng, p.lngLat.lat], L =
|
|
923
|
-
|
|
924
|
-
...
|
|
925
|
-
features: [...
|
|
926
|
-
}),
|
|
922
|
+
const _ = [p.lngLat.lng, p.lngLat.lat], L = b.createMarker(_);
|
|
923
|
+
o("update:modelValue", {
|
|
924
|
+
...c.modelValue,
|
|
925
|
+
features: [...c.modelValue.features, L]
|
|
926
|
+
}), o("toolDone", L.id);
|
|
927
927
|
return;
|
|
928
928
|
}
|
|
929
929
|
if (M === "draw-polygon" || M === "draw-line") {
|
|
930
|
-
const _ = [p.lngLat.lng, p.lngLat.lat], L =
|
|
930
|
+
const _ = [p.lngLat.lng, p.lngLat.lat], L = k.drawingCoords.value;
|
|
931
931
|
if (M === "draw-polygon" && L.length >= 3) {
|
|
932
932
|
const S = L[0];
|
|
933
|
-
if (S &&
|
|
934
|
-
const B =
|
|
933
|
+
if (S && a && k.distancePx(a, _, S) < g()) {
|
|
934
|
+
const B = k.finishDrawing(), E = B[0];
|
|
935
935
|
if (E) {
|
|
936
|
-
const
|
|
937
|
-
|
|
938
|
-
...
|
|
939
|
-
features: [...
|
|
940
|
-
}),
|
|
936
|
+
const D1 = [...B, E], d1 = b.createPolygon([D1]);
|
|
937
|
+
o("update:modelValue", {
|
|
938
|
+
...c.modelValue,
|
|
939
|
+
features: [...c.modelValue.features, d1]
|
|
940
|
+
}), o("toolDone", d1.id);
|
|
941
941
|
return;
|
|
942
942
|
}
|
|
943
943
|
}
|
|
944
944
|
}
|
|
945
945
|
if (M === "draw-line" && L.length >= 2) {
|
|
946
946
|
const S = L[L.length - 1];
|
|
947
|
-
if (S &&
|
|
948
|
-
const B =
|
|
949
|
-
|
|
950
|
-
...
|
|
951
|
-
features: [...
|
|
952
|
-
}),
|
|
947
|
+
if (S && a && k.distancePx(a, _, S) < g()) {
|
|
948
|
+
const B = k.finishDrawing(), E = b.createLineString(B);
|
|
949
|
+
o("update:modelValue", {
|
|
950
|
+
...c.modelValue,
|
|
951
|
+
features: [...c.modelValue.features, E]
|
|
952
|
+
}), o("toolDone", E.id);
|
|
953
953
|
return;
|
|
954
954
|
}
|
|
955
955
|
}
|
|
956
|
-
|
|
956
|
+
k.addDrawingCoord(_);
|
|
957
957
|
return;
|
|
958
958
|
}
|
|
959
959
|
if (M === "eraser") {
|
|
960
|
-
const L =
|
|
960
|
+
const L = a?.queryRenderedFeatures(p.point, { layers: w })?.[0];
|
|
961
961
|
if (L) {
|
|
962
962
|
const S = L.id;
|
|
963
|
-
S &&
|
|
963
|
+
S && o("featureDelete", S);
|
|
964
964
|
}
|
|
965
965
|
return;
|
|
966
966
|
}
|
|
967
967
|
if (M === "select") {
|
|
968
|
-
const L =
|
|
968
|
+
const L = a?.queryRenderedFeatures(p.point, { layers: w })?.[0];
|
|
969
969
|
if (L) {
|
|
970
970
|
const S = L.id;
|
|
971
971
|
if (S) {
|
|
972
|
-
const B =
|
|
973
|
-
B &&
|
|
972
|
+
const B = b.getFeature(S);
|
|
973
|
+
B && o("featureClick", B);
|
|
974
974
|
}
|
|
975
975
|
} else
|
|
976
|
-
|
|
976
|
+
o("featureClick", null);
|
|
977
977
|
return;
|
|
978
978
|
}
|
|
979
979
|
}
|
|
980
|
-
function
|
|
981
|
-
if (
|
|
982
|
-
const _ =
|
|
980
|
+
function O(p) {
|
|
981
|
+
if (A && (C = [p.lngLat.lng, p.lngLat.lat], k.isDrawing.value && l(), c.activeTool === "select" && !k.isDrawing.value)) {
|
|
982
|
+
const _ = a?.queryRenderedFeatures(p.point, { layers: w })?.[0];
|
|
983
983
|
if (_) {
|
|
984
984
|
const L = _.properties?.title, S = _.properties?.description;
|
|
985
985
|
if (L || S) {
|
|
986
|
-
|
|
986
|
+
u || (u = new y1({
|
|
987
987
|
closeButton: !1,
|
|
988
988
|
closeOnClick: !1,
|
|
989
989
|
offset: 10,
|
|
990
990
|
className: "tge-popup-container"
|
|
991
991
|
}));
|
|
992
992
|
let B = "";
|
|
993
|
-
L && (B += `<h3 class="tge-popup__title">${
|
|
993
|
+
L && (B += `<h3 class="tge-popup__title">${c1(L)}</h3>`), S && (B += `<p class="tge-popup__description">${c1(S)}</p>`), u.setLngLat(p.lngLat).setHTML(B).addTo(a);
|
|
994
994
|
} else
|
|
995
|
-
|
|
995
|
+
u?.remove();
|
|
996
996
|
} else
|
|
997
|
-
|
|
997
|
+
u?.remove();
|
|
998
998
|
}
|
|
999
999
|
}
|
|
1000
|
-
function
|
|
1001
|
-
p.preventDefault(),
|
|
1002
|
-
}
|
|
1003
|
-
function G(p) {
|
|
1004
|
-
p.key === "Escape" && c.isDrawing.value && (c.cancelDrawing(), a());
|
|
1000
|
+
function q(p) {
|
|
1001
|
+
p.preventDefault(), k.isDrawing.value && (k.cancelDrawing(), l());
|
|
1005
1002
|
}
|
|
1006
1003
|
function s1(p) {
|
|
1004
|
+
p.key === "Escape" && k.isDrawing.value && (k.cancelDrawing(), l());
|
|
1005
|
+
}
|
|
1006
|
+
function c1(p) {
|
|
1007
1007
|
const M = document.createElement("div");
|
|
1008
1008
|
return M.textContent = p, M.innerHTML;
|
|
1009
1009
|
}
|
|
1010
|
-
function
|
|
1011
|
-
const p =
|
|
1012
|
-
return p ? l1(
|
|
1013
|
-
left:
|
|
1014
|
-
right:
|
|
1015
|
-
}) : l1(
|
|
1010
|
+
function S1() {
|
|
1011
|
+
const p = m.value;
|
|
1012
|
+
return p ? l1(c.bboxPadding, {
|
|
1013
|
+
left: V1(p),
|
|
1014
|
+
right: P1(p)
|
|
1015
|
+
}) : l1(c.bboxPadding);
|
|
1016
1016
|
}
|
|
1017
|
-
function
|
|
1017
|
+
function V1(p) {
|
|
1018
1018
|
const M = p.closest(".tge-editor");
|
|
1019
1019
|
if (!M) return 0;
|
|
1020
1020
|
const _ = M.querySelector(".tge-toolbar");
|
|
1021
1021
|
if (!_) return 0;
|
|
1022
1022
|
const L = _.getBoundingClientRect(), S = p.getBoundingClientRect(), B = L.right - S.left;
|
|
1023
|
-
return B <= 0 ? 0 : Math.round(B +
|
|
1023
|
+
return B <= 0 ? 0 : Math.round(B + ce);
|
|
1024
1024
|
}
|
|
1025
|
-
function
|
|
1026
|
-
if (p.clientWidth <=
|
|
1027
|
-
const M = getComputedStyle(p), _ =
|
|
1028
|
-
return Math.round(E +
|
|
1025
|
+
function P1(p) {
|
|
1026
|
+
if (p.clientWidth <= le) return 0;
|
|
1027
|
+
const M = getComputedStyle(p), _ = u1(M, "--tge-sidebar-min-width", ne), L = u1(M, "--tge-sidebar-max-width", ie), S = Math.min(_, L), B = Math.max(_, L), E = B1(p.clientWidth * re, S, B);
|
|
1028
|
+
return Math.round(E + se);
|
|
1029
1029
|
}
|
|
1030
|
-
function
|
|
1030
|
+
function u1(p, M, _) {
|
|
1031
1031
|
const L = Number.parseFloat(p.getPropertyValue(M));
|
|
1032
1032
|
return Number.isFinite(L) ? L : _;
|
|
1033
1033
|
}
|
|
1034
|
-
function
|
|
1034
|
+
function B1(p, M, _) {
|
|
1035
1035
|
return Math.min(Math.max(p, M), _);
|
|
1036
1036
|
}
|
|
1037
|
-
|
|
1038
|
-
if (!
|
|
1037
|
+
n1(() => {
|
|
1038
|
+
if (!m.value) return;
|
|
1039
1039
|
if (!v) {
|
|
1040
|
-
const L = new
|
|
1040
|
+
const L = new w1();
|
|
1041
1041
|
R.addProtocol("pmtiles", L.tile), v = !0;
|
|
1042
1042
|
}
|
|
1043
|
-
const { getStyle: p } =
|
|
1044
|
-
container:
|
|
1043
|
+
const { getStyle: p } = C1(c.pmtilesUrl), M = {
|
|
1044
|
+
container: m.value,
|
|
1045
1045
|
style: p(),
|
|
1046
1046
|
attributionControl: !1
|
|
1047
|
-
}, _ =
|
|
1047
|
+
}, _ = M1(c.modelValue);
|
|
1048
1048
|
_ ? (M.bounds = _, M.fitBoundsOptions = {
|
|
1049
|
-
padding:
|
|
1049
|
+
padding: S1(),
|
|
1050
1050
|
duration: 0
|
|
1051
|
-
}) : (M.center =
|
|
1051
|
+
}) : (M.center = c.center ?? b1, M.zoom = c.zoom ?? k1), a = new R.Map(M), a.addControl(
|
|
1052
1052
|
new R.AttributionControl({
|
|
1053
1053
|
compact: !0,
|
|
1054
1054
|
customAttribution: "OpenStreetMap contributors"
|
|
1055
1055
|
}),
|
|
1056
1056
|
"bottom-left"
|
|
1057
|
-
),
|
|
1057
|
+
), a.addControl(new R.NavigationControl(), "bottom-left"), a.addControl(
|
|
1058
1058
|
new R.GeolocateControl({
|
|
1059
1059
|
positionOptions: { enableHighAccuracy: !1 },
|
|
1060
1060
|
trackUserLocation: !1,
|
|
1061
1061
|
fitBoundsOptions: { maxZoom: 13 }
|
|
1062
1062
|
}),
|
|
1063
1063
|
"bottom-left"
|
|
1064
|
-
),
|
|
1065
|
-
if (!
|
|
1066
|
-
|
|
1064
|
+
), a.on("load", async () => {
|
|
1065
|
+
if (!a) return;
|
|
1066
|
+
a.addSource(H, {
|
|
1067
1067
|
type: "geojson",
|
|
1068
|
-
data:
|
|
1068
|
+
data: c.modelValue,
|
|
1069
1069
|
promoteId: "id"
|
|
1070
|
-
}),
|
|
1070
|
+
}), a.addSource(p1, {
|
|
1071
1071
|
type: "geojson",
|
|
1072
1072
|
data: { type: "FeatureCollection", features: [] }
|
|
1073
|
-
}),
|
|
1073
|
+
}), a.addSource(g1, {
|
|
1074
1074
|
type: "geojson",
|
|
1075
1075
|
data: { type: "FeatureCollection", features: [] }
|
|
1076
|
-
}),
|
|
1076
|
+
}), a.addSource(m1, {
|
|
1077
1077
|
type: "geojson",
|
|
1078
1078
|
data: { type: "FeatureCollection", features: [] }
|
|
1079
1079
|
});
|
|
1080
|
-
for (let S =
|
|
1081
|
-
const B =
|
|
1080
|
+
for (let S = c.modelValue.features.length - 1; S >= 0; S--) {
|
|
1081
|
+
const B = c.modelValue.features[S];
|
|
1082
1082
|
for (const E of Y(B.id, B.geometry.type))
|
|
1083
|
-
|
|
1083
|
+
a.addLayer(E);
|
|
1084
1084
|
}
|
|
1085
|
-
const L =
|
|
1085
|
+
const L = Z1();
|
|
1086
1086
|
for (const S of L)
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
}),
|
|
1090
|
-
}),
|
|
1091
|
-
document.removeEventListener("keydown",
|
|
1092
|
-
})
|
|
1087
|
+
a.addLayer(S);
|
|
1088
|
+
a.addLayer(N1(null)), x = s(c.modelValue.features), w = X(x), await Q(a, c.modelValue.features), A = !0, i();
|
|
1089
|
+
}), a.on("click", T), a.on("mousemove", O), a.on("contextmenu", q), document.addEventListener("keydown", s1);
|
|
1090
|
+
}), v1(() => {
|
|
1091
|
+
document.removeEventListener("keydown", s1), u?.remove(), a?.remove(), a = null;
|
|
1092
|
+
});
|
|
1093
|
+
function T1() {
|
|
1094
|
+
return a;
|
|
1095
|
+
}
|
|
1096
|
+
return d({ getMap: T1 }), (p, M) => (h(), y("div", {
|
|
1093
1097
|
ref_key: "mapContainer",
|
|
1094
|
-
ref:
|
|
1098
|
+
ref: m,
|
|
1095
1099
|
class: "tge-map"
|
|
1096
1100
|
}, null, 512));
|
|
1097
1101
|
}
|
|
1098
|
-
}),
|
|
1102
|
+
}), de = { class: "tge-toolbar" }, pe = ["title", "onClick"], ge = {
|
|
1099
1103
|
class: "tge-toolbar__icon",
|
|
1100
1104
|
viewBox: "0 0 24 24",
|
|
1101
1105
|
width: "22",
|
|
1102
1106
|
height: "22"
|
|
1103
|
-
},
|
|
1107
|
+
}, me = {
|
|
1104
1108
|
key: 0,
|
|
1105
1109
|
d: "M5 3l14 8-6.5 1.5L11 19z",
|
|
1106
1110
|
fill: "currentColor",
|
|
1107
1111
|
stroke: "currentColor",
|
|
1108
1112
|
"stroke-width": "1",
|
|
1109
1113
|
"stroke-linejoin": "round"
|
|
1110
|
-
},
|
|
1114
|
+
}, ve = {
|
|
1111
1115
|
key: 1,
|
|
1112
1116
|
cx: "12",
|
|
1113
1117
|
cy: "12",
|
|
@@ -1115,7 +1119,7 @@ const ae = 767, oe = 0.2, le = 240, re = 320, ne = 16, ie = 16, se = /* @__PURE_
|
|
|
1115
1119
|
fill: "currentColor",
|
|
1116
1120
|
stroke: "currentColor",
|
|
1117
1121
|
"stroke-width": "2"
|
|
1118
|
-
},
|
|
1122
|
+
}, fe = {
|
|
1119
1123
|
key: 5,
|
|
1120
1124
|
d: "M16.24 3.56l4.2 4.2a2 2 0 010 2.83L11.9 19.14a2 2 0 01-2.83 0L4.56 14.6a2 2 0 010-2.83l8.85-8.85a2 2 0 012.83.64zM4 21h16",
|
|
1121
1125
|
fill: "none",
|
|
@@ -1123,15 +1127,15 @@ const ae = 767, oe = 0.2, le = 240, re = 320, ne = 16, ie = 16, se = /* @__PURE_
|
|
|
1123
1127
|
"stroke-width": "2",
|
|
1124
1128
|
"stroke-linecap": "round",
|
|
1125
1129
|
"stroke-linejoin": "round"
|
|
1126
|
-
},
|
|
1130
|
+
}, he = /* @__PURE__ */ G({
|
|
1127
1131
|
__name: "EditorToolbar",
|
|
1128
1132
|
props: {
|
|
1129
1133
|
activeTool: {},
|
|
1130
1134
|
l10n: {}
|
|
1131
1135
|
},
|
|
1132
1136
|
emits: ["update:activeTool"],
|
|
1133
|
-
setup(e, { emit:
|
|
1134
|
-
const
|
|
1137
|
+
setup(e, { emit: d }) {
|
|
1138
|
+
const r = e, c = d, o = [
|
|
1135
1139
|
{ mode: "select", labelKey: "toolSelect", icon: "cursor" },
|
|
1136
1140
|
{ mode: "draw-point", labelKey: "toolPoint", icon: "point" },
|
|
1137
1141
|
{ mode: "draw-marker", labelKey: "toolMarker", icon: "marker" },
|
|
@@ -1139,71 +1143,71 @@ const ae = 767, oe = 0.2, le = 240, re = 320, ne = 16, ie = 16, se = /* @__PURE_
|
|
|
1139
1143
|
{ mode: "draw-polygon", labelKey: "toolPolygon", icon: "polygon" },
|
|
1140
1144
|
{ mode: "eraser", labelKey: "toolEraser", icon: "eraser" }
|
|
1141
1145
|
];
|
|
1142
|
-
function
|
|
1143
|
-
|
|
1146
|
+
function m(a) {
|
|
1147
|
+
c("update:activeTool", a);
|
|
1144
1148
|
}
|
|
1145
|
-
return (
|
|
1146
|
-
(
|
|
1147
|
-
key:
|
|
1149
|
+
return (a, u) => (h(), y("div", de, [
|
|
1150
|
+
(h(), y($, null, i1(o, (v) => n("button", {
|
|
1151
|
+
key: v.mode,
|
|
1148
1152
|
class: j(["tge-toolbar__btn", {
|
|
1149
|
-
"tge-toolbar__btn--active":
|
|
1150
|
-
"tge-toolbar__btn--eraser":
|
|
1153
|
+
"tge-toolbar__btn--active": r.activeTool === v.mode,
|
|
1154
|
+
"tge-toolbar__btn--eraser": v.mode === "eraser"
|
|
1151
1155
|
}]),
|
|
1152
|
-
title:
|
|
1153
|
-
onClick: (A) =>
|
|
1156
|
+
title: r.l10n[v.labelKey],
|
|
1157
|
+
onClick: (A) => m(v.mode)
|
|
1154
1158
|
}, [
|
|
1155
|
-
(
|
|
1156
|
-
|
|
1157
|
-
|
|
1159
|
+
(h(), y("svg", ge, [
|
|
1160
|
+
v.icon === "cursor" ? (h(), y("path", me)) : v.icon === "point" ? (h(), y("circle", ve)) : v.icon === "marker" ? (h(), y($, { key: 2 }, [
|
|
1161
|
+
u[0] || (u[0] = n("circle", {
|
|
1158
1162
|
cx: "12",
|
|
1159
1163
|
cy: "9",
|
|
1160
1164
|
r: "1.5",
|
|
1161
1165
|
fill: "currentColor"
|
|
1162
1166
|
}, null, -1)),
|
|
1163
|
-
|
|
1167
|
+
u[1] || (u[1] = n("path", {
|
|
1164
1168
|
d: "M12 2C7.86 2 4.5 5.2 4.5 9.18c0 1.88.86 4.39 2.55 7.44 1.36 2.45 2.93 4.67 3.75 5.78a1.49 1.49 0 002.4 0c.82-1.1 2.39-3.33 3.75-5.78 1.69-3.05 2.55-5.56 2.55-7.44C19.5 5.2 16.14 2 12 2zm0 10.5a3 3 0 110-6 3 3 0 010 6z",
|
|
1165
1169
|
fill: "currentColor"
|
|
1166
1170
|
}, null, -1))
|
|
1167
|
-
], 64)) :
|
|
1168
|
-
|
|
1171
|
+
], 64)) : v.icon === "line" ? (h(), y($, { key: 3 }, [
|
|
1172
|
+
u[2] || (u[2] = n("path", {
|
|
1169
1173
|
d: "M4 20L20 4",
|
|
1170
1174
|
fill: "none",
|
|
1171
1175
|
stroke: "currentColor",
|
|
1172
1176
|
"stroke-width": "2.5",
|
|
1173
1177
|
"stroke-linecap": "round"
|
|
1174
1178
|
}, null, -1)),
|
|
1175
|
-
|
|
1179
|
+
u[3] || (u[3] = n("circle", {
|
|
1176
1180
|
cx: "4",
|
|
1177
1181
|
cy: "20",
|
|
1178
1182
|
r: "2.5",
|
|
1179
1183
|
fill: "currentColor"
|
|
1180
1184
|
}, null, -1)),
|
|
1181
|
-
|
|
1185
|
+
u[4] || (u[4] = n("circle", {
|
|
1182
1186
|
cx: "20",
|
|
1183
1187
|
cy: "4",
|
|
1184
1188
|
r: "2.5",
|
|
1185
1189
|
fill: "currentColor"
|
|
1186
1190
|
}, null, -1))
|
|
1187
|
-
], 64)) :
|
|
1188
|
-
|
|
1189
|
-
], 64)) :
|
|
1191
|
+
], 64)) : v.icon === "polygon" ? (h(), y($, { key: 4 }, [
|
|
1192
|
+
u[5] || (u[5] = f1('<polygon points="12,3 21,10 18,20 6,20 3,10" fill="none" stroke="currentColor" stroke-width="2" stroke-linejoin="round"></polygon><circle cx="12" cy="3" r="2" fill="currentColor"></circle><circle cx="21" cy="10" r="2" fill="currentColor"></circle><circle cx="18" cy="20" r="2" fill="currentColor"></circle><circle cx="6" cy="20" r="2" fill="currentColor"></circle><circle cx="3" cy="10" r="2" fill="currentColor"></circle>', 6))
|
|
1193
|
+
], 64)) : v.icon === "eraser" ? (h(), y("path", fe)) : F("", !0)
|
|
1190
1194
|
]))
|
|
1191
|
-
], 10,
|
|
1195
|
+
], 10, pe)), 64))
|
|
1192
1196
|
]));
|
|
1193
1197
|
}
|
|
1194
|
-
}),
|
|
1198
|
+
}), ye = { class: "tge-layer-item__header" }, we = { class: "tge-layer-item__label" }, xe = {
|
|
1195
1199
|
key: 0,
|
|
1196
1200
|
class: "tge-layer-item__body"
|
|
1197
|
-
},
|
|
1201
|
+
}, be = { class: "tge-property-editor__label" }, ke = ["value"], Me = { class: "tge-property-editor__label" }, Ce = ["value"], Le = { class: "tge-property-editor__label" }, _e = ["value"], Ae = { class: "tge-property-editor__label" }, Se = ["value"], Ve = { class: "tge-property-editor__label" }, Pe = ["value"], Be = { class: "tge-property-editor__label" }, Te = ["value"], De = { class: "tge-property-editor__label" }, Fe = ["value"], Ie = { class: "tge-property-editor__label" }, $e = ["value"], ze = { class: "tge-property-editor__label" }, He = ["value"], Re = { class: "tge-property-editor__label" }, Ee = ["value"], Ue = { class: "tge-property-editor__label" }, Oe = ["value"], Ne = { class: "tge-property-editor__label" }, Ze = ["value"], qe = { class: "tge-property-editor__label" }, Ge = ["value"], je = { class: "tge-property-editor__label" }, Je = ["value"], We = { class: "tge-property-editor__label" }, Ke = ["value"], Ye = { value: "top" }, Xe = { value: "bottom" }, Qe = { value: "left" }, e2 = { value: "right" }, t2 = { class: "tge-property-editor__label" }, a2 = { class: "tge-icon-picker" }, o2 = ["src"], l2 = { class: "tge-icon-picker__current" }, r2 = {
|
|
1198
1202
|
key: 1,
|
|
1199
1203
|
class: "tge-icon-picker__placeholder"
|
|
1200
|
-
},
|
|
1204
|
+
}, n2 = {
|
|
1201
1205
|
key: 0,
|
|
1202
1206
|
class: "tge-icon-picker__dropdown"
|
|
1203
|
-
},
|
|
1207
|
+
}, i2 = ["placeholder"], s2 = { class: "tge-icon-picker__grid" }, c2 = ["title", "onClick"], u2 = ["src"], d2 = {
|
|
1204
1208
|
key: 0,
|
|
1205
1209
|
class: "tge-icon-picker__empty"
|
|
1206
|
-
},
|
|
1210
|
+
}, p2 = { class: "tge-property-editor__label" }, g2 = ["value"], m2 = { class: "tge-property-editor__label" }, v2 = ["value"], f2 = { value: "small" }, h2 = { value: "medium" }, y2 = { value: "large" }, w2 = { class: "tge-property-editor__label" }, x2 = ["value"], b2 = { class: "tge-property-editor__label" }, k2 = ["value"], M2 = { value: "top" }, C2 = { value: "bottom" }, L2 = { value: "left" }, _2 = { value: "right" }, A2 = /* @__PURE__ */ G({
|
|
1207
1211
|
__name: "LayerItem",
|
|
1208
1212
|
props: {
|
|
1209
1213
|
feature: {},
|
|
@@ -1216,63 +1220,63 @@ const ae = 767, oe = 0.2, le = 240, re = 320, ne = 16, ie = 16, se = /* @__PURE_
|
|
|
1216
1220
|
iconUrls: {}
|
|
1217
1221
|
},
|
|
1218
1222
|
emits: ["toggle", "update", "select", "delete", "dragstart", "dragend"],
|
|
1219
|
-
setup(e, { emit:
|
|
1220
|
-
const
|
|
1221
|
-
() =>
|
|
1223
|
+
setup(e, { emit: d }) {
|
|
1224
|
+
const r = e, c = d, o = z(() => r.feature.geometry.type), m = z(() => o.value === "Polygon"), a = z(
|
|
1225
|
+
() => o.value === "Polygon" || o.value === "LineString"
|
|
1226
|
+
), u = z(
|
|
1227
|
+
() => o.value === "Point" && !r.feature.properties["marker-symbol"]
|
|
1222
1228
|
), v = z(
|
|
1223
|
-
() =>
|
|
1224
|
-
), y = z(
|
|
1225
|
-
() => g.value === "Point" && !!t.feature.properties["marker-symbol"]
|
|
1229
|
+
() => o.value === "Point" && !!r.feature.properties["marker-symbol"]
|
|
1226
1230
|
), A = z(() => {
|
|
1227
|
-
const
|
|
1228
|
-
return
|
|
1229
|
-
}),
|
|
1230
|
-
const
|
|
1231
|
-
return
|
|
1232
|
-
}),
|
|
1233
|
-
() =>
|
|
1231
|
+
const i = r.feature.properties;
|
|
1232
|
+
return o.value === "Polygon" ? i.fill ?? null : o.value === "LineString" ? i.stroke ?? null : u.value ? i.fill ?? null : i["marker-color"] ?? null;
|
|
1233
|
+
}), x = I(""), w = I(!1), V = z(() => {
|
|
1234
|
+
const i = x.value.toLowerCase();
|
|
1235
|
+
return i ? r1.filter((t) => t.includes(i)) : r1;
|
|
1236
|
+
}), b = z(
|
|
1237
|
+
() => r.feature.properties?.["marker-symbol"] ?? ""
|
|
1234
1238
|
);
|
|
1235
|
-
function
|
|
1236
|
-
|
|
1239
|
+
function k(i) {
|
|
1240
|
+
g("marker-symbol", i), w.value = !1, x.value = "";
|
|
1237
1241
|
}
|
|
1238
|
-
function
|
|
1239
|
-
|
|
1242
|
+
function g(i, t) {
|
|
1243
|
+
c("update", r.feature.id, { [i]: t });
|
|
1240
1244
|
}
|
|
1241
|
-
function
|
|
1242
|
-
const
|
|
1243
|
-
return isNaN(
|
|
1245
|
+
function C(i, t) {
|
|
1246
|
+
const l = parseFloat(i);
|
|
1247
|
+
return isNaN(l) ? t : l;
|
|
1244
1248
|
}
|
|
1245
|
-
function
|
|
1246
|
-
|
|
1249
|
+
function s() {
|
|
1250
|
+
c("select"), c("toggle");
|
|
1247
1251
|
}
|
|
1248
|
-
return (
|
|
1252
|
+
return (i, t) => (h(), y("div", {
|
|
1249
1253
|
class: j(["tge-layer-item", {
|
|
1250
1254
|
"tge-layer-item--selected": e.selected,
|
|
1251
1255
|
"tge-layer-item--dragging": e.dragging
|
|
1252
1256
|
}])
|
|
1253
1257
|
}, [
|
|
1254
|
-
n("div",
|
|
1255
|
-
e.reorderable ? (
|
|
1258
|
+
n("div", ye, [
|
|
1259
|
+
e.reorderable ? (h(), y("div", {
|
|
1256
1260
|
key: 0,
|
|
1257
1261
|
class: "tge-layer-item__drag-handle",
|
|
1258
1262
|
draggable: "true",
|
|
1259
|
-
onDragstart:
|
|
1260
|
-
onDragend:
|
|
1261
|
-
}, [...
|
|
1262
|
-
|
|
1263
|
+
onDragstart: t[0] || (t[0] = (l) => i.$emit("dragstart", l)),
|
|
1264
|
+
onDragend: t[1] || (t[1] = (l) => i.$emit("dragend", l))
|
|
1265
|
+
}, [...t[24] || (t[24] = [
|
|
1266
|
+
f1('<svg viewBox="0 0 16 16" width="12" height="12" fill="currentColor"><circle cx="5" cy="3" r="1.5"></circle><circle cx="11" cy="3" r="1.5"></circle><circle cx="5" cy="8" r="1.5"></circle><circle cx="11" cy="8" r="1.5"></circle><circle cx="5" cy="13" r="1.5"></circle><circle cx="11" cy="13" r="1.5"></circle></svg>', 1)
|
|
1263
1267
|
])], 32)) : F("", !0),
|
|
1264
1268
|
n("button", {
|
|
1265
1269
|
class: "tge-layer-item__header-main",
|
|
1266
1270
|
type: "button",
|
|
1267
|
-
onClick:
|
|
1271
|
+
onClick: s
|
|
1268
1272
|
}, [
|
|
1269
|
-
|
|
1273
|
+
o.value === "Polygon" ? (h(), y("svg", {
|
|
1270
1274
|
key: 0,
|
|
1271
1275
|
class: "tge-layer-item__icon",
|
|
1272
1276
|
style: J(A.value ? { color: A.value } : void 0),
|
|
1273
1277
|
viewBox: "0 0 24 24",
|
|
1274
1278
|
fill: "none"
|
|
1275
|
-
}, [...
|
|
1279
|
+
}, [...t[25] || (t[25] = [
|
|
1276
1280
|
n("polygon", {
|
|
1277
1281
|
points: "12,3 21,10 18,20 6,20 3,10",
|
|
1278
1282
|
stroke: "currentColor",
|
|
@@ -1281,13 +1285,13 @@ const ae = 767, oe = 0.2, le = 240, re = 320, ne = 16, ie = 16, se = /* @__PURE_
|
|
|
1281
1285
|
fill: "currentColor",
|
|
1282
1286
|
"fill-opacity": "0.2"
|
|
1283
1287
|
}, null, -1)
|
|
1284
|
-
])], 4)) :
|
|
1288
|
+
])], 4)) : o.value === "LineString" ? (h(), y("svg", {
|
|
1285
1289
|
key: 1,
|
|
1286
1290
|
class: "tge-layer-item__icon",
|
|
1287
1291
|
style: J(A.value ? { color: A.value } : void 0),
|
|
1288
1292
|
viewBox: "0 0 16 16",
|
|
1289
1293
|
fill: "none"
|
|
1290
|
-
}, [...
|
|
1294
|
+
}, [...t[26] || (t[26] = [
|
|
1291
1295
|
n("polyline", {
|
|
1292
1296
|
points: "2,13 7,5 10,9 14,3",
|
|
1293
1297
|
stroke: "currentColor",
|
|
@@ -1296,13 +1300,13 @@ const ae = 767, oe = 0.2, le = 240, re = 320, ne = 16, ie = 16, se = /* @__PURE_
|
|
|
1296
1300
|
"stroke-linecap": "round",
|
|
1297
1301
|
"stroke-linejoin": "round"
|
|
1298
1302
|
}, null, -1)
|
|
1299
|
-
])], 4)) :
|
|
1303
|
+
])], 4)) : u.value ? (h(), y("svg", {
|
|
1300
1304
|
key: 2,
|
|
1301
1305
|
class: "tge-layer-item__icon",
|
|
1302
1306
|
style: J(A.value ? { color: A.value } : void 0),
|
|
1303
1307
|
viewBox: "0 0 16 16",
|
|
1304
1308
|
fill: "none"
|
|
1305
|
-
}, [...
|
|
1309
|
+
}, [...t[27] || (t[27] = [
|
|
1306
1310
|
n("circle", {
|
|
1307
1311
|
cx: "8",
|
|
1308
1312
|
cy: "8",
|
|
@@ -1312,13 +1316,13 @@ const ae = 767, oe = 0.2, le = 240, re = 320, ne = 16, ie = 16, se = /* @__PURE_
|
|
|
1312
1316
|
fill: "currentColor",
|
|
1313
1317
|
"fill-opacity": "0.2"
|
|
1314
1318
|
}, null, -1)
|
|
1315
|
-
])], 4)) : (
|
|
1319
|
+
])], 4)) : (h(), y("svg", {
|
|
1316
1320
|
key: 3,
|
|
1317
1321
|
class: "tge-layer-item__icon",
|
|
1318
1322
|
style: J(A.value ? { color: A.value } : void 0),
|
|
1319
1323
|
viewBox: "0 0 24 24",
|
|
1320
1324
|
fill: "none"
|
|
1321
|
-
}, [...
|
|
1325
|
+
}, [...t[28] || (t[28] = [
|
|
1322
1326
|
n("circle", {
|
|
1323
1327
|
cx: "12",
|
|
1324
1328
|
cy: "9",
|
|
@@ -1330,14 +1334,14 @@ const ae = 767, oe = 0.2, le = 240, re = 320, ne = 16, ie = 16, se = /* @__PURE_
|
|
|
1330
1334
|
fill: "currentColor"
|
|
1331
1335
|
}, null, -1)
|
|
1332
1336
|
])], 4)),
|
|
1333
|
-
n("span",
|
|
1334
|
-
(
|
|
1337
|
+
n("span", we, f(e.label), 1),
|
|
1338
|
+
(h(), y("svg", {
|
|
1335
1339
|
class: j(["tge-layer-item__chevron", { "tge-layer-item__chevron--open": e.expanded }]),
|
|
1336
1340
|
viewBox: "0 0 16 16",
|
|
1337
1341
|
fill: "none",
|
|
1338
1342
|
width: "14",
|
|
1339
1343
|
height: "14"
|
|
1340
|
-
}, [...
|
|
1344
|
+
}, [...t[29] || (t[29] = [
|
|
1341
1345
|
n("polyline", {
|
|
1342
1346
|
points: "5,3 11,8 5,13",
|
|
1343
1347
|
stroke: "currentColor",
|
|
@@ -1349,37 +1353,37 @@ const ae = 767, oe = 0.2, le = 240, re = 320, ne = 16, ie = 16, se = /* @__PURE_
|
|
|
1349
1353
|
])], 2))
|
|
1350
1354
|
])
|
|
1351
1355
|
]),
|
|
1352
|
-
e.expanded ? (
|
|
1353
|
-
n("label",
|
|
1354
|
-
P(
|
|
1356
|
+
e.expanded ? (h(), y("div", xe, [
|
|
1357
|
+
n("label", be, [
|
|
1358
|
+
P(f(e.l10n.propTitle) + " ", 1),
|
|
1355
1359
|
n("input", {
|
|
1356
1360
|
type: "text",
|
|
1357
1361
|
class: "tge-property-editor__input text-sm",
|
|
1358
1362
|
value: e.feature.properties.title ?? "",
|
|
1359
|
-
onInput:
|
|
1360
|
-
}, null, 40,
|
|
1363
|
+
onInput: t[2] || (t[2] = (l) => g("title", l.target.value))
|
|
1364
|
+
}, null, 40, ke)
|
|
1361
1365
|
]),
|
|
1362
|
-
n("label",
|
|
1363
|
-
P(
|
|
1366
|
+
n("label", Me, [
|
|
1367
|
+
P(f(e.l10n.propDescription) + " ", 1),
|
|
1364
1368
|
n("textarea", {
|
|
1365
1369
|
class: "tge-property-editor__textarea text-sm",
|
|
1366
1370
|
rows: "3",
|
|
1367
1371
|
value: e.feature.properties.description ?? "",
|
|
1368
|
-
onInput:
|
|
1369
|
-
}, null, 40,
|
|
1372
|
+
onInput: t[3] || (t[3] = (l) => g("description", l.target.value))
|
|
1373
|
+
}, null, 40, Ce)
|
|
1370
1374
|
]),
|
|
1371
|
-
|
|
1372
|
-
n("label",
|
|
1373
|
-
P(
|
|
1375
|
+
m.value ? (h(), y($, { key: 0 }, [
|
|
1376
|
+
n("label", Le, [
|
|
1377
|
+
P(f(e.l10n.propFillColor) + " ", 1),
|
|
1374
1378
|
n("input", {
|
|
1375
1379
|
type: "color",
|
|
1376
1380
|
class: "tge-property-editor__color",
|
|
1377
1381
|
value: e.feature.properties.fill ?? "#555555",
|
|
1378
|
-
onInput:
|
|
1379
|
-
}, null, 40,
|
|
1382
|
+
onInput: t[4] || (t[4] = (l) => g("fill", l.target.value))
|
|
1383
|
+
}, null, 40, _e)
|
|
1380
1384
|
]),
|
|
1381
|
-
n("label",
|
|
1382
|
-
P(
|
|
1385
|
+
n("label", Ae, [
|
|
1386
|
+
P(f(e.l10n.propFillOpacity) + " ", 1),
|
|
1383
1387
|
n("input", {
|
|
1384
1388
|
type: "range",
|
|
1385
1389
|
min: "0",
|
|
@@ -1387,25 +1391,25 @@ const ae = 767, oe = 0.2, le = 240, re = 320, ne = 16, ie = 16, se = /* @__PURE_
|
|
|
1387
1391
|
step: "0.05",
|
|
1388
1392
|
class: "tge-property-editor__range",
|
|
1389
1393
|
value: e.feature.properties["fill-opacity"] ?? 0.6,
|
|
1390
|
-
onInput:
|
|
1394
|
+
onInput: t[5] || (t[5] = (l) => g(
|
|
1391
1395
|
"fill-opacity",
|
|
1392
|
-
|
|
1396
|
+
C(l.target.value, 0.6)
|
|
1393
1397
|
))
|
|
1394
|
-
}, null, 40,
|
|
1398
|
+
}, null, 40, Se)
|
|
1395
1399
|
])
|
|
1396
1400
|
], 64)) : F("", !0),
|
|
1397
|
-
|
|
1398
|
-
n("label",
|
|
1399
|
-
P(
|
|
1401
|
+
a.value ? (h(), y($, { key: 1 }, [
|
|
1402
|
+
n("label", Ve, [
|
|
1403
|
+
P(f(e.l10n.propStrokeColor) + " ", 1),
|
|
1400
1404
|
n("input", {
|
|
1401
1405
|
type: "color",
|
|
1402
1406
|
class: "tge-property-editor__color",
|
|
1403
1407
|
value: e.feature.properties.stroke ?? "#555555",
|
|
1404
|
-
onInput:
|
|
1405
|
-
}, null, 40,
|
|
1408
|
+
onInput: t[6] || (t[6] = (l) => g("stroke", l.target.value))
|
|
1409
|
+
}, null, 40, Pe)
|
|
1406
1410
|
]),
|
|
1407
|
-
n("label",
|
|
1408
|
-
P(
|
|
1411
|
+
n("label", Be, [
|
|
1412
|
+
P(f(e.l10n.propStrokeOpacity) + " ", 1),
|
|
1409
1413
|
n("input", {
|
|
1410
1414
|
type: "range",
|
|
1411
1415
|
min: "0",
|
|
@@ -1413,39 +1417,39 @@ const ae = 767, oe = 0.2, le = 240, re = 320, ne = 16, ie = 16, se = /* @__PURE_
|
|
|
1413
1417
|
step: "0.05",
|
|
1414
1418
|
class: "tge-property-editor__range",
|
|
1415
1419
|
value: e.feature.properties["stroke-opacity"] ?? 1,
|
|
1416
|
-
onInput:
|
|
1420
|
+
onInput: t[7] || (t[7] = (l) => g(
|
|
1417
1421
|
"stroke-opacity",
|
|
1418
|
-
|
|
1422
|
+
C(l.target.value, 1)
|
|
1419
1423
|
))
|
|
1420
|
-
}, null, 40,
|
|
1424
|
+
}, null, 40, Te)
|
|
1421
1425
|
]),
|
|
1422
|
-
n("label",
|
|
1423
|
-
P(
|
|
1426
|
+
n("label", De, [
|
|
1427
|
+
P(f(e.l10n.propStrokeWidth) + " ", 1),
|
|
1424
1428
|
n("input", {
|
|
1425
1429
|
type: "number",
|
|
1426
1430
|
min: "0",
|
|
1427
1431
|
max: "20",
|
|
1428
1432
|
class: "tge-property-editor__input tge-property-editor__input--sm text-sm",
|
|
1429
1433
|
value: e.feature.properties["stroke-width"] ?? 2,
|
|
1430
|
-
onInput:
|
|
1434
|
+
onInput: t[8] || (t[8] = (l) => g(
|
|
1431
1435
|
"stroke-width",
|
|
1432
|
-
|
|
1436
|
+
C(l.target.value, 2)
|
|
1433
1437
|
))
|
|
1434
|
-
}, null, 40,
|
|
1438
|
+
}, null, 40, Fe)
|
|
1435
1439
|
])
|
|
1436
1440
|
], 64)) : F("", !0),
|
|
1437
|
-
|
|
1438
|
-
n("label",
|
|
1439
|
-
P(
|
|
1441
|
+
u.value ? (h(), y($, { key: 2 }, [
|
|
1442
|
+
n("label", Ie, [
|
|
1443
|
+
P(f(e.l10n.propPointColor) + " ", 1),
|
|
1440
1444
|
n("input", {
|
|
1441
1445
|
type: "color",
|
|
1442
1446
|
class: "tge-property-editor__color",
|
|
1443
1447
|
value: e.feature.properties.fill ?? "#555555",
|
|
1444
|
-
onInput:
|
|
1445
|
-
}, null, 40,
|
|
1448
|
+
onInput: t[9] || (t[9] = (l) => g("fill", l.target.value))
|
|
1449
|
+
}, null, 40, $e)
|
|
1446
1450
|
]),
|
|
1447
|
-
n("label",
|
|
1448
|
-
P(
|
|
1451
|
+
n("label", ze, [
|
|
1452
|
+
P(f(e.l10n.propFillOpacity) + " ", 1),
|
|
1449
1453
|
n("input", {
|
|
1450
1454
|
type: "range",
|
|
1451
1455
|
min: "0",
|
|
@@ -1453,23 +1457,23 @@ const ae = 767, oe = 0.2, le = 240, re = 320, ne = 16, ie = 16, se = /* @__PURE_
|
|
|
1453
1457
|
step: "0.05",
|
|
1454
1458
|
class: "tge-property-editor__range",
|
|
1455
1459
|
value: e.feature.properties["fill-opacity"] ?? 0.6,
|
|
1456
|
-
onInput:
|
|
1460
|
+
onInput: t[10] || (t[10] = (l) => g(
|
|
1457
1461
|
"fill-opacity",
|
|
1458
|
-
|
|
1462
|
+
C(l.target.value, 0.6)
|
|
1459
1463
|
))
|
|
1460
|
-
}, null, 40,
|
|
1464
|
+
}, null, 40, He)
|
|
1461
1465
|
]),
|
|
1462
|
-
n("label",
|
|
1463
|
-
P(
|
|
1466
|
+
n("label", Re, [
|
|
1467
|
+
P(f(e.l10n.propStrokeColor) + " ", 1),
|
|
1464
1468
|
n("input", {
|
|
1465
1469
|
type: "color",
|
|
1466
1470
|
class: "tge-property-editor__color",
|
|
1467
1471
|
value: e.feature.properties.stroke ?? "#ffffff",
|
|
1468
|
-
onInput:
|
|
1469
|
-
}, null, 40,
|
|
1472
|
+
onInput: t[11] || (t[11] = (l) => g("stroke", l.target.value))
|
|
1473
|
+
}, null, 40, Ee)
|
|
1470
1474
|
]),
|
|
1471
|
-
n("label",
|
|
1472
|
-
P(
|
|
1475
|
+
n("label", Ue, [
|
|
1476
|
+
P(f(e.l10n.propStrokeOpacity) + " ", 1),
|
|
1473
1477
|
n("input", {
|
|
1474
1478
|
type: "range",
|
|
1475
1479
|
min: "0",
|
|
@@ -1477,185 +1481,185 @@ const ae = 767, oe = 0.2, le = 240, re = 320, ne = 16, ie = 16, se = /* @__PURE_
|
|
|
1477
1481
|
step: "0.05",
|
|
1478
1482
|
class: "tge-property-editor__range",
|
|
1479
1483
|
value: e.feature.properties["stroke-opacity"] ?? 1,
|
|
1480
|
-
onInput:
|
|
1484
|
+
onInput: t[12] || (t[12] = (l) => g(
|
|
1481
1485
|
"stroke-opacity",
|
|
1482
|
-
|
|
1486
|
+
C(l.target.value, 1)
|
|
1483
1487
|
))
|
|
1484
|
-
}, null, 40,
|
|
1488
|
+
}, null, 40, Oe)
|
|
1485
1489
|
]),
|
|
1486
|
-
n("label",
|
|
1487
|
-
P(
|
|
1490
|
+
n("label", Ne, [
|
|
1491
|
+
P(f(e.l10n.propStrokeWidth) + " ", 1),
|
|
1488
1492
|
n("input", {
|
|
1489
1493
|
type: "number",
|
|
1490
1494
|
min: "0",
|
|
1491
1495
|
max: "20",
|
|
1492
1496
|
class: "tge-property-editor__input tge-property-editor__input--sm text-sm",
|
|
1493
1497
|
value: e.feature.properties["stroke-width"] ?? 2,
|
|
1494
|
-
onInput:
|
|
1498
|
+
onInput: t[13] || (t[13] = (l) => g(
|
|
1495
1499
|
"stroke-width",
|
|
1496
|
-
|
|
1500
|
+
C(l.target.value, 2)
|
|
1497
1501
|
))
|
|
1498
|
-
}, null, 40,
|
|
1502
|
+
}, null, 40, Ze)
|
|
1499
1503
|
]),
|
|
1500
|
-
n("label",
|
|
1501
|
-
P(
|
|
1504
|
+
n("label", qe, [
|
|
1505
|
+
P(f(e.l10n.propCircleRadius) + " ", 1),
|
|
1502
1506
|
n("input", {
|
|
1503
1507
|
type: "number",
|
|
1504
1508
|
min: "1",
|
|
1505
1509
|
max: "50",
|
|
1506
1510
|
class: "tge-property-editor__input tge-property-editor__input--sm text-sm",
|
|
1507
1511
|
value: e.feature.properties["circle-radius"] ?? 8,
|
|
1508
|
-
onInput:
|
|
1512
|
+
onInput: t[14] || (t[14] = (l) => g(
|
|
1509
1513
|
"circle-radius",
|
|
1510
|
-
|
|
1514
|
+
C(l.target.value, 8)
|
|
1511
1515
|
))
|
|
1512
|
-
}, null, 40,
|
|
1516
|
+
}, null, 40, Ge)
|
|
1513
1517
|
]),
|
|
1514
|
-
n("label",
|
|
1515
|
-
P(
|
|
1518
|
+
n("label", je, [
|
|
1519
|
+
P(f(e.l10n.propLabel) + " ", 1),
|
|
1516
1520
|
n("input", {
|
|
1517
1521
|
type: "text",
|
|
1518
1522
|
class: "tge-property-editor__input text-sm",
|
|
1519
1523
|
value: e.feature.properties["marker-label"] ?? "",
|
|
1520
|
-
onInput:
|
|
1521
|
-
}, null, 40,
|
|
1524
|
+
onInput: t[15] || (t[15] = (l) => g("marker-label", l.target.value))
|
|
1525
|
+
}, null, 40, Je)
|
|
1522
1526
|
]),
|
|
1523
|
-
n("label",
|
|
1524
|
-
P(
|
|
1527
|
+
n("label", We, [
|
|
1528
|
+
P(f(e.l10n.propLabelPosition) + " ", 1),
|
|
1525
1529
|
n("select", {
|
|
1526
1530
|
class: "tge-property-editor__select text-sm",
|
|
1527
1531
|
value: e.feature.properties["marker-label-position"] ?? "top",
|
|
1528
|
-
onChange:
|
|
1532
|
+
onChange: t[16] || (t[16] = (l) => g(
|
|
1529
1533
|
"marker-label-position",
|
|
1530
|
-
|
|
1534
|
+
l.target.value
|
|
1531
1535
|
))
|
|
1532
1536
|
}, [
|
|
1533
|
-
n("option",
|
|
1534
|
-
n("option",
|
|
1535
|
-
n("option",
|
|
1536
|
-
n("option",
|
|
1537
|
-
], 40,
|
|
1537
|
+
n("option", Ye, f(e.l10n.propPositionTop), 1),
|
|
1538
|
+
n("option", Xe, f(e.l10n.propPositionBottom), 1),
|
|
1539
|
+
n("option", Qe, f(e.l10n.propPositionLeft), 1),
|
|
1540
|
+
n("option", e2, f(e.l10n.propPositionRight), 1)
|
|
1541
|
+
], 40, Ke)
|
|
1538
1542
|
])
|
|
1539
1543
|
], 64)) : F("", !0),
|
|
1540
|
-
|
|
1541
|
-
n("div",
|
|
1542
|
-
P(
|
|
1543
|
-
n("div",
|
|
1544
|
+
v.value ? (h(), y($, { key: 3 }, [
|
|
1545
|
+
n("div", t2, [
|
|
1546
|
+
P(f(e.l10n.propIcon) + " ", 1),
|
|
1547
|
+
n("div", a2, [
|
|
1544
1548
|
n("button", {
|
|
1545
1549
|
class: "tge-icon-picker__trigger",
|
|
1546
1550
|
type: "button",
|
|
1547
|
-
onClick:
|
|
1551
|
+
onClick: t[17] || (t[17] = (l) => w.value = !w.value)
|
|
1548
1552
|
}, [
|
|
1549
|
-
|
|
1550
|
-
e.iconUrls.get(
|
|
1553
|
+
b.value ? (h(), y($, { key: 0 }, [
|
|
1554
|
+
e.iconUrls.get(b.value) ? (h(), y("img", {
|
|
1551
1555
|
key: 0,
|
|
1552
|
-
src: e.iconUrls.get(
|
|
1556
|
+
src: e.iconUrls.get(b.value),
|
|
1553
1557
|
class: "tge-icon-picker__preview",
|
|
1554
1558
|
alt: ""
|
|
1555
|
-
}, null, 8,
|
|
1556
|
-
n("span",
|
|
1557
|
-
], 64)) : (
|
|
1559
|
+
}, null, 8, o2)) : F("", !0),
|
|
1560
|
+
n("span", l2, f(b.value), 1)
|
|
1561
|
+
], 64)) : (h(), y("span", r2, f(e.l10n.propIconNone), 1))
|
|
1558
1562
|
])
|
|
1559
1563
|
]),
|
|
1560
|
-
|
|
1561
|
-
|
|
1564
|
+
w.value ? (h(), y("div", n2, [
|
|
1565
|
+
F1(n("input", {
|
|
1562
1566
|
type: "text",
|
|
1563
1567
|
class: "tge-icon-picker__search text-sm",
|
|
1564
|
-
"onUpdate:modelValue":
|
|
1568
|
+
"onUpdate:modelValue": t[18] || (t[18] = (l) => x.value = l),
|
|
1565
1569
|
placeholder: e.l10n.propIconSearch
|
|
1566
|
-
}, null, 8,
|
|
1567
|
-
[
|
|
1570
|
+
}, null, 8, i2), [
|
|
1571
|
+
[I1, x.value]
|
|
1568
1572
|
]),
|
|
1569
|
-
n("div",
|
|
1570
|
-
(
|
|
1571
|
-
key:
|
|
1573
|
+
n("div", s2, [
|
|
1574
|
+
(h(!0), y($, null, i1(V.value, (l) => (h(), y("button", {
|
|
1575
|
+
key: l,
|
|
1572
1576
|
class: j(["tge-icon-picker__item", {
|
|
1573
|
-
"tge-icon-picker__item--active":
|
|
1577
|
+
"tge-icon-picker__item--active": l === b.value
|
|
1574
1578
|
}]),
|
|
1575
1579
|
type: "button",
|
|
1576
|
-
title:
|
|
1577
|
-
onClick: (
|
|
1580
|
+
title: l,
|
|
1581
|
+
onClick: (T) => k(l)
|
|
1578
1582
|
}, [
|
|
1579
|
-
e.iconUrls.get(
|
|
1583
|
+
e.iconUrls.get(l) ? (h(), y("img", {
|
|
1580
1584
|
key: 0,
|
|
1581
|
-
src: e.iconUrls.get(
|
|
1585
|
+
src: e.iconUrls.get(l),
|
|
1582
1586
|
class: "tge-icon-picker__item-icon",
|
|
1583
1587
|
alt: ""
|
|
1584
|
-
}, null, 8,
|
|
1585
|
-
n("span", null,
|
|
1586
|
-
], 10,
|
|
1588
|
+
}, null, 8, u2)) : F("", !0),
|
|
1589
|
+
n("span", null, f(l), 1)
|
|
1590
|
+
], 10, c2))), 128))
|
|
1587
1591
|
]),
|
|
1588
|
-
V.value.length === 0 ? (
|
|
1592
|
+
V.value.length === 0 ? (h(), y("div", d2, f(e.l10n.propIconNoResults), 1)) : F("", !0)
|
|
1589
1593
|
])) : F("", !0)
|
|
1590
1594
|
]),
|
|
1591
|
-
n("label",
|
|
1592
|
-
P(
|
|
1595
|
+
n("label", p2, [
|
|
1596
|
+
P(f(e.l10n.propMarkerColor) + " ", 1),
|
|
1593
1597
|
n("input", {
|
|
1594
1598
|
type: "color",
|
|
1595
1599
|
class: "tge-property-editor__color",
|
|
1596
1600
|
value: e.feature.properties["marker-color"] ?? "#7e7e7e",
|
|
1597
|
-
onInput:
|
|
1598
|
-
}, null, 40,
|
|
1601
|
+
onInput: t[19] || (t[19] = (l) => g("marker-color", l.target.value))
|
|
1602
|
+
}, null, 40, g2)
|
|
1599
1603
|
]),
|
|
1600
|
-
n("label",
|
|
1601
|
-
P(
|
|
1604
|
+
n("label", m2, [
|
|
1605
|
+
P(f(e.l10n.propMarkerSize) + " ", 1),
|
|
1602
1606
|
n("select", {
|
|
1603
1607
|
class: "tge-property-editor__select text-sm",
|
|
1604
1608
|
value: e.feature.properties["marker-size"] ?? "medium",
|
|
1605
|
-
onChange:
|
|
1609
|
+
onChange: t[20] || (t[20] = (l) => g(
|
|
1606
1610
|
"marker-size",
|
|
1607
|
-
|
|
1611
|
+
l.target.value
|
|
1608
1612
|
))
|
|
1609
1613
|
}, [
|
|
1610
|
-
n("option",
|
|
1611
|
-
n("option",
|
|
1612
|
-
n("option",
|
|
1613
|
-
], 40,
|
|
1614
|
+
n("option", f2, f(e.l10n.propSizeSmall), 1),
|
|
1615
|
+
n("option", h2, f(e.l10n.propSizeMedium), 1),
|
|
1616
|
+
n("option", y2, f(e.l10n.propSizeLarge), 1)
|
|
1617
|
+
], 40, v2)
|
|
1614
1618
|
]),
|
|
1615
|
-
n("label",
|
|
1616
|
-
P(
|
|
1619
|
+
n("label", w2, [
|
|
1620
|
+
P(f(e.l10n.propLabel) + " ", 1),
|
|
1617
1621
|
n("input", {
|
|
1618
1622
|
type: "text",
|
|
1619
1623
|
class: "tge-property-editor__input text-sm",
|
|
1620
1624
|
value: e.feature.properties["marker-label"] ?? "",
|
|
1621
|
-
onInput:
|
|
1622
|
-
}, null, 40,
|
|
1625
|
+
onInput: t[21] || (t[21] = (l) => g("marker-label", l.target.value))
|
|
1626
|
+
}, null, 40, x2)
|
|
1623
1627
|
]),
|
|
1624
|
-
n("label",
|
|
1625
|
-
P(
|
|
1628
|
+
n("label", b2, [
|
|
1629
|
+
P(f(e.l10n.propLabelPosition) + " ", 1),
|
|
1626
1630
|
n("select", {
|
|
1627
1631
|
class: "tge-property-editor__select text-sm",
|
|
1628
1632
|
value: e.feature.properties["marker-label-position"] ?? "top",
|
|
1629
|
-
onChange:
|
|
1633
|
+
onChange: t[22] || (t[22] = (l) => g(
|
|
1630
1634
|
"marker-label-position",
|
|
1631
|
-
|
|
1635
|
+
l.target.value
|
|
1632
1636
|
))
|
|
1633
1637
|
}, [
|
|
1634
|
-
n("option",
|
|
1635
|
-
n("option",
|
|
1636
|
-
n("option",
|
|
1637
|
-
n("option",
|
|
1638
|
-
], 40,
|
|
1638
|
+
n("option", M2, f(e.l10n.propPositionTop), 1),
|
|
1639
|
+
n("option", C2, f(e.l10n.propPositionBottom), 1),
|
|
1640
|
+
n("option", L2, f(e.l10n.propPositionLeft), 1),
|
|
1641
|
+
n("option", _2, f(e.l10n.propPositionRight), 1)
|
|
1642
|
+
], 40, k2)
|
|
1639
1643
|
])
|
|
1640
1644
|
], 64)) : F("", !0),
|
|
1641
1645
|
n("button", {
|
|
1642
1646
|
class: "tge-layer-item__delete",
|
|
1643
1647
|
type: "button",
|
|
1644
|
-
onClick:
|
|
1645
|
-
},
|
|
1648
|
+
onClick: t[23] || (t[23] = (l) => i.$emit("delete", e.feature.id))
|
|
1649
|
+
}, f(e.l10n.layerDelete), 1)
|
|
1646
1650
|
])) : F("", !0)
|
|
1647
1651
|
], 2));
|
|
1648
1652
|
}
|
|
1649
|
-
}),
|
|
1653
|
+
}), S2 = { class: "tge-layer-panel" }, V2 = { class: "tge-layer-panel__header" }, P2 = {
|
|
1650
1654
|
key: 0,
|
|
1651
1655
|
class: "tge-layer-panel__drop-indicator"
|
|
1652
|
-
},
|
|
1656
|
+
}, B2 = {
|
|
1653
1657
|
key: 0,
|
|
1654
1658
|
class: "tge-layer-panel__drop-indicator"
|
|
1655
|
-
},
|
|
1659
|
+
}, T2 = {
|
|
1656
1660
|
key: 0,
|
|
1657
1661
|
class: "tge-layer-panel__empty"
|
|
1658
|
-
},
|
|
1662
|
+
}, D2 = /* @__PURE__ */ G({
|
|
1659
1663
|
__name: "LayerPanel",
|
|
1660
1664
|
props: {
|
|
1661
1665
|
features: {},
|
|
@@ -1664,86 +1668,86 @@ const ae = 767, oe = 0.2, le = 240, re = 320, ne = 16, ie = 16, se = /* @__PURE_
|
|
|
1664
1668
|
iconUrls: {}
|
|
1665
1669
|
},
|
|
1666
1670
|
emits: ["update", "select", "delete", "reorder", "close"],
|
|
1667
|
-
setup(e, { emit:
|
|
1668
|
-
const
|
|
1669
|
-
const
|
|
1670
|
-
for (const
|
|
1671
|
-
const
|
|
1672
|
-
if (
|
|
1673
|
-
|
|
1674
|
-
else if (
|
|
1675
|
-
!!
|
|
1671
|
+
setup(e, { emit: d }) {
|
|
1672
|
+
const r = e, c = d, o = I(/* @__PURE__ */ new Set()), m = I(null), a = I(null), u = z(() => {
|
|
1673
|
+
const s = { Point: 0, Marker: 0, LineString: 0, Polygon: 0 }, i = /* @__PURE__ */ new Map();
|
|
1674
|
+
for (const t of r.features) {
|
|
1675
|
+
const l = t.geometry.type;
|
|
1676
|
+
if (t.properties.title)
|
|
1677
|
+
l === "Point" ? !!t.properties["marker-symbol"] ? s.Marker++ : s.Point++ : s[l]++, i.set(t.id, t.properties.title);
|
|
1678
|
+
else if (l === "Point")
|
|
1679
|
+
!!t.properties["marker-symbol"] ? (s.Marker++, i.set(t.id, `${r.l10n.layerMarker} #${s.Marker}`)) : (s.Point++, i.set(t.id, `${r.l10n.layerPoint} #${s.Point}`));
|
|
1676
1680
|
else {
|
|
1677
|
-
|
|
1678
|
-
const
|
|
1679
|
-
|
|
1681
|
+
s[l]++;
|
|
1682
|
+
const T = l === "LineString" ? r.l10n.layerLine : r.l10n.layerPolygon;
|
|
1683
|
+
i.set(t.id, `${T} #${s[l]}`);
|
|
1680
1684
|
}
|
|
1681
1685
|
}
|
|
1682
|
-
return
|
|
1686
|
+
return i;
|
|
1683
1687
|
});
|
|
1684
|
-
|
|
1685
|
-
() =>
|
|
1686
|
-
async (
|
|
1687
|
-
if (!
|
|
1688
|
-
|
|
1688
|
+
Z(
|
|
1689
|
+
() => r.selectedFeatureId,
|
|
1690
|
+
async (s) => {
|
|
1691
|
+
if (!s) return;
|
|
1692
|
+
o.value = /* @__PURE__ */ new Set([...o.value, s]), await $1(), document.querySelector(`[data-feature-id="${s}"]`)?.scrollIntoView({ behavior: "smooth", block: "nearest" });
|
|
1689
1693
|
}
|
|
1690
|
-
),
|
|
1691
|
-
() =>
|
|
1692
|
-
(
|
|
1693
|
-
const
|
|
1694
|
-
|
|
1694
|
+
), Z(
|
|
1695
|
+
() => r.features,
|
|
1696
|
+
(s) => {
|
|
1697
|
+
const i = new Set(s.map((l) => l.id)), t = new Set([...o.value].filter((l) => i.has(l)));
|
|
1698
|
+
t.size !== o.value.size && (o.value = t);
|
|
1695
1699
|
}
|
|
1696
1700
|
);
|
|
1697
|
-
function
|
|
1698
|
-
const
|
|
1699
|
-
|
|
1701
|
+
function v(s) {
|
|
1702
|
+
const i = new Set(o.value);
|
|
1703
|
+
i.has(s) ? i.delete(s) : i.add(s), o.value = i;
|
|
1700
1704
|
}
|
|
1701
|
-
function A(
|
|
1702
|
-
|
|
1705
|
+
function A(s) {
|
|
1706
|
+
c("select", s);
|
|
1703
1707
|
}
|
|
1704
|
-
function
|
|
1705
|
-
|
|
1708
|
+
function x(s, i) {
|
|
1709
|
+
c("update", s, i);
|
|
1706
1710
|
}
|
|
1707
|
-
function
|
|
1708
|
-
|
|
1711
|
+
function w(s, i) {
|
|
1712
|
+
m.value = s, i.dataTransfer && (i.dataTransfer.effectAllowed = "move", i.dataTransfer.setData("text/plain", s));
|
|
1709
1713
|
}
|
|
1710
1714
|
function V() {
|
|
1711
|
-
|
|
1715
|
+
m.value = null, a.value = null;
|
|
1712
1716
|
}
|
|
1713
|
-
function
|
|
1714
|
-
if (
|
|
1715
|
-
const
|
|
1716
|
-
let
|
|
1717
|
-
for (let
|
|
1718
|
-
const
|
|
1719
|
-
if (
|
|
1720
|
-
|
|
1717
|
+
function b(s) {
|
|
1718
|
+
if (s.preventDefault(), !m.value) return;
|
|
1719
|
+
const i = s.currentTarget, t = Array.from(i.querySelectorAll("[data-feature-id]")), l = s.clientY;
|
|
1720
|
+
let T = t.length;
|
|
1721
|
+
for (let O = 0; O < t.length; O++) {
|
|
1722
|
+
const q = t[O].getBoundingClientRect();
|
|
1723
|
+
if (l < q.top + q.height / 2) {
|
|
1724
|
+
T = O;
|
|
1721
1725
|
break;
|
|
1722
1726
|
}
|
|
1723
1727
|
}
|
|
1724
|
-
|
|
1728
|
+
a.value = T;
|
|
1725
1729
|
}
|
|
1726
|
-
function
|
|
1727
|
-
|
|
1730
|
+
function k(s) {
|
|
1731
|
+
s.currentTarget.contains(s.relatedTarget) || (a.value = null);
|
|
1728
1732
|
}
|
|
1729
|
-
function
|
|
1730
|
-
|
|
1733
|
+
function g(s) {
|
|
1734
|
+
s.preventDefault(), !(!m.value || a.value === null) && (c("reorder", m.value, a.value), m.value = null, a.value = null);
|
|
1731
1735
|
}
|
|
1732
|
-
function
|
|
1733
|
-
|
|
1736
|
+
function C() {
|
|
1737
|
+
o.value.size !== 0 && (o.value = /* @__PURE__ */ new Set());
|
|
1734
1738
|
}
|
|
1735
|
-
return (
|
|
1736
|
-
n("div",
|
|
1739
|
+
return (s, i) => (h(), y("div", S2, [
|
|
1740
|
+
n("div", V2, [
|
|
1737
1741
|
n("button", {
|
|
1738
1742
|
class: "tge-layer-panel__title",
|
|
1739
1743
|
type: "button",
|
|
1740
|
-
onClick:
|
|
1741
|
-
},
|
|
1744
|
+
onClick: C
|
|
1745
|
+
}, f(e.l10n.layerPanelTitle), 1),
|
|
1742
1746
|
n("button", {
|
|
1743
1747
|
class: "tge-layer-panel__close",
|
|
1744
1748
|
type: "button",
|
|
1745
|
-
onClick:
|
|
1746
|
-
}, [...
|
|
1749
|
+
onClick: i[0] || (i[0] = (t) => s.$emit("close"))
|
|
1750
|
+
}, [...i[2] || (i[2] = [
|
|
1747
1751
|
n("svg", {
|
|
1748
1752
|
viewBox: "0 0 24 24",
|
|
1749
1753
|
width: "18",
|
|
@@ -1761,42 +1765,42 @@ const ae = 767, oe = 0.2, le = 240, re = 320, ne = 16, ie = 16, se = /* @__PURE_
|
|
|
1761
1765
|
]),
|
|
1762
1766
|
n("div", {
|
|
1763
1767
|
class: "tge-layer-panel__list",
|
|
1764
|
-
onDragover:
|
|
1765
|
-
onDragleave:
|
|
1766
|
-
onDrop:
|
|
1768
|
+
onDragover: b,
|
|
1769
|
+
onDragleave: k,
|
|
1770
|
+
onDrop: g
|
|
1767
1771
|
}, [
|
|
1768
|
-
(
|
|
1769
|
-
key:
|
|
1772
|
+
(h(!0), y($, null, i1(e.features, (t, l) => (h(), y($, {
|
|
1773
|
+
key: t.id
|
|
1770
1774
|
}, [
|
|
1771
|
-
|
|
1772
|
-
K(
|
|
1773
|
-
"data-feature-id":
|
|
1774
|
-
feature:
|
|
1775
|
-
label:
|
|
1776
|
-
expanded:
|
|
1777
|
-
selected:
|
|
1778
|
-
dragging:
|
|
1775
|
+
a.value === l ? (h(), y("div", P2)) : F("", !0),
|
|
1776
|
+
K(A2, {
|
|
1777
|
+
"data-feature-id": t.id,
|
|
1778
|
+
feature: t,
|
|
1779
|
+
label: u.value.get(t.id) ?? "",
|
|
1780
|
+
expanded: o.value.has(t.id),
|
|
1781
|
+
selected: t.id === e.selectedFeatureId,
|
|
1782
|
+
dragging: m.value === t.id,
|
|
1779
1783
|
reorderable: e.features.length > 1,
|
|
1780
1784
|
l10n: e.l10n,
|
|
1781
1785
|
iconUrls: e.iconUrls,
|
|
1782
|
-
onToggle: (
|
|
1783
|
-
onUpdate:
|
|
1784
|
-
onSelect: (
|
|
1785
|
-
onDelete:
|
|
1786
|
-
onDragstart: (
|
|
1786
|
+
onToggle: (T) => v(t.id),
|
|
1787
|
+
onUpdate: x,
|
|
1788
|
+
onSelect: (T) => A(t.id),
|
|
1789
|
+
onDelete: i[1] || (i[1] = (T) => s.$emit("delete", T)),
|
|
1790
|
+
onDragstart: (T) => w(t.id, T),
|
|
1787
1791
|
onDragend: V
|
|
1788
1792
|
}, null, 8, ["data-feature-id", "feature", "label", "expanded", "selected", "dragging", "reorderable", "l10n", "iconUrls", "onToggle", "onSelect", "onDragstart"])
|
|
1789
1793
|
], 64))), 128)),
|
|
1790
|
-
|
|
1794
|
+
a.value === e.features.length ? (h(), y("div", B2)) : F("", !0)
|
|
1791
1795
|
], 32),
|
|
1792
|
-
e.features.length === 0 ? (
|
|
1796
|
+
e.features.length === 0 ? (h(), y("p", T2, f(e.l10n.layerPanelEmpty), 1)) : F("", !0)
|
|
1793
1797
|
]));
|
|
1794
1798
|
}
|
|
1795
|
-
}),
|
|
1799
|
+
}), F2 = { class: "tge-editor" }, R2 = /* @__PURE__ */ G({
|
|
1796
1800
|
__name: "GeoJsonEditor",
|
|
1797
|
-
props: /* @__PURE__ */
|
|
1801
|
+
props: /* @__PURE__ */ H1({
|
|
1798
1802
|
pmtilesUrl: {},
|
|
1799
|
-
pointRadius: { default:
|
|
1803
|
+
pointRadius: { default: x1 },
|
|
1800
1804
|
center: {},
|
|
1801
1805
|
zoom: {},
|
|
1802
1806
|
bboxPadding: { default: () => [...e1] },
|
|
@@ -1808,87 +1812,93 @@ const ae = 767, oe = 0.2, le = 240, re = 320, ne = 16, ie = 16, se = /* @__PURE_
|
|
|
1808
1812
|
modelModifiers: {}
|
|
1809
1813
|
}),
|
|
1810
1814
|
emits: ["update:modelValue"],
|
|
1811
|
-
setup(e) {
|
|
1812
|
-
const
|
|
1815
|
+
setup(e, { expose: d }) {
|
|
1816
|
+
const r = e, c = z(() => ({ ...R1, ...r.l10n })), o = z1(e, "modelValue"), m = I(null), a = I("select"), u = I(null), v = I(/* @__PURE__ */ new Map());
|
|
1813
1817
|
n1(async () => {
|
|
1814
|
-
const
|
|
1815
|
-
r1.map(async (
|
|
1816
|
-
),
|
|
1817
|
-
for (const [
|
|
1818
|
-
|
|
1819
|
-
|
|
1818
|
+
const s = await Promise.all(
|
|
1819
|
+
r1.map(async (t) => [t, await X0(t)])
|
|
1820
|
+
), i = /* @__PURE__ */ new Map();
|
|
1821
|
+
for (const [t, l] of s)
|
|
1822
|
+
l && i.set(t, l);
|
|
1823
|
+
v.value = i;
|
|
1820
1824
|
});
|
|
1821
|
-
function
|
|
1822
|
-
|
|
1825
|
+
function A(s) {
|
|
1826
|
+
u.value = s?.id ?? null;
|
|
1823
1827
|
}
|
|
1824
|
-
function
|
|
1825
|
-
|
|
1826
|
-
...
|
|
1827
|
-
features:
|
|
1828
|
-
},
|
|
1828
|
+
function x(s) {
|
|
1829
|
+
o.value = {
|
|
1830
|
+
...o.value,
|
|
1831
|
+
features: o.value.features.filter((i) => i.id !== s)
|
|
1832
|
+
}, u.value === s && (u.value = null);
|
|
1829
1833
|
}
|
|
1830
|
-
function
|
|
1831
|
-
|
|
1832
|
-
...
|
|
1833
|
-
features:
|
|
1834
|
-
(
|
|
1834
|
+
function w(s, i) {
|
|
1835
|
+
o.value = {
|
|
1836
|
+
...o.value,
|
|
1837
|
+
features: o.value.features.map(
|
|
1838
|
+
(t) => t.id === s ? { ...t, properties: { ...t.properties, ...i } } : t
|
|
1835
1839
|
)
|
|
1836
1840
|
};
|
|
1837
1841
|
}
|
|
1838
|
-
function
|
|
1839
|
-
|
|
1842
|
+
function V(s) {
|
|
1843
|
+
a.value = s, s !== "select" && (u.value = null);
|
|
1844
|
+
}
|
|
1845
|
+
function b(s) {
|
|
1846
|
+
a.value = "select", u.value = s;
|
|
1840
1847
|
}
|
|
1841
|
-
function
|
|
1842
|
-
|
|
1848
|
+
function k(s) {
|
|
1849
|
+
u.value = s;
|
|
1843
1850
|
}
|
|
1844
|
-
function
|
|
1845
|
-
|
|
1851
|
+
function g() {
|
|
1852
|
+
return m.value?.getMap() ?? null;
|
|
1846
1853
|
}
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1854
|
+
d({ getMap: g });
|
|
1855
|
+
function C(s, i) {
|
|
1856
|
+
const t = [...o.value.features], l = t.findIndex((q) => q.id === s);
|
|
1857
|
+
if (l === -1) return;
|
|
1858
|
+
const [T] = t.splice(l, 1), O = l < i ? i - 1 : i;
|
|
1859
|
+
t.splice(O, 0, T), o.value = { ...o.value, features: t };
|
|
1852
1860
|
}
|
|
1853
|
-
return (
|
|
1854
|
-
K(
|
|
1855
|
-
activeTool:
|
|
1856
|
-
l10n:
|
|
1857
|
-
"onUpdate:activeTool":
|
|
1861
|
+
return (s, i) => (h(), y("div", F2, [
|
|
1862
|
+
K(he, {
|
|
1863
|
+
activeTool: a.value,
|
|
1864
|
+
l10n: c.value,
|
|
1865
|
+
"onUpdate:activeTool": V
|
|
1858
1866
|
}, null, 8, ["activeTool", "l10n"]),
|
|
1859
|
-
K(
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1867
|
+
K(ue, {
|
|
1868
|
+
ref_key: "editorMapRef",
|
|
1869
|
+
ref: m,
|
|
1870
|
+
modelValue: o.value,
|
|
1871
|
+
activeTool: a.value,
|
|
1872
|
+
pmtilesUrl: r.pmtilesUrl,
|
|
1873
|
+
pointRadius: r.pointRadius,
|
|
1874
|
+
center: r.center,
|
|
1875
|
+
zoom: r.zoom,
|
|
1876
|
+
bboxPadding: r.bboxPadding,
|
|
1877
|
+
"onUpdate:modelValue": i[0] || (i[0] = (t) => o.value = t),
|
|
1878
|
+
onFeatureClick: A,
|
|
1879
|
+
onFeatureDelete: x,
|
|
1880
|
+
onToolDone: b
|
|
1871
1881
|
}, null, 8, ["modelValue", "activeTool", "pmtilesUrl", "pointRadius", "center", "zoom", "bboxPadding"]),
|
|
1872
|
-
|
|
1882
|
+
u.value ? (h(), y("div", {
|
|
1873
1883
|
key: 0,
|
|
1874
1884
|
class: "tge-editor__backdrop",
|
|
1875
|
-
onClick:
|
|
1885
|
+
onClick: i[1] || (i[1] = (t) => u.value = null)
|
|
1876
1886
|
})) : F("", !0),
|
|
1877
|
-
K(
|
|
1878
|
-
class: j({ "tge-layer-panel--open":
|
|
1879
|
-
features:
|
|
1880
|
-
selectedFeatureId:
|
|
1881
|
-
l10n:
|
|
1882
|
-
iconUrls:
|
|
1883
|
-
onUpdate:
|
|
1884
|
-
onSelect:
|
|
1885
|
-
onDelete:
|
|
1886
|
-
onReorder:
|
|
1887
|
-
onClose:
|
|
1887
|
+
K(D2, {
|
|
1888
|
+
class: j({ "tge-layer-panel--open": u.value }),
|
|
1889
|
+
features: o.value.features,
|
|
1890
|
+
selectedFeatureId: u.value,
|
|
1891
|
+
l10n: c.value,
|
|
1892
|
+
iconUrls: v.value,
|
|
1893
|
+
onUpdate: w,
|
|
1894
|
+
onSelect: k,
|
|
1895
|
+
onDelete: x,
|
|
1896
|
+
onReorder: C,
|
|
1897
|
+
onClose: i[2] || (i[2] = (t) => u.value = null)
|
|
1888
1898
|
}, null, 8, ["class", "features", "selectedFeatureId", "l10n", "iconUrls"])
|
|
1889
1899
|
]));
|
|
1890
1900
|
}
|
|
1891
|
-
}),
|
|
1901
|
+
}), I2 = { class: "tge-viewer" }, E2 = /* @__PURE__ */ G({
|
|
1892
1902
|
__name: "GeoJsonViewer",
|
|
1893
1903
|
props: {
|
|
1894
1904
|
modelValue: { default: () => ({ type: "FeatureCollection", features: [] }) },
|
|
@@ -1897,99 +1907,103 @@ const ae = 767, oe = 0.2, le = 240, re = 320, ne = 16, ie = 16, se = /* @__PURE_
|
|
|
1897
1907
|
zoom: {},
|
|
1898
1908
|
bboxPadding: { default: () => [...e1] }
|
|
1899
1909
|
},
|
|
1900
|
-
setup(e) {
|
|
1901
|
-
const
|
|
1902
|
-
let
|
|
1903
|
-
function
|
|
1904
|
-
return
|
|
1910
|
+
setup(e, { expose: d }) {
|
|
1911
|
+
const r = e, c = I(null);
|
|
1912
|
+
let o = null, m = null, a = !1, u = !1, v = [], A = [];
|
|
1913
|
+
function x(g) {
|
|
1914
|
+
return g.map((C) => ({ id: C.id, geomType: C.geometry.type }));
|
|
1905
1915
|
}
|
|
1906
|
-
function
|
|
1907
|
-
if (!
|
|
1908
|
-
const
|
|
1909
|
-
|
|
1916
|
+
function w() {
|
|
1917
|
+
if (!o) return;
|
|
1918
|
+
const g = o.getSource(H);
|
|
1919
|
+
g && "setData" in g && g.setData(r.modelValue);
|
|
1910
1920
|
}
|
|
1911
|
-
|
|
1912
|
-
() =>
|
|
1921
|
+
Z(
|
|
1922
|
+
() => r.modelValue,
|
|
1913
1923
|
async () => {
|
|
1914
|
-
if (
|
|
1915
|
-
const
|
|
1916
|
-
|
|
1924
|
+
if (w(), o && u) {
|
|
1925
|
+
const g = x(r.modelValue.features);
|
|
1926
|
+
_1(o, v, g), v = g, A = X(g), await Q(o, r.modelValue.features);
|
|
1917
1927
|
}
|
|
1918
1928
|
},
|
|
1919
1929
|
{ deep: !0 }
|
|
1920
1930
|
);
|
|
1921
|
-
function
|
|
1922
|
-
if (!
|
|
1923
|
-
const
|
|
1924
|
-
if (
|
|
1925
|
-
|
|
1926
|
-
const
|
|
1927
|
-
if (
|
|
1928
|
-
|
|
1931
|
+
function V(g) {
|
|
1932
|
+
if (!u || !o) return;
|
|
1933
|
+
const s = o.queryRenderedFeatures(g.point, { layers: A })?.[0];
|
|
1934
|
+
if (s) {
|
|
1935
|
+
o.getCanvas().style.cursor = "pointer";
|
|
1936
|
+
const i = s.properties?.title, t = s.properties?.description;
|
|
1937
|
+
if (i || t) {
|
|
1938
|
+
m || (m = new y1({
|
|
1929
1939
|
closeButton: !1,
|
|
1930
1940
|
closeOnClick: !1,
|
|
1931
1941
|
offset: 10,
|
|
1932
1942
|
className: "tge-popup-container"
|
|
1933
1943
|
}));
|
|
1934
|
-
let
|
|
1935
|
-
|
|
1944
|
+
let l = "";
|
|
1945
|
+
i && (l += `<h3 class="tge-popup__title">${b(i)}</h3>`), t && (l += `<p class="tge-popup__description">${b(t)}</p>`), m.setLngLat(g.lngLat).setHTML(l).addTo(o);
|
|
1936
1946
|
} else
|
|
1937
|
-
|
|
1947
|
+
m?.remove();
|
|
1938
1948
|
} else
|
|
1939
|
-
|
|
1949
|
+
o.getCanvas().style.cursor = "", m?.remove();
|
|
1940
1950
|
}
|
|
1941
|
-
function
|
|
1942
|
-
const
|
|
1943
|
-
return
|
|
1951
|
+
function b(g) {
|
|
1952
|
+
const C = document.createElement("div");
|
|
1953
|
+
return C.textContent = g, C.innerHTML;
|
|
1944
1954
|
}
|
|
1945
|
-
|
|
1946
|
-
if (!
|
|
1947
|
-
if (!
|
|
1948
|
-
const
|
|
1949
|
-
R.addProtocol("pmtiles",
|
|
1955
|
+
n1(() => {
|
|
1956
|
+
if (!c.value) return;
|
|
1957
|
+
if (!a) {
|
|
1958
|
+
const i = new w1();
|
|
1959
|
+
R.addProtocol("pmtiles", i.tile), a = !0;
|
|
1950
1960
|
}
|
|
1951
|
-
const { getStyle:
|
|
1952
|
-
container:
|
|
1953
|
-
style:
|
|
1961
|
+
const { getStyle: g } = C1(r.pmtilesUrl), C = {
|
|
1962
|
+
container: c.value,
|
|
1963
|
+
style: g(),
|
|
1954
1964
|
attributionControl: !1
|
|
1955
|
-
},
|
|
1956
|
-
|
|
1957
|
-
padding: l1(
|
|
1965
|
+
}, s = M1(r.modelValue);
|
|
1966
|
+
s ? (C.bounds = s, C.fitBoundsOptions = {
|
|
1967
|
+
padding: l1(r.bboxPadding),
|
|
1958
1968
|
duration: 0
|
|
1959
|
-
}) : (
|
|
1969
|
+
}) : (C.center = r.center ?? b1, C.zoom = r.zoom ?? k1), o = new R.Map(C), o.addControl(
|
|
1960
1970
|
new R.AttributionControl({
|
|
1961
1971
|
compact: !0,
|
|
1962
1972
|
customAttribution: '<a href="https://www.openstreetmap.org/copyright" target="_blank">OpenStreetMap</a> contributors'
|
|
1963
1973
|
}),
|
|
1964
1974
|
"bottom-right"
|
|
1965
|
-
),
|
|
1975
|
+
), o.addControl(new R.NavigationControl(), "bottom-right"), o.addControl(
|
|
1966
1976
|
new R.GeolocateControl({
|
|
1967
1977
|
positionOptions: { enableHighAccuracy: !1 },
|
|
1968
1978
|
trackUserLocation: !1,
|
|
1969
1979
|
fitBoundsOptions: { maxZoom: 13 }
|
|
1970
1980
|
}),
|
|
1971
1981
|
"bottom-right"
|
|
1972
|
-
),
|
|
1973
|
-
if (
|
|
1974
|
-
|
|
1982
|
+
), o.on("load", async () => {
|
|
1983
|
+
if (o) {
|
|
1984
|
+
o.addSource(H, {
|
|
1975
1985
|
type: "geojson",
|
|
1976
|
-
data:
|
|
1986
|
+
data: r.modelValue,
|
|
1977
1987
|
promoteId: "id"
|
|
1978
1988
|
});
|
|
1979
|
-
for (let
|
|
1980
|
-
const
|
|
1981
|
-
for (const
|
|
1982
|
-
|
|
1989
|
+
for (let i = r.modelValue.features.length - 1; i >= 0; i--) {
|
|
1990
|
+
const t = r.modelValue.features[i];
|
|
1991
|
+
for (const l of Y(t.id, t.geometry.type))
|
|
1992
|
+
o.addLayer(l);
|
|
1983
1993
|
}
|
|
1984
|
-
v =
|
|
1994
|
+
v = x(r.modelValue.features), A = X(v), await Q(o, r.modelValue.features), u = !0;
|
|
1985
1995
|
}
|
|
1986
|
-
}),
|
|
1987
|
-
}),
|
|
1988
|
-
|
|
1989
|
-
})
|
|
1996
|
+
}), o.on("mousemove", V);
|
|
1997
|
+
}), v1(() => {
|
|
1998
|
+
m?.remove(), o?.remove(), o = null;
|
|
1999
|
+
});
|
|
2000
|
+
function k() {
|
|
2001
|
+
return o;
|
|
2002
|
+
}
|
|
2003
|
+
return d({ getMap: k }), (g, C) => (h(), y("div", I2, [
|
|
1990
2004
|
n("div", {
|
|
1991
2005
|
ref_key: "mapContainer",
|
|
1992
|
-
ref:
|
|
2006
|
+
ref: c,
|
|
1993
2007
|
class: "tge-map"
|
|
1994
2008
|
}, null, 512)
|
|
1995
2009
|
]));
|
|
@@ -1997,23 +2011,23 @@ const ae = 767, oe = 0.2, le = 240, re = 320, ne = 16, ie = 16, se = /* @__PURE_
|
|
|
1997
2011
|
});
|
|
1998
2012
|
export {
|
|
1999
2013
|
r1 as COMMON_ICONS,
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2014
|
+
D as DEFAULTS,
|
|
2015
|
+
R1 as DEFAULT_LOCALE,
|
|
2016
|
+
R2 as GeoJsonEditor,
|
|
2017
|
+
E2 as GeoJsonViewer,
|
|
2018
|
+
E1 as LAYER_IDS,
|
|
2005
2019
|
t1 as MARKER_SIZE_SCALE,
|
|
2006
2020
|
H as SOURCE_ID,
|
|
2007
|
-
|
|
2021
|
+
Z1 as getDrawingLayers,
|
|
2008
2022
|
o1 as getFeatureLayerIds,
|
|
2009
2023
|
Y as getFeatureLayers,
|
|
2010
|
-
|
|
2024
|
+
X0 as getIconUrl,
|
|
2011
2025
|
X as getQueryableLayerIds,
|
|
2012
|
-
|
|
2013
|
-
|
|
2026
|
+
N1 as getVerticesLayer,
|
|
2027
|
+
Q0 as loadIcon,
|
|
2014
2028
|
Q as loadIconsForFeatures,
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2029
|
+
_1 as reconcileFeatureLayers,
|
|
2030
|
+
ee as useDrawing,
|
|
2031
|
+
oe as useGeoJson,
|
|
2032
|
+
C1 as useMapStyle
|
|
2019
2033
|
};
|