kitchen-simulator 11.30.3 → 11.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/assets/img/svg/accessories.svg +4 -4
- package/es/assets/img/svg/bottombar/elevation-back.svg +6 -6
- package/es/assets/img/svg/bottombar/elevation-front.svg +6 -6
- package/es/assets/img/svg/bottombar/elevation-left.svg +6 -6
- package/es/assets/img/svg/bottombar/elevation-right.svg +7 -7
- package/es/assets/img/svg/bottombar/elevation.svg +13 -13
- package/es/assets/img/svg/detail.svg +77 -77
- package/es/assets/img/svg/filtersActive.svg +19 -19
- package/es/assets/img/svg/invert.svg +12 -12
- package/es/assets/img/svg/menubar/login.svg +84 -84
- package/es/assets/img/svg/menubar/my_projects.svg +85 -85
- package/es/assets/img/svg/menubar/new_project.svg +110 -110
- package/es/assets/img/svg/menubar/save_project.svg +84 -84
- package/es/assets/img/svg/options.svg +3 -3
- package/es/assets/img/svg/positioning.svg +3 -3
- package/es/assets/img/svg/toggleFilters.svg +19 -19
- package/es/assets/img/svg/toolbar/shopping-cart.svg +13 -13
- package/es/assets/img/svg/wizardstep/detail_view.svg +87 -87
- package/es/assets/img/svg/wizardstep/tile_view.svg +95 -95
- package/es/catalog/utils/exporter.js +2 -0
- package/es/catalog/utils/item-loader.js +9 -4
- package/es/class/item.js +1 -0
- package/es/components/viewer3d/camera-controls-module/camera-controls.module.js +556 -556
- package/es/components/viewer3d/scene-creator.js +5 -5
- package/es/constants.js +1 -0
- package/es/engine/2d/viewer-utils.js +11 -11
- package/es/events/external/handleExternalEvent.util.js +80 -66
- package/es/events/external/handlers.changeDoorStyle.js +8 -15
- package/es/events/external/handlers.loadProject.js +8 -15
- package/es/mappings/external-events/mapExternalEventPayload.js +4 -4
- package/es/mappings/external-events/mappers/addItemMapper.js +9 -9
- package/es/mappings/external-events/mappers/ccdfMapper.js +7 -13
- package/es/models.js +2 -0
- package/es/shared/concurrency/async-pool.js +71 -0
- package/es/shared/domain/asset/sanitize-asset-url.js +5 -5
- package/es/shared/math/line-metrics.js +11 -11
- package/es/utils/geometry.js +6 -4
- package/es/utils/skinPanelEngine.js +14 -14
- package/lib/assets/img/svg/accessories.svg +4 -4
- package/lib/assets/img/svg/bottombar/elevation-back.svg +6 -6
- package/lib/assets/img/svg/bottombar/elevation-front.svg +6 -6
- package/lib/assets/img/svg/bottombar/elevation-left.svg +6 -6
- package/lib/assets/img/svg/bottombar/elevation-right.svg +7 -7
- package/lib/assets/img/svg/bottombar/elevation.svg +13 -13
- package/lib/assets/img/svg/detail.svg +77 -77
- package/lib/assets/img/svg/filtersActive.svg +19 -19
- package/lib/assets/img/svg/invert.svg +12 -12
- package/lib/assets/img/svg/menubar/login.svg +84 -84
- package/lib/assets/img/svg/menubar/my_projects.svg +85 -85
- package/lib/assets/img/svg/menubar/new_project.svg +110 -110
- package/lib/assets/img/svg/menubar/save_project.svg +84 -84
- package/lib/assets/img/svg/options.svg +3 -3
- package/lib/assets/img/svg/positioning.svg +3 -3
- package/lib/assets/img/svg/toggleFilters.svg +19 -19
- package/lib/assets/img/svg/toolbar/shopping-cart.svg +13 -13
- package/lib/assets/img/svg/wizardstep/detail_view.svg +87 -87
- package/lib/assets/img/svg/wizardstep/tile_view.svg +95 -95
- package/lib/catalog/utils/exporter.js +2 -0
- package/lib/catalog/utils/item-loader.js +9 -4
- package/lib/class/item.js +1 -0
- package/lib/components/viewer3d/camera-controls-module/camera-controls.module.js +556 -556
- package/lib/components/viewer3d/scene-creator.js +5 -5
- package/lib/constants.js +5 -4
- package/lib/engine/2d/viewer-utils.js +11 -11
- package/lib/events/external/handleExternalEvent.util.js +80 -66
- package/lib/events/external/handlers.changeDoorStyle.js +8 -15
- package/lib/events/external/handlers.loadProject.js +8 -15
- package/lib/mappings/external-events/mapExternalEventPayload.js +4 -4
- package/lib/mappings/external-events/mappers/addItemMapper.js +9 -9
- package/lib/mappings/external-events/mappers/ccdfMapper.js +7 -13
- package/lib/models.js +2 -0
- package/lib/shared/concurrency/async-pool.js +78 -0
- package/lib/shared/domain/asset/sanitize-asset-url.js +5 -5
- package/lib/shared/math/line-metrics.js +11 -11
- package/lib/utils/geometry.js +5 -3
- package/lib/utils/skinPanelEngine.js +14 -14
- package/package.json +1 -1
package/es/utils/geometry.js
CHANGED
|
@@ -14,7 +14,7 @@ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length)
|
|
|
14
14
|
* @return {number}
|
|
15
15
|
*/
|
|
16
16
|
import { fAbs, toFixedFloat } from "./math.js";
|
|
17
|
-
import { BASE_CABINET_LAYOUTPOS, EPSILON, LINE_THICKNESS, MEPSILON, OVERLAP_INCLUDED, OVERLAP_LINK, OVERLAP_NONE, OVERLAP_SAME, OVERLAP_SOME, UNIT_ANGLE, WALL_CABINET_LAYOUTPOS } from "../constants";
|
|
17
|
+
import { BASE_CABINET_LAYOUTPOS, EPSILON, LINE_EPSILON, LINE_THICKNESS, MEPSILON, OVERLAP_INCLUDED, OVERLAP_LINK, OVERLAP_NONE, OVERLAP_SAME, OVERLAP_SOME, UNIT_ANGLE, WALL_CABINET_LAYOUTPOS } from "../constants";
|
|
18
18
|
import { APPLIANCE_CATEGORY_COOK_TOP, APPLIANCE_CATEGORY_HOOD, EXCLUDED_APPLIANCE_CATEGORIES } from "../constants/applianceCategories";
|
|
19
19
|
import { shouldBypassItemIntersectionValidation } from "../engine/2d/viewer-utils.js";
|
|
20
20
|
import { convert } from "./convert-units-lite";
|
|
@@ -146,8 +146,8 @@ export function _twoLineSegmentsIntersection(p1, p2, p3, p4) {
|
|
|
146
146
|
var denom = (y4 - y3) * (x2 - x1) - (x4 - x3) * (y2 - y1);
|
|
147
147
|
var numA = (x4 - x3) * (y1 - y3) - (y4 - y3) * (x1 - x3);
|
|
148
148
|
var numB = (x2 - x1) * (y1 - y3) - (y2 - y1) * (x1 - x3);
|
|
149
|
-
if (fAbs(denom) <=
|
|
150
|
-
if (fAbs(numA) <=
|
|
149
|
+
if (fAbs(denom) <= LINE_EPSILON) {
|
|
150
|
+
if (fAbs(numA) <= LINE_EPSILON && fAbs(numB) <= LINE_EPSILON) {
|
|
151
151
|
var comparator = function comparator(pa, pb) {
|
|
152
152
|
return pa.x === pb.x ? pa.y - pb.y : pa.x - pb.x;
|
|
153
153
|
};
|
|
@@ -176,7 +176,7 @@ export function _twoLineSegmentsIntersection(p1, p2, p3, p4) {
|
|
|
176
176
|
}
|
|
177
177
|
var uA = numA / denom;
|
|
178
178
|
var uB = numB / denom;
|
|
179
|
-
if (uA >= 0 -
|
|
179
|
+
if (uA >= 0 - LINE_EPSILON && uA <= 1 + LINE_EPSILON && uB >= 0 - LINE_EPSILON && uB <= 1 + LINE_EPSILON) {
|
|
180
180
|
var _point = {
|
|
181
181
|
x: x1 + uA * (x2 - x1),
|
|
182
182
|
y: y1 + uA * (y2 - y1)
|
|
@@ -3133,6 +3133,8 @@ export function isOverlappedTwoItemsOnOneLine(layer, curLine, srcItem, desItem)
|
|
|
3133
3133
|
// | |__DI__| |
|
|
3134
3134
|
// |_________SI_______|
|
|
3135
3135
|
return true;
|
|
3136
|
+
} else if (minDisV0S - minDisV0D > EPSILON && maxDisV0D - maxDisV0S > EPSILON) {
|
|
3137
|
+
return true;
|
|
3136
3138
|
} else if (minDisV0S < minDisV0D && maxDisV0S - minDisV0D > EPSILON) {
|
|
3137
3139
|
// s0 d0 s1 d1 ===> maxDisV0S: v0s1, minDisV0S: v0s0, maxDisV0D: v0d1, minDisV0D: v0d0
|
|
3138
3140
|
// v0 __________________________ v1
|
|
@@ -137,10 +137,10 @@ function isSnappedWithCornerCabient(srcItem, desItem) {
|
|
|
137
137
|
} else return false;
|
|
138
138
|
}
|
|
139
139
|
|
|
140
|
-
/**
|
|
141
|
-
* @param {*} faceSegs
|
|
142
|
-
* @param {*} otherFaces
|
|
143
|
-
* @returns
|
|
140
|
+
/**
|
|
141
|
+
* @param {*} faceSegs
|
|
142
|
+
* @param {*} otherFaces
|
|
143
|
+
* @returns
|
|
144
144
|
*/
|
|
145
145
|
function getTrimmedFaceSegs(faceSegs, otherFaces, cnt) {
|
|
146
146
|
try {
|
|
@@ -301,8 +301,8 @@ function applyGroupingRules(faces) {
|
|
|
301
301
|
};
|
|
302
302
|
}
|
|
303
303
|
|
|
304
|
-
/**
|
|
305
|
-
* Horizontal Grouping (for base cabinets back-to-back : BSV48 48" x 34.5")
|
|
304
|
+
/**
|
|
305
|
+
* Horizontal Grouping (for base cabinets back-to-back : BSV48 48" x 34.5")
|
|
306
306
|
*/
|
|
307
307
|
function applyHorizontalGrouping(faces) {
|
|
308
308
|
var removeIdxs = [];
|
|
@@ -344,8 +344,8 @@ function applyHorizontalGrouping(faces) {
|
|
|
344
344
|
};
|
|
345
345
|
}
|
|
346
346
|
|
|
347
|
-
/**
|
|
348
|
-
* Vertical Grouping (For CT3DR or CT2DR SKUs + stacked wall cabinets)
|
|
347
|
+
/**
|
|
348
|
+
* Vertical Grouping (For CT3DR or CT2DR SKUs + stacked wall cabinets)
|
|
349
349
|
*/
|
|
350
350
|
function applyVerticalGrouping(faces) {
|
|
351
351
|
var removeIdxs = [];
|
|
@@ -436,8 +436,8 @@ function buildMP3SkinPanelArray(bottomHeight, topHeight, mp3SkinPanelArray) {
|
|
|
436
436
|
return skinPanelTypeArray;
|
|
437
437
|
}
|
|
438
438
|
|
|
439
|
-
/**
|
|
440
|
-
* Decide which skin panel pieces are needed for a tall cabinet.
|
|
439
|
+
/**
|
|
440
|
+
* Decide which skin panel pieces are needed for a tall cabinet.
|
|
441
441
|
*/
|
|
442
442
|
function resolveTallCabinetBundle(face) {
|
|
443
443
|
var item = face.itemInfo;
|
|
@@ -457,8 +457,8 @@ function resolveTallCabinetBundle(face) {
|
|
|
457
457
|
return face !== null && face !== void 0 && face.skinPanelSKU ? [face.skinPanelSKU] : [];
|
|
458
458
|
}
|
|
459
459
|
|
|
460
|
-
/**
|
|
461
|
-
* Converts a face → list of SKUs
|
|
460
|
+
/**
|
|
461
|
+
* Converts a face → list of SKUs
|
|
462
462
|
*/
|
|
463
463
|
function resolveSkinPanelSKU(face) {
|
|
464
464
|
var layout = face.itemInfo.layoutpos;
|
|
@@ -468,8 +468,8 @@ function resolveSkinPanelSKU(face) {
|
|
|
468
468
|
return [face.skinPanelSKU];
|
|
469
469
|
}
|
|
470
470
|
|
|
471
|
-
/**
|
|
472
|
-
* Make skin panel data with grouping skinPanelSKU & doorStyle
|
|
471
|
+
/**
|
|
472
|
+
* Make skin panel data with grouping skinPanelSKU & doorStyle
|
|
473
473
|
*/
|
|
474
474
|
function buildSkinPanelData(faces) {
|
|
475
475
|
var tempResult = [];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M11.05 5.47V20.18L8 20.96" stroke="#000F33" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
-
<path d="M16.02 3V17.32L14.13 17.76" stroke="#000F33" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
-
</svg>
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M11.05 5.47V20.18L8 20.96" stroke="#000F33" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M16.02 3V17.32L14.13 17.76" stroke="#000F33" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</svg>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M14.5564 21L20.2416 14.9342L21.0051 2.53973L14.8952 6.34589" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
3
|
-
<path d="M8.91868 1L9.14126 12.3969L1.90534 17.3692L0.994629 4.08224L8.91868 1Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
4
|
-
<path d="M8.9187 1L21.0053 2.53972L20.2418 14.9342L9.14128 12.3969L8.9187 1Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
5
|
-
<path d="M14.5566 21L1.90534 17.3692L0.994629 4.08224L14.8953 6.34588L14.5566 21Z" fill="#4C12A1" fill-opacity="0.5" stroke="#4C12A1" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
-
</svg>
|
|
1
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M14.5564 21L20.2416 14.9342L21.0051 2.53973L14.8952 6.34589" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
3
|
+
<path d="M8.91868 1L9.14126 12.3969L1.90534 17.3692L0.994629 4.08224L8.91868 1Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
4
|
+
<path d="M8.9187 1L21.0053 2.53972L20.2418 14.9342L9.14128 12.3969L8.9187 1Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
5
|
+
<path d="M14.5566 21L1.90534 17.3692L0.994629 4.08224L14.8953 6.34588L14.5566 21Z" fill="#4C12A1" fill-opacity="0.5" stroke="#4C12A1" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
</svg>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M8.9187 1L21.0053 2.53972L20.2418 14.9342L9.14128 12.3969L8.9187 1Z" fill="#4C12A1" fill-opacity="0.5" stroke="#4C12A1" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
-
<path d="M14.5566 21L1.90534 17.3692L0.994629 4.08224L14.8953 6.34588L14.5566 21Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
4
|
-
<path d="M14.5564 21L20.2416 14.9342M21.0051 2.53973L14.8952 6.34589" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
5
|
-
<path d="M8.91868 1L0.994629 4.08224L1.90534 17.3692L9.14126 12.3969" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
6
|
-
</svg>
|
|
1
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8.9187 1L21.0053 2.53972L20.2418 14.9342L9.14128 12.3969L8.9187 1Z" fill="#4C12A1" fill-opacity="0.5" stroke="#4C12A1" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M14.5566 21L1.90534 17.3692L0.994629 4.08224L14.8953 6.34588L14.5566 21Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
4
|
+
<path d="M14.5564 21L20.2416 14.9342M21.0051 2.53973L14.8952 6.34589" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
5
|
+
<path d="M8.91868 1L0.994629 4.08224L1.90534 17.3692L9.14126 12.3969" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
6
|
+
</svg>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M8.91868 1L9.14126 12.3969L1.90534 17.3692L0.994629 4.08224L8.91868 1Z" fill="#4C12A1" fill-opacity="0.5" stroke="#4C12A1" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
-
<path d="M14.5564 21L20.2416 14.9342L21.0051 2.53973L14.8952 6.34589" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
4
|
-
<path d="M8.9187 1L21.0053 2.53972L20.2418 14.9342L9.14128 12.3969" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
5
|
-
<path d="M1.90534 17.3692L14.5566 21L14.8953 6.34588L0.994629 4.08224" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
6
|
-
</svg>
|
|
1
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8.91868 1L9.14126 12.3969L1.90534 17.3692L0.994629 4.08224L8.91868 1Z" fill="#4C12A1" fill-opacity="0.5" stroke="#4C12A1" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M14.5564 21L20.2416 14.9342L21.0051 2.53973L14.8952 6.34589" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
4
|
+
<path d="M8.9187 1L21.0053 2.53972L20.2418 14.9342L9.14128 12.3969" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
5
|
+
<path d="M1.90534 17.3692L14.5566 21L14.8953 6.34588L0.994629 4.08224" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
6
|
+
</svg>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M14.5566 21L1.90534 17.3692L0.994629 4.08224L14.8953 6.34588L14.5566 21Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
3
|
-
<path d="M8.91868 1L9.14126 12.3969L1.90534 17.3692L0.994629 4.08224L8.91868 1Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
4
|
-
<path d="M8.9187 1L21.0053 2.53972L20.2418 14.9342L9.14128 12.3969L8.9187 1Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
5
|
-
<path d="M14.5564 21L20.2416 14.9342L21.0051 2.53973L14.8952 6.34589" fill="#4C12A1" fill-opacity="0.5"/>
|
|
6
|
-
<path d="M14.5564 21L20.2416 14.9342L21.0051 2.53973L14.8952 6.34589L14.5564 21Z" stroke="#4C12A1" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
-
</svg>
|
|
1
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M14.5566 21L1.90534 17.3692L0.994629 4.08224L14.8953 6.34588L14.5566 21Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
3
|
+
<path d="M8.91868 1L9.14126 12.3969L1.90534 17.3692L0.994629 4.08224L8.91868 1Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
4
|
+
<path d="M8.9187 1L21.0053 2.53972L20.2418 14.9342L9.14128 12.3969L8.9187 1Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
5
|
+
<path d="M14.5564 21L20.2416 14.9342L21.0051 2.53973L14.8952 6.34589" fill="#4C12A1" fill-opacity="0.5"/>
|
|
6
|
+
<path d="M14.5564 21L20.2416 14.9342L21.0051 2.53973L14.8952 6.34589L14.5564 21Z" stroke="#4C12A1" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
</svg>
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_1516_100789)">
|
|
3
|
-
<path d="M4.25 6L2 7.125L8 10.125L14 7.125L11.75 6" stroke="rgba(58, 11, 128, 1)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
-
<path d="M2 10.125L8 13.125L14 10.125" stroke="rgba(58, 11, 128, 1)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
-
<path d="M8 7.125V1.875" stroke="rgba(58, 11, 128, 1)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
-
<path d="M5.75 4.125L8 1.875L10.25 4.125" stroke="rgba(58, 11, 128, 1)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
-
</g>
|
|
8
|
-
<defs>
|
|
9
|
-
<clipPath id="clip0_1516_100789">
|
|
10
|
-
<rect width="16" height="16" fill="white"/>
|
|
11
|
-
</clipPath>
|
|
12
|
-
</defs>
|
|
13
|
-
</svg>
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1516_100789)">
|
|
3
|
+
<path d="M4.25 6L2 7.125L8 10.125L14 7.125L11.75 6" stroke="rgba(58, 11, 128, 1)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M2 10.125L8 13.125L14 10.125" stroke="rgba(58, 11, 128, 1)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M8 7.125V1.875" stroke="rgba(58, 11, 128, 1)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M5.75 4.125L8 1.875L10.25 4.125" stroke="rgba(58, 11, 128, 1)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
</g>
|
|
8
|
+
<defs>
|
|
9
|
+
<clipPath id="clip0_1516_100789">
|
|
10
|
+
<rect width="16" height="16" fill="white"/>
|
|
11
|
+
</clipPath>
|
|
12
|
+
</defs>
|
|
13
|
+
</svg>
|
|
@@ -1,77 +1,77 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
-
|
|
4
|
-
<svg
|
|
5
|
-
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
6
|
-
xmlns:cc="http://creativecommons.org/ns#"
|
|
7
|
-
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
8
|
-
xmlns:svg="http://www.w3.org/2000/svg"
|
|
9
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
11
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
-
width="18"
|
|
13
|
-
height="14"
|
|
14
|
-
id="svg3049"
|
|
15
|
-
version="1.1"
|
|
16
|
-
inkscape:version="0.48.4 r9939"
|
|
17
|
-
sodipodi:docname="New document 5">
|
|
18
|
-
<defs
|
|
19
|
-
id="defs3051" />
|
|
20
|
-
<sodipodi:namedview
|
|
21
|
-
id="base"
|
|
22
|
-
pagecolor="#ffffff"
|
|
23
|
-
bordercolor="#666666"
|
|
24
|
-
borderopacity="1.0"
|
|
25
|
-
inkscape:pageopacity="0.0"
|
|
26
|
-
inkscape:pageshadow="2"
|
|
27
|
-
inkscape:zoom="11.197802"
|
|
28
|
-
inkscape:cx="16"
|
|
29
|
-
inkscape:cy="16"
|
|
30
|
-
inkscape:current-layer="layer1"
|
|
31
|
-
showgrid="true"
|
|
32
|
-
inkscape:grid-bbox="true"
|
|
33
|
-
inkscape:document-units="px"
|
|
34
|
-
inkscape:window-width="1920"
|
|
35
|
-
inkscape:window-height="1017"
|
|
36
|
-
inkscape:window-x="-8"
|
|
37
|
-
inkscape:window-y="-8"
|
|
38
|
-
inkscape:window-maximized="1" />
|
|
39
|
-
<metadata
|
|
40
|
-
id="metadata3054">
|
|
41
|
-
<rdf:RDF>
|
|
42
|
-
<cc:Work
|
|
43
|
-
rdf:about="">
|
|
44
|
-
<dc:format>image/svg+xml</dc:format>
|
|
45
|
-
<dc:type
|
|
46
|
-
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
47
|
-
<dc:title></dc:title>
|
|
48
|
-
</cc:Work>
|
|
49
|
-
</rdf:RDF>
|
|
50
|
-
</metadata>
|
|
51
|
-
<g
|
|
52
|
-
id="layer1"
|
|
53
|
-
inkscape:label="Layer 1"
|
|
54
|
-
inkscape:groupmode="layer"
|
|
55
|
-
transform="translate(0,-18)">
|
|
56
|
-
<g
|
|
57
|
-
transform="translate(-867,-822.725)"
|
|
58
|
-
clip-path="url(#clip77_0_1)"
|
|
59
|
-
id="g4">
|
|
60
|
-
<path
|
|
61
|
-
style="stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
62
|
-
inkscape:connector-curvature="0"
|
|
63
|
-
d="m 868,841.725 h 16"
|
|
64
|
-
id="path6" />
|
|
65
|
-
<path
|
|
66
|
-
style="stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
67
|
-
inkscape:connector-curvature="0"
|
|
68
|
-
d="m 868,847.725 h 16"
|
|
69
|
-
id="path8" />
|
|
70
|
-
<path
|
|
71
|
-
style="stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
72
|
-
inkscape:connector-curvature="0"
|
|
73
|
-
d="m 868,853.725 h 16"
|
|
74
|
-
id="path10" />
|
|
75
|
-
</g>
|
|
76
|
-
</g>
|
|
77
|
-
</svg>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
width="18"
|
|
13
|
+
height="14"
|
|
14
|
+
id="svg3049"
|
|
15
|
+
version="1.1"
|
|
16
|
+
inkscape:version="0.48.4 r9939"
|
|
17
|
+
sodipodi:docname="New document 5">
|
|
18
|
+
<defs
|
|
19
|
+
id="defs3051" />
|
|
20
|
+
<sodipodi:namedview
|
|
21
|
+
id="base"
|
|
22
|
+
pagecolor="#ffffff"
|
|
23
|
+
bordercolor="#666666"
|
|
24
|
+
borderopacity="1.0"
|
|
25
|
+
inkscape:pageopacity="0.0"
|
|
26
|
+
inkscape:pageshadow="2"
|
|
27
|
+
inkscape:zoom="11.197802"
|
|
28
|
+
inkscape:cx="16"
|
|
29
|
+
inkscape:cy="16"
|
|
30
|
+
inkscape:current-layer="layer1"
|
|
31
|
+
showgrid="true"
|
|
32
|
+
inkscape:grid-bbox="true"
|
|
33
|
+
inkscape:document-units="px"
|
|
34
|
+
inkscape:window-width="1920"
|
|
35
|
+
inkscape:window-height="1017"
|
|
36
|
+
inkscape:window-x="-8"
|
|
37
|
+
inkscape:window-y="-8"
|
|
38
|
+
inkscape:window-maximized="1" />
|
|
39
|
+
<metadata
|
|
40
|
+
id="metadata3054">
|
|
41
|
+
<rdf:RDF>
|
|
42
|
+
<cc:Work
|
|
43
|
+
rdf:about="">
|
|
44
|
+
<dc:format>image/svg+xml</dc:format>
|
|
45
|
+
<dc:type
|
|
46
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
47
|
+
<dc:title></dc:title>
|
|
48
|
+
</cc:Work>
|
|
49
|
+
</rdf:RDF>
|
|
50
|
+
</metadata>
|
|
51
|
+
<g
|
|
52
|
+
id="layer1"
|
|
53
|
+
inkscape:label="Layer 1"
|
|
54
|
+
inkscape:groupmode="layer"
|
|
55
|
+
transform="translate(0,-18)">
|
|
56
|
+
<g
|
|
57
|
+
transform="translate(-867,-822.725)"
|
|
58
|
+
clip-path="url(#clip77_0_1)"
|
|
59
|
+
id="g4">
|
|
60
|
+
<path
|
|
61
|
+
style="stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
62
|
+
inkscape:connector-curvature="0"
|
|
63
|
+
d="m 868,841.725 h 16"
|
|
64
|
+
id="path6" />
|
|
65
|
+
<path
|
|
66
|
+
style="stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
67
|
+
inkscape:connector-curvature="0"
|
|
68
|
+
d="m 868,847.725 h 16"
|
|
69
|
+
id="path8" />
|
|
70
|
+
<path
|
|
71
|
+
style="stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
72
|
+
inkscape:connector-curvature="0"
|
|
73
|
+
d="m 868,853.725 h 16"
|
|
74
|
+
id="path10" />
|
|
75
|
+
</g>
|
|
76
|
+
</g>
|
|
77
|
+
</svg>
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<rect width="40" height="40" rx="6" fill="#3A0B80"/>
|
|
3
|
-
<g clip-path="url(#clip0_2782_269361)">
|
|
4
|
-
<path d="M20 14C20 14.5304 20.2107 15.0391 20.5858 15.4142C20.9609 15.7893 21.4696 16 22 16C22.5304 16 23.0391 15.7893 23.4142 15.4142C23.7893 15.0391 24 14.5304 24 14C24 13.4696 23.7893 12.9609 23.4142 12.5858C23.0391 12.2107 22.5304 12 22 12C21.4696 12 20.9609 12.2107 20.5858 12.5858C20.2107 12.9609 20 13.4696 20 14Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
-
<path d="M12 14H20" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
-
<path d="M24 14H28" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
-
<path d="M14 20C14 20.5304 14.2107 21.0391 14.5858 21.4142C14.9609 21.7893 15.4696 22 16 22C16.5304 22 17.0391 21.7893 17.4142 21.4142C17.7893 21.0391 18 20.5304 18 20C18 19.4696 17.7893 18.9609 17.4142 18.5858C17.0391 18.2107 16.5304 18 16 18C15.4696 18 14.9609 18.2107 14.5858 18.5858C14.2107 18.9609 14 19.4696 14 20Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
-
<path d="M12 20H14" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
9
|
-
<path d="M18 20H28" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
|
-
<path d="M23 26C23 26.5304 23.2107 27.0391 23.5858 27.4142C23.9609 27.7893 24.4696 28 25 28C25.5304 28 26.0391 27.7893 26.4142 27.4142C26.7893 27.0391 27 26.5304 27 26C27 25.4696 26.7893 24.9609 26.4142 24.5858C26.0391 24.2107 25.5304 24 25 24C24.4696 24 23.9609 24.2107 23.5858 24.5858C23.2107 24.9609 23 25.4696 23 26Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
11
|
-
<path d="M12 26H23" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
12
|
-
<path d="M27 26H28" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
13
|
-
</g>
|
|
14
|
-
<defs>
|
|
15
|
-
<clipPath id="clip0_2782_269361">
|
|
16
|
-
<rect width="24" height="24" fill="white" transform="translate(8 8)"/>
|
|
17
|
-
</clipPath>
|
|
18
|
-
</defs>
|
|
19
|
-
</svg>
|
|
1
|
+
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="40" height="40" rx="6" fill="#3A0B80"/>
|
|
3
|
+
<g clip-path="url(#clip0_2782_269361)">
|
|
4
|
+
<path d="M20 14C20 14.5304 20.2107 15.0391 20.5858 15.4142C20.9609 15.7893 21.4696 16 22 16C22.5304 16 23.0391 15.7893 23.4142 15.4142C23.7893 15.0391 24 14.5304 24 14C24 13.4696 23.7893 12.9609 23.4142 12.5858C23.0391 12.2107 22.5304 12 22 12C21.4696 12 20.9609 12.2107 20.5858 12.5858C20.2107 12.9609 20 13.4696 20 14Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M12 14H20" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M24 14H28" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
<path d="M14 20C14 20.5304 14.2107 21.0391 14.5858 21.4142C14.9609 21.7893 15.4696 22 16 22C16.5304 22 17.0391 21.7893 17.4142 21.4142C17.7893 21.0391 18 20.5304 18 20C18 19.4696 17.7893 18.9609 17.4142 18.5858C17.0391 18.2107 16.5304 18 16 18C15.4696 18 14.9609 18.2107 14.5858 18.5858C14.2107 18.9609 14 19.4696 14 20Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
<path d="M12 20H14" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
9
|
+
<path d="M18 20H28" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
|
+
<path d="M23 26C23 26.5304 23.2107 27.0391 23.5858 27.4142C23.9609 27.7893 24.4696 28 25 28C25.5304 28 26.0391 27.7893 26.4142 27.4142C26.7893 27.0391 27 26.5304 27 26C27 25.4696 26.7893 24.9609 26.4142 24.5858C26.0391 24.2107 25.5304 24 25 24C24.4696 24 23.9609 24.2107 23.5858 24.5858C23.2107 24.9609 23 25.4696 23 26Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
11
|
+
<path d="M12 26H23" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
12
|
+
<path d="M27 26H28" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
13
|
+
</g>
|
|
14
|
+
<defs>
|
|
15
|
+
<clipPath id="clip0_2782_269361">
|
|
16
|
+
<rect width="24" height="24" fill="white" transform="translate(8 8)"/>
|
|
17
|
+
</clipPath>
|
|
18
|
+
</defs>
|
|
19
|
+
</svg>
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_2431_146436)">
|
|
3
|
-
<path d="M7.5 1.875V13.125" stroke="#3A0B80" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
-
<path d="M10 4.375V10.625H13.125L10 4.375Z" stroke="#3A0B80" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
-
<path d="M5 4.375V10.625H1.875L5 4.375Z" fill="#3A0B80" stroke="#3A0B80" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
-
</g>
|
|
7
|
-
<defs>
|
|
8
|
-
<clipPath id="clip0_2431_146436">
|
|
9
|
-
<rect width="15" height="15" fill="white"/>
|
|
10
|
-
</clipPath>
|
|
11
|
-
</defs>
|
|
12
|
-
</svg>
|
|
1
|
+
<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_2431_146436)">
|
|
3
|
+
<path d="M7.5 1.875V13.125" stroke="#3A0B80" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M10 4.375V10.625H13.125L10 4.375Z" stroke="#3A0B80" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M5 4.375V10.625H1.875L5 4.375Z" fill="#3A0B80" stroke="#3A0B80" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
</g>
|
|
7
|
+
<defs>
|
|
8
|
+
<clipPath id="clip0_2431_146436">
|
|
9
|
+
<rect width="15" height="15" fill="white"/>
|
|
10
|
+
</clipPath>
|
|
11
|
+
</defs>
|
|
12
|
+
</svg>
|
|
@@ -1,84 +1,84 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
-
|
|
4
|
-
<svg
|
|
5
|
-
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
6
|
-
xmlns:cc="http://creativecommons.org/ns#"
|
|
7
|
-
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
8
|
-
xmlns:svg="http://www.w3.org/2000/svg"
|
|
9
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
11
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
-
width="14"
|
|
13
|
-
height="20"
|
|
14
|
-
id="svg60766"
|
|
15
|
-
version="1.1"
|
|
16
|
-
inkscape:version="0.48.4 r9939"
|
|
17
|
-
sodipodi:docname="New document 2">
|
|
18
|
-
<defs
|
|
19
|
-
id="defs60768">
|
|
20
|
-
<clipPath
|
|
21
|
-
id="clip96_0_1">
|
|
22
|
-
<rect
|
|
23
|
-
style="fill:#ffffff"
|
|
24
|
-
y="0"
|
|
25
|
-
x="0"
|
|
26
|
-
width="24"
|
|
27
|
-
height="24"
|
|
28
|
-
transform="translate(2080,835.725)"
|
|
29
|
-
id="rect44351" />
|
|
30
|
-
</clipPath>
|
|
31
|
-
</defs>
|
|
32
|
-
<sodipodi:namedview
|
|
33
|
-
id="base"
|
|
34
|
-
pagecolor="#ffffff"
|
|
35
|
-
bordercolor="#666666"
|
|
36
|
-
borderopacity="1.0"
|
|
37
|
-
inkscape:pageopacity="0.0"
|
|
38
|
-
inkscape:pageshadow="2"
|
|
39
|
-
inkscape:zoom="11.197802"
|
|
40
|
-
inkscape:cx="16"
|
|
41
|
-
inkscape:cy="16"
|
|
42
|
-
inkscape:current-layer="g856"
|
|
43
|
-
showgrid="true"
|
|
44
|
-
inkscape:grid-bbox="true"
|
|
45
|
-
inkscape:document-units="px"
|
|
46
|
-
inkscape:window-width="1920"
|
|
47
|
-
inkscape:window-height="1017"
|
|
48
|
-
inkscape:window-x="-8"
|
|
49
|
-
inkscape:window-y="-8"
|
|
50
|
-
inkscape:window-maximized="1" />
|
|
51
|
-
<metadata
|
|
52
|
-
id="metadata60771">
|
|
53
|
-
<rdf:RDF>
|
|
54
|
-
<cc:Work
|
|
55
|
-
rdf:about="">
|
|
56
|
-
<dc:format>image/svg+xml</dc:format>
|
|
57
|
-
<dc:type
|
|
58
|
-
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
59
|
-
<dc:title></dc:title>
|
|
60
|
-
</cc:Work>
|
|
61
|
-
</rdf:RDF>
|
|
62
|
-
</metadata>
|
|
63
|
-
<g
|
|
64
|
-
id="layer1"
|
|
65
|
-
inkscape:label="Layer 1"
|
|
66
|
-
inkscape:groupmode="layer"
|
|
67
|
-
transform="translate(0,-12)">
|
|
68
|
-
<g
|
|
69
|
-
transform="translate(-2085,-825.725)"
|
|
70
|
-
clip-path="url(#clip96_0_1)"
|
|
71
|
-
id="g856">
|
|
72
|
-
<path
|
|
73
|
-
style="fill:none;stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
74
|
-
inkscape:connector-curvature="0"
|
|
75
|
-
d="m 2088,842.725 c 0,1.061 0.42,2.078 1.17,2.829 0.75,0.75 1.77,1.171 2.83,1.171 1.06,0 2.08,-0.421 2.83,-1.171 0.75,-0.751 1.17,-1.768 1.17,-2.829 0,-1.061 -0.42,-2.078 -1.17,-2.828 -0.75,-0.75 -1.77,-1.172 -2.83,-1.172 -1.06,0 -2.08,0.422 -2.83,1.172 -0.75,0.75 -1.17,1.767 -1.17,2.828 z"
|
|
76
|
-
id="path858" />
|
|
77
|
-
<path
|
|
78
|
-
style="fill:none;stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
79
|
-
inkscape:connector-curvature="0"
|
|
80
|
-
d="m 2086,856.725 v -2 c 0,-1.061 0.42,-2.078 1.17,-2.828 0.75,-0.75 1.77,-1.172 2.83,-1.172 h 4 c 1.06,0 2.08,0.422 2.83,1.172 0.75,0.75 1.17,1.767 1.17,2.828 v 2"
|
|
81
|
-
id="path860" />
|
|
82
|
-
</g>
|
|
83
|
-
</g>
|
|
84
|
-
</svg>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
width="14"
|
|
13
|
+
height="20"
|
|
14
|
+
id="svg60766"
|
|
15
|
+
version="1.1"
|
|
16
|
+
inkscape:version="0.48.4 r9939"
|
|
17
|
+
sodipodi:docname="New document 2">
|
|
18
|
+
<defs
|
|
19
|
+
id="defs60768">
|
|
20
|
+
<clipPath
|
|
21
|
+
id="clip96_0_1">
|
|
22
|
+
<rect
|
|
23
|
+
style="fill:#ffffff"
|
|
24
|
+
y="0"
|
|
25
|
+
x="0"
|
|
26
|
+
width="24"
|
|
27
|
+
height="24"
|
|
28
|
+
transform="translate(2080,835.725)"
|
|
29
|
+
id="rect44351" />
|
|
30
|
+
</clipPath>
|
|
31
|
+
</defs>
|
|
32
|
+
<sodipodi:namedview
|
|
33
|
+
id="base"
|
|
34
|
+
pagecolor="#ffffff"
|
|
35
|
+
bordercolor="#666666"
|
|
36
|
+
borderopacity="1.0"
|
|
37
|
+
inkscape:pageopacity="0.0"
|
|
38
|
+
inkscape:pageshadow="2"
|
|
39
|
+
inkscape:zoom="11.197802"
|
|
40
|
+
inkscape:cx="16"
|
|
41
|
+
inkscape:cy="16"
|
|
42
|
+
inkscape:current-layer="g856"
|
|
43
|
+
showgrid="true"
|
|
44
|
+
inkscape:grid-bbox="true"
|
|
45
|
+
inkscape:document-units="px"
|
|
46
|
+
inkscape:window-width="1920"
|
|
47
|
+
inkscape:window-height="1017"
|
|
48
|
+
inkscape:window-x="-8"
|
|
49
|
+
inkscape:window-y="-8"
|
|
50
|
+
inkscape:window-maximized="1" />
|
|
51
|
+
<metadata
|
|
52
|
+
id="metadata60771">
|
|
53
|
+
<rdf:RDF>
|
|
54
|
+
<cc:Work
|
|
55
|
+
rdf:about="">
|
|
56
|
+
<dc:format>image/svg+xml</dc:format>
|
|
57
|
+
<dc:type
|
|
58
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
59
|
+
<dc:title></dc:title>
|
|
60
|
+
</cc:Work>
|
|
61
|
+
</rdf:RDF>
|
|
62
|
+
</metadata>
|
|
63
|
+
<g
|
|
64
|
+
id="layer1"
|
|
65
|
+
inkscape:label="Layer 1"
|
|
66
|
+
inkscape:groupmode="layer"
|
|
67
|
+
transform="translate(0,-12)">
|
|
68
|
+
<g
|
|
69
|
+
transform="translate(-2085,-825.725)"
|
|
70
|
+
clip-path="url(#clip96_0_1)"
|
|
71
|
+
id="g856">
|
|
72
|
+
<path
|
|
73
|
+
style="fill:none;stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
74
|
+
inkscape:connector-curvature="0"
|
|
75
|
+
d="m 2088,842.725 c 0,1.061 0.42,2.078 1.17,2.829 0.75,0.75 1.77,1.171 2.83,1.171 1.06,0 2.08,-0.421 2.83,-1.171 0.75,-0.751 1.17,-1.768 1.17,-2.829 0,-1.061 -0.42,-2.078 -1.17,-2.828 -0.75,-0.75 -1.77,-1.172 -2.83,-1.172 -1.06,0 -2.08,0.422 -2.83,1.172 -0.75,0.75 -1.17,1.767 -1.17,2.828 z"
|
|
76
|
+
id="path858" />
|
|
77
|
+
<path
|
|
78
|
+
style="fill:none;stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
79
|
+
inkscape:connector-curvature="0"
|
|
80
|
+
d="m 2086,856.725 v -2 c 0,-1.061 0.42,-2.078 1.17,-2.828 0.75,-0.75 1.77,-1.172 2.83,-1.172 h 4 c 1.06,0 2.08,0.422 2.83,1.172 0.75,0.75 1.17,1.767 1.17,2.828 v 2"
|
|
81
|
+
id="path860" />
|
|
82
|
+
</g>
|
|
83
|
+
</g>
|
|
84
|
+
</svg>
|