@evergis/uilib-gl 1.0.28 → 1.0.30
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,3 +1,7 @@
|
|
|
1
1
|
export declare const NumberRangeSliderContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
2
2
|
export declare const NumberRangeContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, import("../../atoms/Grid").FlexProps, never>;
|
|
3
|
+
export declare const NumberRangeInputContainer: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, import("../../atoms/Grid").FlexSpanProps & {
|
|
4
|
+
hasReset?: boolean | undefined;
|
|
5
|
+
}, never>;
|
|
3
6
|
export declare const SliderContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
7
|
+
export declare const NumberRangeSliderLabel: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
package/dist/uilib-gl.esm.js
CHANGED
|
@@ -16696,25 +16696,34 @@ var WizardComponent = function WizardComponent(_ref) {
|
|
|
16696
16696
|
|
|
16697
16697
|
var Wizard = /*#__PURE__*/memo(WizardComponent);
|
|
16698
16698
|
|
|
16699
|
-
var _templateObject$1f, _templateObject2$G, _templateObject3$v;
|
|
16699
|
+
var _templateObject$1f, _templateObject2$G, _templateObject3$v, _templateObject4$m, _templateObject5$g;
|
|
16700
16700
|
var NumberRangeSliderContainer = /*#__PURE__*/styled.div(_templateObject$1f || (_templateObject$1f = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 100%;\n min-width: 15rem;\n"])));
|
|
16701
|
-
var NumberRangeContainer = /*#__PURE__*/styled(Flex)(_templateObject2$G || (_templateObject2$G = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n align-items: center;\n justify-content: space-between;\n"])));
|
|
16702
|
-
var
|
|
16701
|
+
var NumberRangeContainer = /*#__PURE__*/styled(Flex)(_templateObject2$G || (_templateObject2$G = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n align-items: center;\n justify-content: space-between;\n\n > ", " {\n position: relative;\n\n input {\n border-radius: ", ";\n }\n\n ", " {\n position: absolute;\n top: 0.125rem;\n right: -0.5rem;\n\n span[kind]:after {\n font-size: 0.75rem;\n opacity: 0.28;\n }\n }\n }\n"])), FlexSpan, borderRadius.xSmall, IconButtonButton);
|
|
16702
|
+
var NumberRangeInputContainer = /*#__PURE__*/styled(FlexSpan)(_templateObject3$v || (_templateObject3$v = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n input {\n margin-right: ", ";\n padding-right: ", ";\n }\n"])), function (_ref) {
|
|
16703
|
+
var hasReset = _ref.hasReset;
|
|
16704
|
+
return hasReset ? "-1.25rem" : "0";
|
|
16705
|
+
}, function (_ref2) {
|
|
16706
|
+
var hasReset = _ref2.hasReset;
|
|
16707
|
+
return hasReset ? "1.75rem" : "0.5rem";
|
|
16708
|
+
});
|
|
16709
|
+
var SliderContainer$2 = /*#__PURE__*/styled.div(_templateObject4$m || (_templateObject4$m = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-left: 0.5rem;\n"])));
|
|
16710
|
+
var NumberRangeSliderLabel = /*#__PURE__*/styled(Description)(_templateObject5$g || (_templateObject5$g = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: 0 0 0.25rem 0.5rem;\n"])));
|
|
16703
16711
|
|
|
16704
16712
|
var MIN_NUMBER = 0;
|
|
16705
16713
|
var MAX_NUMBER = 100;
|
|
16706
|
-
var INPUT_WIDTH = "7rem";
|
|
16707
16714
|
|
|
16708
|
-
var _excluded$M = ["value", "step", "min", "max", "onChange"];
|
|
16715
|
+
var _excluded$M = ["value", "label", "step", "min", "max", "hasReset", "onChange"];
|
|
16709
16716
|
|
|
16710
16717
|
var NumberRangeSliderComponent = function NumberRangeSliderComponent(_ref) {
|
|
16711
16718
|
var value = _ref.value,
|
|
16719
|
+
label = _ref.label,
|
|
16712
16720
|
_ref$step = _ref.step,
|
|
16713
16721
|
step = _ref$step === void 0 ? 1 : _ref$step,
|
|
16714
16722
|
_ref$min = _ref.min,
|
|
16715
16723
|
min = _ref$min === void 0 ? MIN_NUMBER : _ref$min,
|
|
16716
16724
|
_ref$max = _ref.max,
|
|
16717
16725
|
max = _ref$max === void 0 ? MAX_NUMBER : _ref$max,
|
|
16726
|
+
hasReset = _ref.hasReset,
|
|
16718
16727
|
onChange = _ref.onChange,
|
|
16719
16728
|
props = _objectWithoutPropertiesLoose(_ref, _excluded$M);
|
|
16720
16729
|
|
|
@@ -16792,19 +16801,36 @@ var NumberRangeSliderComponent = function NumberRangeSliderComponent(_ref) {
|
|
|
16792
16801
|
setStartValue(!isNil(value[0]) ? value[0] : startValue || min);
|
|
16793
16802
|
setEndValue(!isNil(value[1]) ? value[1] : endValue || max); // eslint-disable-next-line react-hooks/exhaustive-deps
|
|
16794
16803
|
}, [value]);
|
|
16795
|
-
return React__default.createElement(NumberRangeSliderContainer, null, React__default.createElement(NumberRangeContainer, null, React__default.createElement(
|
|
16796
|
-
|
|
16804
|
+
return React__default.createElement(React__default.Fragment, null, !!label && React__default.createElement(NumberRangeSliderLabel, null, label), React__default.createElement(NumberRangeSliderContainer, null, React__default.createElement(NumberRangeContainer, null, React__default.createElement(NumberRangeInputContainer, {
|
|
16805
|
+
hasReset: hasReset && startValue !== min
|
|
16806
|
+
}, React__default.createElement(NumberInput, {
|
|
16807
|
+
width: "100%",
|
|
16797
16808
|
value: startValue,
|
|
16798
16809
|
max: max,
|
|
16799
16810
|
onChange: setStartValue,
|
|
16800
16811
|
onBlur: onBlurStartValue
|
|
16801
|
-
}),
|
|
16802
|
-
|
|
16812
|
+
}), hasReset && startValue !== min && React__default.createElement(IconButton, {
|
|
16813
|
+
kind: "error",
|
|
16814
|
+
onClick: function onClick() {
|
|
16815
|
+
return setStartValue(min);
|
|
16816
|
+
}
|
|
16817
|
+
})), React__default.createElement(FlexSpan, {
|
|
16818
|
+
mx: "0.5rem",
|
|
16819
|
+
opacity: "0.36"
|
|
16820
|
+
}, "-"), React__default.createElement(NumberRangeInputContainer, {
|
|
16821
|
+
hasReset: hasReset && endValue !== max
|
|
16822
|
+
}, React__default.createElement(NumberInput, {
|
|
16823
|
+
width: "100%",
|
|
16803
16824
|
value: endValue,
|
|
16804
16825
|
max: max,
|
|
16805
16826
|
onChange: setEndValue,
|
|
16806
16827
|
onBlur: onBlurEndValue
|
|
16807
|
-
})
|
|
16828
|
+
}), hasReset && endValue !== max && React__default.createElement(IconButton, {
|
|
16829
|
+
kind: "error",
|
|
16830
|
+
onClick: function onClick() {
|
|
16831
|
+
return setEndValue(max);
|
|
16832
|
+
}
|
|
16833
|
+
}))), React__default.createElement(SliderContainer$2, null, React__default.createElement(Slider, _extends({
|
|
16808
16834
|
value: [startValue, endValue],
|
|
16809
16835
|
min: min,
|
|
16810
16836
|
max: max,
|
|
@@ -16813,7 +16839,7 @@ var NumberRangeSliderComponent = function NumberRangeSliderComponent(_ref) {
|
|
|
16813
16839
|
primary: true,
|
|
16814
16840
|
range: true,
|
|
16815
16841
|
onChange: onChangeSlider
|
|
16816
|
-
}, props))));
|
|
16842
|
+
}, props)))));
|
|
16817
16843
|
};
|
|
16818
16844
|
|
|
16819
16845
|
var NumberRangeSlider = /*#__PURE__*/memo(NumberRangeSliderComponent);
|
|
@@ -17291,7 +17317,7 @@ var ButtonsGroupComponent = function ButtonsGroupComponent(_ref) {
|
|
|
17291
17317
|
};
|
|
17292
17318
|
var ButtonsGroup = /*#__PURE__*/memo(ButtonsGroupComponent);
|
|
17293
17319
|
|
|
17294
|
-
var _templateObject$1k, _templateObject2$I, _templateObject3$w, _templateObject4$
|
|
17320
|
+
var _templateObject$1k, _templateObject2$I, _templateObject3$w, _templateObject4$n, _templateObject5$h, _templateObject6$9, _templateObject7$5, _templateObject8$4, _templateObject9$2, _templateObject10$1, _templateObject11, _templateObject12, _templateObject13, _templateObject14, _templateObject15, _templateObject16, _templateObject17;
|
|
17295
17321
|
var Header$1 = /*#__PURE__*/styled(H3)(_templateObject$1k || (_templateObject$1k = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: ", ";\n margin: 0 1.5rem 0 0;\n position: absolute;\n bottom: 1rem;\n left: 1.5rem;\n z-index: 1;\n"])), function (_ref) {
|
|
17296
17322
|
var theme = _ref.theme;
|
|
17297
17323
|
return theme.palette.textPrimary;
|
|
@@ -17301,14 +17327,14 @@ var Title = /*#__PURE__*/styled(Description)(_templateObject2$I || (_templateObj
|
|
|
17301
17327
|
return theme.palette.textSecondary;
|
|
17302
17328
|
});
|
|
17303
17329
|
var CardDescription = /*#__PURE__*/styled(Description)(_templateObject3$w || (_templateObject3$w = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: 1rem 1.5rem;\n max-height: 1.75rem;\n overflow: hidden;\n text-overflow: ellipsis;\n display: -webkit-box;\n -webkit-line-clamp: 2; /* number of lines to show */\n -webkit-box-orient: vertical;\n"])));
|
|
17304
|
-
var Blackout = /*#__PURE__*/styled.span(_templateObject4$
|
|
17330
|
+
var Blackout = /*#__PURE__*/styled.span(_templateObject4$n || (_templateObject4$n = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 100%;\n position: absolute;\n height: ", ";\n cursor: pointer;\n opacity: ", ";\n background: linear-gradient(180deg, #f7f7f7 0%, rgba(247, 247, 247, 0) 100%);\n transition: opacity ", ";\n z-index: 0;\n\n &[disabled] {\n pointer-events: none;\n }\n\n &:hover {\n opacity: 1;\n transition: opacity ", ";\n }\n"])), function (_ref3) {
|
|
17305
17331
|
var height = _ref3.height;
|
|
17306
17332
|
return height;
|
|
17307
17333
|
}, function (_ref4) {
|
|
17308
17334
|
var checked = _ref4.checked;
|
|
17309
17335
|
return checked ? 1 : 0;
|
|
17310
17336
|
}, transition.release, transition.hover);
|
|
17311
|
-
var ImageOverlay = /*#__PURE__*/styled.div(_templateObject5$
|
|
17337
|
+
var ImageOverlay = /*#__PURE__*/styled.div(_templateObject5$h || (_templateObject5$h = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n top: 0;\n left: 0;\n background: #000;\n opacity: 0.46;\n width: 100%;\n height: 100%;\n"])));
|
|
17312
17338
|
var IconContainer = /*#__PURE__*/styled.span(_templateObject6$9 || (_templateObject6$9 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n justify-content: flex-start;\n min-width: 2rem;\n height: 2rem;\n\n ", " {\n margin-right: 0.0625rem;\n }\n"])), Box);
|
|
17313
17339
|
var CheckboxContainer = /*#__PURE__*/styled(IconContainer)(_templateObject7$5 || (_templateObject7$5 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n right: 1rem;\n top: 1rem;\n min-width: 1.125rem;\n height: 1.125rem;\n opacity: ", ";\n transition: opacity ", ";\n\n ", ":hover & {\n opacity: 1;\n transition: opacity ", ";\n }\n"])), function (_ref5) {
|
|
17314
17340
|
var checked = _ref5.checked;
|
|
@@ -17555,12 +17581,12 @@ var IconMenuComponent = function IconMenuComponent(_ref) {
|
|
|
17555
17581
|
|
|
17556
17582
|
var IconMenu = /*#__PURE__*/memo(IconMenuComponent);
|
|
17557
17583
|
|
|
17558
|
-
var _templateObject$1m, _templateObject2$J, _templateObject3$x, _templateObject4$
|
|
17584
|
+
var _templateObject$1m, _templateObject2$J, _templateObject3$x, _templateObject4$o, _templateObject5$i, _templateObject6$a;
|
|
17559
17585
|
var Container$3 = /*#__PURE__*/styled.div(_templateObject$1m || (_templateObject$1m = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n height: 6.375rem;\n"])));
|
|
17560
17586
|
var RowFlex = /*#__PURE__*/styled.div(_templateObject2$J || (_templateObject2$J = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n align-items: flex-end;\n"])));
|
|
17561
17587
|
var ChipsContainer = /*#__PURE__*/styled(RowFlex)(_templateObject3$x || (_templateObject3$x = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: 1.5rem 0 0;\n"])));
|
|
17562
|
-
var Chip$1 = /*#__PURE__*/styled(Chip)(_templateObject4$
|
|
17563
|
-
var RaisedButton$2 = /*#__PURE__*/styled(RaisedButton)(_templateObject5$
|
|
17588
|
+
var Chip$1 = /*#__PURE__*/styled(Chip)(_templateObject4$o || (_templateObject4$o = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n :not(:first-of-type) {\n margin-left: 1rem;\n }\n"])));
|
|
17589
|
+
var RaisedButton$2 = /*#__PURE__*/styled(RaisedButton)(_templateObject5$i || (_templateObject5$i = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: 0 0.5rem 0 1rem;\n width: 6.75rem;\n height: 2rem;\n min-height: 2rem;\n"])));
|
|
17564
17590
|
var ChipsMenu = /*#__PURE__*/styled(IconMenu)(_templateObject6$a || (_templateObject6$a = /*#__PURE__*/_taggedTemplateLiteralLoose([""])));
|
|
17565
17591
|
|
|
17566
17592
|
var _excluded$U = ["chips", "definedChips", "checkChipInput", "maxCount", "disabled", "getLabel", "label", "onChangeChips", "addText"];
|
|
@@ -17787,12 +17813,12 @@ var DateInputComponent = function DateInputComponent(_ref) {
|
|
|
17787
17813
|
|
|
17788
17814
|
var DateInput = /*#__PURE__*/memo(DateInputComponent);
|
|
17789
17815
|
|
|
17790
|
-
var _templateObject$1n, _templateObject2$K, _templateObject3$y, _templateObject4$
|
|
17816
|
+
var _templateObject$1n, _templateObject2$K, _templateObject3$y, _templateObject4$p, _templateObject5$j, _templateObject6$b, _templateObject7$6, _templateObject8$5, _templateObject9$3, _templateObject10$2, _templateObject11$1, _templateObject12$1, _templateObject13$1, _templateObject14$1, _templateObject15$1, _templateObject16$1, _templateObject17$1, _templateObject18, _templateObject19, _templateObject20, _templateObject21, _templateObject22, _templateObject23;
|
|
17791
17817
|
var CalendarContainer = /*#__PURE__*/styled(Blank)(_templateObject$1n || (_templateObject$1n = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n"])));
|
|
17792
17818
|
var CalendarGridContainer = /*#__PURE__*/styled.div(_templateObject2$K || (_templateObject2$K = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n flex-grow: 1;\n margin: 0 1rem 1rem 1rem;\n"])));
|
|
17793
17819
|
var Grid = /*#__PURE__*/styled.div(_templateObject3$y || (_templateObject3$y = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n flex-wrap: wrap;\n flex-grow: 1;\n display: flex;\n margin: 0;\n"])));
|
|
17794
|
-
var ControlContainer = /*#__PURE__*/styled.div(_templateObject4$
|
|
17795
|
-
var ControlTitle = /*#__PURE__*/styled.div(_templateObject5$
|
|
17820
|
+
var ControlContainer = /*#__PURE__*/styled.div(_templateObject4$p || (_templateObject4$p = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n flex-shrink: 0;\n height: 4.6875rem;\n display: flex;\n align-items: center;\n justify-content: center;\n"])));
|
|
17821
|
+
var ControlTitle = /*#__PURE__*/styled.div(_templateObject5$j || (_templateObject5$j = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n justify-content: center;\n width: 8rem;\n"])));
|
|
17796
17822
|
var Month = /*#__PURE__*/styled.span(_templateObject6$b || (_templateObject6$b = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n padding-right: 0.4rem;\n :first-letter {\n text-transform: uppercase;\n }\n"])));
|
|
17797
17823
|
var selectedDay = /*#__PURE__*/css(_templateObject7$6 || (_templateObject7$6 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n cursor: default;\n color: ", ";\n &:before {\n height: 2rem;\n width: 2rem;\n background-color: ", ";\n }\n"])), function (_ref) {
|
|
17798
17824
|
var palette = _ref.theme.palette;
|
|
@@ -19652,7 +19678,7 @@ var UnicodeSmall = /*#__PURE__*/styled.div(_templateObject$1E || (_templateObjec
|
|
|
19652
19678
|
var _excluded$Z = ["theme"],
|
|
19653
19679
|
_excluded2$a = ["theme"];
|
|
19654
19680
|
|
|
19655
|
-
var _templateObject$1F, _templateObject2$Q, _templateObject3$A, _templateObject4$
|
|
19681
|
+
var _templateObject$1F, _templateObject2$Q, _templateObject3$A, _templateObject4$q, _templateObject5$k, _templateObject6$c, _templateObject7$7, _templateObject8$6, _templateObject9$4, _templateObject10$3;
|
|
19656
19682
|
var StyledButtonContainer = /*#__PURE__*/styled.span(_templateObject$1F || (_templateObject$1F = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n justify-content: flex-end;\n width: calc(100% - 1rem);\n padding: 0 1rem 0.5rem 0;\n"])));
|
|
19657
19683
|
var StyledIconContainer = /*#__PURE__*/styled.div(_templateObject2$Q || (_templateObject2$Q = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: inline-flex;\n align-items: center;\n justify-content: center;\n color: ", ";\n margin-top: 1rem;\n height: 2rem;\n width: 3rem;\n"])), function (_ref) {
|
|
19658
19684
|
var notification = _ref.theme.notification,
|
|
@@ -19664,8 +19690,8 @@ var StyledCloseButtonContainer = /*#__PURE__*/styled(StyledIconContainer)(_templ
|
|
|
19664
19690
|
var notification = _ref2.theme.notification;
|
|
19665
19691
|
return notification.closeButtonColor;
|
|
19666
19692
|
});
|
|
19667
|
-
var MessageIcon = /*#__PURE__*/styled(Icon)(_templateObject4$
|
|
19668
|
-
var Area = /*#__PURE__*/styled.div(_templateObject5$
|
|
19693
|
+
var MessageIcon = /*#__PURE__*/styled(Icon)(_templateObject4$q || (_templateObject4$q = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: inherit;\n"])));
|
|
19694
|
+
var Area = /*#__PURE__*/styled.div(_templateObject5$k || (_templateObject5$k = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: inline-flex;\n flex-direction: column;\n width: calc(100% - 6.5rem);\n padding: 1.425rem 0 ", ";\n"])), function (_ref3) {
|
|
19669
19695
|
var button = _ref3.button;
|
|
19670
19696
|
return button ? "0.5rem" : "1.425rem";
|
|
19671
19697
|
});
|
|
@@ -19910,7 +19936,7 @@ Notifications.defaultProps = {
|
|
|
19910
19936
|
items: []
|
|
19911
19937
|
};
|
|
19912
19938
|
|
|
19913
|
-
var _templateObject$1G, _templateObject2$R, _templateObject3$B, _templateObject4$
|
|
19939
|
+
var _templateObject$1G, _templateObject2$R, _templateObject3$B, _templateObject4$r, _templateObject5$l, _templateObject6$d, _templateObject7$8, _templateObject8$7, _templateObject9$5;
|
|
19914
19940
|
var PreviewImageContainer = /*#__PURE__*/styled.div(_templateObject$1G || (_templateObject$1G = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 100%;\n height: 100%;\n padding: ", ";\n display: flex;\n box-sizing: border-box;\n justify-content: center;\n"])), function (_ref) {
|
|
19915
19941
|
var fullscreen = _ref.fullscreen;
|
|
19916
19942
|
return !fullscreen && "5.5rem 5.25rem 7.375rem";
|
|
@@ -19920,8 +19946,8 @@ var PreviewImage = /*#__PURE__*/styled(Image)(_templateObject2$R || (_templateOb
|
|
|
19920
19946
|
return fullscreen ? "contain" : "scale-down";
|
|
19921
19947
|
});
|
|
19922
19948
|
var ControlsContainer = /*#__PURE__*/styled.div(_templateObject3$B || (_templateObject3$B = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n height: 2.5rem;\n position: absolute;\n top: 1rem;\n right: 0;\n display: flex;\n"])));
|
|
19923
|
-
var ArrowsContainer = /*#__PURE__*/styled.div(_templateObject4$
|
|
19924
|
-
var PreviewOverlay = /*#__PURE__*/styled(DialogOverlay)(_templateObject5$
|
|
19949
|
+
var ArrowsContainer = /*#__PURE__*/styled.div(_templateObject4$r || (_templateObject4$r = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n height: 2.5rem;\n width: 100%;\n display: flex;\n position: absolute;\n justify-content: space-between;\n"])));
|
|
19950
|
+
var PreviewOverlay = /*#__PURE__*/styled(DialogOverlay)(_templateObject5$l || (_templateObject5$l = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n overflow: hidden;\n\n @media (max-width: 768px) {\n align-items: center;\n }\n"])));
|
|
19925
19951
|
var ControlContainer$1 = /*#__PURE__*/styled.div(_templateObject6$d || (_templateObject6$d = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n height: 2.5rem;\n width: ", ";\n display: flex;\n padding-left: ", ";\n padding-right: ", ";\n border-radius: 0.125rem;\n flex-direction: row;\n align-items: center;\n background: ", ";\n margin-right: 1rem;\n margin-left: ", ";\n"])), function (_ref3) {
|
|
19926
19952
|
var width = _ref3.width;
|
|
19927
19953
|
return width ? width : "auto";
|
|
@@ -20407,7 +20433,7 @@ RadioGroup.childContextTypes = {
|
|
|
20407
20433
|
radioGroup: radioGroupContextShape
|
|
20408
20434
|
};
|
|
20409
20435
|
|
|
20410
|
-
var _templateObject$1L, _templateObject2$S, _templateObject3$C, _templateObject4$
|
|
20436
|
+
var _templateObject$1L, _templateObject2$S, _templateObject3$C, _templateObject4$s, _templateObject5$m, _templateObject6$e;
|
|
20411
20437
|
var StepTitle = /*#__PURE__*/styled(Flex)(_templateObject$1L || (_templateObject$1L = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n align-items: center;\n"])));
|
|
20412
20438
|
var StepHeaderText = /*#__PURE__*/styled.div(_templateObject2$S || (_templateObject2$S = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-left: 1rem;\n color: #222f3a;\n opacity: ", ";\n"])), function (_ref) {
|
|
20413
20439
|
var isFinished = _ref.isFinished,
|
|
@@ -20415,7 +20441,7 @@ var StepHeaderText = /*#__PURE__*/styled.div(_templateObject2$S || (_templateObj
|
|
|
20415
20441
|
return !isLast || isLast && isFinished ? 0.87 : 0.54;
|
|
20416
20442
|
});
|
|
20417
20443
|
var StepHeaderComponent = /*#__PURE__*/styled.div(_templateObject3$C || (_templateObject3$C = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-left: 1rem;\n padding-bottom: 0.5rem;\n position: relative;\n"])));
|
|
20418
|
-
var StepLevelContainer = /*#__PURE__*/styled.div(_templateObject4$
|
|
20444
|
+
var StepLevelContainer = /*#__PURE__*/styled.div(_templateObject4$s || (_templateObject4$s = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n justify-content: center;\n align-items: center;\n width: 2.5rem;\n height: 2.5rem;\n border-radius: 0.25rem;\n color: ", ";\n background-color: ", ";\n"])), function (_ref2) {
|
|
20419
20445
|
var disabled = _ref2.disabled;
|
|
20420
20446
|
return disabled ? "#3f576b" : "#00aaff";
|
|
20421
20447
|
}, function (_ref3) {
|
|
@@ -20424,7 +20450,7 @@ var StepLevelContainer = /*#__PURE__*/styled.div(_templateObject4$r || (_templat
|
|
|
20424
20450
|
disabled = _ref3.disabled;
|
|
20425
20451
|
return !disabled && (!isLast || isLast && isFinished) ? "rgba(0, 170, 255, 0.06)" : "rgba(63, 87, 107, 0.06)";
|
|
20426
20452
|
});
|
|
20427
|
-
var StepComponent = /*#__PURE__*/styled.div(_templateObject5$
|
|
20453
|
+
var StepComponent = /*#__PURE__*/styled.div(_templateObject5$m || (_templateObject5$m = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: 0.5rem 0 0.5rem 1.25rem;\n padding: 0.5rem 0 1rem 2.1875rem;\n\n :not(:last-of-type) {\n border-left: 2px solid rgba(63, 87, 107, 0.1);\n }\n"])));
|
|
20428
20454
|
var Divider$1 = /*#__PURE__*/styled.div(_templateObject6$e || (_templateObject6$e = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: ", ";\n border-left: 2px solid rgba(63, 87, 107, 0.1);\n height: ", ";\n"])), function (_ref4) {
|
|
20429
20455
|
var height = _ref4.height;
|
|
20430
20456
|
return -1 * height + "px 0 0.5rem 1.25rem";
|
|
@@ -20526,15 +20552,15 @@ var Stepper = /*#__PURE__*/memo(function (_ref) {
|
|
|
20526
20552
|
}));
|
|
20527
20553
|
});
|
|
20528
20554
|
|
|
20529
|
-
var _templateObject$1M, _templateObject2$T, _templateObject3$D, _templateObject4$
|
|
20555
|
+
var _templateObject$1M, _templateObject2$T, _templateObject3$D, _templateObject4$t, _templateObject5$n, _templateObject6$f;
|
|
20530
20556
|
var Blank$1 = /*#__PURE__*/styled(Blank)(_templateObject$1M || (_templateObject$1M = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n padding: 1.5rem 2rem;\n min-width: 20rem;\n max-width: ", ";\n"])), function (_ref) {
|
|
20531
20557
|
var symbolsInRow = _ref.symbolsInRow;
|
|
20532
20558
|
return symbolsInRow * 2.5 + "rem";
|
|
20533
20559
|
});
|
|
20534
20560
|
var Header$3 = /*#__PURE__*/styled(H3)(_templateObject2$T || (_templateObject2$T = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-top: 0;\n"])));
|
|
20535
20561
|
var SymbolsContainer = /*#__PURE__*/styled.span(_templateObject3$D || (_templateObject3$D = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n\n :not(:last-of-type) {\n margin-bottom: 1.25rem;\n }\n"])));
|
|
20536
|
-
var Description$2 = /*#__PURE__*/styled(Description)(_templateObject4$
|
|
20537
|
-
var Symbols = /*#__PURE__*/styled.span(_templateObject5$
|
|
20562
|
+
var Description$2 = /*#__PURE__*/styled(Description)(_templateObject4$t || (_templateObject4$t = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: 0 0 0.25rem;\n"])));
|
|
20563
|
+
var Symbols = /*#__PURE__*/styled.span(_templateObject5$n || (_templateObject5$n = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-wrap: wrap;\n"])));
|
|
20538
20564
|
var IconContainer$3 = /*#__PURE__*/styled.span(_templateObject6$f || (_templateObject6$f = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n justify-content: center;\n width: 2.5rem;\n height: 2.5rem;\n cursor: pointer;\n flex-shrink: 0;\n overflow: hidden;\n\n :hover {\n background: ", ";\n }\n\n :active {\n background: ", ";\n }\n"])), function (_ref2) {
|
|
20539
20565
|
var palette = _ref2.theme.palette;
|
|
20540
20566
|
return palette.elementDark;
|
|
@@ -20616,7 +20642,7 @@ var DEFAULT_COLUMN_WIDTH = 200;
|
|
|
20616
20642
|
var DEFAULT_SPECIAL_WIDTH = 42;
|
|
20617
20643
|
var DEFAULT_SELECT_WIDTH = 32;
|
|
20618
20644
|
|
|
20619
|
-
var _templateObject$1N, _templateObject2$U, _templateObject3$E, _templateObject4$
|
|
20645
|
+
var _templateObject$1N, _templateObject2$U, _templateObject3$E, _templateObject4$u, _templateObject5$o, _templateObject6$g, _templateObject7$9, _templateObject8$8, _templateObject9$6, _templateObject10$4, _templateObject11$2, _templateObject12$2, _templateObject13$2;
|
|
20620
20646
|
var LoadingContainer = /*#__PURE__*/styled.div(_templateObject$1N || (_templateObject$1N = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n top: ", ";\n left: 0;\n z-index: 6;\n background-color: ", ";\n"])), function (_ref) {
|
|
20621
20647
|
var filtersOn = _ref.filtersOn;
|
|
20622
20648
|
return filtersOn ? "80px" : "37px";
|
|
@@ -20677,7 +20703,7 @@ var TableComponent = /*#__PURE__*/styled.div(_templateObject2$U || (_templateObj
|
|
|
20677
20703
|
return theme.palette.background;
|
|
20678
20704
|
});
|
|
20679
20705
|
var HeaderCellPrefix = /*#__PURE__*/styled.div(_templateObject3$E || (_templateObject3$E = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 16px;\n height: 16px;\n margin-right: 8px;\n"])));
|
|
20680
|
-
var HeaderCellComponent = /*#__PURE__*/styled.div(_templateObject4$
|
|
20706
|
+
var HeaderCellComponent = /*#__PURE__*/styled.div(_templateObject4$u || (_templateObject4$u = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: inline-flex;\n flex-direction: row;\n cursor: ", ";\n align-items: center;\n max-width: 100%;\n\n &[data-sorted=\"true\"] {\n ", " {\n display: none;\n }\n }\n\n & > ", " {\n opacity: 0;\n margin-right: 8px;\n display: ", ";\n }\n\n &[data-sorted=\"true\"] {\n & > ", " {\n opacity: 1;\n }\n\n color: ", ";\n }\n"])), function (_ref17) {
|
|
20681
20707
|
var noSort = _ref17.noSort;
|
|
20682
20708
|
return noSort ? "default" : "pointer";
|
|
20683
20709
|
}, HeaderCellPrefix, Icon, function (_ref18) {
|
|
@@ -20687,7 +20713,7 @@ var HeaderCellComponent = /*#__PURE__*/styled.div(_templateObject4$t || (_templa
|
|
|
20687
20713
|
var palette = _ref19.theme.palette;
|
|
20688
20714
|
return palette.primary;
|
|
20689
20715
|
});
|
|
20690
|
-
var FilterContainer = /*#__PURE__*/styled.div(_templateObject5$
|
|
20716
|
+
var FilterContainer = /*#__PURE__*/styled.div(_templateObject5$o || (_templateObject5$o = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 100%;\n margin-top: 1rem;\n"])));
|
|
20691
20717
|
var TableFooter = /*#__PURE__*/styled.div(_templateObject6$g || (_templateObject6$g = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 0 1rem 0 1.5rem;\n min-height: 2rem;\n max-height: 2rem;\n box-sizing: border-box;\n border-top: ", ";\n"])), function (_ref20) {
|
|
20692
20718
|
var theme = _ref20.theme;
|
|
20693
20719
|
return "2px solid " + theme.palette.elementDark;
|
|
@@ -21451,7 +21477,7 @@ var calculateAlign = function calculateAlign(align, scrollable) {
|
|
|
21451
21477
|
return "space-between";
|
|
21452
21478
|
};
|
|
21453
21479
|
|
|
21454
|
-
var _templateObject$1P, _templateObject2$V, _templateObject3$F, _templateObject4$
|
|
21480
|
+
var _templateObject$1P, _templateObject2$V, _templateObject3$F, _templateObject4$v, _templateObject5$p, _templateObject6$h, _templateObject7$a;
|
|
21455
21481
|
var TabBlock = /*#__PURE__*/styled.div(_templateObject$1P || (_templateObject$1P = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n justify-content: center;\n align-items: center;\n position: relative;\n font: ", ";\n flex-grow: ", ";\n background: ", ";\n white-space: nowrap;\n flex-shrink: 0;\n height: 100%;\n outline: none;\n padding: 0 1.5rem;\n text-transform: uppercase;\n border-radius: ", ";\n color: ", ";\n\n &:hover {\n cursor: pointer;\n transition: background-color ", ";\n color: ", ";\n }\n\n &:active {\n transition: background-color ", ", box-shadow ", ";\n }\n &[disabled] {\n pointer-events: none;\n color: ", ";\n }\n >* {\n margin-right: 0.5rem;\n }\n }\n"])), function (_ref) {
|
|
21456
21482
|
var fonts = _ref.theme.fonts;
|
|
21457
21483
|
return fonts.button;
|
|
@@ -21482,11 +21508,11 @@ var FadingIcon$1 = /*#__PURE__*/styled(Icon)(_templateObject3$F || (_templateObj
|
|
|
21482
21508
|
var kind = _ref8.kind;
|
|
21483
21509
|
return kind === "arrow_back" ? "0" : "calc(100% - 1rem)";
|
|
21484
21510
|
});
|
|
21485
|
-
var MainContainer = /*#__PURE__*/styled.div(_templateObject4$
|
|
21511
|
+
var MainContainer = /*#__PURE__*/styled.div(_templateObject4$v || (_templateObject4$v = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n position: relative;\n height: 3.5rem;\n min-height: 3.5rem;\n width: 100%;\n background: ", ";\n box-sizing: border-box;\n overflow: hidden;\n"])), function (_ref9) {
|
|
21486
21512
|
var tab = _ref9.theme.tab;
|
|
21487
21513
|
return tab.containerBackground;
|
|
21488
21514
|
});
|
|
21489
|
-
var TabContainer = /*#__PURE__*/styled.div(_templateObject5$
|
|
21515
|
+
var TabContainer = /*#__PURE__*/styled.div(_templateObject5$p || (_templateObject5$p = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n position: relative;\n width: 100%;\n justify-content: ", ";\n height: 100%;\n background: ", ";\n box-sizing: border-box;\n overflow: hidden;\n"])), function (_ref10) {
|
|
21490
21516
|
var align = _ref10.align,
|
|
21491
21517
|
scrollable = _ref10.scrollable;
|
|
21492
21518
|
return calculateAlign(align, scrollable);
|
|
@@ -21732,15 +21758,15 @@ var TabsComponent = function TabsComponent(_ref) {
|
|
|
21732
21758
|
|
|
21733
21759
|
var Tabs = /*#__PURE__*/memo(TabsComponent);
|
|
21734
21760
|
|
|
21735
|
-
var _templateObject$1Q, _templateObject2$W, _templateObject3$G, _templateObject4$
|
|
21761
|
+
var _templateObject$1Q, _templateObject2$W, _templateObject3$G, _templateObject4$w, _templateObject5$q, _templateObject6$i, _templateObject7$b, _templateObject8$9, _templateObject9$7, _templateObject10$5, _templateObject11$3, _templateObject12$3, _templateObject13$3, _templateObject14$2, _templateObject15$2, _templateObject16$2, _templateObject17$2, _templateObject18$1;
|
|
21736
21762
|
var Title$2 = /*#__PURE__*/styled.div(_templateObject$1Q || (_templateObject$1Q = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n top: 2rem;\n border-top: 1px solid rgba(63, 87, 107, 0.16);\n color: rgba(63, 87, 107, 0.54);\n text-align: center;\n padding-top: 1rem;\n"])));
|
|
21737
21763
|
var UploaderItemArea = /*#__PURE__*/styled.div(_templateObject2$W || (_templateObject2$W = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 100%;\n overflow: auto;\n padding-top: 2rem;\n padding-bottom: 2rem;\n"])));
|
|
21738
21764
|
var UploaderItemsBorderContainer = /*#__PURE__*/css(_templateObject3$G || (_templateObject3$G = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-top: 1.5rem;\n padding-top: 1.5rem;\n border-top: 1px solid rgba(63, 87, 107, 0.16);\n"])));
|
|
21739
|
-
var UploaderItemsContainer = /*#__PURE__*/styled.div(_templateObject4$
|
|
21765
|
+
var UploaderItemsContainer = /*#__PURE__*/styled.div(_templateObject4$w || (_templateObject4$w = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n ", ";\n"])), function (_ref) {
|
|
21740
21766
|
var hasBorder = _ref.hasBorder;
|
|
21741
21767
|
return hasBorder && UploaderItemsBorderContainer;
|
|
21742
21768
|
});
|
|
21743
|
-
var ItemContainer = /*#__PURE__*/styled(Flex)(_templateObject5$
|
|
21769
|
+
var ItemContainer = /*#__PURE__*/styled(Flex)(_templateObject5$q || (_templateObject5$q = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 100%;\n margin-top: -0.5rem;\n\n :not(:last-child) {\n margin-bottom: 1.25rem;\n }\n"])));
|
|
21744
21770
|
var Container$5 = /*#__PURE__*/styled.div.attrs(function (props) {
|
|
21745
21771
|
return _extends({
|
|
21746
21772
|
minHeight: "8.68rem"
|
|
@@ -22113,7 +22139,7 @@ var RangeDatePickerComponent = function RangeDatePickerComponent(_ref) {
|
|
|
22113
22139
|
|
|
22114
22140
|
var RangeDatePicker = /*#__PURE__*/memo(RangeDatePickerComponent);
|
|
22115
22141
|
|
|
22116
|
-
var _templateObject$1R, _templateObject2$X, _templateObject3$H, _templateObject4$
|
|
22142
|
+
var _templateObject$1R, _templateObject2$X, _templateObject3$H, _templateObject4$x;
|
|
22117
22143
|
var ChipAutoCompleteTags = /*#__PURE__*/styled.div(_templateObject$1R || (_templateObject$1R = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-wrap: wrap;\n"])));
|
|
22118
22144
|
var ChipAutoCompleteControlFlex = /*#__PURE__*/styled.div(_templateObject2$X || (_templateObject2$X = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 100%;\n display: flex;\n"])));
|
|
22119
22145
|
var ChipAutoCompleSlider = /*#__PURE__*/styled.div(_templateObject3$H || (_templateObject3$H = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n &:not(:last-of-type) {\n margin-right: 0.5rem;\n }\n"])));
|
|
@@ -22121,9 +22147,9 @@ var ChipAutoCompleDivider = /*#__PURE__*/styled(function (props) {
|
|
|
22121
22147
|
return React__default.createElement(Divider, _extends({
|
|
22122
22148
|
vertical: true
|
|
22123
22149
|
}, props));
|
|
22124
|
-
})(_templateObject4$
|
|
22150
|
+
})(_templateObject4$x || (_templateObject4$x = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n height: 1rem;\n margin: 0 1rem;\n align-self: center;\n"])));
|
|
22125
22151
|
|
|
22126
|
-
var _templateObject$1S, _templateObject2$Y, _templateObject3$I, _templateObject4$
|
|
22152
|
+
var _templateObject$1S, _templateObject2$Y, _templateObject3$I, _templateObject4$y;
|
|
22127
22153
|
var ChipAutoCompleteItemImage = /*#__PURE__*/styled(Image)(_templateObject$1S || (_templateObject$1S = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 1.5rem;\n height: 1.5rem;\n border-radius: 50%;\n margin-right: 0.5rem;\n"])));
|
|
22128
22154
|
var getChipColor = function getChipColor(_ref, defaultColor) {
|
|
22129
22155
|
var primary = _ref.primary,
|
|
@@ -22196,7 +22222,7 @@ var ChipAutoCompleteItem = /*#__PURE__*/styled(Chip)(_templateObject3$I || (_tem
|
|
|
22196
22222
|
primary = _ref5.primary;
|
|
22197
22223
|
return primary ? "#fff" : theme.palette.textPrimary;
|
|
22198
22224
|
});
|
|
22199
|
-
var ChipAutoCompleteImagePlaceholder = /*#__PURE__*/styled.div(_templateObject4$
|
|
22225
|
+
var ChipAutoCompleteImagePlaceholder = /*#__PURE__*/styled.div(_templateObject4$y || (_templateObject4$y = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n line-height: normal;\n display: inline-flex;\n align-items: center;\n justify-content: center;\n width: 1.5rem;\n height: 1.5rem;\n border-radius: 50%;\n margin-right: 0.5rem;\n background-color: ", ";\n color: ", ";\n text-transform: uppercase;\n"])), function (_ref6) {
|
|
22200
22226
|
var primary = _ref6.primary,
|
|
22201
22227
|
isPrimary = _ref6.isPrimary,
|
|
22202
22228
|
isDefault = _ref6.isDefault;
|
|
@@ -22252,7 +22278,7 @@ var Chip$2 = function Chip(_ref) {
|
|
|
22252
22278
|
}, name == null ? void 0 : name[0]));
|
|
22253
22279
|
};
|
|
22254
22280
|
|
|
22255
|
-
var _templateObject$1T, _templateObject2$Z, _templateObject3$J, _templateObject4$
|
|
22281
|
+
var _templateObject$1T, _templateObject2$Z, _templateObject3$J, _templateObject4$z, _templateObject5$r, _templateObject6$j, _templateObject7$c;
|
|
22256
22282
|
var SimpleSliderContainer = /*#__PURE__*/styled.div(_templateObject$1T || (_templateObject$1T = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 100%;\n position: relative;\n padding: 0 1.5rem;\n margin-top: 1rem;\n height: 2rem;\n box-sizing: border-box;\n"])));
|
|
22257
22283
|
var center = /*#__PURE__*/css(_templateObject2$Z || (_templateObject2$Z = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n top: 50%;\n transform: translateY(-50%);\n"])));
|
|
22258
22284
|
var Prev = /*#__PURE__*/styled(function (props) {
|
|
@@ -22264,8 +22290,8 @@ var Next = /*#__PURE__*/styled(function (props) {
|
|
|
22264
22290
|
return React__default.createElement(IconButton, _extends({
|
|
22265
22291
|
kind: "next"
|
|
22266
22292
|
}, props));
|
|
22267
|
-
})(_templateObject4$
|
|
22268
|
-
var Container$6 = /*#__PURE__*/styled.div(_templateObject5$
|
|
22293
|
+
})(_templateObject4$z || (_templateObject4$z = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n ", ";\n right: -0.5rem;\n"])), center);
|
|
22294
|
+
var Container$6 = /*#__PURE__*/styled.div(_templateObject5$r || (_templateObject5$r = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n width: 100%;\n"])));
|
|
22269
22295
|
var OverflowHidden = /*#__PURE__*/styled.div(_templateObject6$j || (_templateObject6$j = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n overflow: hidden;\n"])));
|
|
22270
22296
|
var Slider$2 = /*#__PURE__*/styled.div(_templateObject7$c || (_templateObject7$c = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n transition: transform 0.3s ease-in-out;\n"])));
|
|
22271
22297
|
|
|
@@ -22695,14 +22721,14 @@ var ChipAutoCompleteBase = function ChipAutoCompleteBase(_ref) {
|
|
|
22695
22721
|
|
|
22696
22722
|
var ChipAutoComplete = /*#__PURE__*/memo(ChipAutoCompleteBase);
|
|
22697
22723
|
|
|
22698
|
-
var _templateObject$1U, _templateObject2$_, _templateObject3$K, _templateObject4$
|
|
22724
|
+
var _templateObject$1U, _templateObject2$_, _templateObject3$K, _templateObject4$A, _templateObject5$s, _templateObject6$k, _templateObject7$d, _templateObject8$a, _templateObject9$8;
|
|
22699
22725
|
var TreeContainer = /*#__PURE__*/styled.div(_templateObject$1U || (_templateObject$1U = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n > ul {\n margin-left: 0;\n }\n"])));
|
|
22700
22726
|
var TreeItems = /*#__PURE__*/styled.ul(_templateObject2$_ || (_templateObject2$_ = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n max-height: ", ";\n margin: 0 0 0 1.5rem;\n padding: 0;\n list-style: none;\n overflow: hidden;\n"])), function (_ref) {
|
|
22701
22727
|
var isExpanded = _ref.isExpanded;
|
|
22702
22728
|
return isExpanded ? "auto" : 0;
|
|
22703
22729
|
});
|
|
22704
22730
|
var TreeItem = /*#__PURE__*/styled.li(_templateObject3$K || (_templateObject3$K = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-top: 1rem;\n"])));
|
|
22705
|
-
var TreeRow = /*#__PURE__*/styled(Flex)(_templateObject4$
|
|
22731
|
+
var TreeRow = /*#__PURE__*/styled(Flex)(_templateObject4$A || (_templateObject4$A = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n cursor: ", ";\n align-items: center;\n line-height: 1.5rem;\n ", ";\n\n ", " {\n margin-right: 0.75rem;\n }\n"])), function (_ref2) {
|
|
22706
22732
|
var hasChildren = _ref2.hasChildren;
|
|
22707
22733
|
return hasChildren ? "pointer" : "default";
|
|
22708
22734
|
}, function (_ref3) {
|
|
@@ -22714,7 +22740,7 @@ var ExpandButton = /*#__PURE__*/styled(Icon).attrs(function (props) {
|
|
|
22714
22740
|
return _extends({
|
|
22715
22741
|
kind: "expand"
|
|
22716
22742
|
}, props);
|
|
22717
|
-
})(_templateObject5$
|
|
22743
|
+
})(_templateObject5$s || (_templateObject5$s = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n visibility: ", ";\n transform: ", ";\n transition: transform ", ";\n"])), function (_ref4) {
|
|
22718
22744
|
var hasChildren = _ref4.hasChildren;
|
|
22719
22745
|
return hasChildren ? "visible" : "hidden";
|
|
22720
22746
|
}, function (_ref5) {
|
|
@@ -22997,7 +23023,7 @@ var TreeComponent = function TreeComponent(_ref) {
|
|
|
22997
23023
|
|
|
22998
23024
|
var Tree = /*#__PURE__*/memo(TreeComponent);
|
|
22999
23025
|
|
|
23000
|
-
var _templateObject$1V, _templateObject2$$, _templateObject3$L, _templateObject4$
|
|
23026
|
+
var _templateObject$1V, _templateObject2$$, _templateObject3$L, _templateObject4$B, _templateObject5$t;
|
|
23001
23027
|
var JSONEditorContainer = /*#__PURE__*/styled.div(_templateObject$1V || (_templateObject$1V = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n width: 100%;\n height: ", ";\n flex-shrink: 0;\n\n input {\n vertical-align: bottom;\n }\n\n button {\n cursor: pointer;\n background-color: transparent;\n :after {\n color: ", ";\n font: 300 1rem evergis-font;\n }\n &[disabled] {\n cursor: default;\n }\n }\n\n .jsoneditor-menu {\n button {\n :after {\n color: ", ";\n }\n }\n }\n\n .jsoneditor-search {\n button {\n :after {\n color: ", ";\n }\n }\n }\n\n .jsoneditor-refresh:after {\n content: \"\\e90b\";\n }\n\n .jsoneditor-next:after {\n content: \"\\e934\";\n }\n\n .jsoneditor-previous:after {\n content: \"\\e935\";\n }\n\n .jsoneditor-undo,\n .jsoneditor-redo,\n .jsoneditor-dragarea {\n background-image: none !important;\n }\n\n .jsoneditor-undo:after {\n content: \"\\e964\";\n }\n\n .jsoneditor-redo:after {\n content: \"\\e965\";\n }\n\n .jsoneditor-dragarea:after {\n content: \"\\e981\";\n }\n\n .jsoneditor-field {\n color: ", ";\n }\n\n .jsoneditor-null {\n color: ", ";\n }\n\n .jsoneditor-string {\n color: #6a8759;\n }\n\n .jsoneditor-number {\n color: ", ";\n }\n\n .jsoneditor-boolean {\n color: ", ";\n }\n\n .jsoneditor-color {\n border: 1px solid ", ";\n border-radius: ", ";\n }\n"], ["\n position: relative;\n width: 100%;\n height: ", ";\n flex-shrink: 0;\n\n input {\n vertical-align: bottom;\n }\n\n button {\n cursor: pointer;\n background-color: transparent;\n :after {\n color: ", ";\n font: 300 1rem evergis-font;\n }\n &[disabled] {\n cursor: default;\n }\n }\n\n .jsoneditor-menu {\n button {\n :after {\n color: ", ";\n }\n }\n }\n\n .jsoneditor-search {\n button {\n :after {\n color: ", ";\n }\n }\n }\n\n .jsoneditor-refresh:after {\n content: \"\\\\e90b\";\n }\n\n .jsoneditor-next:after {\n content: \"\\\\e934\";\n }\n\n .jsoneditor-previous:after {\n content: \"\\\\e935\";\n }\n\n .jsoneditor-undo,\n .jsoneditor-redo,\n .jsoneditor-dragarea {\n background-image: none !important;\n }\n\n .jsoneditor-undo:after {\n content: \"\\\\e964\";\n }\n\n .jsoneditor-redo:after {\n content: \"\\\\e965\";\n }\n\n .jsoneditor-dragarea:after {\n content: \"\\\\e981\";\n }\n\n .jsoneditor-field {\n color: ", ";\n }\n\n .jsoneditor-null {\n color: ", ";\n }\n\n .jsoneditor-string {\n color: #6a8759;\n }\n\n .jsoneditor-number {\n color: ", ";\n }\n\n .jsoneditor-boolean {\n color: ", ";\n }\n\n .jsoneditor-color {\n border: 1px solid ", ";\n border-radius: ", ";\n }\n"])), function (_ref) {
|
|
23002
23028
|
var hasNoActions = _ref.hasNoActions;
|
|
23003
23029
|
return hasNoActions ? "100%" : "calc(100% - 4.5rem)";
|
|
@@ -23028,8 +23054,8 @@ var JSONEditorContainer = /*#__PURE__*/styled.div(_templateObject$1V || (_templa
|
|
|
23028
23054
|
}, borderRadius);
|
|
23029
23055
|
var JSONEditorLinearProgress = /*#__PURE__*/styled(LinearProgress)(_templateObject2$$ || (_templateObject2$$ = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 100%;\n position: absolute;\n top: -0.25rem;\n left: 0;\n border-radius: 0.125rem 0.125rem 0 0;\n"])));
|
|
23030
23056
|
var JSONEditorWrapper = /*#__PURE__*/styled.div(_templateObject3$L || (_templateObject3$L = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n"])));
|
|
23031
|
-
var LeftSide = /*#__PURE__*/styled.div(_templateObject4$
|
|
23032
|
-
var Actions = /*#__PURE__*/styled.div(_templateObject5$
|
|
23057
|
+
var LeftSide = /*#__PURE__*/styled.div(_templateObject4$B || (_templateObject4$B = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n margin-right: auto;\n"])));
|
|
23058
|
+
var Actions = /*#__PURE__*/styled.div(_templateObject5$t || (_templateObject5$t = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 100%;\n display: flex;\n align-items: center;\n justify-content: flex-end;\n margin-top: 1rem;\n"])));
|
|
23033
23059
|
|
|
23034
23060
|
var icons$1 = "data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%3Csvg%20%20%20xmlns%3Adc%3D%22http%3A%2F%2Fpurl.org%2Fdc%2Felements%2F1.1%2F%22%20%20%20xmlns%3Acc%3D%22http%3A%2F%2Fcreativecommons.org%2Fns%23%22%20%20%20xmlns%3Ardf%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2F02%2F22-rdf-syntax-ns%23%22%20%20%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%20%20xmlns%3Asodipodi%3D%22http%3A%2F%2Fsodipodi.sourceforge.net%2FDTD%2Fsodipodi-0.dtd%22%20%20%20xmlns%3Ainkscape%3D%22http%3A%2F%2Fwww.inkscape.org%2Fnamespaces%2Finkscape%22%20%20%20width%3D%22240%22%20%20%20height%3D%22144%22%20%20%20id%3D%22svg4136%22%20%20%20version%3D%221.1%22%20%20%20inkscape%3Aversion%3D%220.91%20r13725%22%20%20%20sodipodi%3Adocname%3D%22jsoneditor-icons.svg%22%3E%20%20%3Ctitle%20%20%20%20%20id%3D%22title6512%22%3EJSON%20Editor%20Icons%3C%2Ftitle%3E%20%20%3Cmetadata%20%20%20%20%20id%3D%22metadata4148%22%3E%20%20%20%20%3Crdf%3ARDF%3E%20%20%20%20%20%20%3Ccc%3AWork%20%20%20%20%20%20%20%20%20rdf%3Aabout%3D%22%22%3E%20%20%20%20%20%20%20%20%3Cdc%3Aformat%3Eimage%2Fsvg%2Bxml%3C%2Fdc%3Aformat%3E%20%20%20%20%20%20%20%20%3Cdc%3Atype%20%20%20%20%20%20%20%20%20%20%20rdf%3Aresource%3D%22http%3A%2F%2Fpurl.org%2Fdc%2Fdcmitype%2FStillImage%22%20%2F%3E%20%20%20%20%20%20%20%20%3Cdc%3Atitle%3EJSON%20Editor%20Icons%3C%2Fdc%3Atitle%3E%20%20%20%20%20%20%3C%2Fcc%3AWork%3E%20%20%20%20%3C%2Frdf%3ARDF%3E%20%20%3C%2Fmetadata%3E%20%20%3Cdefs%20%20%20%20%20id%3D%22defs4146%22%20%2F%3E%20%20%3Csodipodi%3Anamedview%20%20%20%20%20pagecolor%3D%22%23ff63ff%22%20%20%20%20%20bordercolor%3D%22%23666666%22%20%20%20%20%20borderopacity%3D%221%22%20%20%20%20%20objecttolerance%3D%2210%22%20%20%20%20%20gridtolerance%3D%2210%22%20%20%20%20%20guidetolerance%3D%2210%22%20%20%20%20%20inkscape%3Apageopacity%3D%220%22%20%20%20%20%20inkscape%3Apageshadow%3D%222%22%20%20%20%20%20inkscape%3Awindow-width%3D%221920%22%20%20%20%20%20inkscape%3Awindow-height%3D%221026%22%20%20%20%20%20id%3D%22namedview4144%22%20%20%20%20%20showgrid%3D%22true%22%20%20%20%20%20inkscape%3Azoom%3D%224%22%20%20%20%20%20inkscape%3Acx%3D%2213.229181%22%20%20%20%20%20inkscape%3Acy%3D%22119.82429%22%20%20%20%20%20inkscape%3Awindow-x%3D%220%22%20%20%20%20%20inkscape%3Awindow-y%3D%220%22%20%20%20%20%20inkscape%3Awindow-maximized%3D%221%22%20%20%20%20%20inkscape%3Acurrent-layer%3D%22svg4136%22%20%20%20%20%20showguides%3D%22false%22%20%20%20%20%20borderlayer%3D%22false%22%20%20%20%20%20inkscape%3Ashowpageshadow%3D%22true%22%20%20%20%20%20showborder%3D%22true%22%3E%20%20%20%20%3Cinkscape%3Agrid%20%20%20%20%20%20%20type%3D%22xygrid%22%20%20%20%20%20%20%20id%3D%22grid4640%22%20%20%20%20%20%20%20empspacing%3D%2224%22%20%2F%3E%20%20%3C%2Fsodipodi%3Anamedview%3E%20%20%20%20%3Crect%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%20%20%20%20id%3D%22svg_1%22%20%20%20%20%20height%3D%2216%22%20%20%20%20%20width%3D%2216%22%20%20%20%20%20y%3D%224%22%20%20%20%20%20x%3D%224%22%20%2F%3E%20%20%3Crect%20%20%20%20%20id%3D%22svg_1-7%22%20%20%20%20%20height%3D%2216%22%20%20%20%20%20width%3D%2216%22%20%20%20%20%20y%3D%223.999995%22%20%20%20%20%20x%3D%2228.000006%22%20%20%20%20%20style%3D%22fill%3A%23ec3f29%3Bfill-opacity%3A0.94117647%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%2F%3E%20%20%3Crect%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%20%20%20%20x%3D%2252.000004%22%20%20%20%20%20y%3D%223.999995%22%20%20%20%20%20width%3D%2216%22%20%20%20%20%20height%3D%2216%22%20%20%20%20%20id%3D%22rect4165%22%20%2F%3E%20%20%3Crect%20%20%20%20%20id%3D%22rect4175%22%20%20%20%20%20height%3D%2216%22%20%20%20%20%20width%3D%2216%22%20%20%20%20%20y%3D%223.9999852%22%20%20%20%20%20x%3D%22172.00002%22%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%2F%3E%20%20%3Crect%20%20%20%20%20id%3D%22rect4175-3%22%20%20%20%20%20height%3D%2216%22%20%20%20%20%20width%3D%2216%22%20%20%20%20%20y%3D%223.999995%22%20%20%20%20%20x%3D%22196%22%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%2F%3E%20%20%3Cg%20%20%20%20%20id%3D%22g4299%22%20%20%20%20%20style%3D%22stroke%3Anone%22%3E%20%20%20%20%3Crect%20%20%20%20%20%20%20x%3D%227.0000048%22%20%20%20%20%20%20%20y%3D%2210.999998%22%20%20%20%20%20%20%20width%3D%229.9999924%22%20%20%20%20%20%20%20height%3D%221.9999986%22%20%20%20%20%20%20%20id%3D%22svg_1-1%22%20%20%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%2F%3E%20%20%20%20%3Crect%20%20%20%20%20%20%20x%3D%2211.000005%22%20%20%20%20%20%20%20y%3D%227.0000114%22%20%20%20%20%20%20%20width%3D%221.9999955%22%20%20%20%20%20%20%20height%3D%229.9999838%22%20%20%20%20%20%20%20id%3D%22svg_1-1-1%22%20%20%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%2F%3E%20%20%3C%2Fg%3E%20%20%3Cg%20%20%20%20%20id%3D%22g4299-3%22%20%20%20%20%20transform%3D%22matrix%280.70710678%2C-0.70710678%2C0.70710678%2C0.70710678%2C19.029435%2C12.000001%29%22%20%20%20%20%20style%3D%22stroke%3Anone%22%3E%20%20%20%20%3Crect%20%20%20%20%20%20%20x%3D%227.0000048%22%20%20%20%20%20%20%20y%3D%2210.999998%22%20%20%20%20%20%20%20width%3D%229.9999924%22%20%20%20%20%20%20%20height%3D%221.9999986%22%20%20%20%20%20%20%20id%3D%22svg_1-1-0%22%20%20%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%2F%3E%20%20%20%20%3Crect%20%20%20%20%20%20%20x%3D%2211.000005%22%20%20%20%20%20%20%20y%3D%227.0000114%22%20%20%20%20%20%20%20width%3D%221.9999955%22%20%20%20%20%20%20%20height%3D%229.9999838%22%20%20%20%20%20%20%20id%3D%22svg_1-1-1-9%22%20%20%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%2F%3E%20%20%3C%2Fg%3E%20%20%3Crect%20%20%20%20%20id%3D%22svg_1-7-5%22%20%20%20%20%20height%3D%226.9999905%22%20%20%20%20%20width%3D%226.9999909%22%20%20%20%20%20y%3D%227.0000048%22%20%20%20%20%20x%3D%2255.000004%22%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3A%23000000%3Bstroke-width%3A0%22%20%2F%3E%20%20%3Crect%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3A%234c4c4c%3Bstroke-width%3A2%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%3Bstroke-opacity%3A1%22%20%20%20%20%20x%3D%2258%22%20%20%20%20%20y%3D%2210.00001%22%20%20%20%20%20width%3D%226.9999909%22%20%20%20%20%20height%3D%226.9999905%22%20%20%20%20%20id%3D%22rect4354%22%20%2F%3E%20%20%3Crect%20%20%20%20%20id%3D%22svg_1-7-5-7%22%20%20%20%20%20height%3D%226.9999905%22%20%20%20%20%20width%3D%226.9999909%22%20%20%20%20%20y%3D%2210.000005%22%20%20%20%20%20x%3D%2258.000004%22%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3A%233c80df%3Bstroke-width%3A0%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%3Bstroke-opacity%3A0.94117647%22%20%2F%3E%20%20%3Cg%20%20%20%20%20id%3D%22g4378%22%3E%20%20%20%20%3Crect%20%20%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3A%23000000%3Bstroke-width%3A0%22%20%20%20%20%20%20%20x%3D%22198%22%20%20%20%20%20%20%20y%3D%2210.999999%22%20%20%20%20%20%20%20width%3D%227.9999909%22%20%20%20%20%20%20%20height%3D%221.9999965%22%20%20%20%20%20%20%20id%3D%22svg_1-7-5-3%22%20%2F%3E%20%20%20%20%3Crect%20%20%20%20%20%20%20id%3D%22rect4374%22%20%20%20%20%20%20%20height%3D%221.9999946%22%20%20%20%20%20%20%20width%3D%2211.999995%22%20%20%20%20%20%20%20y%3D%227.0000005%22%20%20%20%20%20%20%20x%3D%22198%22%20%20%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3A%23000000%3Bstroke-width%3A0%22%20%2F%3E%20%20%20%20%3Crect%20%20%20%20%20%20%20id%3D%22rect4376%22%20%20%20%20%20%20%20height%3D%221.9999995%22%20%20%20%20%20%20%20width%3D%223.9999928%22%20%20%20%20%20%20%20y%3D%2214.999996%22%20%20%20%20%20%20%20x%3D%22198%22%20%20%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3A%23000000%3Bstroke-width%3A0%22%20%2F%3E%20%20%3C%2Fg%3E%20%20%3Cg%20%20%20%20%20transform%3D%22matrix%281%2C0%2C0%2C-1%2C-23.999995%2C23.999995%29%22%20%20%20%20%20id%3D%22g4383%22%3E%20%20%20%20%3Crect%20%20%20%20%20%20%20id%3D%22rect4385%22%20%20%20%20%20%20%20height%3D%221.9999965%22%20%20%20%20%20%20%20width%3D%227.9999909%22%20%20%20%20%20%20%20y%3D%2210.999999%22%20%20%20%20%20%20%20x%3D%22198%22%20%20%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3A%23000000%3Bstroke-width%3A0%22%20%2F%3E%20%20%20%20%3Crect%20%20%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3A%23000000%3Bstroke-width%3A0%22%20%20%20%20%20%20%20x%3D%22198%22%20%20%20%20%20%20%20y%3D%227.0000005%22%20%20%20%20%20%20%20width%3D%2211.999995%22%20%20%20%20%20%20%20height%3D%221.9999946%22%20%20%20%20%20%20%20id%3D%22rect4387%22%20%2F%3E%20%20%20%20%3Crect%20%20%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3A%23000000%3Bstroke-width%3A0%22%20%20%20%20%20%20%20x%3D%22198%22%20%20%20%20%20%20%20y%3D%2214.999996%22%20%20%20%20%20%20%20width%3D%223.9999928%22%20%20%20%20%20%20%20height%3D%221.9999995%22%20%20%20%20%20%20%20id%3D%22rect4389%22%20%2F%3E%20%20%3C%2Fg%3E%20%20%3Crect%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A1%3Bstroke%3Anone%22%20%20%20%20%20id%3D%22rect3754-4%22%20%20%20%20%20width%3D%2216%22%20%20%20%20%20height%3D%2216%22%20%20%20%20%20x%3D%2276%22%20%20%20%20%20y%3D%223.9999199%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3A%23ffffff%3Bstroke-width%3A0.2%3Bstroke-linecap%3Abutt%3Bstroke-linejoin%3Amiter%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%3Bstroke-opacity%3A1%22%20%20%20%20%20d%3D%22m%2085.10447%2C6.0157384%20-0.0156%2C1.4063%20c%203.02669%2C-0.2402%200.33008%2C3.6507996%202.48438%2C4.5780996%20-2.18694%2C1.0938%200.49191%2C4.9069%20-2.45313%2C4.5781%20l%20-0.0156%2C1.4219%20c%205.70828%2C0.559%201.03264%2C-5.1005%204.70313%2C-5.2656%20l%200%2C-1.4063%20c%20-3.61303%2C-0.027%201.11893%2C-5.7069996%20-4.70313%2C-5.3124996%20z%22%20%20%20%20%20id%3D%22path4351%22%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20sodipodi%3Anodetypes%3D%22cccccccc%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3A%23ffffff%3Bstroke-width%3A0.2%3Bstroke-linecap%3Abutt%3Bstroke-linejoin%3Amiter%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%3Bstroke-opacity%3A1%22%20%20%20%20%20d%3D%22m%2082.78125%2C5.9984384%200.0156%2C1.4063%20c%20-3.02668%2C-0.2402%20-0.33007%2C3.6506996%20-2.48437%2C4.5780996%202.18694%2C1.0938%20-0.49192%2C4.9069%202.45312%2C4.5781%20l%200.0156%2C1.4219%20c%20-5.70827%2C0.559%20-1.03263%2C-5.1004%20-4.70312%2C-5.2656%20l%200%2C-1.4063%20c%203.61303%2C-0.027%20-1.11894%2C-5.7070996%204.70312%2C-5.3124996%20z%22%20%20%20%20%20id%3D%22path4351-9%22%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20sodipodi%3Anodetypes%3D%22cccccccc%22%20%2F%3E%20%20%3Crect%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A1%3Bstroke%3Anone%22%20%20%20%20%20id%3D%22rect3754-25%22%20%20%20%20%20width%3D%2216%22%20%20%20%20%20height%3D%2216%22%20%20%20%20%20x%3D%22100%22%20%20%20%20%20y%3D%223.9999199%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3Anone%22%20%20%20%20%20d%3D%22m%20103.719%2C5.6719384%200%2C12.7187996%203.03125%2C0%200%2C-1.5313%20-1.34375%2C0%200%2C-9.6249996%201.375%2C0%200%2C-1.5625%20z%22%20%20%20%20%20id%3D%22path2987%22%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3Anone%22%20%20%20%20%20d%3D%22m%20112.2185%2C5.6721984%200%2C12.7187996%20-3.03125%2C0%200%2C-1.5313%201.34375%2C0%200%2C-9.6249996%20-1.375%2C0%200%2C-1.5625%20z%22%20%20%20%20%20id%3D%22path2987-1%22%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%2F%3E%20%20%3Crect%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A1%3Bstroke%3Anone%22%20%20%20%20%20id%3D%22rect3754-73%22%20%20%20%20%20width%3D%2216%22%20%20%20%20%20height%3D%2216%22%20%20%20%20%20x%3D%22124%22%20%20%20%20%20y%3D%223.9999199%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3Anone%22%20%20%20%20%20d%3D%22m%20126.2824%2C17.602938%201.78957%2C0%201.14143%2C-2.8641%205.65364%2C0%201.14856%2C2.8641%201.76565%2C0%20-4.78687%2C-11.1610996%20-1.91903%2C0%20z%22%20%20%20%20%20id%3D%22path3780%22%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20sodipodi%3Anodetypes%3D%22ccccccccc%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A1%3Bstroke%3Anone%22%20%20%20%20%20d%3D%22m%20129.72704%2C13.478838%204.60852%2C0.01%20-2.30426%2C-5.5497996%20z%22%20%20%20%20%20id%3D%22path3782%22%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%2F%3E%20%20%3Crect%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A1%3Bstroke%3Anone%22%20%20%20%20%20id%3D%22rect3754-35%22%20%20%20%20%20width%3D%2216%22%20%20%20%20%20height%3D%2216%22%20%20%20%20%20x%3D%22148%22%20%20%20%20%20y%3D%223.9999199%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3Anone%22%20%20%20%20%20d%3D%22m%20156.47655%2C5.8917384%200%2C2.1797%200.46093%2C2.3983996%201.82813%2C0%200.39844%2C-2.3983996%200%2C-2.1797%20z%22%20%20%20%20%20id%3D%22path5008-2%22%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20sodipodi%3Anodetypes%3D%22ccccccc%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3Anone%22%20%20%20%20%20d%3D%22m%20152.51561%2C5.8906384%200%2C2.1797%200.46094%2C2.3983996%201.82812%2C0%200.39844%2C-2.3983996%200%2C-2.1797%20z%22%20%20%20%20%20id%3D%22path5008-2-8%22%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20sodipodi%3Anodetypes%3D%22ccccccc%22%20%2F%3E%20%20%3Crect%20%20%20%20%20id%3D%22svg_1-7-2%22%20%20%20%20%20height%3D%221.9999961%22%20%20%20%20%20width%3D%2211.999996%22%20%20%20%20%20y%3D%2264%22%20%20%20%20%20x%3D%2254%22%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A0.98431373%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%2F%3E%20%20%3Crect%20%20%20%20%20id%3D%22svg_1-7-2-2%22%20%20%20%20%20height%3D%222.9999905%22%20%20%20%20%20width%3D%222.9999907%22%20%20%20%20%20y%3D%2252%22%20%20%20%20%20x%3D%2280.000008%22%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A0.98431373%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%2F%3E%20%20%3Crect%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A0.98431373%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%20%20%20%20x%3D%2285.000008%22%20%20%20%20%20y%3D%2252%22%20%20%20%20%20width%3D%222.9999907%22%20%20%20%20%20height%3D%222.9999905%22%20%20%20%20%20id%3D%22rect4561%22%20%2F%3E%20%20%3Crect%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A0.98431373%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%20%20%20%20x%3D%2280.000008%22%20%20%20%20%20y%3D%2258%22%20%20%20%20%20width%3D%222.9999907%22%20%20%20%20%20height%3D%222.9999905%22%20%20%20%20%20id%3D%22rect4563%22%20%2F%3E%20%20%3Crect%20%20%20%20%20id%3D%22rect4565%22%20%20%20%20%20height%3D%222.9999905%22%20%20%20%20%20width%3D%222.9999907%22%20%20%20%20%20y%3D%2258%22%20%20%20%20%20x%3D%2285.000008%22%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A0.98431373%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%2F%3E%20%20%3Crect%20%20%20%20%20id%3D%22rect4567%22%20%20%20%20%20height%3D%222.9999905%22%20%20%20%20%20width%3D%222.9999907%22%20%20%20%20%20y%3D%2264%22%20%20%20%20%20x%3D%2280.000008%22%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A0.98431373%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%2F%3E%20%20%3Crect%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A0.98431373%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%20%20%20%20x%3D%2285.000008%22%20%20%20%20%20y%3D%2264%22%20%20%20%20%20width%3D%222.9999907%22%20%20%20%20%20height%3D%222.9999905%22%20%20%20%20%20id%3D%22rect4569%22%20%2F%3E%20%20%3Ccircle%20%20%20%20%20style%3D%22opacity%3A1%3Bfill%3Anone%3Bfill-opacity%3A1%3Bstroke%3A%234c4c4c%3Bstroke-width%3A2%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%22%20%20%20%20%20id%3D%22path4571%22%20%20%20%20%20cx%3D%22110.06081%22%20%20%20%20%20cy%3D%2257.939209%22%20%20%20%20%20r%3D%224.7438836%22%20%2F%3E%20%20%3Crect%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A0.98431373%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%20%20%20%20x%3D%22116.64566%22%20%20%20%20%20y%3D%22-31.79752%22%20%20%20%20%20width%3D%224.229713%22%20%20%20%20%20height%3D%226.4053884%22%20%20%20%20%20id%3D%22rect4563-2%22%20%20%20%20%20transform%3D%22matrix%280.70710678%2C0.70710678%2C-0.70710678%2C0.70710678%2C0%2C0%29%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A1%3Bfill-rule%3Aevenodd%3Bstroke%3Anone%3Bstroke-width%3A0%3Bstroke-linecap%3Abutt%3Bstroke-linejoin%3Amiter%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%3Bstroke-opacity%3A1%22%20%20%20%20%20d%3D%22M%20125%2C56%20138.77027%2C56.095%20132%2C64%20Z%22%20%20%20%20%20id%3D%22path4613%22%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20sodipodi%3Anodetypes%3D%22cccc%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20sodipodi%3Anodetypes%3D%22cccc%22%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20id%3D%22path4615%22%20%20%20%20%20d%3D%22M%20149%2C64%20162.77027%2C63.905%20156%2C56%20Z%22%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A1%3Bfill-rule%3Aevenodd%3Bstroke%3Anone%3Bstroke-width%3A0%3Bstroke-linecap%3Abutt%3Bstroke-linejoin%3Amiter%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%3Bstroke-opacity%3A1%22%20%2F%3E%20%20%3Crect%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A0.98431373%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%20%20%20%20x%3D%2254%22%20%20%20%20%20y%3D%2253%22%20%20%20%20%20width%3D%2211.999996%22%20%20%20%20%20height%3D%221.9999961%22%20%20%20%20%20id%3D%22rect4638%22%20%2F%3E%20%20%3Crect%20%20%20%20%20id%3D%22svg_1-7-2-24%22%20%20%20%20%20height%3D%221.9999957%22%20%20%20%20%20width%3D%2212.99999%22%20%20%20%20%20y%3D%22-56%22%20%20%20%20%20x%3D%2253%22%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A0.98431373%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%20%20%20%20transform%3D%22matrix%280%2C1%2C-1%2C0%2C0%2C0%29%22%20%2F%3E%20%20%3Crect%20%20%20%20%20transform%3D%22matrix%280%2C1%2C-1%2C0%2C0%2C0%29%22%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A0.98431373%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%20%20%20%20x%3D%2253%22%20%20%20%20%20y%3D%22-66%22%20%20%20%20%20width%3D%2212.99999%22%20%20%20%20%20height%3D%221.9999957%22%20%20%20%20%20id%3D%22rect4657%22%20%2F%3E%20%20%3Crect%20%20%20%20%20id%3D%22rect4659%22%20%20%20%20%20height%3D%220.99999291%22%20%20%20%20%20width%3D%2211.999999%22%20%20%20%20%20y%3D%2257%22%20%20%20%20%20x%3D%2254%22%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A0.98431373%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%2F%3E%20%20%3Crect%20%20%20%20%20style%3D%22fill%3A%23d3d3d3%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A0%3Bstroke-opacity%3A1%22%20%20%20%20%20x%3D%2254%22%20%20%20%20%20y%3D%2288.000122%22%20%20%20%20%20width%3D%2211.999996%22%20%20%20%20%20height%3D%221.9999961%22%20%20%20%20%20id%3D%22rect4661%22%20%2F%3E%20%20%3Crect%20%20%20%20%20style%3D%22fill%3A%23d3d3d3%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A0%3Bstroke-opacity%3A1%22%20%20%20%20%20x%3D%2280.000008%22%20%20%20%20%20y%3D%2276.000122%22%20%20%20%20%20width%3D%222.9999907%22%20%20%20%20%20height%3D%222.9999905%22%20%20%20%20%20id%3D%22rect4663%22%20%2F%3E%20%20%3Crect%20%20%20%20%20id%3D%22rect4665%22%20%20%20%20%20height%3D%222.9999905%22%20%20%20%20%20width%3D%222.9999907%22%20%20%20%20%20y%3D%2276.000122%22%20%20%20%20%20x%3D%2285.000008%22%20%20%20%20%20style%3D%22fill%3A%23d3d3d3%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A0%3Bstroke-opacity%3A1%22%20%2F%3E%20%20%3Crect%20%20%20%20%20id%3D%22rect4667%22%20%20%20%20%20height%3D%222.9999905%22%20%20%20%20%20width%3D%222.9999907%22%20%20%20%20%20y%3D%2282.000122%22%20%20%20%20%20x%3D%2280.000008%22%20%20%20%20%20style%3D%22fill%3A%23d3d3d3%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A0%3Bstroke-opacity%3A1%22%20%2F%3E%20%20%3Crect%20%20%20%20%20style%3D%22fill%3A%23d3d3d3%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A0%3Bstroke-opacity%3A1%22%20%20%20%20%20x%3D%2285.000008%22%20%20%20%20%20y%3D%2282.000122%22%20%20%20%20%20width%3D%222.9999907%22%20%20%20%20%20height%3D%222.9999905%22%20%20%20%20%20id%3D%22rect4669%22%20%2F%3E%20%20%3Crect%20%20%20%20%20style%3D%22fill%3A%23d3d3d3%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A0%3Bstroke-opacity%3A1%22%20%20%20%20%20x%3D%2280.000008%22%20%20%20%20%20y%3D%2288.000122%22%20%20%20%20%20width%3D%222.9999907%22%20%20%20%20%20height%3D%222.9999905%22%20%20%20%20%20id%3D%22rect4671%22%20%2F%3E%20%20%3Crect%20%20%20%20%20id%3D%22rect4673%22%20%20%20%20%20height%3D%222.9999905%22%20%20%20%20%20width%3D%222.9999907%22%20%20%20%20%20y%3D%2288.000122%22%20%20%20%20%20x%3D%2285.000008%22%20%20%20%20%20style%3D%22fill%3A%23d3d3d3%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A0%3Bstroke-opacity%3A1%22%20%2F%3E%20%20%3Ccircle%20%20%20%20%20r%3D%224.7438836%22%20%20%20%20%20cy%3D%2281.939331%22%20%20%20%20%20cx%3D%22110.06081%22%20%20%20%20%20id%3D%22circle4675%22%20%20%20%20%20style%3D%22opacity%3A1%3Bfill%3Anone%3Bfill-opacity%3A1%3Bstroke%3A%23d3d3d3%3Bstroke-width%3A2%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%3Bstroke-opacity%3A1%22%20%2F%3E%20%20%3Crect%20%20%20%20%20transform%3D%22matrix%280.70710678%2C0.70710678%2C-0.70710678%2C0.70710678%2C0%2C0%29%22%20%20%20%20%20id%3D%22rect4677%22%20%20%20%20%20height%3D%226.4053884%22%20%20%20%20%20width%3D%224.229713%22%20%20%20%20%20y%3D%22-14.826816%22%20%20%20%20%20x%3D%22133.6163%22%20%20%20%20%20style%3D%22fill%3A%23d3d3d3%3Bfill-opacity%3A1%3Bstroke%3A%23d3d3d3%3Bstroke-width%3A0%3Bstroke-opacity%3A1%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20sodipodi%3Anodetypes%3D%22cccc%22%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20id%3D%22path4679%22%20%20%20%20%20d%3D%22m%20125%2C80.000005%2013.77027%2C0.09499%20L%20132%2C87.999992%20Z%22%20%20%20%20%20style%3D%22fill%3A%23d3d3d3%3Bfill-opacity%3A1%3Bfill-rule%3Aevenodd%3Bstroke%3A%23d3d3d3%3Bstroke-width%3A0%3Bstroke-linecap%3Abutt%3Bstroke-linejoin%3Amiter%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%3Bstroke-opacity%3A1%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20style%3D%22fill%3A%23d3d3d3%3Bfill-opacity%3A1%3Bfill-rule%3Aevenodd%3Bstroke%3A%23d3d3d3%3Bstroke-width%3A0%3Bstroke-linecap%3Abutt%3Bstroke-linejoin%3Amiter%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%3Bstroke-opacity%3A1%22%20%20%20%20%20d%3D%22M%20149%2C88.0002%20162.77027%2C87.9052%20156%2C80.0002%20Z%22%20%20%20%20%20id%3D%22path4681%22%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20sodipodi%3Anodetypes%3D%22cccc%22%20%2F%3E%20%20%3Crect%20%20%20%20%20id%3D%22rect4683%22%20%20%20%20%20height%3D%221.9999961%22%20%20%20%20%20width%3D%2211.999996%22%20%20%20%20%20y%3D%2277.000122%22%20%20%20%20%20x%3D%2254%22%20%20%20%20%20style%3D%22fill%3A%23d3d3d3%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A0%3Bstroke-opacity%3A1%22%20%2F%3E%20%20%3Crect%20%20%20%20%20transform%3D%22matrix%280%2C1%2C-1%2C0%2C0%2C0%29%22%20%20%20%20%20style%3D%22fill%3A%23d3d3d3%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A0%3Bstroke-opacity%3A1%22%20%20%20%20%20x%3D%2277.000122%22%20%20%20%20%20y%3D%22-56%22%20%20%20%20%20width%3D%2212.99999%22%20%20%20%20%20height%3D%221.9999957%22%20%20%20%20%20id%3D%22rect4685%22%20%2F%3E%20%20%3Crect%20%20%20%20%20id%3D%22rect4687%22%20%20%20%20%20height%3D%221.9999957%22%20%20%20%20%20width%3D%2212.99999%22%20%20%20%20%20y%3D%22-66%22%20%20%20%20%20x%3D%2277.000122%22%20%20%20%20%20style%3D%22fill%3A%23d3d3d3%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A0%3Bstroke-opacity%3A1%22%20%20%20%20%20transform%3D%22matrix%280%2C1%2C-1%2C0%2C0%2C0%29%22%20%2F%3E%20%20%3Crect%20%20%20%20%20style%3D%22fill%3A%23d3d3d3%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A0%3Bstroke-opacity%3A1%22%20%20%20%20%20x%3D%2254%22%20%20%20%20%20y%3D%2281.000122%22%20%20%20%20%20width%3D%2211.999999%22%20%20%20%20%20height%3D%220.99999291%22%20%20%20%20%20id%3D%22rect4689%22%20%2F%3E%20%20%3Crect%20%20%20%20%20id%3D%22rect4761-1%22%20%20%20%20%20height%3D%221.9999945%22%20%20%20%20%20width%3D%2215.99999%22%20%20%20%20%20y%3D%22101%22%20%20%20%20%20x%3D%2276.000008%22%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A0.8%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%2F%3E%20%20%3Crect%20%20%20%20%20id%3D%22rect4761-0%22%20%20%20%20%20height%3D%221.9999945%22%20%20%20%20%20width%3D%2215.99999%22%20%20%20%20%20y%3D%22105%22%20%20%20%20%20x%3D%2276.000008%22%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A0.8%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%2F%3E%20%20%3Crect%20%20%20%20%20id%3D%22rect4761-7%22%20%20%20%20%20height%3D%221.9999945%22%20%20%20%20%20width%3D%229%22%20%20%20%20%20y%3D%22109%22%20%20%20%20%20x%3D%2276.000008%22%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A0.8%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%2F%3E%20%20%3Crect%20%20%20%20%20id%3D%22rect4761-1-1%22%20%20%20%20%20height%3D%221.9999945%22%20%20%20%20%20width%3D%2212%22%20%20%20%20%20y%3D%22125%22%20%20%20%20%20x%3D%2276.000008%22%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A0.8%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%2F%3E%20%20%3Crect%20%20%20%20%20id%3D%22rect4761-1-1-4%22%20%20%20%20%20height%3D%221.9999945%22%20%20%20%20%20width%3D%2210%22%20%20%20%20%20y%3D%22137%22%20%20%20%20%20x%3D%2276.000008%22%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A0.8%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%2F%3E%20%20%3Crect%20%20%20%20%20id%3D%22rect4761-1-1-4-4%22%20%20%20%20%20height%3D%221.9999945%22%20%20%20%20%20width%3D%2210%22%20%20%20%20%20y%3D%22129%22%20%20%20%20%20x%3D%2282%22%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A0.8%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%2F%3E%20%20%3Crect%20%20%20%20%20id%3D%22rect4761-1-1-4-4-3%22%20%20%20%20%20height%3D%221.9999945%22%20%20%20%20%20width%3D%229%22%20%20%20%20%20y%3D%22133%22%20%20%20%20%20x%3D%2282%22%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A0.8%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20style%3D%22color%3A%23000000%3Bfont-style%3Anormal%3Bfont-variant%3Anormal%3Bfont-weight%3Anormal%3Bfont-stretch%3Anormal%3Bfont-size%3Amedium%3Bline-height%3Anormal%3Bfont-family%3Asans-serif%3Btext-indent%3A0%3Btext-align%3Astart%3Btext-decoration%3Anone%3Btext-decoration-line%3Anone%3Btext-decoration-style%3Asolid%3Btext-decoration-color%3A%23000000%3Bletter-spacing%3Anormal%3Bword-spacing%3Anormal%3Btext-transform%3Anone%3Bdirection%3Altr%3Bblock-progression%3Atb%3Bwriting-mode%3Alr-tb%3Bbaseline-shift%3Abaseline%3Btext-anchor%3Astart%3Bwhite-space%3Anormal%3Bclip-rule%3Anonzero%3Bdisplay%3Ainline%3Boverflow%3Avisible%3Bvisibility%3Avisible%3Bopacity%3A0.8%3Bisolation%3Aauto%3Bmix-blend-mode%3Anormal%3Bcolor-interpolation%3AsRGB%3Bcolor-interpolation-filters%3AlinearRGB%3Bsolid-color%3A%23000000%3Bsolid-opacity%3A1%3Bfill%3A%23ffffff%3Bfill-opacity%3A1%3Bfill-rule%3Anonzero%3Bstroke%3Anone%3Bstroke-width%3A2.66157866%3Bstroke-linecap%3Abutt%3Bstroke-linejoin%3Amiter%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%3Bstroke-dashoffset%3A0%3Bstroke-opacity%3A1%3Bcolor-rendering%3Aauto%3Bimage-rendering%3Aauto%3Bshape-rendering%3Aauto%3Btext-rendering%3Aauto%3Benable-background%3Aaccumulate%22%20%20%20%20%20d%3D%22m%2036.398438%2C100.0254%20c%20-0.423362%2C-0.013%20-0.846847%2C0.01%20-1.265626%2C0.062%20-1.656562%2C0.2196%20-3.244567%2C0.9739%20-4.507812%2C2.2266%20L%2029%2C100.5991%20l%20-2.324219%2C7.7129%207.826172%2C-1.9062%20-1.804687%2C-1.9063%20c%201.597702%2C-1.5308%204.048706%2C-1.8453%205.984375%2C-0.7207%201.971162%2C1.1452%202.881954%2C3.3975%202.308593%2C5.5508%20-0.573361%2C2.1533%20-2.533865%2C3.6953%20-4.830078%2C3.6953%20l%200%2C3.0742%20c%203.550756%2C0%206.710442%2C-2.4113%207.650391%2C-5.9414%200.939949%2C-3.5301%20-0.618463%2C-7.2736%20-3.710938%2C-9.0703%20-1.159678%2C-0.6738%20-2.431087%2C-1.0231%20-3.701171%2C-1.0625%20z%22%20%20%20%20%20id%3D%22path4138%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20style%3D%22color%3A%23000000%3Bfont-style%3Anormal%3Bfont-variant%3Anormal%3Bfont-weight%3Anormal%3Bfont-stretch%3Anormal%3Bfont-size%3Amedium%3Bline-height%3Anormal%3Bfont-family%3Asans-serif%3Btext-indent%3A0%3Btext-align%3Astart%3Btext-decoration%3Anone%3Btext-decoration-line%3Anone%3Btext-decoration-style%3Asolid%3Btext-decoration-color%3A%23000000%3Bletter-spacing%3Anormal%3Bword-spacing%3Anormal%3Btext-transform%3Anone%3Bdirection%3Altr%3Bblock-progression%3Atb%3Bwriting-mode%3Alr-tb%3Bbaseline-shift%3Abaseline%3Btext-anchor%3Astart%3Bwhite-space%3Anormal%3Bclip-rule%3Anonzero%3Bdisplay%3Ainline%3Boverflow%3Avisible%3Bvisibility%3Avisible%3Bopacity%3A0.8%3Bisolation%3Aauto%3Bmix-blend-mode%3Anormal%3Bcolor-interpolation%3AsRGB%3Bcolor-interpolation-filters%3AlinearRGB%3Bsolid-color%3A%23000000%3Bsolid-opacity%3A1%3Bfill%3A%23ffffff%3Bfill-opacity%3A1%3Bfill-rule%3Anonzero%3Bstroke%3Anone%3Bstroke-width%3A2.66157866%3Bstroke-linecap%3Abutt%3Bstroke-linejoin%3Amiter%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%3Bstroke-dashoffset%3A0%3Bstroke-opacity%3A1%3Bcolor-rendering%3Aauto%3Bimage-rendering%3Aauto%3Bshape-rendering%3Aauto%3Btext-rendering%3Aauto%3Benable-background%3Aaccumulate%22%20%20%20%20%20d%3D%22m%2059.722656%2C99.9629%20c%20-1.270084%2C0.039%20-2.541493%2C0.3887%20-3.701172%2C1.0625%20-3.092475%2C1.7967%20-4.650886%2C5.5402%20-3.710937%2C9.0703%200.939949%2C3.5301%204.09768%2C5.9414%207.648437%2C5.9414%20l%200%2C-3.0742%20c%20-2.296214%2C0%20-4.256717%2C-1.542%20-4.830078%2C-3.6953%20-0.573361%2C-2.1533%200.337432%2C-4.4056%202.308594%2C-5.5508%201.935731%2C-1.1246%204.38863%2C-0.8102%205.986326%2C0.7207%20l%20-1.806638%2C1.9063%207.828128%2C1.9062%20-2.32422%2C-7.7129%20-1.62696%2C1.7168%20c%20-1.26338%2C-1.2531%20-2.848917%2C-2.0088%20-4.505855%2C-2.2285%20-0.418778%2C-0.055%20-0.842263%2C-0.076%20-1.265625%2C-0.062%20z%22%20%20%20%20%20id%3D%22path4138-1%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20style%3D%22opacity%3A0.8%3Bfill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A1.96599996%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%22%20%20%20%20%20d%3D%22m%2010.5%2C100%200%2C2%20-2.4999996%2C0%20L%2012%2C107%20l%204%2C-5%20-2.5%2C0%200%2C-2%20-3%2C0%20z%22%20%20%20%20%20id%3D%22path3055-0-77%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20style%3D%22opacity%3A0.8%3Bfill%3Anone%3Bstroke%3A%23ffffff%3Bstroke-width%3A1.96599996%3Bstroke-linecap%3Asquare%3Bstroke-linejoin%3Amiter%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%3Bstroke-opacity%3A1%22%20%20%20%20%20d%3D%22m%204.9850574%2C108.015%2014.0298856%2C-0.03%22%20%20%20%20%20id%3D%22path5244-5-0-5%22%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20sodipodi%3Anodetypes%3D%22cc%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20style%3D%22opacity%3A0.8%3Bfill%3Anone%3Bstroke%3A%23ffffff%3Bstroke-width%3A1.96599996%3Bstroke-linecap%3Asquare%3Bstroke-linejoin%3Amiter%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%3Bstroke-opacity%3A1%22%20%20%20%20%20d%3D%22m%204.9849874%2C132.015%2014.0298866%2C-0.03%22%20%20%20%20%20id%3D%22path5244-5-0-5-8%22%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20sodipodi%3Anodetypes%3D%22cc%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20style%3D%22color%3A%23000000%3Bfont-style%3Anormal%3Bfont-variant%3Anormal%3Bfont-weight%3Anormal%3Bfont-stretch%3Anormal%3Bfont-size%3Amedium%3Bline-height%3Anormal%3Bfont-family%3Asans-serif%3Btext-indent%3A0%3Btext-align%3Astart%3Btext-decoration%3Anone%3Btext-decoration-line%3Anone%3Btext-decoration-style%3Asolid%3Btext-decoration-color%3A%23000000%3Bletter-spacing%3Anormal%3Bword-spacing%3Anormal%3Btext-transform%3Anone%3Bdirection%3Altr%3Bblock-progression%3Atb%3Bwriting-mode%3Alr-tb%3Bbaseline-shift%3Abaseline%3Btext-anchor%3Astart%3Bwhite-space%3Anormal%3Bclip-rule%3Anonzero%3Bdisplay%3Ainline%3Boverflow%3Avisible%3Bvisibility%3Avisible%3Bopacity%3A0.4%3Bisolation%3Aauto%3Bmix-blend-mode%3Anormal%3Bcolor-interpolation%3AsRGB%3Bcolor-interpolation-filters%3AlinearRGB%3Bsolid-color%3A%23000000%3Bsolid-opacity%3A1%3Bfill%3A%234d4d4d%3Bfill-opacity%3A1%3Bfill-rule%3Anonzero%3Bstroke%3Anone%3Bstroke-width%3A2.66157866%3Bstroke-linecap%3Abutt%3Bstroke-linejoin%3Amiter%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%3Bstroke-dashoffset%3A0%3Bstroke-opacity%3A1%3Bcolor-rendering%3Aauto%3Bimage-rendering%3Aauto%3Bshape-rendering%3Aauto%3Btext-rendering%3Aauto%3Benable-background%3Aaccumulate%22%20%20%20%20%20d%3D%22m%2036.398438%2C123.9629%20c%20-0.423362%2C-0.013%20-0.846847%2C0.01%20-1.265626%2C0.062%20-1.656562%2C0.2196%20-3.244567%2C0.9739%20-4.507812%2C2.2266%20L%2029%2C124.5366%20l%20-2.324219%2C7.7129%207.826172%2C-1.9062%20-1.804687%2C-1.9063%20c%201.597702%2C-1.5308%204.048706%2C-1.8453%205.984375%2C-0.7207%201.971162%2C1.1453%202.881954%2C3.3975%202.308593%2C5.5508%20-0.573361%2C2.1533%20-2.533864%2C3.6953%20-4.830078%2C3.6953%20l%200%2C3.0742%20c%203.550757%2C0%206.710442%2C-2.4093%207.650391%2C-5.9394%200.939949%2C-3.5301%20-0.618463%2C-7.2756%20-3.710938%2C-9.0723%20-1.159678%2C-0.6737%20-2.431087%2C-1.0231%20-3.701171%2C-1.0625%20z%22%20%20%20%20%20id%3D%22path4138-12%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20style%3D%22color%3A%23000000%3Bfont-style%3Anormal%3Bfont-variant%3Anormal%3Bfont-weight%3Anormal%3Bfont-stretch%3Anormal%3Bfont-size%3Amedium%3Bline-height%3Anormal%3Bfont-family%3Asans-serif%3Btext-indent%3A0%3Btext-align%3Astart%3Btext-decoration%3Anone%3Btext-decoration-line%3Anone%3Btext-decoration-style%3Asolid%3Btext-decoration-color%3A%23000000%3Bletter-spacing%3Anormal%3Bword-spacing%3Anormal%3Btext-transform%3Anone%3Bdirection%3Altr%3Bblock-progression%3Atb%3Bwriting-mode%3Alr-tb%3Bbaseline-shift%3Abaseline%3Btext-anchor%3Astart%3Bwhite-space%3Anormal%3Bclip-rule%3Anonzero%3Bdisplay%3Ainline%3Boverflow%3Avisible%3Bvisibility%3Avisible%3Bopacity%3A0.4%3Bisolation%3Aauto%3Bmix-blend-mode%3Anormal%3Bcolor-interpolation%3AsRGB%3Bcolor-interpolation-filters%3AlinearRGB%3Bsolid-color%3A%23000000%3Bsolid-opacity%3A1%3Bfill%3A%234d4d4d%3Bfill-opacity%3A1%3Bfill-rule%3Anonzero%3Bstroke%3Anone%3Bstroke-width%3A2.66157866%3Bstroke-linecap%3Abutt%3Bstroke-linejoin%3Amiter%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%3Bstroke-dashoffset%3A0%3Bstroke-opacity%3A1%3Bcolor-rendering%3Aauto%3Bimage-rendering%3Aauto%3Bshape-rendering%3Aauto%3Btext-rendering%3Aauto%3Benable-background%3Aaccumulate%22%20%20%20%20%20d%3D%22m%2059.722656%2C123.9629%20c%20-1.270084%2C0.039%20-2.541493%2C0.3888%20-3.701172%2C1.0625%20-3.092475%2C1.7967%20-4.650886%2C5.5422%20-3.710937%2C9.0723%200.939949%2C3.5301%204.09768%2C5.9394%207.648437%2C5.9394%20l%200%2C-3.0742%20c%20-2.296214%2C0%20-4.256717%2C-1.542%20-4.830078%2C-3.6953%20-0.573361%2C-2.1533%200.337432%2C-4.4055%202.308594%2C-5.5508%201.935731%2C-1.1246%204.38863%2C-0.8102%205.986326%2C0.7207%20l%20-1.806638%2C1.9063%207.828128%2C1.9062%20-2.32422%2C-7.7129%20-1.62696%2C1.7168%20c%20-1.26338%2C-1.2531%20-2.848917%2C-2.0088%20-4.505855%2C-2.2285%20-0.418778%2C-0.055%20-0.842263%2C-0.076%20-1.265625%2C-0.062%20z%22%20%20%20%20%20id%3D%22path4138-1-3%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20id%3D%22path6191%22%20%20%20%20%20d%3D%22m%2010.5%2C116%200%2C-2%20-2.4999996%2C0%20L%2012%2C109%20l%204%2C5%20-2.5%2C0%200%2C2%20-3%2C0%20z%22%20%20%20%20%20style%3D%22opacity%3A0.8%3Bfill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A1.96599996%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%22%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20style%3D%22opacity%3A0.8%3Bfill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A1.96599996%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%22%20%20%20%20%20d%3D%22m%2010.5%2C129%200%2C-2%20-2.4999996%2C0%20L%2012%2C122%20l%204%2C5%20-2.5%2C0%200%2C2%20-3%2C0%20z%22%20%20%20%20%20id%3D%22path6193%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20id%3D%22path6195%22%20%20%20%20%20d%3D%22m%2010.5%2C135%200%2C2%20-2.4999996%2C0%20L%2012%2C142%20l%204%2C-5%20-2.5%2C0%200%2C-2%20-3%2C0%20z%22%20%20%20%20%20style%3D%22opacity%3A0.8%3Bfill%3A%23ffffff%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A1.96599996%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%22%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20sodipodi%3Atype%3D%22star%22%20%20%20%20%20style%3D%22fill%3A%234d4d4d%3Bfill-opacity%3A0.90196078%3Bstroke%3A%23d3d3d3%3Bstroke-width%3A0%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%22%20%20%20%20%20id%3D%22path4500%22%20%20%20%20%20sodipodi%3Asides%3D%223%22%20%20%20%20%20sodipodi%3Acx%3D%2211.55581%22%20%20%20%20%20sodipodi%3Acy%3D%2260.073242%22%20%20%20%20%20sodipodi%3Ar1%3D%225.1116104%22%20%20%20%20%20sodipodi%3Ar2%3D%222.5558052%22%20%20%20%20%20sodipodi%3Aarg1%3D%220%22%20%20%20%20%20sodipodi%3Aarg2%3D%221.0471976%22%20%20%20%20%20inkscape%3Aflatsided%3D%22false%22%20%20%20%20%20inkscape%3Arounded%3D%220%22%20%20%20%20%20inkscape%3Arandomized%3D%220%22%20%20%20%20%20d%3D%22m%2016.66742%2C60.073242%20-3.833708%2C2.213392%20-3.8337072%2C2.213393%200%2C-4.426785%200%2C-4.426784%203.8337082%2C2.213392%20z%22%20%20%20%20%20inkscape%3Atransform-center-x%3D%22-1.2779026%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20inkscape%3Atransform-center-x%3D%221.277902%22%20%20%20%20%20d%3D%22m%20-31.500004%2C60.073242%20-3.833708%2C2.213392%20-3.833707%2C2.213393%200%2C-4.426785%200%2C-4.426784%203.833707%2C2.213392%20z%22%20%20%20%20%20inkscape%3Arandomized%3D%220%22%20%20%20%20%20inkscape%3Arounded%3D%220%22%20%20%20%20%20inkscape%3Aflatsided%3D%22false%22%20%20%20%20%20sodipodi%3Aarg2%3D%221.0471976%22%20%20%20%20%20sodipodi%3Aarg1%3D%220%22%20%20%20%20%20sodipodi%3Ar2%3D%222.5558052%22%20%20%20%20%20sodipodi%3Ar1%3D%225.1116104%22%20%20%20%20%20sodipodi%3Acy%3D%2260.073242%22%20%20%20%20%20sodipodi%3Acx%3D%22-36.611614%22%20%20%20%20%20sodipodi%3Asides%3D%223%22%20%20%20%20%20id%3D%22path4502%22%20%20%20%20%20style%3D%22fill%3A%234d4d4d%3Bfill-opacity%3A0.90196078%3Bstroke%3A%23d3d3d3%3Bstroke-width%3A0%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%22%20%20%20%20%20sodipodi%3Atype%3D%22star%22%20%20%20%20%20transform%3D%22scale%28-1%2C1%29%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20d%3D%22m%2016.66742%2C60.073212%20-3.833708%2C2.213392%20-3.8337072%2C2.213392%200%2C-4.426784%200%2C-4.426785%203.8337082%2C2.213392%20z%22%20%20%20%20%20inkscape%3Arandomized%3D%220%22%20%20%20%20%20inkscape%3Arounded%3D%220%22%20%20%20%20%20inkscape%3Aflatsided%3D%22false%22%20%20%20%20%20sodipodi%3Aarg2%3D%221.0471976%22%20%20%20%20%20sodipodi%3Aarg1%3D%220%22%20%20%20%20%20sodipodi%3Ar2%3D%222.5558052%22%20%20%20%20%20sodipodi%3Ar1%3D%225.1116104%22%20%20%20%20%20sodipodi%3Acy%3D%2260.073212%22%20%20%20%20%20sodipodi%3Acx%3D%2211.55581%22%20%20%20%20%20sodipodi%3Asides%3D%223%22%20%20%20%20%20id%3D%22path4504%22%20%20%20%20%20style%3D%22fill%3A%234d4d4d%3Bfill-opacity%3A0.90196078%3Bstroke%3A%23d3d3d3%3Bstroke-width%3A0%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%22%20%20%20%20%20sodipodi%3Atype%3D%22star%22%20%20%20%20%20transform%3D%22matrix%280%2C1%2C-1%2C0%2C72.0074%2C71.7877%29%22%20%20%20%20%20inkscape%3Atransform-center-y%3D%221.2779029%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20inkscape%3Atransform-center-y%3D%22-1.2779026%22%20%20%20%20%20transform%3D%22matrix%280%2C-1%2C-1%2C0%2C96%2C96%29%22%20%20%20%20%20sodipodi%3Atype%3D%22star%22%20%20%20%20%20style%3D%22fill%3A%234d4d4d%3Bfill-opacity%3A0.90196078%3Bstroke%3A%23d3d3d3%3Bstroke-width%3A0%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%22%20%20%20%20%20id%3D%22path4506%22%20%20%20%20%20sodipodi%3Asides%3D%223%22%20%20%20%20%20sodipodi%3Acx%3D%2211.55581%22%20%20%20%20%20sodipodi%3Acy%3D%2260.073212%22%20%20%20%20%20sodipodi%3Ar1%3D%225.1116104%22%20%20%20%20%20sodipodi%3Ar2%3D%222.5558052%22%20%20%20%20%20sodipodi%3Aarg1%3D%220%22%20%20%20%20%20sodipodi%3Aarg2%3D%221.0471976%22%20%20%20%20%20inkscape%3Aflatsided%3D%22false%22%20%20%20%20%20inkscape%3Arounded%3D%220%22%20%20%20%20%20inkscape%3Arandomized%3D%220%22%20%20%20%20%20d%3D%22m%2016.66742%2C60.073212%20-3.833708%2C2.213392%20-3.8337072%2C2.213392%200%2C-4.426784%200%2C-4.426785%203.8337082%2C2.213392%20z%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20sodipodi%3Anodetypes%3D%22cccc%22%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20id%3D%22path4615-5%22%20%20%20%20%20d%3D%22m%20171.82574%2C65.174193%2016.34854%2C0%20-8.17427%2C-13.348454%20z%22%20%20%20%20%20style%3D%22fill%3A%23fbb917%3Bfill-opacity%3A1%3Bfill-rule%3Aevenodd%3Bstroke%3A%23fbb917%3Bstroke-width%3A1.65161395%3Bstroke-linecap%3Abutt%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A4%3Bstroke-dasharray%3Anone%3Bstroke-opacity%3A1%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20style%3D%22opacity%3A1%3Bfill%3A%23ffffff%3Bfill-opacity%3A1%3Bfill-rule%3Aevenodd%3Bstroke%3Anone%3Bstroke-width%3A1px%3Bstroke-linecap%3Abutt%3Bstroke-linejoin%3Amiter%3Bstroke-opacity%3A1%22%20%20%20%20%20d%3D%22m%20179%2C55%200%2C6%202%2C0%200%2C-6%22%20%20%20%20%20id%3D%22path4300%22%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20sodipodi%3Anodetypes%3D%22cccc%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20style%3D%22opacity%3A1%3Bfill%3A%23ffffff%3Bfill-opacity%3A1%3Bfill-rule%3Aevenodd%3Bstroke%3Anone%3Bstroke-width%3A1px%3Bstroke-linecap%3Abutt%3Bstroke-linejoin%3Amiter%3Bstroke-opacity%3A1%22%20%20%20%20%20d%3D%22m%20179%2C62%200%2C2%202%2C0%200%2C-2%22%20%20%20%20%20id%3D%22path4300-6%22%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20sodipodi%3Anodetypes%3D%22cccc%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A0.8%3Bfill-rule%3Aevenodd%3Bstroke%3A%23ffffff%3Bstroke-width%3A1px%3Bstroke-linecap%3Abutt%3Bstroke-linejoin%3Around%3Bstroke-opacity%3A0.8%22%20%20%20%20%20d%3D%22M%2099.994369%2C113.0221%20102%2C114.98353%20l%207%2C-6.9558%203%2C0.97227%202%2C-1%201%2C-2%200%2C-3%20-3%2C3%20-3%2C-3%203%2C-3%20-3%2C0%20-2%2C1%20-1%2C2%200.99437%2C3.0221%20z%22%20%20%20%20%20id%3D%22path4268%22%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20sodipodi%3Anodetypes%3D%22ccccccccccccccc%22%20%2F%3E%20%20%3Crect%20%20%20%20%20id%3D%22rect4175-3-5%22%20%20%20%20%20height%3D%2216%22%20%20%20%20%20width%3D%2216%22%20%20%20%20%20y%3D%224%22%20%20%20%20%20x%3D%22220%22%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-rule%3Aevenodd%3Bstroke%3Anone%3Bstroke-width%3A1px%3Bstroke-linecap%3Abutt%3Bstroke-linejoin%3Amiter%3Bstroke-opacity%3A1%22%20%20%20%20%20d%3D%22m%20234%2C6%200%2C2%20-5%2C5%200%2C5%20-2%2C0%200%2C-5%20-5%2C-5%200%2C-2%22%20%20%20%20%20id%3D%22path3546%22%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20sodipodi%3Anodetypes%3D%22cccccccc%22%20%2F%3E%20%20%3Cg%20%20%20%20%20transform%3D%22matrix%281.3333328%2C0%2C0%2C-1.5999992%2C-139.9999%2C127.19999%29%22%20%20%20%20%20id%3D%22g4383-6%22%3E%20%20%20%20%3Crect%20%20%20%20%20%20%20id%3D%22rect4385-2%22%20%20%20%20%20%20%20height%3D%221.2499905%22%20%20%20%20%20%20%20width%3D%225.9999924%22%20%20%20%20%20%20%20y%3D%2212.625005%22%20%20%20%20%20%20%20x%3D%22198.00002%22%20%20%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A0.8%3Bstroke%3A%23000000%3Bstroke-width%3A0%22%20%2F%3E%20%20%20%20%3Crect%20%20%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A0.8%3Bstroke%3A%23000000%3Bstroke-width%3A0%22%20%20%20%20%20%20%20x%3D%22198.00002%22%20%20%20%20%20%20%20y%3D%2215.125007%22%20%20%20%20%20%20%20width%3D%227.4999928%22%20%20%20%20%20%20%20height%3D%221.2499949%22%20%20%20%20%20%20%20id%3D%22rect4387-9%22%20%2F%3E%20%20%20%20%3Crect%20%20%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A0.8%3Bstroke%3A%23000000%3Bstroke-width%3A0%22%20%20%20%20%20%20%20x%3D%22198.00002%22%20%20%20%20%20%20%20y%3D%227.6250024%22%20%20%20%20%20%20%20width%3D%222.9999909%22%20%20%20%20%20%20%20height%3D%221.2499905%22%20%20%20%20%20%20%20id%3D%22rect4389-1-0%22%20%2F%3E%20%20%20%20%3Crect%20%20%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A0.8%3Bstroke%3A%23000000%3Bstroke-width%3A0%22%20%20%20%20%20%20%20x%3D%22198.00002%22%20%20%20%20%20%20%20y%3D%2210.125004%22%20%20%20%20%20%20%20width%3D%224.4999919%22%20%20%20%20%20%20%20height%3D%221.2499905%22%20%20%20%20%20%20%20id%3D%22rect4389-1-9%22%20%2F%3E%20%20%20%20%3Cpath%20%20%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A0.8%3Bfill-rule%3Aevenodd%3Bstroke%3Anone%3Bstroke-width%3A0.68465352px%3Bstroke-linecap%3Abutt%3Bstroke-linejoin%3Amiter%3Bstroke-opacity%3A1%22%20%20%20%20%20%20%20d%3D%22m%20207.00001%2C16.375004%200%2C-5.625005%20-2.25%2C0%203%2C-3.1250014%203%2C3.1250014%20-2.25%2C0%200%2C5.625005%20-1.5%2C0%22%20%20%20%20%20%20%20id%3D%22path4402%22%20%20%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20%20%20sodipodi%3Anodetypes%3D%22cccccccc%22%20%2F%3E%20%20%3C%2Fg%3E%20%20%3Cpath%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A0.8%3Bfill-rule%3Aevenodd%3Bstroke%3Anone%3Bstroke-width%3A1px%3Bstroke-linecap%3Abutt%3Bstroke-linejoin%3Amiter%3Bstroke-opacity%3A1%22%20%20%20%20%20d%3D%22m%20164%2C100%200%2C3%20-6%2C6%200%2C7%20-4%2C0%200%2C-7%20-6%2C-6%200%2C-3%22%20%20%20%20%20id%3D%22path3546-2-2%22%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20sodipodi%3Anodetypes%3D%22cccccccc%22%20%2F%3E%20%20%3Crect%20%20%20%20%20style%3D%22fill%3A%234c4c4c%3Bfill-opacity%3A1%3Bstroke%3Anone%3Bstroke-width%3A0%22%20%20%20%20%20id%3D%22svg_1-3%22%20%20%20%20%20height%3D%2216%22%20%20%20%20%20width%3D%2216%22%20%20%20%20%20y%3D%2228%22%20%20%20%20%20x%3D%224%22%20%2F%3E%20%20%3Cpath%20%20%20%20%20sodipodi%3Anodetypes%3D%22ccccccccc%22%20%20%20%20%20inkscape%3Aconnector-curvature%3D%220%22%20%20%20%20%20id%3D%22path4402-5-7%22%20%20%20%20%20d%3D%22m%2015%2C41%200%2C-7%20-4%2C0%200%2C3%20-5%2C-4%205%2C-4%200%2C3%206%2C0%200%2C9%22%20%20%20%20%20style%3D%22fill%3A%23ffffff%3Bfill-opacity%3A1%3Bfill-rule%3Aevenodd%3Bstroke%3Anone%3Bstroke-width%3A0.68465352px%3Bstroke-linecap%3Abutt%3Bstroke-linejoin%3Amiter%3Bstroke-opacity%3A1%22%20%2F%3E%3C%2Fsvg%3E";
|
|
23035
23061
|
|
|
@@ -23199,5 +23225,5 @@ var JSONEditorBase = function JSONEditorBase(_ref) {
|
|
|
23199
23225
|
|
|
23200
23226
|
var JSONEditor = /*#__PURE__*/memo(JSONEditorBase);
|
|
23201
23227
|
|
|
23202
|
-
export { ActionButton, Actions, ActionsGroup, AnchorContainer, AutoComplete, BaseButton, Blank, Box, ButtonsGroup, ButtonsGroupComponent, CSSTransition, Card, CardBodyContainer, Header$1 as CardHeader, ImageGradientOverlay as CardImageGradientOverlay, ImageOverlay as CardImageOverlay, CardLoader, Checkbox, CheckboxComponent, Chip, ChipAutoCompleDivider, ChipAutoCompleSlider, ChipAutoComplete, ChipAutoCompleteControlFlex, ChipAutoCompleteImagePlaceholder, ChipAutoCompleteItem, ChipAutoCompleteItemIcon, ChipAutoCompleteItemImage, ChipAutoCompleteMode, ChipAutoCompleteTags, ChipContainer, ChipInput, Circle, CircularProgress, ColName, Collapse, CollapseWrapper, ColorButton, ColorInput, ColorPicker, ComparisonOperator, CustomButton, CustomToggle, DATE_FORMAT, DATE_TIME_FORMAT, DatePicker, Description, Dialog, DialogActions, DialogComponent, DialogContent, DialogOverlay, DialogTitle, Divider, Dropdown, DropdownContainer, DropdownField, ElementsArea, ExpandButton, Expander, FILE_SIZE_STEP, FadingIcon, FieldValue, FilterContainer, FilterInput, FlatButton, Flex, FlexSpan, FocusTrap, GlobalsContainer, H1, H2, H3, H4, Handlers, HeaderCellComponent, HeaderCellPrefix, HueMap, HueSlider,
|
|
23228
|
+
export { ActionButton, Actions, ActionsGroup, AnchorContainer, AutoComplete, BaseButton, Blank, Box, ButtonsGroup, ButtonsGroupComponent, CSSTransition, Card, CardBodyContainer, Header$1 as CardHeader, ImageGradientOverlay as CardImageGradientOverlay, ImageOverlay as CardImageOverlay, CardLoader, Checkbox, CheckboxComponent, Chip, ChipAutoCompleDivider, ChipAutoCompleSlider, ChipAutoComplete, ChipAutoCompleteControlFlex, ChipAutoCompleteImagePlaceholder, ChipAutoCompleteItem, ChipAutoCompleteItemIcon, ChipAutoCompleteItemImage, ChipAutoCompleteMode, ChipAutoCompleteTags, ChipContainer, ChipInput, Circle, CircularProgress, ColName, Collapse, CollapseWrapper, ColorButton, ColorInput, ColorPicker, ComparisonOperator, CustomButton, CustomToggle, DATE_FORMAT, DATE_TIME_FORMAT, DatePicker, Description, Dialog, DialogActions, DialogComponent, DialogContent, DialogOverlay, DialogTitle, Divider, Dropdown, DropdownContainer, DropdownField, ElementsArea, ExpandButton, Expander, FILE_SIZE_STEP, FadingIcon, FieldValue, FilterContainer, FilterInput, FlatButton, Flex, FlexSpan, FocusTrap, GlobalsContainer, H1, H2, H3, H4, Handlers, HeaderCellComponent, HeaderCellPrefix, HueMap, HueSlider, selection as IcoMoonSelection, Icon, IconButton, IconButtonButton, IconButtonInnerChild, IconMenu, IconToggle, IconToggleButton, IconToggleText, Image, ImageLoader, InjectGlobalStyles, Input$1 as Input, InputLabel, InputsGroup, InputsGroupContainer, InputsGroupELement, InputsGroupElements, InputsGroupLabel, ItemIcon, JSONEditor, JSONEditorContainer, JSONEditorLinearProgress, JSONEditorWrapper, Label$2 as Label, LabeledTextarea, LeftSide, LinearLoader, LinearProgress, Link, ListTransition, LoadingContainer, MAX_NUMBER, MB_FILE_SIZE, MIN_NUMBER, MaskedComponent, Menu, MenuContainer, Message, Notifications, NumberInput, NumberRangeContainer, NumberRangeInputContainer, NumberRangeSlider, NumberRangeSliderContainer, NumberRangeSliderLabel, OpacitySlider, Option, PaginationFull, PaginationSimple, Paragraph, PasswordToggle, Placeholder, Popover, PopoverTransition, Popup$1 as Popup, Portal, Preview, Radio$1 as Radio, RadioGroup, RaisedButton, RangeDateInput, RangeDatePicker, RangeInputContainer, RangeNumberInput, RangeSliderButtons, RangeSliderContainer, RatioLine, RegularIconButton, SEPARATED_TIME_FORMAT, SearchField, SearchInputContainer, SimpleInput, Slider, SliderContainer$2 as SliderContainer, HandleContainer as SliderHandle, Label$1 as SliderLabel, LowerTrackBackground as SliderLowerTrackBackground, SliderPopover, Track as SliderTrack, SortToggle, SpecialBodyCellContent, SpecialHeadCellContent, Spinner, Stepper, Switch, SwitchArea, SwitchContainer, SwitchTitle, Switcher, SymbolLibrary, SymbolPreview, THROTTLING_DELAY, TIME_FORMAT, TabBlock, TabContainer, TabContainerLine, Table, TableComponent, TableContainer, TableFooter, TableFooterControls, TableFooterSummary, Tabs, Tbody, Text, Textarea, ThemeProvider, Tippy, TitleText, Tooltip, TooltipContent, Tree, TreeContainer, TreeContent, TreeDescription, TreeItem, TreeItems, TreeRow, TreeText, UnicodeBig, UnicodeSmall, Uploader, UploaderTitle, ValueLink, WaitingButton, WaitingButtonComponent, Wizard, addItem, borderRadius, buttonMixin, clamp, cloneWithRefs, collapseDuration, combineRefs, createColorOrMono, createIconColors, createLinkStates, createMessageColors, createTheme, createToggleStates, createVariants, cropLeftBorderRadius, cropRightBorderRadius, theme$1 as darkTheme, dateFormat, defaultOptions, defaultStub, theme as defaultTheme, fileSizeFormat, fonts, getChipColor, getColorOrMono, getHighlightParts, getIconColors, getLinkColors, getLocale, getMessageColors, getNumberFromPixels, getRealChildren, getTagColor, getTextWidth, getTheme, getToggleStates, getUnicodeFromString, getVariant, horizontalDivider, iconTypes, injectIcon, isDefined, isDescendant, isDomNode, isNumeric, isOutside, isReactDomElement, isReactElement, isSimpleStyledComponent, isTextFitElementWidth, isTouchDevice, isValidUrl, mapToSimpleOption, palette, photo, preventDefault, randomInteger, randomRgba, rangeValueFormat, removeItem, sendRefSafety, setWidth$2 as setWidth, shadows, sortNumbers, stub, textOverflowEllipsisMixin, toNumber, toSimpleOption, transition, transparencyDark2, transparencyDark4, Transparency_dark8 as transparencyDark8, transparencyLight2, transparencyLight4, Transparency_light8 as transparencyLight8, typeId, urlify, useDelayedStyleLoader, useDialogShadow, useDragAndDropEffect, useEventListener, useForceUpdate, useMounted, useMutationObserver, usePrevValue, useStyleLoader, useThrottling, useToggle, useUndraggableEffect, useUnselectableEffect, verticalDivider, withLabel };
|
|
23203
23229
|
//# sourceMappingURL=uilib-gl.esm.js.map
|