@nypl/design-system-react-components 1.0.3-beta → 1.0.3

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.
@@ -1124,6 +1124,7 @@ var getElementsFromData = function getElementsFromData(data, id) {
1124
1124
  var bgColorByAccordionType = colorMap[content.accordionType];
1125
1125
  return React.createElement(React.Fragment, null, React.createElement(react.AccordionButton, {
1126
1126
  id: id + "-button-" + index,
1127
+ borderColor: "ui.gray.medium",
1127
1128
  padding: multiplePadding,
1128
1129
  bg: !content.accordionType ? colorMap["default"] : bgColorByAccordionType,
1129
1130
  _expanded: {
@@ -1134,6 +1135,7 @@ var getElementsFromData = function getElementsFromData(data, id) {
1134
1135
  borderColor: "ui.gray.dark"
1135
1136
  }
1136
1137
  }, React.createElement(react.Box, {
1138
+ as: "span",
1137
1139
  flex: "1",
1138
1140
  fontSize: multipleFontSize,
1139
1141
  textAlign: "left"
@@ -1657,7 +1659,8 @@ var Image = /*#__PURE__*/react.chakra(function (props) {
1657
1659
 
1658
1660
  var _excluded$B = ["children"],
1659
1661
  _excluded2$1 = ["bottomBorder", "children", "isCentered", "layout", "topBorder"],
1660
- _excluded3 = ["backgroundColor", "children", "className", "foregroundColor", "id", "imageProps", "isAlignedRightActions", "isBordered", "isCentered", "layout", "mainActionLink"];
1662
+ _excluded3 = ["className", "children", "id", "mainActionLink", "styles"],
1663
+ _excluded4 = ["backgroundColor", "children", "className", "foregroundColor", "id", "imageProps", "isAlignedRightActions", "isBordered", "isCentered", "layout", "mainActionLink"];
1661
1664
  /**
1662
1665
  * The CardImage component is used internally in the `Card` component. It
1663
1666
  * renders an `Image` component but with overriding styles specific to the
@@ -1732,20 +1735,32 @@ var CardActions = /*#__PURE__*/react.chakra(function (props) {
1732
1735
  * `CardLinkOverlay` component to provide a clickable overlay.
1733
1736
  */
1734
1737
 
1735
- function CardLinkBox(_ref) {
1736
- var children = _ref.children,
1737
- mainActionLink = _ref.mainActionLink;
1738
- return mainActionLink ? React.createElement(react.LinkBox, null, children) : React.createElement(React.Fragment, null, children);
1739
- }
1738
+ var CardWrapper = /*#__PURE__*/react.chakra(function (_ref) {
1739
+ var className = _ref.className,
1740
+ children = _ref.children,
1741
+ id = _ref.id,
1742
+ mainActionLink = _ref.mainActionLink,
1743
+ styles = _ref.styles,
1744
+ rest = _objectWithoutPropertiesLoose(_ref, _excluded3);
1745
+
1746
+ return mainActionLink ? React.createElement(react.LinkBox, Object.assign({
1747
+ id: id,
1748
+ className: className,
1749
+ sx: styles
1750
+ }, rest), children) : React.createElement(react.Box, Object.assign({
1751
+ id: id,
1752
+ className: className,
1753
+ __css: styles
1754
+ }, rest), children);
1755
+ });
1740
1756
  /**
1741
1757
  * If `mainActionLink` is passed, then this adds Chakra's `LinkOverlay` around
1742
1758
  * text that should be linked, in this case the `CardHeading` text. This works
1743
- * together with the `CardLinkBox` component to provide a clickable overlay to
1759
+ * together with the `CardWrapper` component to provide a clickable overlay to
1744
1760
  * the `Card` component while still allowing links in the `CardActions` to be
1745
1761
  * clickable.
1746
1762
  */
1747
1763
 
1748
-
1749
1764
  function CardLinkOverlay(_ref2) {
1750
1765
  var children = _ref2.children,
1751
1766
  mainActionLink = _ref2.mainActionLink;
@@ -1779,36 +1794,19 @@ var Card = /*#__PURE__*/react.chakra(function (props) {
1779
1794
  _props$layout = props.layout,
1780
1795
  layout = _props$layout === void 0 ? "column" : _props$layout,
1781
1796
  mainActionLink = props.mainActionLink,
1782
- rest = _objectWithoutPropertiesLoose(props, _excluded3);
1797
+ rest = _objectWithoutPropertiesLoose(props, _excluded4);
1783
1798
 
1784
1799
  var hasImage = imageProps.src || imageProps.component;
1785
-
1786
- var _React$useState = React.useState(imageProps.size || "default"),
1787
- finalImageSize = _React$useState[0],
1788
- setFinalImageSize = _React$useState[1];
1789
-
1790
1800
  var finalImageAspectRatio = imageProps.component ? "original" : imageProps.aspectRatio;
1791
1801
  var customColors = {};
1792
1802
  var cardContents = [];
1793
1803
  var cardRightContents = [];
1794
- var windowDimensions = useWindowSize();
1795
1804
  var cardHeadingCount = 0;
1796
1805
 
1797
1806
  if (imageProps.component && imageProps.aspectRatio) {
1798
1807
  console.warn("NYPL Reservoir Card: Both the `imageProps.component` and `imageProps.aspectRatio` " + "props were set but `imageProps.aspectRatio` will be ignored in favor " + "of the aspect ratio on `imageProps.component` prop.");
1799
- } // The `Card`'s image should always display as 100% width on mobile. To
1800
- // achieve this, we set the size to `"default"` only when the
1801
- // viewport is less than "600px". Otherwise, we set the size to
1802
- // the value passed in via `imageSize`.
1803
-
1808
+ }
1804
1809
 
1805
- React.useEffect(function () {
1806
- if (windowDimensions.width < 600) {
1807
- setFinalImageSize("default");
1808
- } else {
1809
- setFinalImageSize(imageProps.size);
1810
- }
1811
- }, [windowDimensions.width, imageProps.size]);
1812
1810
  backgroundColor && (customColors["backgroundColor"] = backgroundColor);
1813
1811
  foregroundColor && (customColors["color"] = foregroundColor);
1814
1812
  var styles = react.useMultiStyleConfig("Card", {
@@ -1863,12 +1861,11 @@ var Card = /*#__PURE__*/react.chakra(function (props) {
1863
1861
  }
1864
1862
  }
1865
1863
  });
1866
- return React.createElement(CardLinkBox, {
1867
- mainActionLink: mainActionLink
1868
- }, React.createElement(react.Box, Object.assign({
1864
+ return React.createElement(CardWrapper, Object.assign({
1869
1865
  id: id,
1870
1866
  className: className,
1871
- __css: _extends({}, styles, customColors)
1867
+ mainActionLink: mainActionLink,
1868
+ styles: _extends({}, styles, customColors)
1872
1869
  }, rest), hasImage && React.createElement(CardImage, {
1873
1870
  alt: imageProps.alt,
1874
1871
  aspectRatio: finalImageAspectRatio,
@@ -1877,7 +1874,7 @@ var Card = /*#__PURE__*/react.chakra(function (props) {
1877
1874
  credit: imageProps.credit,
1878
1875
  isAtEnd: imageProps.isAtEnd,
1879
1876
  layout: layout,
1880
- size: finalImageSize,
1877
+ size: imageProps.size,
1881
1878
  src: imageProps.src ? imageProps.src : undefined
1882
1879
  }), React.createElement(react.Box, {
1883
1880
  className: "card-body",
@@ -1885,7 +1882,7 @@ var Card = /*#__PURE__*/react.chakra(function (props) {
1885
1882
  }, cardContents), cardRightContents.length ? React.createElement(react.Box, {
1886
1883
  className: "card-right",
1887
1884
  __css: _extends({}, styles.body, styles.actions)
1888
- }, cardRightContents) : null));
1885
+ }, cardRightContents) : null);
1889
1886
  });
1890
1887
 
1891
1888
  var _excluded$C = ["ariaAtomic", "ariaLive", "className", "id", "isInvalid", "text"];
@@ -4299,11 +4296,6 @@ var Select = {
4299
4296
  },
4300
4297
  borderRightRadius: {
4301
4298
  md: "none"
4302
- },
4303
- _hover: {
4304
- borderRightColor: {
4305
- md: "transparent"
4306
- }
4307
4299
  }
4308
4300
  }
4309
4301
  }
@@ -5563,34 +5555,142 @@ var StatusBadge = {
5563
5555
  }
5564
5556
  };
5565
5557
 
5566
- var baseTHStyles = function baseTHStyles(showRowDividers, columnHeadersTextColor) {
5558
+ var cellBorderColorStyles = {
5559
+ base: "ui.gray.light-cool",
5560
+ md: "ui.gray.medium"
5561
+ };
5562
+ var baseTRStyles = function baseTRStyles(columnHeadersBackgroundColor, showRowDividers, useRowHeaders) {
5563
+ if (columnHeadersBackgroundColor === void 0) {
5564
+ columnHeadersBackgroundColor = "";
5565
+ }
5566
+
5567
5567
  if (showRowDividers === void 0) {
5568
5568
  showRowDividers = false;
5569
5569
  }
5570
5570
 
5571
+ if (useRowHeaders === void 0) {
5572
+ useRowHeaders = false;
5573
+ }
5574
+
5575
+ return {
5576
+ borderBottom: {
5577
+ base: "2px solid",
5578
+ md: 0
5579
+ },
5580
+ borderColor: "ui.gray.medium",
5581
+ display: {
5582
+ base: "block",
5583
+ md: "table-row"
5584
+ },
5585
+ paddingBottom: showRowDividers || columnHeadersBackgroundColor ? 0 : {
5586
+ base: "s",
5587
+ md: "0"
5588
+ },
5589
+ paddingTop: showRowDividers || columnHeadersBackgroundColor || useRowHeaders ? 0 : {
5590
+ base: "s",
5591
+ md: "0"
5592
+ },
5593
+ _first: {
5594
+ borderTop: {
5595
+ base: "2px solid",
5596
+ md: "0"
5597
+ },
5598
+ borderColor: "ui.gray.medium"
5599
+ }
5600
+ };
5601
+ };
5602
+ var baseCellStyles = function baseCellStyles(columnHeadersBackgroundColor, columnHeadersTextColor, showRowDividers, useRowHeaders) {
5603
+ if (columnHeadersBackgroundColor === void 0) {
5604
+ columnHeadersBackgroundColor = "";
5605
+ }
5606
+
5571
5607
  if (columnHeadersTextColor === void 0) {
5572
5608
  columnHeadersTextColor = "";
5573
5609
  }
5574
5610
 
5611
+ if (showRowDividers === void 0) {
5612
+ showRowDividers = false;
5613
+ }
5614
+
5615
+ if (useRowHeaders === void 0) {
5616
+ useRowHeaders = false;
5617
+ }
5618
+
5575
5619
  return {
5576
5620
  border: showRowDividers ? undefined : "none",
5577
- borderBottom: showRowDividers ? undefined : "0px",
5578
- color: columnHeadersTextColor ? columnHeadersTextColor : "ui.black",
5579
- fontSize: "0",
5580
- fontWeight: "bold",
5621
+ borderBottom: showRowDividers ? "1px solid" : "0",
5622
+ borderColor: cellBorderColorStyles,
5623
+ display: {
5624
+ base: "flex",
5625
+ md: "table-cell"
5626
+ },
5627
+ fontSize: {
5628
+ base: "text.caption",
5629
+ lg: "text.default"
5630
+ },
5631
+ gap: "s",
5581
5632
  letterSpacing: "0",
5633
+ lineHeight: 1.5,
5634
+ paddingBottom: {
5635
+ base: "0",
5636
+ md: "s"
5637
+ },
5582
5638
  paddingLeft: 0,
5583
- paddingRight: "m",
5584
- textTransform: "capitalize",
5639
+ paddingRight: {
5640
+ base: "0",
5641
+ md: "m"
5642
+ },
5643
+ paddingTop: {
5644
+ base: "0",
5645
+ md: "s"
5646
+ },
5585
5647
  _first: {
5586
- paddingLeft: showRowDividers ? "m" : null
5648
+ paddingLeft: showRowDividers ? {
5649
+ base: "0",
5650
+ md: "m"
5651
+ } : null,
5652
+ borderBottom: showRowDividers ? {
5653
+ base: "1px solid var(--nypl-colors-ui-light-cool)",
5654
+ md: "1px solid var(--nypl-colors-ui-gray-medium)"
5655
+ } : "none"
5587
5656
  },
5588
5657
  _last: {
5589
- paddingRight: showRowDividers ? "m" : "0"
5658
+ paddingRight: showRowDividers ? {
5659
+ base: "0",
5660
+ md: "m"
5661
+ } : null,
5662
+ borderBottom: showRowDividers ? "1px solid" : "none",
5663
+ borderColor: cellBorderColorStyles
5664
+ },
5665
+ "> span": {
5666
+ flexBasis: "50%",
5667
+ paddingBottom: {
5668
+ base: "s",
5669
+ md: "0"
5670
+ },
5671
+ paddingRight: showRowDividers ? "s" : "0",
5672
+ paddingTop: {
5673
+ base: "s",
5674
+ md: "0"
5675
+ },
5676
+ _first: {
5677
+ bg: columnHeadersBackgroundColor ? columnHeadersBackgroundColor : undefined,
5678
+ color: columnHeadersTextColor ? columnHeadersTextColor : "ui.black",
5679
+ fontWeight: "medium",
5680
+ paddingLeft: columnHeadersBackgroundColor || showRowDividers || useRowHeaders ? "s" : undefined
5681
+ }
5590
5682
  }
5591
5683
  };
5592
5684
  };
5593
- var baseTDStyles = function baseTDStyles(showRowDividers, useRowHeaders) {
5685
+ var baseTHStyles = function baseTHStyles(columnHeadersBackgroundColor, columnHeadersTextColor, showRowDividers, useRowHeaders) {
5686
+ if (columnHeadersBackgroundColor === void 0) {
5687
+ columnHeadersBackgroundColor = "";
5688
+ }
5689
+
5690
+ if (columnHeadersTextColor === void 0) {
5691
+ columnHeadersTextColor = "";
5692
+ }
5693
+
5594
5694
  if (showRowDividers === void 0) {
5595
5695
  showRowDividers = false;
5596
5696
  }
@@ -5599,22 +5699,66 @@ var baseTDStyles = function baseTDStyles(showRowDividers, useRowHeaders) {
5599
5699
  useRowHeaders = false;
5600
5700
  }
5601
5701
 
5602
- return {
5603
- border: showRowDividers ? undefined : "none",
5604
- borderBottom: showRowDividers ? undefined : "0px",
5605
- letterSpacing: "0",
5606
- paddingLeft: 0,
5607
- paddingRight: "m",
5702
+ return _extends({}, baseCellStyles(columnHeadersBackgroundColor, columnHeadersTextColor, showRowDividers, useRowHeaders), {
5703
+ color: columnHeadersTextColor ? columnHeadersTextColor : "ui.black",
5704
+ fontWeight: "medium",
5705
+ textTransform: "capitalize",
5706
+ _first: {
5707
+ paddingLeft: showRowDividers || columnHeadersBackgroundColor ? {
5708
+ base: "0",
5709
+ md: "m"
5710
+ } : {
5711
+ base: "0",
5712
+ md: undefined
5713
+ }
5714
+ }
5715
+ });
5716
+ };
5717
+ var baseTDStyles = function baseTDStyles(columnHeadersBackgroundColor, columnHeadersTextColor, showRowDividers, useRowHeaders) {
5718
+ if (columnHeadersBackgroundColor === void 0) {
5719
+ columnHeadersBackgroundColor = "";
5720
+ }
5721
+
5722
+ if (columnHeadersTextColor === void 0) {
5723
+ columnHeadersTextColor = "";
5724
+ }
5725
+
5726
+ if (showRowDividers === void 0) {
5727
+ showRowDividers = false;
5728
+ }
5729
+
5730
+ if (useRowHeaders === void 0) {
5731
+ useRowHeaders = false;
5732
+ }
5733
+
5734
+ return _extends({}, baseCellStyles(columnHeadersBackgroundColor, columnHeadersTextColor, showRowDividers, useRowHeaders), {
5608
5735
  _first: {
5609
- paddingLeft: showRowDividers && !useRowHeaders ? "m" : null
5736
+ paddingLeft: showRowDividers && !useRowHeaders ? {
5737
+ base: "0",
5738
+ md: "m"
5739
+ } : columnHeadersBackgroundColor && !useRowHeaders ? {
5740
+ base: "0",
5741
+ md: "m"
5742
+ } : {
5743
+ base: "0",
5744
+ md: undefined
5745
+ }
5610
5746
  },
5611
5747
  _last: {
5612
- paddingRight: showRowDividers ? "m" : "0"
5748
+ borderBottom: showRowDividers ? {
5749
+ base: 0,
5750
+ md: "1px solid"
5751
+ } : {
5752
+ base: 0,
5753
+ md: undefined
5754
+ },
5755
+ borderColor: cellBorderColorStyles
5613
5756
  }
5614
- };
5757
+ });
5615
5758
  };
5616
5759
  var baseStyle$3 = function baseStyle(_ref) {
5617
- var columnHeadersTextColor = _ref.columnHeadersTextColor,
5760
+ var columnHeadersBackgroundColor = _ref.columnHeadersBackgroundColor,
5761
+ columnHeadersTextColor = _ref.columnHeadersTextColor,
5618
5762
  showRowDividers = _ref.showRowDividers,
5619
5763
  useRowHeaders = _ref.useRowHeaders;
5620
5764
  return {
@@ -5624,11 +5768,22 @@ var baseStyle$3 = function baseStyle(_ref) {
5624
5768
  // have text color black.
5625
5769
  tbody: {
5626
5770
  th: {
5627
- color: "var(--nypl-colors-ui-black)"
5771
+ color: "var(--nypl-colors-ui-black)",
5772
+ backgroundColor: useRowHeaders ? {
5773
+ base: "ui.gray.x-light-cool",
5774
+ md: "unset"
5775
+ } : undefined
5776
+ }
5777
+ },
5778
+ thead: {
5779
+ display: {
5780
+ base: "none",
5781
+ md: "table-header-group"
5628
5782
  }
5629
5783
  },
5630
- th: baseTHStyles(showRowDividers, columnHeadersTextColor),
5631
- td: baseTDStyles(showRowDividers, useRowHeaders),
5784
+ tr: baseTRStyles(columnHeadersBackgroundColor, showRowDividers, useRowHeaders),
5785
+ th: baseTHStyles(columnHeadersBackgroundColor, columnHeadersTextColor, showRowDividers, useRowHeaders),
5786
+ td: baseTDStyles(columnHeadersBackgroundColor, columnHeadersTextColor, showRowDividers, useRowHeaders),
5632
5787
  caption: {
5633
5788
  captionSide: "top",
5634
5789
  color: "ui.black",
@@ -6127,6 +6282,7 @@ var Switch = {
6127
6282
  alignItems: "start",
6128
6283
  opacity: 0.4,
6129
6284
  track: {
6285
+ backgroundColor: "ui.gray.medium",
6130
6286
  border: "1px solid",
6131
6287
  borderColor: "ui.gray.medium",
6132
6288
  p: "1px",
@@ -7353,7 +7509,7 @@ function SvgLogoNyplLionBlack(_ref) {
7353
7509
  })));
7354
7510
  }
7355
7511
 
7356
- var _path$E, _mask, _g$5;
7512
+ var _path$E;
7357
7513
 
7358
7514
  var _excluded$16 = ["title", "titleId"];
7359
7515
 
@@ -7370,7 +7526,7 @@ function SvgLogoNyplLionWhite(_ref) {
7370
7526
 
7371
7527
  return /*#__PURE__*/React.createElement("svg", _extends$M({
7372
7528
  viewBox: "0 0 125 126",
7373
- fill: "#fff",
7529
+ fill: "none",
7374
7530
  xmlns: "http://www.w3.org/2000/svg",
7375
7531
  "aria-labelledby": titleId
7376
7532
  }, props), title ? /*#__PURE__*/React.createElement("title", {
@@ -7378,26 +7534,12 @@ function SvgLogoNyplLionWhite(_ref) {
7378
7534
  }, title) : null, _path$E || (_path$E = /*#__PURE__*/React.createElement("path", {
7379
7535
  fillRule: "evenodd",
7380
7536
  clipRule: "evenodd",
7381
- d: "M122.666 79.082l-.006.019c-.499 1.582-1.133 3.595-2.402 2.672a59.23 59.23 0 00-12.99-7.207c-.275-.07-.24-.448-.14-.653.359-.81.591-1.67.69-2.551a6.232 6.232 0 011.239-2.243 22.616 22.616 0 002.338-8.203 20.544 20.544 0 00-.38-6.514 13.52 13.52 0 01-.789-2.86c0-.498.128-.995.262-1.518.118-.457.241-.934.287-1.448a8.87 8.87 0 00-5.85-6.758 275.96 275.96 0 00-4.997-2.249c-3.374-1.492-6.85-3.03-10.356-4.888a60.679 60.679 0 01-7.779-6.892 55.953 55.953 0 00-13.284-5.756 1.272 1.272 0 01-1.069-1.067 31.14 31.14 0 00-11.616-18.07c-2.168-1.69.295-2.657 3.293-2.791 20.115-1.132 39.54 7.499 52.152 23.172a62.1 62.1 0 0111.397 55.805zM29.501 8.846c-.797.53-.797 1.898 1.145 2.096 6.959.573 13.531 3.298 18.72 7.762.339.353.792.587 1.287.665.489.04 1.05.022 1.713 0 .993-.031 2.218-.071 3.782.067 1.262.103 2.516.281 3.754.535 3.41.603-1.7-6.866-7.438-10.798A27.838 27.838 0 0040.96 4.042a4.562 4.562 0 00-2.523.4 47.777 47.777 0 00-8.936 4.404zm-13 11.099c.373-.435.87-.75 1.428-.905a37.673 37.673 0 0123.522 1.974c1.393.604 2.04 1.45 1.121 2.04a51.105 51.105 0 00-6.67 4.717 3.228 3.228 0 01-2.178.435A36.309 36.309 0 0011.63 30.77c-1.7.701-3.201-.266-2.416-1.538a54.633 54.633 0 017.287-9.287zm81.78 23.683c-2.133-1.048-4.559-1.853-6.98-2.656-2.815-.934-5.624-1.866-7.958-3.175-1.581-.874-2.984-2.005-4.39-3.14-1.684-1.356-3.373-2.718-5.383-3.653a71.807 71.807 0 00-11.654-4.254 20.684 20.684 0 00-16.407 2.365 16.644 16.644 0 00-6.186 16.461 19.583 19.583 0 003.14 8.31c4.474 6.333 11.625 9.72 18.782 13.109 3.231 1.53 6.464 3.061 9.452 4.864a.625.625 0 00.88-.076l.003-.003.06-.045a12.757 12.757 0 015.64-5.454 28.588 28.588 0 0110.87-.585c3.325.64 6.765-.158 9.466-2.196a6.74 6.74 0 00-.992-8.712c-.748-.43-1.699-.636-2.653-.842-.792-.172-1.586-.344-2.268-.645a5.202 5.202 0 01-2.53-2.777 5.015 5.015 0 01-.308-4.08 2.84 2.84 0 013.349-.496c2.865.816 5.896.864 8.786.139a4.326 4.326 0 00-2.719-2.46zm-24.235-1.34a4.164 4.164 0 01-1.915 3.293 4.495 4.495 0 01-2.565-1.443 28.23 28.23 0 00-4.753-1.75 6.177 6.177 0 01-3.998-2.48c-.854-2.057 1.16-3.019 2.63-3.5a16.046 16.046 0 014.176-.669 6.278 6.278 0 016.048 1.919c.52 1.486.65 3.08.377 4.63zm-72.01 5.853a2.742 2.742 0 00-.696 1.619 59.402 59.402 0 002.083 32.42c.63 1.574 3.097.966 3.027-2.411.018-.624.026-1.314.034-2.064.102-9.222.302-27.42 21.493-40.004 1.322-.757 2.431-1.514 1.877-2.824a3.366 3.366 0 00-3.531-.623c-9.438 1.824-17.987 6.712-24.287 13.887zm100.09 8.538c0 .177.114 1.012.152 1.254a13.47 13.47 0 01-.277 4.979.713.713 0 00.223.558 8.308 8.308 0 012.91 3.413c.092.242.39.101.542-.211a16.316 16.316 0 00.184-12.429l-.008-.015c-.044-.084-.155-.296-.328-.196-.695.379-1.357.81-1.978 1.288-.6.322-1.091.793-1.42 1.36zM81.61 73.897c.239-.94.817-1.75 1.615-2.265a15.306 15.306 0 016.623-1.219 19.97 19.97 0 006.69-1.148 3.977 3.977 0 013.665-1.183c.7.351 1.215 1 1.411 1.777.306.858.433 1.772.371 2.684a82.29 82.29 0 01-3.094 7.487c.01.481-.119.955-.371 1.36a11.028 11.028 0 01-8.809 1.183 9.228 9.228 0 01-3.162-.56 6.333 6.333 0 01-1.581-1.323c-.776-.748-1.31-1.366-1.973-2.133-.23-.266-.475-.55-.75-.863A5.407 5.407 0 0181 76.056c.145-.736.35-1.458.61-2.16zm-61.686 33.61a9.874 9.874 0 002.494 3.102 61.69 61.69 0 0034.798 14.369c2.475.204 2.749-.689 2.784-2.105a43.057 43.057 0 00-9.589-18.179c-1.23-1.608-3.467-4.047-6.147-6.967-6.468-7.048-15.508-16.9-19.152-24.634a24.816 24.816 0 01-2.714-17.954c.823-3.003-1.686-4.798-4.056-.898-7.458 11.142-4.225 43.984 1.582 53.266zM30.107 65.19a26.819 26.819 0 01.378-21.694c.89-1.676 1.745-2.77 2.88-2.428 1.233.341 1.492 1.608 1.68 3.957 1.269 19.363 12.987 25.862 27.689 32.708a84.543 84.543 0 0135.91 29.117c1.68 2.359 1.919 3.798.034 5.163a60.152 60.152 0 01-21.829 9.892c-1.338.307-2.74.07-3.94-3.012-6.754-17.427-16.015-24.947-24.59-31.91-7.177-5.827-13.872-11.264-18.212-21.793zm72.632 39.117c.611 1.218 1.71 2.67 3.594.812a60.34 60.34 0 009.249-12.215 2.214 2.214 0 00.239-2.167 37.68 37.68 0 00-7.669-8.257 14.577 14.577 0 00-3.976-2.334 3.434 3.434 0 00-1.129-.137c-1.043.126-1.168.593-1.57 2.095-.034.129-.07.265-.11.41a7.431 7.431 0 01-3.424 4.803 6.76 6.76 0 01-3.733.612.97.97 0 00-1.094.467.938.938 0 00.204 1.157 55.145 55.145 0 019.419 14.754z"
7382
- })), _mask || (_mask = /*#__PURE__*/React.createElement("mask", {
7383
- id: "logo-nypl-lion-white_svg__a",
7384
- maskUnits: "userSpaceOnUse",
7385
- x: 0,
7386
- y: 0,
7387
- width: 125,
7388
- height: 126
7389
- }, /*#__PURE__*/React.createElement("path", {
7390
- fillRule: "evenodd",
7391
- clipRule: "evenodd",
7392
- d: "M122.666 79.082l-.006.019c-.499 1.582-1.133 3.595-2.402 2.672a59.23 59.23 0 00-12.99-7.207c-.275-.07-.24-.448-.14-.653.359-.81.591-1.67.69-2.551a6.232 6.232 0 011.239-2.243 22.616 22.616 0 002.338-8.203 20.544 20.544 0 00-.38-6.514 13.52 13.52 0 01-.789-2.86c0-.498.128-.995.262-1.518.118-.457.241-.934.287-1.448a8.87 8.87 0 00-5.85-6.758 275.96 275.96 0 00-4.997-2.249c-3.374-1.492-6.85-3.03-10.356-4.888a60.679 60.679 0 01-7.779-6.892 55.953 55.953 0 00-13.284-5.756 1.272 1.272 0 01-1.069-1.067 31.14 31.14 0 00-11.616-18.07c-2.168-1.69.295-2.657 3.293-2.791 20.115-1.132 39.54 7.499 52.152 23.172a62.1 62.1 0 0111.397 55.805zM29.501 8.846c-.797.53-.797 1.898 1.145 2.096 6.959.573 13.531 3.298 18.72 7.762.339.353.792.587 1.287.665.489.04 1.05.022 1.713 0 .993-.031 2.218-.071 3.782.067 1.262.103 2.516.281 3.754.535 3.41.603-1.7-6.866-7.438-10.798A27.838 27.838 0 0040.96 4.042a4.562 4.562 0 00-2.523.4 47.777 47.777 0 00-8.936 4.404zm-13 11.099c.373-.435.87-.75 1.428-.905a37.673 37.673 0 0123.522 1.974c1.393.604 2.04 1.45 1.121 2.04a51.105 51.105 0 00-6.67 4.717 3.228 3.228 0 01-2.178.435A36.309 36.309 0 0011.63 30.77c-1.7.701-3.201-.266-2.416-1.538a54.633 54.633 0 017.287-9.287zm81.78 23.683c-2.133-1.048-4.559-1.853-6.98-2.656-2.815-.934-5.624-1.866-7.958-3.175-1.581-.874-2.984-2.005-4.39-3.14-1.684-1.356-3.373-2.718-5.383-3.653a71.807 71.807 0 00-11.654-4.254 20.684 20.684 0 00-16.407 2.365 16.644 16.644 0 00-6.186 16.461 19.583 19.583 0 003.14 8.31c4.474 6.333 11.625 9.72 18.782 13.109 3.231 1.53 6.464 3.061 9.452 4.864a.625.625 0 00.88-.076l.003-.003.06-.045a12.757 12.757 0 015.64-5.454 28.588 28.588 0 0110.87-.585c3.325.64 6.765-.158 9.466-2.196a6.74 6.74 0 00-.992-8.712c-.748-.43-1.699-.636-2.653-.842-.792-.172-1.586-.344-2.268-.645a5.202 5.202 0 01-2.53-2.777 5.015 5.015 0 01-.308-4.08 2.84 2.84 0 013.349-.496c2.865.816 5.896.864 8.786.139a4.326 4.326 0 00-2.719-2.46zm-24.235-1.34a4.164 4.164 0 01-1.915 3.293 4.495 4.495 0 01-2.565-1.443 28.23 28.23 0 00-4.753-1.75 6.177 6.177 0 01-3.998-2.48c-.854-2.057 1.16-3.019 2.63-3.5a16.046 16.046 0 014.176-.669 6.278 6.278 0 016.048 1.919c.52 1.486.65 3.08.377 4.63zm-72.01 5.853a2.742 2.742 0 00-.696 1.619 59.402 59.402 0 002.083 32.42c.63 1.574 3.097.966 3.027-2.411.018-.624.026-1.314.034-2.064.102-9.222.302-27.42 21.493-40.004 1.322-.757 2.431-1.514 1.877-2.824a3.366 3.366 0 00-3.531-.623c-9.438 1.824-17.987 6.712-24.287 13.887zm100.09 8.538c0 .177.114 1.012.152 1.254a13.47 13.47 0 01-.277 4.979.713.713 0 00.223.558 8.308 8.308 0 012.91 3.413c.092.242.39.101.542-.211a16.316 16.316 0 00.184-12.429l-.008-.015c-.044-.084-.155-.296-.328-.196-.695.379-1.357.81-1.978 1.288-.6.322-1.091.793-1.42 1.36zM81.61 73.897c.239-.94.817-1.75 1.615-2.265a15.306 15.306 0 016.623-1.219 19.97 19.97 0 006.69-1.148 3.977 3.977 0 013.665-1.183c.7.351 1.215 1 1.411 1.777.306.858.433 1.772.371 2.684a82.29 82.29 0 01-3.094 7.487c.01.481-.119.955-.371 1.36a11.028 11.028 0 01-8.809 1.183 9.228 9.228 0 01-3.162-.56 6.333 6.333 0 01-1.581-1.323c-.776-.748-1.31-1.366-1.973-2.133-.23-.266-.475-.55-.75-.863A5.407 5.407 0 0181 76.056c.145-.736.35-1.458.61-2.16zm-61.686 33.61a9.874 9.874 0 002.494 3.102 61.69 61.69 0 0034.798 14.369c2.475.204 2.749-.689 2.784-2.105a43.057 43.057 0 00-9.589-18.179c-1.23-1.608-3.467-4.047-6.147-6.967-6.468-7.048-15.508-16.9-19.152-24.634a24.816 24.816 0 01-2.714-17.954c.823-3.003-1.686-4.798-4.056-.898-7.458 11.142-4.225 43.984 1.582 53.266zM30.107 65.19a26.819 26.819 0 01.378-21.694c.89-1.676 1.745-2.77 2.88-2.428 1.233.341 1.492 1.608 1.68 3.957 1.269 19.363 12.987 25.862 27.689 32.708a84.543 84.543 0 0135.91 29.117c1.68 2.359 1.919 3.798.034 5.163a60.152 60.152 0 01-21.829 9.892c-1.338.307-2.74.07-3.94-3.012-6.754-17.427-16.015-24.947-24.59-31.91-7.177-5.827-13.872-11.264-18.212-21.793zm72.632 39.117c.611 1.218 1.71 2.67 3.594.812a60.34 60.34 0 009.249-12.215 2.214 2.214 0 00.239-2.167 37.68 37.68 0 00-7.669-8.257 14.577 14.577 0 00-3.976-2.334 3.434 3.434 0 00-1.129-.137c-1.043.126-1.168.593-1.57 2.095-.034.129-.07.265-.11.41a7.431 7.431 0 01-3.424 4.803 6.76 6.76 0 01-3.733.612.97.97 0 00-1.094.467.938.938 0 00.204 1.157 55.145 55.145 0 019.419 14.754z"
7393
- }))), _g$5 || (_g$5 = /*#__PURE__*/React.createElement("g", {
7394
- mask: "url(#logo-nypl-lion-white_svg__a)"
7395
- }, /*#__PURE__*/React.createElement("path", {
7396
- d: "M0-.994h125v126H0z"
7397
- }))));
7537
+ d: "M122.666 79.082l-.006.019c-.499 1.582-1.133 3.595-2.402 2.672a59.23 59.23 0 00-12.99-7.207c-.275-.07-.24-.448-.14-.653.359-.81.591-1.67.69-2.551a6.232 6.232 0 011.239-2.243 22.616 22.616 0 002.338-8.203 20.544 20.544 0 00-.38-6.514 13.52 13.52 0 01-.789-2.86c0-.498.128-.995.262-1.518.118-.457.241-.934.287-1.448a8.87 8.87 0 00-5.85-6.758 275.96 275.96 0 00-4.997-2.249c-3.374-1.492-6.85-3.03-10.356-4.888a60.679 60.679 0 01-7.779-6.892 55.953 55.953 0 00-13.284-5.756 1.272 1.272 0 01-1.069-1.067 31.14 31.14 0 00-11.616-18.07c-2.168-1.69.295-2.657 3.293-2.791 20.115-1.132 39.54 7.499 52.152 23.172a62.1 62.1 0 0111.397 55.805zM29.501 8.846c-.797.53-.797 1.898 1.145 2.096 6.959.573 13.531 3.298 18.72 7.762.339.353.792.587 1.287.665.489.04 1.05.022 1.713 0 .993-.031 2.218-.071 3.782.067 1.262.103 2.516.281 3.754.535 3.41.603-1.7-6.866-7.438-10.798A27.838 27.838 0 0040.96 4.042a4.562 4.562 0 00-2.523.4 47.777 47.777 0 00-8.936 4.404zm-13 11.099c.373-.435.87-.75 1.428-.905a37.673 37.673 0 0123.522 1.974c1.393.604 2.04 1.45 1.121 2.04a51.105 51.105 0 00-6.67 4.717 3.228 3.228 0 01-2.178.435A36.309 36.309 0 0011.63 30.77c-1.7.701-3.201-.266-2.416-1.538a54.633 54.633 0 017.287-9.287zm81.78 23.683c-2.133-1.048-4.559-1.853-6.98-2.656-2.815-.934-5.624-1.866-7.958-3.175-1.581-.874-2.984-2.005-4.39-3.14-1.684-1.356-3.373-2.718-5.383-3.653a71.807 71.807 0 00-11.654-4.254 20.684 20.684 0 00-16.407 2.365 16.644 16.644 0 00-6.186 16.461 19.583 19.583 0 003.14 8.31c4.474 6.333 11.625 9.72 18.782 13.109 3.231 1.53 6.464 3.061 9.452 4.864a.625.625 0 00.88-.076l.003-.003.06-.045a12.757 12.757 0 015.64-5.454 28.588 28.588 0 0110.87-.585c3.325.64 6.765-.158 9.466-2.196a6.74 6.74 0 00-.992-8.712c-.748-.43-1.699-.636-2.653-.842-.792-.172-1.586-.344-2.268-.645a5.202 5.202 0 01-2.53-2.777 5.015 5.015 0 01-.308-4.08 2.84 2.84 0 013.349-.496c2.865.816 5.896.864 8.786.139a4.326 4.326 0 00-2.719-2.46zm-24.235-1.34a4.164 4.164 0 01-1.915 3.293 4.495 4.495 0 01-2.565-1.443 28.23 28.23 0 00-4.753-1.75 6.177 6.177 0 01-3.998-2.48c-.854-2.057 1.16-3.019 2.63-3.5a16.046 16.046 0 014.176-.669 6.278 6.278 0 016.048 1.919c.52 1.486.65 3.08.377 4.63zm-72.01 5.853a2.742 2.742 0 00-.696 1.619 59.402 59.402 0 002.083 32.42c.63 1.574 3.097.966 3.027-2.411.018-.624.026-1.314.034-2.064.102-9.222.302-27.42 21.493-40.004 1.322-.757 2.431-1.514 1.877-2.824a3.366 3.366 0 00-3.531-.623c-9.438 1.824-17.987 6.712-24.287 13.887zm100.09 8.538c0 .177.114 1.012.152 1.254a13.47 13.47 0 01-.277 4.979.713.713 0 00.223.558 8.308 8.308 0 012.91 3.413c.092.242.39.101.542-.211a16.316 16.316 0 00.184-12.429l-.008-.015c-.044-.084-.155-.296-.328-.196-.695.379-1.357.81-1.978 1.288-.6.322-1.091.793-1.42 1.36zM81.61 73.897c.239-.94.817-1.75 1.615-2.265a15.306 15.306 0 016.623-1.219 19.97 19.97 0 006.69-1.148 3.977 3.977 0 013.665-1.183c.7.351 1.215 1 1.411 1.777.306.858.433 1.772.371 2.684a82.29 82.29 0 01-3.094 7.487c.01.481-.119.955-.371 1.36a11.028 11.028 0 01-8.809 1.183 9.228 9.228 0 01-3.162-.56 6.333 6.333 0 01-1.581-1.323c-.776-.748-1.31-1.366-1.973-2.133-.23-.266-.475-.55-.75-.863A5.407 5.407 0 0181 76.056c.145-.736.35-1.458.61-2.16zm-61.686 33.61a9.874 9.874 0 002.494 3.102 61.69 61.69 0 0034.798 14.369c2.475.204 2.749-.689 2.784-2.105a43.057 43.057 0 00-9.589-18.179c-1.23-1.608-3.467-4.047-6.147-6.967-6.468-7.048-15.508-16.9-19.152-24.634a24.816 24.816 0 01-2.714-17.954c.823-3.003-1.686-4.798-4.056-.898-7.458 11.142-4.225 43.984 1.582 53.266zM30.107 65.19a26.819 26.819 0 01.378-21.694c.89-1.676 1.745-2.77 2.88-2.428 1.233.341 1.492 1.608 1.68 3.957 1.269 19.363 12.987 25.862 27.689 32.708a84.543 84.543 0 0135.91 29.117c1.68 2.359 1.919 3.798.034 5.163a60.152 60.152 0 01-21.829 9.892c-1.338.307-2.74.07-3.94-3.012-6.754-17.427-16.015-24.947-24.59-31.91-7.177-5.827-13.872-11.264-18.212-21.793zm72.632 39.117c.611 1.218 1.71 2.67 3.594.812a60.34 60.34 0 009.249-12.215 2.214 2.214 0 00.239-2.167 37.68 37.68 0 00-7.669-8.257 14.577 14.577 0 00-3.976-2.334 3.434 3.434 0 00-1.129-.137c-1.043.126-1.168.593-1.57 2.095-.034.129-.07.265-.11.41a7.431 7.431 0 01-3.424 4.803 6.76 6.76 0 01-3.733.612.97.97 0 00-1.094.467.938.938 0 00.204 1.157 55.145 55.145 0 019.419 14.754z",
7538
+ fill: "#fff"
7539
+ })));
7398
7540
  }
7399
7541
 
7400
- var _g$6, _defs$2;
7542
+ var _path$F, _path2$j, _path3$e, _path4$3, _path5$2, _path6$2, _path7$2, _path8$1, _path9$1, _path10$1, _path11$1, _path12$1, _path13$1, _path14, _path15;
7401
7543
 
7402
7544
  var _excluded$17 = ["title", "titleId"];
7403
7545
 
@@ -7407,58 +7549,81 @@ function _objectWithoutProperties$M(source, excluded) { if (source == null) retu
7407
7549
 
7408
7550
  function _objectWithoutPropertiesLoose$N(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
7409
7551
 
7410
- function SvgLogoOpenebooksColor(_ref) {
7552
+ function SvgLogoNyplTextBlack(_ref) {
7411
7553
  var title = _ref.title,
7412
7554
  titleId = _ref.titleId,
7413
7555
  props = _objectWithoutProperties$M(_ref, _excluded$17);
7414
7556
 
7415
7557
  return /*#__PURE__*/React.createElement("svg", _extends$N({
7416
- viewBox: "0 0 152 139",
7558
+ viewBox: "0 0 201 165",
7417
7559
  fill: "none",
7418
7560
  xmlns: "http://www.w3.org/2000/svg",
7419
7561
  "aria-labelledby": titleId
7420
7562
  }, props), title ? /*#__PURE__*/React.createElement("title", {
7421
7563
  id: titleId
7422
- }, title) : null, _g$6 || (_g$6 = /*#__PURE__*/React.createElement("g", {
7423
- clipPath: "url(#logo-openebooks-color_svg__clip0_53471_41906)"
7424
- }, /*#__PURE__*/React.createElement("path", {
7425
- d: "M130.79 29.541H20.99a5.667 5.667 0 00-5.673 5.662v98.138a5.667 5.667 0 005.673 5.661h109.8a5.667 5.667 0 005.672-5.661V35.202a5.666 5.666 0 00-5.672-5.66z",
7426
- fill: "#012F53"
7427
- }), /*#__PURE__*/React.createElement("path", {
7428
- d: "M76 7.79S43.52-12.182-.008 11.842v111.332s22.226-23.121 58.783-13.642V30.593h34.45v78.939c36.559-9.473 58.783 13.636 58.783 13.636V11.842C108.482-12.182 76 7.79 76 7.79z",
7429
- fill: "url(#logo-openebooks-color_svg__paint0_linear_53471_41906)"
7430
- }), /*#__PURE__*/React.createElement("path", {
7431
- d: "M13.312 98.983c19.216-7.728 38.432-8.113 57.65 0V20.067c-18.895-8.814-38.117-8.959-57.65 0v78.915zM80.102 98.983c19.216-7.728 38.432-8.113 57.65 0V20.067c-18.905-8.814-38.117-8.959-57.65 0v78.915z",
7432
- fill: "#fff"
7433
- }))), _defs$2 || (_defs$2 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
7434
- id: "logo-openebooks-color_svg__paint0_linear_53471_41906",
7435
- x1: 76.519,
7436
- y1: 132.496,
7437
- x2: 75.513,
7438
- y2: 5.94,
7439
- gradientUnits: "userSpaceOnUse"
7440
- }, /*#__PURE__*/React.createElement("stop", {
7441
- offset: 0.15,
7442
- stopColor: "#8AC33E"
7443
- }), /*#__PURE__*/React.createElement("stop", {
7444
- offset: 0.3,
7445
- stopColor: "#5F9445"
7446
- }), /*#__PURE__*/React.createElement("stop", {
7447
- offset: 0.47,
7448
- stopColor: "#37694B"
7449
- }), /*#__PURE__*/React.createElement("stop", {
7450
- offset: 0.62,
7451
- stopColor: "#19494F"
7452
- }), /*#__PURE__*/React.createElement("stop", {
7453
- offset: 0.74,
7454
- stopColor: "#073652"
7455
- }), /*#__PURE__*/React.createElement("stop", {
7456
- offset: 0.83,
7457
- stopColor: "#012F53"
7458
- })))));
7564
+ }, title) : null, _path$F || (_path$F = /*#__PURE__*/React.createElement("path", {
7565
+ d: "M1.661 3.034h3.03l22.094 32.05V3.034h2.865v37.07h-2.81L4.526 7.834v32.27h-2.81V3.034h-.055z",
7566
+ fill: "#000"
7567
+ })), _path2$j || (_path2$j = /*#__PURE__*/React.createElement("path", {
7568
+ fillRule: "evenodd",
7569
+ clipRule: "evenodd",
7570
+ d: "M46.895 12.963c-7.052 0-11.405 6.124-11.405 13.626 0 7.613 3.747 14.122 11.901 14.122 3.22.07 6.381-.876 9.036-2.703l-1.212-2.262a13.06 13.06 0 01-7.659 2.483c-6.39 0-8.925-5.572-8.98-11.64v-.607h18.292c.55-7.557-3.196-13.018-9.973-13.018zm-.11 2.538c5.069 0 7.107 4.082 7.163 8.11H38.74c.771-4.524 3.416-8.11 8.044-8.11z",
7571
+ fill: "#000"
7572
+ })), _path3$e || (_path3$e = /*#__PURE__*/React.createElement("path", {
7573
+ d: "M59.953 13.57h3.14l6.447 22.121 6.942-22.12h2.81l6.942 22.175 6.502-22.176h2.92l-7.99 26.59h-2.644l-7.163-22.397-7.162 22.396h-2.645L59.953 13.57zM121.22 26.148L108.824 3.034h3.471l10.523 20.024h.11l10.524-20.024h3.14l-12.341 23.114v13.956h-3.031V26.148z",
7574
+ fill: "#000"
7575
+ })), _path4$3 || (_path4$3 = /*#__PURE__*/React.createElement("path", {
7576
+ fillRule: "evenodd",
7577
+ clipRule: "evenodd",
7578
+ d: "M145.959 12.963c-8.32 0-11.901 7.227-11.901 13.902 0 6.675 3.581 13.846 11.956 13.846 8.319 0 12.121-7.282 12.121-13.956 0-6.62-3.857-13.791-12.176-13.791zm-.166 2.483c6.061 0 9.257 5.461 9.257 11.419 0 6.013-2.92 11.364-9.036 11.364-6.006 0-8.981-5.462-8.981-11.474 0-5.958 2.755-11.31 8.76-11.31z",
7579
+ fill: "#000"
7580
+ })), _path5$2 || (_path5$2 = /*#__PURE__*/React.createElement("path", {
7581
+ d: "M163.7 13.57h2.92v4.634c.992-1.93 3.416-5.24 7.107-5.24a7.192 7.192 0 012.535.44l-.717 2.704a5.47 5.47 0 00-2.148-.386c-3.692 0-6.061 4.358-6.777 5.902v18.48h-2.92V13.57z",
7582
+ fill: "#000"
7583
+ })), _path6$2 || (_path6$2 = /*#__PURE__*/React.createElement("path", {
7584
+ fillRule: "evenodd",
7585
+ clipRule: "evenodd",
7586
+ d: "M184.471 0h-2.865v40.104h2.865V0zm11.901 13.57l-11.626 11.64 12.232 14.95h3.636l-12.341-14.95 11.735-11.64h-3.636zM9.76 58.86H1.661v37.125h3.086V80.208H9.43c8.374 0 13.003-4.192 13.003-10.867 0-6.62-4.904-10.481-12.673-10.481zm9.587 10.591c0 4.855-2.92 8.11-9.972 8.11v.055H4.747V61.508h4.738c7.107 0 9.862 3.31 9.862 7.943z",
7587
+ fill: "#000"
7588
+ })), _path7$2 || (_path7$2 = /*#__PURE__*/React.createElement("path", {
7589
+ d: "M27.116 88.152V69.396h2.92v18.15c0 3.916 1.377 6.398 5.454 6.398 3.967 0 7.218-3.75 8.1-5.296V69.397h2.865v21.459a22.79 22.79 0 00.495 5.13h-2.975a29.008 29.008 0 01-.386-4.358c-1.267 1.986-4.297 4.965-8.815 4.965-5.454-.055-7.658-3.696-7.658-8.44z",
7590
+ fill: "#000"
7591
+ })), _path8$1 || (_path8$1 = /*#__PURE__*/React.createElement("path", {
7592
+ fillRule: "evenodd",
7593
+ clipRule: "evenodd",
7594
+ d: "M53.727 55.826V94.55c1.819 1.214 4.794 1.986 7.934 1.93 8.1 0 13.113-6.509 13.113-13.956 0-7.723-3.691-13.79-11.24-13.79a9.506 9.506 0 00-6.942 3.088V55.826h-2.865zm9.312 15.556c6.501 0 8.705 5.517 8.705 11.309 0 5.516-3.25 11.364-9.973 11.364a12.106 12.106 0 01-5.179-1.049v-18.59a9.372 9.372 0 016.447-3.034z",
7595
+ fill: "#000"
7596
+ })), _path9$1 || (_path9$1 = /*#__PURE__*/React.createElement("path", {
7597
+ d: "M80.725 55.826h2.92V95.93h-2.92V55.826z",
7598
+ fill: "#000"
7599
+ })), _path10$1 || (_path10$1 = /*#__PURE__*/React.createElement("path", {
7600
+ fillRule: "evenodd",
7601
+ clipRule: "evenodd",
7602
+ d: "M92.603 59.597a2.18 2.18 0 00-1.08 1.91 2.176 2.176 0 104.353 0 2.18 2.18 0 00-1.08-1.91 2.174 2.174 0 00-2.193 0zm2.612 9.744H92.24v26.59h2.975V69.34z",
7603
+ fill: "#000"
7604
+ })), _path11$1 || (_path11$1 = /*#__PURE__*/React.createElement("path", {
7605
+ d: "M100.78 82.636c0-8.385 4.848-13.846 11.68-13.846 3.967 0 6.446 1.489 7.879 2.758l-1.488 2.096a9.56 9.56 0 00-6.446-2.372c-5.895 0-8.54 5.13-8.54 11.253 0 5.903 2.589 11.53 8.485 11.53 2.465.019 4.86-.82 6.777-2.373l1.267 2.152c-1.433 1.269-4.243 2.703-8.209 2.703-7.659 0-11.405-6.785-11.405-13.901zM.89 151.756v-37.07h7.878v30.726h13.774v6.344H.89z",
7606
+ fill: "#000"
7607
+ })), _path12$1 || (_path12$1 = /*#__PURE__*/React.createElement("path", {
7608
+ fillRule: "evenodd",
7609
+ clipRule: "evenodd",
7610
+ d: "M28.936 119.798c.85.84 2 1.303 3.193 1.287a4.41 4.41 0 003.955-2.158 4.421 4.421 0 000-4.51 4.408 4.408 0 00-3.955-2.158 4.397 4.397 0 00-3.17 1.231 4.408 4.408 0 00-1.348 3.127 4.465 4.465 0 001.325 3.181zm-.498 4.817v27.141h7.438v-27.141h-7.438zM49.815 126.767v-15.115h-7.383v38.615c1.268.606 5.014 2.151 11.13 2.151 8.154 0 14.38-5.13 14.38-14.398 0-9.322-4.738-14.011-11.515-14.011a9.71 9.71 0 00-6.612 2.758zm3.747 19.859a10.481 10.481 0 01-3.747-.607v-14.122a6.53 6.53 0 014.573-2.041c4.022 0 5.73 3.089 5.73 8.164 0 5.517-2.424 8.606-6.556 8.606z",
7611
+ fill: "#000"
7612
+ })), _path13$1 || (_path13$1 = /*#__PURE__*/React.createElement("path", {
7613
+ d: "M88.713 131.125a5.293 5.293 0 00-2.865-.607c-3.305 0-5.234 2.924-5.895 4.137v17.101H72.57v-27.141h7.383v3.696c1.157-1.986 3.416-4.358 6.832-4.358 1.983 0 3.085.387 3.691.718l-1.763 6.454z",
7614
+ fill: "#000"
7615
+ })), _path14 || (_path14 = /*#__PURE__*/React.createElement("path", {
7616
+ fillRule: "evenodd",
7617
+ clipRule: "evenodd",
7618
+ d: "M107.887 148.832c.049.987.197 1.967.441 2.924v-.055h7.272a36.427 36.427 0 01-.771-7.999v-9.764c0-7.226-3.526-10.04-10.909-10.04-5.785 0-9.366 2.483-10.964 3.917l3.25 4.523a11.357 11.357 0 016.888-2.537c3.471 0 4.407 1.489 4.407 3.806v1.545h-.936c-7.163 0-14.436 2.592-14.436 9.653 0 4.855 3.527 7.613 8.155 7.613a10.045 10.045 0 007.603-3.586zm-1.377-9.102H107.501v4.91a6.712 6.712 0 01-5.013 2.372c-1.708 0-3.306-.828-3.306-2.813 0-3.2 2.975-4.469 7.328-4.469z",
7619
+ fill: "#000"
7620
+ })), _path15 || (_path15 = /*#__PURE__*/React.createElement("path", {
7621
+ d: "M136.868 131.125a5.203 5.203 0 00-2.81-.607c-3.306 0-5.234 2.924-5.896 4.137v17.101h-7.382v-27.141h7.382v3.696c1.157-1.986 3.416-4.358 6.832-4.358 1.984 0 3.086.387 3.692.718l-1.818 6.454zM141.331 124.615h7.878l6.006 17.874h.275l5.51-17.874h7.603l-11.184 30.01c-2.369 6.399-5.234 10.15-12.617 10.15a14.864 14.864 0 01-4.188-.497l1.047-5.847a8.47 8.47 0 002.59.276c3.801 0 5.124-1.821 6.17-4.744l.992-2.759-10.082-26.589z",
7622
+ fill: "#000"
7623
+ })));
7459
7624
  }
7460
7625
 
7461
- var _g$7, _defs$3;
7626
+ var _path$G, _path2$k, _path3$f, _path4$4, _path5$3, _path6$3, _path7$3, _path8$2, _path9$2, _path10$2, _path11$2, _path12$2, _path13$2, _path14$1, _path15$1;
7462
7627
 
7463
7628
  var _excluded$18 = ["title", "titleId"];
7464
7629
 
@@ -7468,61 +7633,206 @@ function _objectWithoutProperties$N(source, excluded) { if (source == null) retu
7468
7633
 
7469
7634
  function _objectWithoutPropertiesLoose$O(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
7470
7635
 
7471
- function SvgLogoOpenebooksNegative(_ref) {
7636
+ function SvgLogoNyplTextWhite(_ref) {
7472
7637
  var title = _ref.title,
7473
7638
  titleId = _ref.titleId,
7474
7639
  props = _objectWithoutProperties$N(_ref, _excluded$18);
7475
7640
 
7476
7641
  return /*#__PURE__*/React.createElement("svg", _extends$O({
7477
- viewBox: "0 0 155 139",
7642
+ viewBox: "0 0 201 165",
7478
7643
  fill: "none",
7479
7644
  xmlns: "http://www.w3.org/2000/svg",
7480
7645
  "aria-labelledby": titleId
7481
7646
  }, props), title ? /*#__PURE__*/React.createElement("title", {
7482
7647
  id: titleId
7483
- }, title) : null, _g$7 || (_g$7 = /*#__PURE__*/React.createElement("g", {
7484
- clipPath: "url(#logo-openebooks-negative_svg__clip0_54498_42323)"
7485
- }, /*#__PURE__*/React.createElement("path", {
7486
- d: "M78.087 9.5C36.26-12.024 1.802 9.59 0 10.747v110.438c1.074-1.272 5.518-6.158 15.394-9.572v21.596a5.805 5.805 0 005.79 5.791h112.114a5.808 5.808 0 005.79-5.791v-22.206c11.82 3.711 15.912 9.885 15.912 9.885V10.797S121.052-12.61 78.087 9.5z",
7648
+ }, title) : null, _path$G || (_path$G = /*#__PURE__*/React.createElement("path", {
7649
+ d: "M1.661 3.034h3.03l22.094 32.05V3.034h2.865v37.07h-2.81L4.526 7.834v32.27h-2.81V3.034h-.055z",
7487
7650
  fill: "#fff"
7488
- }), /*#__PURE__*/React.createElement("path", {
7489
- d: "M100.627 10.801c42.596-3.868 54.346 12.835 54.346 12.835v97.554s-11.75-16.705-54.346-12.835V10.801z",
7490
- fill: "url(#logo-openebooks-negative_svg__paint0_linear_54498_42323)"
7491
- }), /*#__PURE__*/React.createElement("path", {
7492
- d: "M147.325 106.011c-36.336-17.126-64.97 0-64.97 0V16.268s28.603-17.128 64.97 0v89.743z",
7493
- fill: "#0B1F31"
7494
- }), /*#__PURE__*/React.createElement("path", {
7495
- d: "M54.346 10.793C11.75 6.924 0 23.627 0 23.627v97.554s11.75-16.705 54.346-12.834V10.793z",
7496
- fill: "url(#logo-openebooks-negative_svg__paint1_linear_54498_42323)"
7497
- }), /*#__PURE__*/React.createElement("path", {
7498
- d: "M8.52 106.014c36.338-17.129 64.973 0 64.973 0V16.266s-28.604-17.124-64.972 0v89.748z",
7499
- fill: "#0B1F31"
7500
- }))), _defs$3 || (_defs$3 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
7501
- id: "logo-openebooks-negative_svg__paint0_linear_54498_42323",
7502
- x1: 127.8,
7503
- y1: 121.19,
7504
- x2: 127.8,
7505
- y2: 10.218,
7506
- gradientUnits: "userSpaceOnUse"
7507
- }, /*#__PURE__*/React.createElement("stop", {
7508
- stopColor: "#8ABF3F"
7509
- }), /*#__PURE__*/React.createElement("stop", {
7510
- offset: 0.36,
7511
- stopColor: "#9EC856"
7512
- }), /*#__PURE__*/React.createElement("stop", {
7513
- offset: 0.9,
7514
- stopColor: "#FFFFF9"
7515
- }), /*#__PURE__*/React.createElement("stop", {
7516
- offset: 0.97,
7517
- stopColor: "#fff"
7518
- }), /*#__PURE__*/React.createElement("stop", {
7519
- offset: 1,
7520
- stopColor: "#fff"
7521
- })), /*#__PURE__*/React.createElement("linearGradient", {
7522
- id: "logo-openebooks-negative_svg__paint1_linear_54498_42323",
7523
- x1: 27.173,
7524
- y1: 121.181,
7525
- x2: 27.173,
7651
+ })), _path2$k || (_path2$k = /*#__PURE__*/React.createElement("path", {
7652
+ fillRule: "evenodd",
7653
+ clipRule: "evenodd",
7654
+ d: "M46.895 12.963c-7.052 0-11.405 6.124-11.405 13.626 0 7.613 3.747 14.122 11.901 14.122 3.22.07 6.381-.876 9.036-2.703l-1.212-2.262a13.06 13.06 0 01-7.659 2.483c-6.39 0-8.925-5.572-8.98-11.64v-.607h18.292c.55-7.557-3.196-13.018-9.973-13.018zm-.11 2.538c5.069 0 7.107 4.082 7.163 8.11H38.74c.771-4.524 3.416-8.11 8.044-8.11z",
7655
+ fill: "#fff"
7656
+ })), _path3$f || (_path3$f = /*#__PURE__*/React.createElement("path", {
7657
+ d: "M59.953 13.57h3.14l6.447 22.121 6.942-22.12h2.81l6.942 22.175 6.502-22.176h2.92l-7.99 26.59h-2.644l-7.163-22.397-7.162 22.396h-2.645L59.953 13.57zM121.22 26.148L108.824 3.034h3.471l10.523 20.024h.11l10.524-20.024h3.14l-12.341 23.114v13.956h-3.031V26.148z",
7658
+ fill: "#fff"
7659
+ })), _path4$4 || (_path4$4 = /*#__PURE__*/React.createElement("path", {
7660
+ fillRule: "evenodd",
7661
+ clipRule: "evenodd",
7662
+ d: "M145.959 12.963c-8.32 0-11.901 7.227-11.901 13.902 0 6.675 3.581 13.846 11.956 13.846 8.319 0 12.121-7.282 12.121-13.956 0-6.62-3.857-13.791-12.176-13.791zm-.166 2.483c6.061 0 9.257 5.461 9.257 11.419 0 6.013-2.92 11.364-9.036 11.364-6.006 0-8.981-5.462-8.981-11.474 0-5.958 2.755-11.31 8.76-11.31z",
7663
+ fill: "#fff"
7664
+ })), _path5$3 || (_path5$3 = /*#__PURE__*/React.createElement("path", {
7665
+ d: "M163.7 13.57h2.92v4.634c.992-1.93 3.416-5.24 7.107-5.24a7.192 7.192 0 012.535.44l-.717 2.704a5.47 5.47 0 00-2.148-.386c-3.692 0-6.061 4.358-6.777 5.902v18.48h-2.92V13.57z",
7666
+ fill: "#fff"
7667
+ })), _path6$3 || (_path6$3 = /*#__PURE__*/React.createElement("path", {
7668
+ fillRule: "evenodd",
7669
+ clipRule: "evenodd",
7670
+ d: "M184.471 0h-2.865v40.104h2.865V0zm11.901 13.57l-11.626 11.64 12.232 14.95h3.636l-12.341-14.95 11.735-11.64h-3.636zM9.76 58.86H1.661v37.125h3.086V80.208H9.43c8.374 0 13.003-4.192 13.003-10.867 0-6.62-4.904-10.481-12.673-10.481zm9.587 10.591c0 4.855-2.92 8.11-9.972 8.11v.055H4.747V61.508h4.738c7.107 0 9.862 3.31 9.862 7.943z",
7671
+ fill: "#fff"
7672
+ })), _path7$3 || (_path7$3 = /*#__PURE__*/React.createElement("path", {
7673
+ d: "M27.116 88.152V69.396h2.92v18.15c0 3.916 1.377 6.398 5.454 6.398 3.967 0 7.218-3.75 8.1-5.296V69.397h2.865v21.459a22.79 22.79 0 00.495 5.13h-2.975a28.995 28.995 0 01-.385-4.358c-1.268 1.986-4.298 4.965-8.816 4.965-5.454-.055-7.658-3.696-7.658-8.44z",
7674
+ fill: "#fff"
7675
+ })), _path8$2 || (_path8$2 = /*#__PURE__*/React.createElement("path", {
7676
+ fillRule: "evenodd",
7677
+ clipRule: "evenodd",
7678
+ d: "M53.727 55.826V94.55c1.819 1.214 4.794 1.986 7.934 1.93 8.1 0 13.113-6.509 13.113-13.956 0-7.723-3.691-13.79-11.24-13.79a9.506 9.506 0 00-6.942 3.088V55.826h-2.865zm9.312 15.556c6.501 0 8.705 5.517 8.705 11.309 0 5.516-3.25 11.364-9.973 11.364a12.106 12.106 0 01-5.179-1.049v-18.59a9.372 9.372 0 016.447-3.034z",
7679
+ fill: "#fff"
7680
+ })), _path9$2 || (_path9$2 = /*#__PURE__*/React.createElement("path", {
7681
+ d: "M80.725 55.826h2.92V95.93h-2.92V55.826z",
7682
+ fill: "#fff"
7683
+ })), _path10$2 || (_path10$2 = /*#__PURE__*/React.createElement("path", {
7684
+ fillRule: "evenodd",
7685
+ clipRule: "evenodd",
7686
+ d: "M92.603 59.597a2.18 2.18 0 00-1.08 1.91 2.176 2.176 0 104.353 0 2.18 2.18 0 00-1.08-1.91 2.174 2.174 0 00-2.193 0zm2.612 9.744H92.24v26.59h2.975V69.34z",
7687
+ fill: "#fff"
7688
+ })), _path11$2 || (_path11$2 = /*#__PURE__*/React.createElement("path", {
7689
+ d: "M100.78 82.636c0-8.385 4.848-13.846 11.68-13.846 3.967 0 6.446 1.489 7.879 2.758l-1.488 2.096a9.56 9.56 0 00-6.446-2.372c-5.895 0-8.54 5.13-8.54 11.253 0 5.903 2.589 11.53 8.485 11.53 2.465.019 4.86-.82 6.777-2.373l1.267 2.152c-1.433 1.269-4.243 2.703-8.209 2.703-7.659 0-11.405-6.785-11.405-13.901zM.89 151.756v-37.07h7.878v30.726h13.774v6.344H.89z",
7690
+ fill: "#fff"
7691
+ })), _path12$2 || (_path12$2 = /*#__PURE__*/React.createElement("path", {
7692
+ fillRule: "evenodd",
7693
+ clipRule: "evenodd",
7694
+ d: "M28.936 119.798c.85.84 2 1.303 3.193 1.287a4.41 4.41 0 003.955-2.158 4.421 4.421 0 000-4.51 4.408 4.408 0 00-3.955-2.158 4.397 4.397 0 00-3.17 1.231 4.408 4.408 0 00-1.348 3.127 4.465 4.465 0 001.325 3.181zm-.498 4.817v27.141h7.438v-27.141h-7.438zM49.815 126.767v-15.115h-7.383v38.615c1.268.606 5.014 2.151 11.13 2.151 8.154 0 14.38-5.13 14.38-14.398 0-9.322-4.738-14.011-11.515-14.011a9.71 9.71 0 00-6.612 2.758zm3.747 19.859a10.481 10.481 0 01-3.747-.607v-14.122a6.53 6.53 0 014.573-2.041c4.022 0 5.73 3.089 5.73 8.164 0 5.517-2.424 8.606-6.556 8.606z",
7695
+ fill: "#fff"
7696
+ })), _path13$2 || (_path13$2 = /*#__PURE__*/React.createElement("path", {
7697
+ d: "M88.713 131.125a5.293 5.293 0 00-2.865-.607c-3.305 0-5.234 2.924-5.895 4.137v17.101H72.57v-27.141h7.383v3.696c1.157-1.986 3.416-4.358 6.832-4.358 1.983 0 3.085.387 3.691.718l-1.763 6.454z",
7698
+ fill: "#fff"
7699
+ })), _path14$1 || (_path14$1 = /*#__PURE__*/React.createElement("path", {
7700
+ fillRule: "evenodd",
7701
+ clipRule: "evenodd",
7702
+ d: "M107.887 148.832c.049.987.197 1.967.441 2.924v-.055h7.272a36.427 36.427 0 01-.771-7.999v-9.764c0-7.226-3.526-10.04-10.909-10.04-5.785 0-9.366 2.483-10.964 3.917l3.25 4.523a11.357 11.357 0 016.888-2.537c3.471 0 4.407 1.489 4.407 3.806v1.545h-.936c-7.163 0-14.436 2.592-14.436 9.653 0 4.855 3.527 7.613 8.155 7.613a10.045 10.045 0 007.603-3.586zm-1.377-9.102H107.501v4.91a6.712 6.712 0 01-5.013 2.372c-1.708 0-3.306-.828-3.306-2.813 0-3.2 2.975-4.469 7.328-4.469z",
7703
+ fill: "#fff"
7704
+ })), _path15$1 || (_path15$1 = /*#__PURE__*/React.createElement("path", {
7705
+ d: "M136.868 131.125a5.203 5.203 0 00-2.81-.607c-3.306 0-5.234 2.924-5.896 4.137v17.101h-7.382v-27.141h7.382v3.696c1.157-1.986 3.416-4.358 6.832-4.358 1.984 0 3.086.387 3.692.718l-1.818 6.454zM141.331 124.615h7.878l6.006 17.874h.275l5.51-17.874h7.603l-11.184 30.01c-2.369 6.399-5.234 10.15-12.617 10.15a14.864 14.864 0 01-4.188-.497l1.047-5.847a8.47 8.47 0 002.59.276c3.801 0 5.124-1.821 6.17-4.744l.992-2.759-10.082-26.589z",
7706
+ fill: "#fff"
7707
+ })));
7708
+ }
7709
+
7710
+ var _g$5, _defs$2;
7711
+
7712
+ var _excluded$19 = ["title", "titleId"];
7713
+
7714
+ function _extends$P() { _extends$P = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$P.apply(this, arguments); }
7715
+
7716
+ function _objectWithoutProperties$O(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$P(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
7717
+
7718
+ function _objectWithoutPropertiesLoose$P(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
7719
+
7720
+ function SvgLogoOpenebooksColor(_ref) {
7721
+ var title = _ref.title,
7722
+ titleId = _ref.titleId,
7723
+ props = _objectWithoutProperties$O(_ref, _excluded$19);
7724
+
7725
+ return /*#__PURE__*/React.createElement("svg", _extends$P({
7726
+ viewBox: "0 0 152 139",
7727
+ fill: "none",
7728
+ xmlns: "http://www.w3.org/2000/svg",
7729
+ "aria-labelledby": titleId
7730
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
7731
+ id: titleId
7732
+ }, title) : null, _g$5 || (_g$5 = /*#__PURE__*/React.createElement("g", {
7733
+ clipPath: "url(#logo-openebooks-color_svg__clip0_53471_41906)"
7734
+ }, /*#__PURE__*/React.createElement("path", {
7735
+ d: "M130.79 29.541H20.99a5.667 5.667 0 00-5.673 5.662v98.138a5.667 5.667 0 005.673 5.661h109.8a5.667 5.667 0 005.672-5.661V35.202a5.666 5.666 0 00-5.672-5.66z",
7736
+ fill: "#012F53"
7737
+ }), /*#__PURE__*/React.createElement("path", {
7738
+ d: "M76 7.79S43.52-12.182-.008 11.842v111.332s22.226-23.121 58.783-13.642V30.593h34.45v78.939c36.559-9.473 58.783 13.636 58.783 13.636V11.842C108.482-12.182 76 7.79 76 7.79z",
7739
+ fill: "url(#logo-openebooks-color_svg__paint0_linear_53471_41906)"
7740
+ }), /*#__PURE__*/React.createElement("path", {
7741
+ d: "M13.312 98.983c19.216-7.728 38.432-8.113 57.65 0V20.067c-18.895-8.814-38.117-8.959-57.65 0v78.915zM80.102 98.983c19.216-7.728 38.432-8.113 57.65 0V20.067c-18.905-8.814-38.117-8.959-57.65 0v78.915z",
7742
+ fill: "#fff"
7743
+ }))), _defs$2 || (_defs$2 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
7744
+ id: "logo-openebooks-color_svg__paint0_linear_53471_41906",
7745
+ x1: 76.519,
7746
+ y1: 132.496,
7747
+ x2: 75.513,
7748
+ y2: 5.94,
7749
+ gradientUnits: "userSpaceOnUse"
7750
+ }, /*#__PURE__*/React.createElement("stop", {
7751
+ offset: 0.15,
7752
+ stopColor: "#8AC33E"
7753
+ }), /*#__PURE__*/React.createElement("stop", {
7754
+ offset: 0.3,
7755
+ stopColor: "#5F9445"
7756
+ }), /*#__PURE__*/React.createElement("stop", {
7757
+ offset: 0.47,
7758
+ stopColor: "#37694B"
7759
+ }), /*#__PURE__*/React.createElement("stop", {
7760
+ offset: 0.62,
7761
+ stopColor: "#19494F"
7762
+ }), /*#__PURE__*/React.createElement("stop", {
7763
+ offset: 0.74,
7764
+ stopColor: "#073652"
7765
+ }), /*#__PURE__*/React.createElement("stop", {
7766
+ offset: 0.83,
7767
+ stopColor: "#012F53"
7768
+ })))));
7769
+ }
7770
+
7771
+ var _g$6, _defs$3;
7772
+
7773
+ var _excluded$1a = ["title", "titleId"];
7774
+
7775
+ function _extends$Q() { _extends$Q = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$Q.apply(this, arguments); }
7776
+
7777
+ function _objectWithoutProperties$P(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$Q(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
7778
+
7779
+ function _objectWithoutPropertiesLoose$Q(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
7780
+
7781
+ function SvgLogoOpenebooksNegative(_ref) {
7782
+ var title = _ref.title,
7783
+ titleId = _ref.titleId,
7784
+ props = _objectWithoutProperties$P(_ref, _excluded$1a);
7785
+
7786
+ return /*#__PURE__*/React.createElement("svg", _extends$Q({
7787
+ viewBox: "0 0 155 139",
7788
+ fill: "none",
7789
+ xmlns: "http://www.w3.org/2000/svg",
7790
+ "aria-labelledby": titleId
7791
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
7792
+ id: titleId
7793
+ }, title) : null, _g$6 || (_g$6 = /*#__PURE__*/React.createElement("g", {
7794
+ clipPath: "url(#logo-openebooks-negative_svg__clip0_54498_42323)"
7795
+ }, /*#__PURE__*/React.createElement("path", {
7796
+ d: "M78.087 9.5C36.26-12.024 1.802 9.59 0 10.747v110.438c1.074-1.272 5.518-6.158 15.394-9.572v21.596a5.805 5.805 0 005.79 5.791h112.114a5.808 5.808 0 005.79-5.791v-22.206c11.82 3.711 15.912 9.885 15.912 9.885V10.797S121.052-12.61 78.087 9.5z",
7797
+ fill: "#fff"
7798
+ }), /*#__PURE__*/React.createElement("path", {
7799
+ d: "M100.627 10.801c42.596-3.868 54.346 12.835 54.346 12.835v97.554s-11.75-16.705-54.346-12.835V10.801z",
7800
+ fill: "url(#logo-openebooks-negative_svg__paint0_linear_54498_42323)"
7801
+ }), /*#__PURE__*/React.createElement("path", {
7802
+ d: "M147.325 106.011c-36.336-17.126-64.97 0-64.97 0V16.268s28.603-17.128 64.97 0v89.743z",
7803
+ fill: "#0B1F31"
7804
+ }), /*#__PURE__*/React.createElement("path", {
7805
+ d: "M54.346 10.793C11.75 6.924 0 23.627 0 23.627v97.554s11.75-16.705 54.346-12.834V10.793z",
7806
+ fill: "url(#logo-openebooks-negative_svg__paint1_linear_54498_42323)"
7807
+ }), /*#__PURE__*/React.createElement("path", {
7808
+ d: "M8.52 106.014c36.338-17.129 64.973 0 64.973 0V16.266s-28.604-17.124-64.972 0v89.748z",
7809
+ fill: "#0B1F31"
7810
+ }))), _defs$3 || (_defs$3 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
7811
+ id: "logo-openebooks-negative_svg__paint0_linear_54498_42323",
7812
+ x1: 127.8,
7813
+ y1: 121.19,
7814
+ x2: 127.8,
7815
+ y2: 10.218,
7816
+ gradientUnits: "userSpaceOnUse"
7817
+ }, /*#__PURE__*/React.createElement("stop", {
7818
+ stopColor: "#8ABF3F"
7819
+ }), /*#__PURE__*/React.createElement("stop", {
7820
+ offset: 0.36,
7821
+ stopColor: "#9EC856"
7822
+ }), /*#__PURE__*/React.createElement("stop", {
7823
+ offset: 0.9,
7824
+ stopColor: "#FFFFF9"
7825
+ }), /*#__PURE__*/React.createElement("stop", {
7826
+ offset: 0.97,
7827
+ stopColor: "#fff"
7828
+ }), /*#__PURE__*/React.createElement("stop", {
7829
+ offset: 1,
7830
+ stopColor: "#fff"
7831
+ })), /*#__PURE__*/React.createElement("linearGradient", {
7832
+ id: "logo-openebooks-negative_svg__paint1_linear_54498_42323",
7833
+ x1: 27.173,
7834
+ y1: 121.181,
7835
+ x2: 27.173,
7526
7836
  y2: 10.209,
7527
7837
  gradientUnits: "userSpaceOnUse"
7528
7838
  }, /*#__PURE__*/React.createElement("stop", {
@@ -7542,29 +7852,29 @@ function SvgLogoOpenebooksNegative(_ref) {
7542
7852
  })))));
7543
7853
  }
7544
7854
 
7545
- var _g$8, _defs$4;
7855
+ var _g$7, _defs$4;
7546
7856
 
7547
- var _excluded$19 = ["title", "titleId"];
7857
+ var _excluded$1b = ["title", "titleId"];
7548
7858
 
7549
- function _extends$P() { _extends$P = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$P.apply(this, arguments); }
7859
+ function _extends$R() { _extends$R = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$R.apply(this, arguments); }
7550
7860
 
7551
- function _objectWithoutProperties$O(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$P(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
7861
+ function _objectWithoutProperties$Q(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$R(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
7552
7862
 
7553
- function _objectWithoutPropertiesLoose$P(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
7863
+ function _objectWithoutPropertiesLoose$R(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
7554
7864
 
7555
7865
  function SvgLogoOpenebooksWithTextColor(_ref) {
7556
7866
  var title = _ref.title,
7557
7867
  titleId = _ref.titleId,
7558
- props = _objectWithoutProperties$O(_ref, _excluded$19);
7868
+ props = _objectWithoutProperties$Q(_ref, _excluded$1b);
7559
7869
 
7560
- return /*#__PURE__*/React.createElement("svg", _extends$P({
7870
+ return /*#__PURE__*/React.createElement("svg", _extends$R({
7561
7871
  viewBox: "0 0 152 139",
7562
7872
  fill: "none",
7563
7873
  xmlns: "http://www.w3.org/2000/svg",
7564
7874
  "aria-labelledby": titleId
7565
7875
  }, props), title ? /*#__PURE__*/React.createElement("title", {
7566
7876
  id: titleId
7567
- }, title) : null, _g$8 || (_g$8 = /*#__PURE__*/React.createElement("g", {
7877
+ }, title) : null, _g$7 || (_g$7 = /*#__PURE__*/React.createElement("g", {
7568
7878
  clipPath: "url(#logo-openebooks-with-text-color_svg__clip0_53471_41905)"
7569
7879
  }, /*#__PURE__*/React.createElement("path", {
7570
7880
  d: "M130.79 29.541H20.99a5.667 5.667 0 00-5.673 5.662v98.138a5.667 5.667 0 005.673 5.661h109.8a5.667 5.667 0 005.672-5.661V35.202a5.666 5.666 0 00-5.672-5.66z",
@@ -7603,29 +7913,29 @@ function SvgLogoOpenebooksWithTextColor(_ref) {
7603
7913
  })))));
7604
7914
  }
7605
7915
 
7606
- var _g$9, _defs$5;
7916
+ var _g$8, _defs$5;
7607
7917
 
7608
- var _excluded$1a = ["title", "titleId"];
7918
+ var _excluded$1c = ["title", "titleId"];
7609
7919
 
7610
- function _extends$Q() { _extends$Q = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$Q.apply(this, arguments); }
7920
+ function _extends$S() { _extends$S = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$S.apply(this, arguments); }
7611
7921
 
7612
- function _objectWithoutProperties$P(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$Q(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
7922
+ function _objectWithoutProperties$R(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$S(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
7613
7923
 
7614
- function _objectWithoutPropertiesLoose$Q(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
7924
+ function _objectWithoutPropertiesLoose$S(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
7615
7925
 
7616
7926
  function SvgLogoOpenebooksWithTextNegative(_ref) {
7617
7927
  var title = _ref.title,
7618
7928
  titleId = _ref.titleId,
7619
- props = _objectWithoutProperties$P(_ref, _excluded$1a);
7929
+ props = _objectWithoutProperties$R(_ref, _excluded$1c);
7620
7930
 
7621
- return /*#__PURE__*/React.createElement("svg", _extends$Q({
7931
+ return /*#__PURE__*/React.createElement("svg", _extends$S({
7622
7932
  viewBox: "0 0 155 139",
7623
7933
  fill: "none",
7624
7934
  xmlns: "http://www.w3.org/2000/svg",
7625
7935
  "aria-labelledby": titleId
7626
7936
  }, props), title ? /*#__PURE__*/React.createElement("title", {
7627
7937
  id: titleId
7628
- }, title) : null, _g$9 || (_g$9 = /*#__PURE__*/React.createElement("g", {
7938
+ }, title) : null, _g$8 || (_g$8 = /*#__PURE__*/React.createElement("g", {
7629
7939
  clipPath: "url(#logo-openebooks-with-text-negative_svg__clip0_54498_42322)"
7630
7940
  }, /*#__PURE__*/React.createElement("path", {
7631
7941
  d: "M78.087 9.5C36.26-12.024 1.802 9.59 0 10.747v110.438c1.074-1.272 5.518-6.158 15.394-9.572v21.596a5.805 5.805 0 005.79 5.791h112.114a5.808 5.808 0 005.79-5.791v-22.206c11.82 3.711 15.912 9.885 15.912 9.885V10.797S121.052-12.61 78.087 9.5z",
@@ -7690,124 +8000,124 @@ function SvgLogoOpenebooksWithTextNegative(_ref) {
7690
8000
  })))));
7691
8001
  }
7692
8002
 
7693
- var _path$F;
8003
+ var _path$H;
7694
8004
 
7695
- var _excluded$1b = ["title", "titleId"];
8005
+ var _excluded$1d = ["title", "titleId"];
7696
8006
 
7697
- function _extends$R() { _extends$R = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$R.apply(this, arguments); }
8007
+ function _extends$T() { _extends$T = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$T.apply(this, arguments); }
7698
8008
 
7699
- function _objectWithoutProperties$Q(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$R(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8009
+ function _objectWithoutProperties$S(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$T(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
7700
8010
 
7701
- function _objectWithoutPropertiesLoose$R(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8011
+ function _objectWithoutPropertiesLoose$T(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
7702
8012
 
7703
8013
  function SvgLogoQplAltBlack(_ref) {
7704
8014
  var title = _ref.title,
7705
8015
  titleId = _ref.titleId,
7706
- props = _objectWithoutProperties$Q(_ref, _excluded$1b);
8016
+ props = _objectWithoutProperties$S(_ref, _excluded$1d);
7707
8017
 
7708
- return /*#__PURE__*/React.createElement("svg", _extends$R({
8018
+ return /*#__PURE__*/React.createElement("svg", _extends$T({
7709
8019
  viewBox: "0 0 250 134",
7710
8020
  xmlns: "http://www.w3.org/2000/svg",
7711
8021
  "aria-labelledby": titleId
7712
8022
  }, props), title ? /*#__PURE__*/React.createElement("title", {
7713
8023
  id: titleId
7714
- }, title) : null, _path$F || (_path$F = /*#__PURE__*/React.createElement("path", {
8024
+ }, title) : null, _path$H || (_path$H = /*#__PURE__*/React.createElement("path", {
7715
8025
  d: "M25.853 14.85L0 29.697l.045 29.9.067 29.899 38.6 22.162c21.23 12.174 38.712 22.207 38.869 22.252.224.111 25.336-14.091 26.032-14.716.225-.2-2.76-2.006-12.5-7.58-7.047-4.036-12.792-7.403-12.792-7.47 0-.067 5.768-3.433 12.792-7.469l12.792-7.313V29.765l-25.83-14.827C63.846 6.778 52.108.09 51.974.067 51.84.022 40.08 6.689 25.853 14.849zm38.712 22.407c6.89 3.946 12.657 7.29 12.814 7.424.202.201.27 6.333.224 29.699l-.067 29.453-12.567-7.224c-6.912-3.99-12.702-7.29-12.837-7.358-.157-.066-6.014 3.166-13.016 7.18-7.024 4.013-12.814 7.358-12.927 7.402-.09.045-.134-13.221-.112-29.475l.067-29.587 12.792-7.336c7.047-4.035 12.86-7.335 12.95-7.335.089 0 5.811 3.233 12.679 7.157zM136.917 15.05c-1.818.513-3.254 1.382-4.623 2.81-5.207 5.417-2.693 14.514 4.488 16.364 1.683.424 3.905.424 5.543 0l1.279-.334 2.155 1.226c2.738 1.539 2.827 1.561 3.882 1.026 1.75-.892 1.526-1.45-1.189-2.965l-2.087-1.16.763-.892c2.917-3.389 3.052-8.784.314-12.419-1.077-1.427-2.783-2.697-4.444-3.322-1.683-.646-4.443-.78-6.081-.334zm5.677 3.099c.696.334 1.683 1.092 2.245 1.717 3.276 3.612 2.244 8.985-2.177 11.282-1.01.535-1.414.624-3.187.624-1.75 0-2.177-.09-3.142-.602-3.231-1.695-4.825-5.284-3.793-8.562 1.347-4.28 6.082-6.377 10.054-4.46zM214.34 15.027c-.179.201-.224 2.966-.202 9.744l.067 9.453 1.033.067c.673.045 1.122-.044 1.279-.245.179-.2.292-2.363.314-6.956l.067-6.667 5.678 7.068c5.409 6.711 5.745 7.068 6.441 7.068.471 0 .785-.134.875-.357.202-.535.157-18.439-.067-18.773-.112-.2-.561-.268-1.279-.223l-1.1.067-.112 6.822-.112 6.845-5.723-7.112c-4.87-6.065-5.812-7.113-6.306-7.113-.337 0-.718.134-.853.313zM240.642 14.938c-2.671.535-4.556 2.609-4.556 5.062 0 2.318 1.369 4.102 4.152 5.395 3.074 1.427 3.568 1.695 4.286 2.386 1.436 1.338 1.167 3.077-.651 3.88-1.615.735-2.917.49-5.206-1.026-1.392-.914-1.616-.892-2.424.178-.583.78-.359 1.36.875 2.207 2.379 1.606 5.835 2.052 8.057 1.004 3.389-1.561 4.286-5.24 1.952-7.938-.583-.69-1.526-1.27-3.994-2.474-3.546-1.717-4.13-2.23-4.13-3.724 0-.714.158-1.048.674-1.583 1.167-1.137 2.805-1.204 5.049-.156.651.312 1.347.58 1.549.58.471 0 1.324-1.45 1.144-1.985-.179-.602-2.199-1.538-3.837-1.806-1.482-.245-1.639-.245-2.94 0zM155.453 15.295c-.09.09-.157 3.21-.157 6.912 0 6.31.023 6.845.471 8.004.629 1.672 2.222 3.256 3.95 3.902 1.84.691 4.825.557 6.486-.267 1.346-.692 2.648-2.074 3.321-3.501.449-.981.471-1.338.471-8.049v-7.023l-1.077-.067c-.606-.045-1.234.045-1.414.2-.246.201-.314 1.383-.314 6.645 0 6.198-.022 6.421-.494 7.38-.291.535-.897 1.27-1.368 1.65-.719.58-1.1.69-2.357.758-1.975.111-3.231-.513-4.196-2.074l-.674-1.07-.112-6.711-.112-6.711-1.122-.067c-.629-.045-1.212 0-1.302.09zM177.334 15.429c-.404.401-.382 17.993.022 18.528.247.357.808.379 6.105.334l5.834-.067v-2.229l-4.645-.067-4.668-.045v-6.02l3.995-.044 3.972-.067v-2.23l-3.972-.067-3.995-.044V17.614l4.668-.045 4.645-.067v-2.229l-5.834-.067c-4.354-.045-5.925.022-6.127.223zM195.803 15.429c-.067.156-.089 4.46-.067 9.543l.067 9.253h11.894v-2.23l-4.645-.067-4.668-.044v-6.02l3.995-.045 3.972-.067v-2.23l-3.972-.066-3.995-.045V17.614l4.668-.045 4.645-.066v-2.23l-5.902-.067c-4.6-.045-5.924 0-5.992.223zM223.407 57.301c-3.367.535-6.082 2.587-7.586 5.753-.673 1.404-.718 1.627-.718 4.08 0 2.52.023 2.608.831 4.236a10.298 10.298 0 004.825 4.727c1.458.669 1.66.713 4.219.713 2.58 0 2.76-.022 4.151-.713 1.639-.803 2.918-1.873 2.918-2.408 0-.513-1.1-1.45-1.683-1.45-.27 0-.763.201-1.078.447-.314.245-1.144.713-1.862 1.047-2.469 1.115-5.768.357-7.63-1.806-1.369-1.583-1.773-2.697-1.773-4.816 0-2.23.449-3.433 1.862-4.95 2.379-2.563 6.329-2.92 9.224-.824.516.356 1.1.646 1.346.646.404 0 1.594-1.16 1.594-1.538 0-.714-2.379-2.319-4.264-2.876-1.167-.357-3.12-.469-4.376-.268zM130.947 57.814c-.067.134-.09 4.437-.067 9.52l.067 9.253h2.468l.068-3.277.067-3.255 2.962-.09c3.187-.089 3.928-.312 5.499-1.627 2.535-2.118 2.535-6.89 0-9.164-1.684-1.494-2.267-1.65-6.868-1.65-3.074 0-4.129.067-4.196.29zm8.213 2.898c1.325.67 2.11 2.163 1.886 3.523-.202 1.182-1.437 2.564-2.536 2.876-.472.112-1.773.223-2.895.223h-2.087V60.2h2.311c1.997 0 2.469.066 3.321.512zM149.26 57.948c-.315.58-.315 11.014 0 12.954.404 2.475 1.66 4.236 3.86 5.395.807.446 1.279.513 3.411.513 2.244 0 2.58-.044 3.613-.602a7.063 7.063 0 003.456-4.147c.404-1.27.449-2.073.449-7.625 0-3.411-.068-6.355-.135-6.555-.157-.424-2.11-.49-2.514-.09-.201.201-.269 1.985-.269 6.645 0 6.176-.022 6.399-.494 7.358-.291.535-.897 1.27-1.368 1.65-1.594 1.248-4.713 1.025-6.015-.446-1.167-1.316-1.212-1.583-1.324-8.674l-.112-6.688-1.167-.067c-.965-.067-1.212 0-1.391.379zM171.275 57.792c-.202.2-.27 2.586-.27 9.342 0 7.625.045 9.097.315 9.342.246.178 1.526.245 4.667.178 3.95-.067 4.421-.111 5.252-.557 3.366-1.784 4.062-6.243 1.324-8.473l-.853-.713.696-.87c.942-1.16 1.167-1.828 1.167-3.411 0-1.65-.382-2.564-1.459-3.612-1.324-1.271-2.311-1.494-6.732-1.494-2.694 0-3.928.09-4.107.268zm8.191 2.764c.337.245.785.892.965 1.383.292.825.292 1.048 0 1.873-.561 1.538-1.212 1.828-4.062 1.917l-2.446.09V59.931l2.446.09c2.065.066 2.581.155 3.097.534zm.224 8.34c1.01.601 1.459 1.404 1.459 2.496-.022 1.093-.561 1.918-1.638 2.453-.584.312-1.324.401-3.165.401h-2.423V68.45h2.536c2.087 0 2.625.067 3.231.446zM190.575 57.791c-.427.424-.382 18.306.044 18.662.202.179 1.841.246 5.431.201l5.14-.067v-2.229l-3.973-.067-3.994-.045-.045-8.316-.067-8.295-1.123-.066c-.673-.045-1.234.044-1.413.222zM206.261 57.948c-.381.69-.336 17.881.045 18.394.225.29.539.38 1.392.312l1.122-.067V57.636l-1.167-.067c-.965-.067-1.212 0-1.392.379zM201.773 100.266c-3.366 7.179-8.102 17.904-8.057 18.238.068.379.27.446 1.324.513l1.257.067 1.01-2.297 1.01-2.296 4.421-.067 4.398-.045.898 1.94c1.279 2.787 1.122 2.631 2.491 2.631 1.122 0 1.212-.045 1.257-.557.045-.335-1.549-4.148-4.04-9.588l-4.084-9.03-.808-.067c-.673-.067-.83.023-1.077.558zm2.76 8.16l1.661 3.724h-3.366c-3.12 0-3.367-.023-3.232-.402.247-.691 3.164-7.134 3.209-7.09.023.022.786 1.717 1.728 3.768zM130.947 100.177c-.067.133-.09 4.437-.067 9.52l.067 9.253h10.772v-2.23l-3.972-.066-3.995-.045v-8.094c0-5.997-.067-8.16-.269-8.361-.359-.356-2.402-.356-2.536.023zM146.679 100.243c-.18.446-.18 18.016 0 18.462.157.423 2.109.49 2.513.089.202-.201.269-2.564.269-9.231 0-4.927-.067-9.119-.134-9.32-.202-.512-2.446-.512-2.648 0zM156.912 100.154c-.202.201-.269 2.587-.269 9.342 0 7.626.045 9.097.314 9.342.247.179 1.526.246 4.668.179l4.331-.067 1.234-.691c3.097-1.739 3.658-6.02 1.078-8.205l-.921-.781.629-.735c.92-1.071 1.234-1.985 1.234-3.523 0-1.65-.359-2.587-1.459-3.634-1.324-1.271-2.311-1.494-6.732-1.494-2.693 0-3.927.089-4.107.267zm8.191 2.765c.337.245.786.892.965 1.382.292.825.292 1.048 0 1.873-.224.602-.606 1.115-1.099 1.449-.674.446-1.033.513-3.075.513h-2.334V102.295l2.446.089c2.065.067 2.581.156 3.097.535zm.045 8.294c2.244 1.137 2.244 3.857 0 4.994-.583.313-1.324.402-3.164.402h-2.424V110.812h2.424c1.84 0 2.581.089 3.164.401zM176.212 100.154c-.202.201-.269 2.587-.269 9.342 0 7.559.045 9.12.314 9.32.179.156.808.246 1.414.201l1.077-.067.067-3.523.067-3.5h4.466l1.796 3.567 1.795 3.568h1.347c2.019 0 1.997-.313-.18-4.281l-1.773-3.256.965-.691c1.953-1.36 3.03-3.701 2.693-5.841-.179-1.271-1.279-3.144-2.222-3.858-1.436-1.092-2.334-1.248-6.979-1.248-3.052 0-4.399.089-4.578.267zm8.775 2.72c.404.157 1.009.625 1.346 1.004 1.167 1.382 1.01 3.121-.426 4.504l-.786.758-3.142.067-3.119.089v-6.734h2.693c1.773 0 2.962.112 3.434.312zM216.697 100.221c-.18.468-.18 18.016 0 18.484.202.513 2.446.513 2.648 0 .067-.201.134-1.806.134-3.568v-3.21H223.856l1.795 3.523 1.795 3.5h1.324c2.087 0 2.087-.156-.045-4.036-1.795-3.299-1.795-3.322-1.324-3.656 2.155-1.494 3.142-3.144 3.142-5.351.023-1.739-.538-3.122-1.683-4.281-1.548-1.516-1.997-1.628-7.271-1.695-4.219-.066-4.758-.022-4.892.29zm8.976 2.698c.943.446 1.571 1.226 1.908 2.341.224.736.202.959-.269 1.918-.292.579-.876 1.293-1.302 1.56-.696.469-1.032.513-3.636.513h-2.895v-6.689h2.716c2.042 0 2.895.089 3.478.357zM234.179 100.355c-.18.535.044.892 3.747 5.953l2.648 3.634v4.281c0 3.055.068 4.37.27 4.571.404.401 2.356.334 2.513-.089.067-.201.135-2.252.135-4.549v-4.214l3.254-4.414c3.837-5.173 3.927-5.485 1.885-5.597l-1.279-.066-2.626 3.589c-1.459 1.984-2.715 3.523-2.783 3.411-.089-.089-1.122-1.493-2.266-3.076-2.918-4.036-2.783-3.902-4.174-3.902-.988 0-1.212.067-1.324.468z"
7716
8026
  })));
7717
8027
  }
7718
8028
 
7719
- var _path$G;
8029
+ var _path$I;
7720
8030
 
7721
- var _excluded$1c = ["title", "titleId"];
8031
+ var _excluded$1e = ["title", "titleId"];
7722
8032
 
7723
- function _extends$S() { _extends$S = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$S.apply(this, arguments); }
8033
+ function _extends$U() { _extends$U = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$U.apply(this, arguments); }
7724
8034
 
7725
- function _objectWithoutProperties$R(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$S(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8035
+ function _objectWithoutProperties$T(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$U(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
7726
8036
 
7727
- function _objectWithoutPropertiesLoose$S(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8037
+ function _objectWithoutPropertiesLoose$U(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
7728
8038
 
7729
8039
  function SvgLogoQplAltWhite(_ref) {
7730
8040
  var title = _ref.title,
7731
8041
  titleId = _ref.titleId,
7732
- props = _objectWithoutProperties$R(_ref, _excluded$1c);
8042
+ props = _objectWithoutProperties$T(_ref, _excluded$1e);
7733
8043
 
7734
- return /*#__PURE__*/React.createElement("svg", _extends$S({
8044
+ return /*#__PURE__*/React.createElement("svg", _extends$U({
7735
8045
  viewBox: "0 0 250 134",
7736
8046
  fill: "#fff",
7737
8047
  xmlns: "http://www.w3.org/2000/svg",
7738
8048
  "aria-labelledby": titleId
7739
8049
  }, props), title ? /*#__PURE__*/React.createElement("title", {
7740
8050
  id: titleId
7741
- }, title) : null, _path$G || (_path$G = /*#__PURE__*/React.createElement("path", {
8051
+ }, title) : null, _path$I || (_path$I = /*#__PURE__*/React.createElement("path", {
7742
8052
  d: "M25.853 14.85L0 29.697l.045 29.9.067 29.899 38.6 22.162c21.23 12.174 38.712 22.207 38.869 22.252.224.111 25.336-14.091 26.032-14.716.225-.2-2.76-2.006-12.5-7.58-7.047-4.036-12.792-7.403-12.792-7.47 0-.067 5.768-3.433 12.792-7.469l12.792-7.313V29.765l-25.83-14.827C63.846 6.778 52.108.09 51.974.067 51.84.022 40.08 6.689 25.853 14.849zm38.712 22.407c6.89 3.946 12.657 7.29 12.814 7.424.202.201.27 6.333.224 29.699l-.067 29.453-12.567-7.224c-6.912-3.99-12.702-7.29-12.837-7.358-.157-.066-6.014 3.166-13.016 7.18-7.024 4.013-12.814 7.358-12.927 7.402-.09.045-.134-13.221-.112-29.475l.067-29.587 12.792-7.336c7.047-4.035 12.86-7.335 12.95-7.335.089 0 5.811 3.233 12.679 7.157zM136.917 15.05c-1.818.513-3.254 1.382-4.623 2.81-5.207 5.417-2.693 14.514 4.488 16.364 1.683.424 3.905.424 5.543 0l1.279-.334 2.155 1.226c2.738 1.539 2.827 1.561 3.882 1.026 1.75-.892 1.526-1.45-1.189-2.965l-2.087-1.16.763-.892c2.917-3.389 3.052-8.784.314-12.419-1.077-1.427-2.783-2.697-4.444-3.322-1.683-.646-4.443-.78-6.081-.334zm5.677 3.099c.696.334 1.683 1.092 2.245 1.717 3.276 3.612 2.244 8.985-2.177 11.282-1.01.535-1.414.624-3.187.624-1.75 0-2.177-.09-3.142-.602-3.231-1.695-4.825-5.284-3.793-8.562 1.347-4.28 6.082-6.377 10.054-4.46zM214.34 15.027c-.179.201-.224 2.966-.202 9.744l.067 9.453 1.033.067c.673.045 1.122-.044 1.279-.245.179-.2.292-2.363.314-6.956l.067-6.667 5.678 7.068c5.409 6.711 5.745 7.068 6.441 7.068.471 0 .785-.134.875-.357.202-.535.157-18.439-.067-18.773-.112-.2-.561-.268-1.279-.223l-1.1.067-.112 6.822-.112 6.845-5.723-7.112c-4.87-6.065-5.812-7.113-6.306-7.113-.337 0-.718.134-.853.313zM240.642 14.938c-2.671.535-4.556 2.609-4.556 5.062 0 2.318 1.369 4.102 4.152 5.395 3.074 1.427 3.568 1.695 4.286 2.386 1.436 1.338 1.167 3.077-.651 3.88-1.615.735-2.917.49-5.206-1.026-1.392-.914-1.616-.892-2.424.178-.583.78-.359 1.36.875 2.207 2.379 1.606 5.835 2.052 8.057 1.004 3.389-1.561 4.286-5.24 1.952-7.938-.583-.69-1.526-1.27-3.994-2.474-3.546-1.717-4.13-2.23-4.13-3.724 0-.714.158-1.048.674-1.583 1.167-1.137 2.805-1.204 5.049-.156.651.312 1.347.58 1.549.58.471 0 1.324-1.45 1.144-1.985-.179-.602-2.199-1.538-3.837-1.806-1.482-.245-1.639-.245-2.94 0zM155.453 15.295c-.09.09-.157 3.21-.157 6.912 0 6.31.023 6.845.471 8.004.629 1.672 2.222 3.256 3.95 3.902 1.84.691 4.825.557 6.486-.267 1.346-.692 2.648-2.074 3.321-3.501.449-.981.471-1.338.471-8.049v-7.023l-1.077-.067c-.606-.045-1.234.045-1.414.2-.246.201-.314 1.383-.314 6.645 0 6.198-.022 6.421-.494 7.38-.291.535-.897 1.27-1.368 1.65-.719.58-1.1.69-2.357.758-1.975.111-3.231-.513-4.196-2.074l-.674-1.07-.112-6.711-.112-6.711-1.122-.067c-.629-.045-1.212 0-1.302.09zM177.334 15.429c-.404.401-.382 17.993.022 18.528.247.357.808.379 6.105.334l5.834-.067v-2.229l-4.645-.067-4.668-.045v-6.02l3.995-.044 3.972-.067v-2.23l-3.972-.067-3.995-.044V17.614l4.668-.045 4.645-.067v-2.229l-5.834-.067c-4.354-.045-5.925.022-6.127.223zM195.803 15.429c-.067.156-.089 4.46-.067 9.543l.067 9.253h11.894v-2.23l-4.645-.067-4.668-.044v-6.02l3.995-.045 3.972-.067v-2.23l-3.972-.066-3.995-.045V17.614l4.668-.045 4.645-.066v-2.23l-5.902-.067c-4.6-.045-5.924 0-5.992.223zM223.407 57.301c-3.367.535-6.082 2.587-7.586 5.753-.673 1.404-.718 1.627-.718 4.08 0 2.52.023 2.608.831 4.236a10.298 10.298 0 004.825 4.727c1.458.669 1.66.713 4.219.713 2.58 0 2.76-.022 4.151-.713 1.639-.803 2.918-1.873 2.918-2.408 0-.513-1.1-1.45-1.683-1.45-.27 0-.763.201-1.078.447-.314.245-1.144.713-1.862 1.047-2.469 1.115-5.768.357-7.63-1.806-1.369-1.583-1.773-2.697-1.773-4.816 0-2.23.449-3.433 1.862-4.95 2.379-2.563 6.329-2.92 9.224-.824.516.356 1.1.646 1.346.646.404 0 1.594-1.16 1.594-1.538 0-.714-2.379-2.319-4.264-2.876-1.167-.357-3.12-.469-4.376-.268zM130.947 57.814c-.067.134-.09 4.437-.067 9.52l.067 9.253h2.468l.068-3.277.067-3.255 2.962-.09c3.187-.089 3.928-.312 5.499-1.627 2.535-2.118 2.535-6.89 0-9.164-1.684-1.494-2.267-1.65-6.868-1.65-3.074 0-4.129.067-4.196.29zm8.213 2.898c1.325.67 2.11 2.163 1.886 3.523-.202 1.182-1.437 2.564-2.536 2.876-.472.112-1.773.223-2.895.223h-2.087V60.2h2.311c1.997 0 2.469.066 3.321.512zM149.26 57.948c-.315.58-.315 11.014 0 12.954.404 2.475 1.66 4.236 3.86 5.395.807.446 1.279.513 3.411.513 2.244 0 2.58-.044 3.613-.602a7.063 7.063 0 003.456-4.147c.404-1.27.449-2.073.449-7.625 0-3.411-.068-6.355-.135-6.555-.157-.424-2.11-.49-2.514-.09-.201.201-.269 1.985-.269 6.645 0 6.176-.022 6.399-.494 7.358-.291.535-.897 1.27-1.368 1.65-1.594 1.248-4.713 1.025-6.015-.446-1.167-1.316-1.212-1.583-1.324-8.674l-.112-6.688-1.167-.067c-.965-.067-1.212 0-1.391.379zM171.275 57.792c-.202.2-.27 2.586-.27 9.342 0 7.625.045 9.097.315 9.342.246.178 1.526.245 4.667.178 3.95-.067 4.421-.111 5.252-.557 3.366-1.784 4.062-6.243 1.324-8.473l-.853-.713.696-.87c.942-1.16 1.167-1.828 1.167-3.411 0-1.65-.382-2.564-1.459-3.612-1.324-1.271-2.311-1.494-6.732-1.494-2.694 0-3.928.09-4.107.268zm8.191 2.764c.337.245.785.892.965 1.383.292.825.292 1.048 0 1.873-.561 1.538-1.212 1.828-4.062 1.917l-2.446.09V59.931l2.446.09c2.065.066 2.581.155 3.097.534zm.224 8.34c1.01.601 1.459 1.404 1.459 2.496-.022 1.093-.561 1.918-1.638 2.453-.584.312-1.324.401-3.165.401h-2.423V68.45h2.536c2.087 0 2.625.067 3.231.446zM190.575 57.791c-.427.424-.382 18.306.044 18.662.202.179 1.841.246 5.431.201l5.14-.067v-2.229l-3.973-.067-3.994-.045-.045-8.316-.067-8.295-1.123-.066c-.673-.045-1.234.044-1.413.222zM206.261 57.948c-.381.69-.336 17.881.045 18.394.225.29.539.38 1.392.312l1.122-.067V57.636l-1.167-.067c-.965-.067-1.212 0-1.392.379zM201.773 100.266c-3.366 7.179-8.102 17.904-8.057 18.238.068.379.27.446 1.324.513l1.257.067 1.01-2.297 1.01-2.296 4.421-.067 4.398-.045.898 1.94c1.279 2.787 1.122 2.631 2.491 2.631 1.122 0 1.212-.045 1.257-.557.045-.335-1.549-4.148-4.04-9.588l-4.084-9.03-.808-.067c-.673-.067-.83.023-1.077.558zm2.76 8.16l1.661 3.724h-3.366c-3.12 0-3.367-.023-3.232-.402.247-.691 3.164-7.134 3.209-7.09.023.022.786 1.717 1.728 3.768zM130.947 100.177c-.067.133-.09 4.437-.067 9.52l.067 9.253h10.772v-2.23l-3.972-.066-3.995-.045v-8.094c0-5.997-.067-8.16-.269-8.361-.359-.356-2.402-.356-2.536.023zM146.679 100.243c-.18.446-.18 18.016 0 18.462.157.423 2.109.49 2.513.089.202-.201.269-2.564.269-9.231 0-4.927-.067-9.119-.134-9.32-.202-.512-2.446-.512-2.648 0zM156.912 100.154c-.202.201-.269 2.587-.269 9.342 0 7.626.045 9.097.314 9.342.247.179 1.526.246 4.668.179l4.331-.067 1.234-.691c3.097-1.739 3.658-6.02 1.078-8.205l-.921-.781.629-.735c.92-1.071 1.234-1.985 1.234-3.523 0-1.65-.359-2.587-1.459-3.634-1.324-1.271-2.311-1.494-6.732-1.494-2.693 0-3.927.089-4.107.267zm8.191 2.765c.337.245.786.892.965 1.382.292.825.292 1.048 0 1.873-.224.602-.606 1.115-1.099 1.449-.674.446-1.033.513-3.075.513h-2.334V102.295l2.446.089c2.065.067 2.581.156 3.097.535zm.045 8.294c2.244 1.137 2.244 3.857 0 4.994-.583.313-1.324.402-3.164.402h-2.424V110.812h2.424c1.84 0 2.581.089 3.164.401zM176.212 100.154c-.202.201-.269 2.587-.269 9.342 0 7.559.045 9.12.314 9.32.179.156.808.246 1.414.201l1.077-.067.067-3.523.067-3.5h4.466l1.796 3.567 1.795 3.568h1.347c2.019 0 1.997-.313-.18-4.281l-1.773-3.256.965-.691c1.953-1.36 3.03-3.701 2.693-5.841-.179-1.271-1.279-3.144-2.222-3.858-1.436-1.092-2.334-1.248-6.979-1.248-3.052 0-4.399.089-4.578.267zm8.775 2.72c.404.157 1.009.625 1.346 1.004 1.167 1.382 1.01 3.121-.426 4.504l-.786.758-3.142.067-3.119.089v-6.734h2.693c1.773 0 2.962.112 3.434.312zM216.697 100.221c-.18.468-.18 18.016 0 18.484.202.513 2.446.513 2.648 0 .067-.201.134-1.806.134-3.568v-3.21H223.856l1.795 3.523 1.795 3.5h1.324c2.087 0 2.087-.156-.045-4.036-1.795-3.299-1.795-3.322-1.324-3.656 2.155-1.494 3.142-3.144 3.142-5.351.023-1.739-.538-3.122-1.683-4.281-1.548-1.516-1.997-1.628-7.271-1.695-4.219-.066-4.758-.022-4.892.29zm8.976 2.698c.943.446 1.571 1.226 1.908 2.341.224.736.202.959-.269 1.918-.292.579-.876 1.293-1.302 1.56-.696.469-1.032.513-3.636.513h-2.895v-6.689h2.716c2.042 0 2.895.089 3.478.357zM234.179 100.355c-.18.535.044.892 3.747 5.953l2.648 3.634v4.281c0 3.055.068 4.37.27 4.571.404.401 2.356.334 2.513-.089.067-.201.135-2.252.135-4.549v-4.214l3.254-4.414c3.837-5.173 3.927-5.485 1.885-5.597l-1.279-.066-2.626 3.589c-1.459 1.984-2.715 3.523-2.783 3.411-.089-.089-1.122-1.493-2.266-3.076-2.918-4.036-2.783-3.902-4.174-3.902-.988 0-1.212.067-1.324.468z"
7743
8053
  })));
7744
8054
  }
7745
8055
 
7746
- var _path$H, _path2$j, _path3$e, _path4$3, _path5$2;
8056
+ var _path$J, _path2$l, _path3$g, _path4$5, _path5$4;
7747
8057
 
7748
- var _excluded$1d = ["title", "titleId"];
8058
+ var _excluded$1f = ["title", "titleId"];
7749
8059
 
7750
- function _extends$T() { _extends$T = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$T.apply(this, arguments); }
8060
+ function _extends$V() { _extends$V = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$V.apply(this, arguments); }
7751
8061
 
7752
- function _objectWithoutProperties$S(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$T(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8062
+ function _objectWithoutProperties$U(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$V(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
7753
8063
 
7754
- function _objectWithoutPropertiesLoose$T(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8064
+ function _objectWithoutPropertiesLoose$V(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
7755
8065
 
7756
8066
  function SvgLogoQplBlack(_ref) {
7757
8067
  var title = _ref.title,
7758
8068
  titleId = _ref.titleId,
7759
- props = _objectWithoutProperties$S(_ref, _excluded$1d);
8069
+ props = _objectWithoutProperties$U(_ref, _excluded$1f);
7760
8070
 
7761
- return /*#__PURE__*/React.createElement("svg", _extends$T({
8071
+ return /*#__PURE__*/React.createElement("svg", _extends$V({
7762
8072
  viewBox: "0 0 320 43",
7763
8073
  xmlns: "http://www.w3.org/2000/svg",
7764
8074
  "aria-labelledby": titleId
7765
8075
  }, props), title ? /*#__PURE__*/React.createElement("title", {
7766
8076
  id: titleId
7767
- }, title) : null, _path$H || (_path$H = /*#__PURE__*/React.createElement("path", {
8077
+ }, title) : null, _path$J || (_path$J = /*#__PURE__*/React.createElement("path", {
7768
8078
  fillRule: "evenodd",
7769
8079
  clipRule: "evenodd",
7770
8080
  d: "M32.462 9.322v18.643l-8.116 4.66V13.984l-8.114-4.66-8.116 4.66v18.642L0 27.965V9.322L8.116 4.66 16.23 0h.002l8.115 4.66 8.115 4.66v.002zM8.114 32.626l8.117-4.662 8.115 4.662 8.116 4.66-8.116 4.66-8.115-4.66-8.117-4.66z"
7771
- })), _path2$j || (_path2$j = /*#__PURE__*/React.createElement("path", {
8081
+ })), _path2$l || (_path2$l = /*#__PURE__*/React.createElement("path", {
7772
8082
  fillRule: "evenodd",
7773
8083
  clipRule: "evenodd",
7774
8084
  d: "M8.115 32.626l16.223 9.32 8.112-4.66-16.225-9.322-8.11 4.662z"
7775
- })), _path3$e || (_path3$e = /*#__PURE__*/React.createElement("path", {
8085
+ })), _path3$g || (_path3$g = /*#__PURE__*/React.createElement("path", {
7776
8086
  fillRule: "evenodd",
7777
8087
  clipRule: "evenodd",
7778
8088
  d: "M24.338 13.982v18.644l8.113-4.661V9.322l-8.113 4.66zM0 27.965l8.113 4.66V13.982L0 9.322v18.643z"
7779
- })), _path4$3 || (_path4$3 = /*#__PURE__*/React.createElement("path", {
8089
+ })), _path4$5 || (_path4$5 = /*#__PURE__*/React.createElement("path", {
7780
8090
  fillRule: "evenodd",
7781
8091
  clipRule: "evenodd",
7782
8092
  d: "M0 9.322l8.116 4.66 8.11-4.66 8.112 4.66 8.113-4.66L16.225 0 0 9.322z"
7783
- })), _path5$2 || (_path5$2 = /*#__PURE__*/React.createElement("path", {
8093
+ })), _path5$4 || (_path5$4 = /*#__PURE__*/React.createElement("path", {
7784
8094
  d: "M59.443 28.671a.703.703 0 01.03 1.258l-.772.437c-.28.162-.655.119-.914-.035L54.5 28.467c-.9.37-1.907.563-3.01.563-4.136 0-7.425-3.271-7.425-7.384a7.393 7.393 0 017.424-7.424 7.41 7.41 0 017.445 7.425c0 1.932-.826 4-2.296 5.422l2.806 1.602zm89.86-6.949a2.672 2.672 0 002.662-2.668c0-1.372-1.196-2.47-2.662-2.47h-2.801v5.138h2.801zm-2.801 6.404a.723.723 0 01-.712.708h-.75a.709.709 0 01-.713-.708v-13a.71.71 0 01.712-.708h4.362c2.611 0 4.759 2.111 4.759 4.674 0 2.615-2.138 4.756-4.738 4.756h-2.92v4.277zm11.38-13c0-.382.329-.708.713-.708h.749a.71.71 0 01.714.709v8.187c0 2.149 1.338 3.65 3.373 3.65 2.064 0 3.411-1.474 3.411-3.61v-8.226a.71.71 0 01.713-.709h.751c.384 0 .712.326.712.708v8.305c0 3.22-2.33 5.6-5.588 5.6-3.237 0-5.548-2.38-5.548-5.6v-8.305zm21.313 5.456c1.258 0 2.029-.847 2.029-2.117 0-1.266-.734-2.02-2.029-2.02h-2.88v4.138h2.88v-.001zm.336 6.264c1.242 0 2.149-.917 2.149-2.157 0-1.169-1.088-2.079-2.485-2.079h-2.919v4.236h3.255zm4.481-2.138c0 2.41-1.932 4.126-4.64 4.126h-4.5a.711.711 0 01-.712-.71V15.127a.71.71 0 01.712-.708h4.323c2.553 0 4.384 1.663 4.384 3.948 0 1.256-.64 2.362-1.593 3.094 1.226.673 2.026 1.761 2.026 3.248v-.001zm11.994 2.138c.4 0 .714.323.714.708v.57a.727.727 0 01-.21.504.717.717 0 01-.504.207h-6.829a.71.71 0 01-.712-.71V15.127a.71.71 0 01.712-.708h.77c.384 0 .712.326.712.708v11.719h5.347zm4.119-11.72c0-.38.329-.708.712-.708h.791c.384 0 .714.326.714.709v12.998a.726.726 0 01-.714.71h-.791a.725.725 0 01-.712-.711V15.127zm13.994-.903c1.949 0 3.477.617 5.017 1.923.288.288.31.735.019 1.026l-.508.502c-.292.363-.681.34-.999.025-.998-.86-2.328-1.39-3.548-1.39-2.876 0-5.169 2.4-5.169 5.318 0 2.9 2.297 5.298 5.169 5.298 1.372 0 2.186-.368 3.558-1.399.291-.23.61-.25.911-.047l.571.512c.334.25.295.76.011 1.041-1.365 1.317-3.128 2-5.032 2-4.141 0-7.463-3.28-7.463-7.386 0-4.112 3.33-7.424 7.463-7.424zm24.873 12.624c.4 0 .714.322.714.708v.57a.708.708 0 01-.441.657.716.716 0 01-.273.053h-6.829a.71.71 0 01-.712-.71V15.127a.71.71 0 01.712-.708h.771c.383 0 .712.327.712.708v11.719h5.346zm4.119-11.72c0-.382.329-.708.713-.708h.788c.385 0 .714.326.714.708v12.998a.725.725 0 01-.714.71h-.788a.724.724 0 01-.713-.711V15.127zm12.572 5.456c1.259 0 2.03-.848 2.03-2.117 0-1.266-.734-2.02-2.03-2.02h-2.88v4.138h2.88v-.001zm.336 6.264c1.242 0 2.149-.917 2.149-2.157 0-1.169-1.088-2.079-2.485-2.079h-2.918v4.236h3.254zm4.482-2.139c0 2.41-1.933 4.127-4.641 4.127h-4.499a.71.71 0 01-.714-.71V15.127c0-.385.314-.708.714-.708h4.322c2.554 0 4.385 1.663 4.385 3.948 0 1.256-.64 2.362-1.594 3.094 1.226.673 2.027 1.761 2.027 3.248zm10.178-3.221c1.36 0 2.504-1.133 2.504-2.53 0-1.301-1.164-2.432-2.504-2.432h-3.491v4.962h3.491zm-3.529 6.638a.723.723 0 01-.712.708h-.771a.714.714 0 01-.658-.436.725.725 0 01-.055-.272V15.127a.71.71 0 01.713-.709h5.111c2.567 0 4.642 2.005 4.642 4.518 0 1.783-1.091 3.353-2.788 4.166l2.531 4.667c.262.487-.048 1.064-.635 1.064h-1.006a.675.675 0 01-.617-.36l-2.531-5.018h-3.224v4.67zm18.887-7.384a575.069 575.069 0 00-1.209-2.708l-2.441 5.455h4.878c-.318-.707-.64-1.426-1.228-2.747zm-1.926-6.12a.688.688 0 01.637-.4h.198c.297 0 .514.157.643.415l5.961 13.21c.222.48-.104.988-.644.988h-.79a.688.688 0 01-.643-.415l-1.37-3.04h-6.569l-1.347 3.028a.698.698 0 01-.651.427h-.788c-.539 0-.866-.506-.644-.986l6.007-13.227zm16.639 6.865c1.36 0 2.503-1.133 2.503-2.53 0-1.301-1.164-2.432-2.503-2.432h-3.491v4.962h3.491zm-3.531 6.639a.724.724 0 01-.713.709h-.77a.716.716 0 01-.504-.207.706.706 0 01-.209-.502V15.127a.71.71 0 01.712-.709h5.113c2.566 0 4.641 2.005 4.641 4.518 0 1.782-1.092 3.353-2.788 4.166l2.531 4.668c.261.486-.049 1.063-.635 1.063h-1.006a.671.671 0 01-.618-.36l-2.53-5.018h-3.224v4.67zM308.115 15.5a.694.694 0 01-.026-.724.698.698 0 01.63-.358h.926c.241 0 .45.133.59.316l3.714 5.101 3.716-5.106a.744.744 0 01.586-.31h.929c.578 0 .901.598.588 1.103l-4.751 6.45v6.153a.726.726 0 01-.713.71h-.771a.71.71 0 01-.712-.71V21.99l-4.706-6.49V15.5zm-245.026-.33c0-.38.328-.707.712-.707h.75a.71.71 0 01.713.708v8.188c0 2.15 1.338 3.65 3.374 3.65 2.063 0 3.411-1.474 3.411-3.61V15.17a.71.71 0 01.712-.708h.751c.384 0 .713.326.713.708v8.306c0 3.218-2.33 5.598-5.587 5.598-3.24 0-5.55-2.379-5.55-5.598v-8.306zm24.767 11.72c.4 0 .714.323.714.71v.57a.712.712 0 01-.714.708h-7.777a.711.711 0 01-.712-.709V15.171c0-.386.312-.708.712-.708h7.777c.399 0 .714.322.714.708v.57a.711.711 0 01-.714.71h-6.294v4.118h5.327c.383 0 .712.328.712.708v.57a.71.71 0 01-.712.709h-5.327v4.334h6.294zm13.653 0c.4 0 .714.323.714.71v.57a.712.712 0 01-.714.708h-7.777a.712.712 0 01-.712-.709V15.171a.71.71 0 01.712-.708h7.777c.4 0 .714.322.714.708v.57a.708.708 0 01-.441.656.712.712 0 01-.273.054h-6.294v4.118h5.327c.384 0 .713.328.713.708v.57a.71.71 0 01-.712.709h-5.327v4.334h6.293zm7.281 1.28a.704.704 0 01-.209.502.724.724 0 01-.503.206h-.692a.723.723 0 01-.712-.709V14.956c0-.385.329-.69.712-.69h.332c.206 0 .399.094.527.253l8.238 10.21v-9.557a.71.71 0 01.713-.709h.691c.384 0 .714.327.714.709v13.214c0 .384-.331.69-.714.69h-.192a.677.677 0 01-.527-.253l-8.378-10.402v9.749zm14.292-1.87l.027-.036c.036-.045.068-.084.139-.175.077-.1.111-.143.147-.184.34-.444.752-.595 1.18-.228l.107.093c.26.229.539.435.834.618.707.439 1.444.698 2.174.698 1.361 0 2.307-.81 2.307-1.824 0-1.072-.869-1.803-3.251-2.793-2.668-1.159-3.678-2.203-3.678-4.372 0-2.023 1.686-3.83 4.543-3.83a6.623 6.623 0 012.544.526c.277.115.526.238.744.362.133.075.228.136.24.148.374.188.56.66.248 1.154a5.326 5.326 0 00-.11.172l-.002.006c-.04.064-.08.127-.122.19-.279.434-.677.548-1.14.288-.008-.003-.186-.11-.275-.162-.172-.1-.348-.19-.528-.275-.527-.245-1.042-.398-1.509-.42a2.478 2.478 0 00-.109-.003c-1.577 0-2.386.843-2.386 1.824 0 1.042.727 1.742 2.453 2.458 3.317 1.343 4.594 2.465 4.594 4.67 0 2.2-2.066 3.87-4.602 3.87a6.553 6.553 0 01-3.014-.744 6.331 6.331 0 01-1.373-.929l-.042-.036c-.329-.29-.423-.622-.14-1.066zm-71.594.684c2.957 0 5.385-2.405 5.385-5.338 0-2.94-2.437-5.377-5.385-5.377-2.944 0-5.365 2.434-5.365 5.378 0 2.935 2.413 5.336 5.365 5.336z"
7785
8095
  })));
7786
8096
  }
7787
8097
 
7788
- var _g$a, _defs$6;
8098
+ var _g$9, _defs$6;
7789
8099
 
7790
- var _excluded$1e = ["title", "titleId"];
8100
+ var _excluded$1g = ["title", "titleId"];
7791
8101
 
7792
- function _extends$U() { _extends$U = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$U.apply(this, arguments); }
8102
+ function _extends$W() { _extends$W = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$W.apply(this, arguments); }
7793
8103
 
7794
- function _objectWithoutProperties$T(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$U(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8104
+ function _objectWithoutProperties$V(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$W(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
7795
8105
 
7796
- function _objectWithoutPropertiesLoose$U(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8106
+ function _objectWithoutPropertiesLoose$W(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
7797
8107
 
7798
8108
  function SvgLogoQplColor(_ref) {
7799
8109
  var title = _ref.title,
7800
8110
  titleId = _ref.titleId,
7801
- props = _objectWithoutProperties$T(_ref, _excluded$1e);
8111
+ props = _objectWithoutProperties$V(_ref, _excluded$1g);
7802
8112
 
7803
- return /*#__PURE__*/React.createElement("svg", _extends$U({
8113
+ return /*#__PURE__*/React.createElement("svg", _extends$W({
7804
8114
  viewBox: "0 0 355 48",
7805
8115
  fill: "none",
7806
8116
  xmlns: "http://www.w3.org/2000/svg",
7807
8117
  "aria-labelledby": titleId
7808
8118
  }, props), title ? /*#__PURE__*/React.createElement("title", {
7809
8119
  id: titleId
7810
- }, title) : null, _g$a || (_g$a = /*#__PURE__*/React.createElement("g", {
8120
+ }, title) : null, _g$9 || (_g$9 = /*#__PURE__*/React.createElement("g", {
7811
8121
  clipPath: "url(#logo-qpl-color_svg__clip0)"
7812
8122
  }, /*#__PURE__*/React.createElement("path", {
7813
8123
  fillRule: "evenodd",
@@ -7846,112 +8156,112 @@ function SvgLogoQplColor(_ref) {
7846
8156
  })))));
7847
8157
  }
7848
8158
 
7849
- var _path$I, _path2$k, _path3$f, _path4$4, _path5$3;
8159
+ var _path$K, _path2$m, _path3$h, _path4$6, _path5$5;
7850
8160
 
7851
- var _excluded$1f = ["title", "titleId"];
8161
+ var _excluded$1h = ["title", "titleId"];
7852
8162
 
7853
- function _extends$V() { _extends$V = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$V.apply(this, arguments); }
8163
+ function _extends$X() { _extends$X = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$X.apply(this, arguments); }
7854
8164
 
7855
- function _objectWithoutProperties$U(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$V(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8165
+ function _objectWithoutProperties$W(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$X(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
7856
8166
 
7857
- function _objectWithoutPropertiesLoose$V(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8167
+ function _objectWithoutPropertiesLoose$X(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
7858
8168
 
7859
8169
  function SvgLogoQplWhite(_ref) {
7860
8170
  var title = _ref.title,
7861
8171
  titleId = _ref.titleId,
7862
- props = _objectWithoutProperties$U(_ref, _excluded$1f);
8172
+ props = _objectWithoutProperties$W(_ref, _excluded$1h);
7863
8173
 
7864
- return /*#__PURE__*/React.createElement("svg", _extends$V({
8174
+ return /*#__PURE__*/React.createElement("svg", _extends$X({
7865
8175
  viewBox: "0 0 320 43",
7866
8176
  fill: "#fff",
7867
8177
  xmlns: "http://www.w3.org/2000/svg",
7868
8178
  "aria-labelledby": titleId
7869
8179
  }, props), title ? /*#__PURE__*/React.createElement("title", {
7870
8180
  id: titleId
7871
- }, title) : null, _path$I || (_path$I = /*#__PURE__*/React.createElement("path", {
8181
+ }, title) : null, _path$K || (_path$K = /*#__PURE__*/React.createElement("path", {
7872
8182
  fillRule: "evenodd",
7873
8183
  clipRule: "evenodd",
7874
8184
  d: "M32.462 9.322v18.643l-8.116 4.66V13.984l-8.114-4.66-8.116 4.66v18.642L0 27.965V9.322L8.116 4.66 16.23 0h.002l8.115 4.66 8.115 4.66v.002zM8.114 32.626l8.117-4.662 8.115 4.662 8.116 4.66-8.116 4.66-8.115-4.66-8.117-4.66z"
7875
- })), _path2$k || (_path2$k = /*#__PURE__*/React.createElement("path", {
8185
+ })), _path2$m || (_path2$m = /*#__PURE__*/React.createElement("path", {
7876
8186
  fillRule: "evenodd",
7877
8187
  clipRule: "evenodd",
7878
8188
  d: "M8.115 32.626l16.223 9.32 8.112-4.66-16.225-9.322-8.11 4.662z"
7879
- })), _path3$f || (_path3$f = /*#__PURE__*/React.createElement("path", {
8189
+ })), _path3$h || (_path3$h = /*#__PURE__*/React.createElement("path", {
7880
8190
  fillRule: "evenodd",
7881
8191
  clipRule: "evenodd",
7882
8192
  d: "M24.338 13.982v18.644l8.113-4.661V9.322l-8.113 4.66zM0 27.965l8.113 4.66V13.982L0 9.322v18.643z"
7883
- })), _path4$4 || (_path4$4 = /*#__PURE__*/React.createElement("path", {
8193
+ })), _path4$6 || (_path4$6 = /*#__PURE__*/React.createElement("path", {
7884
8194
  fillRule: "evenodd",
7885
8195
  clipRule: "evenodd",
7886
8196
  d: "M0 9.322l8.116 4.66 8.11-4.66 8.112 4.66 8.113-4.66L16.225 0 0 9.322z"
7887
- })), _path5$3 || (_path5$3 = /*#__PURE__*/React.createElement("path", {
8197
+ })), _path5$5 || (_path5$5 = /*#__PURE__*/React.createElement("path", {
7888
8198
  d: "M59.443 28.671a.703.703 0 01.03 1.258l-.772.437c-.28.162-.655.119-.914-.035L54.5 28.467c-.9.37-1.907.563-3.01.563-4.136 0-7.425-3.271-7.425-7.384a7.393 7.393 0 017.424-7.424 7.41 7.41 0 017.445 7.425c0 1.932-.826 4-2.296 5.422l2.806 1.602zm89.86-6.949a2.672 2.672 0 002.662-2.668c0-1.372-1.196-2.47-2.662-2.47h-2.801v5.138h2.801zm-2.801 6.404a.723.723 0 01-.712.708h-.75a.709.709 0 01-.713-.708v-13a.71.71 0 01.712-.708h4.362c2.611 0 4.759 2.111 4.759 4.674 0 2.615-2.138 4.756-4.738 4.756h-2.92v4.277zm11.38-13c0-.382.329-.708.713-.708h.749a.71.71 0 01.714.709v8.187c0 2.149 1.338 3.65 3.373 3.65 2.064 0 3.411-1.474 3.411-3.61v-8.226a.71.71 0 01.713-.709h.751c.384 0 .712.326.712.708v8.305c0 3.22-2.33 5.6-5.588 5.6-3.237 0-5.548-2.38-5.548-5.6v-8.305zm21.313 5.456c1.258 0 2.029-.847 2.029-2.117 0-1.266-.734-2.02-2.029-2.02h-2.88v4.138h2.88v-.001zm.336 6.264c1.242 0 2.149-.917 2.149-2.157 0-1.169-1.088-2.079-2.485-2.079h-2.919v4.236h3.255zm4.481-2.138c0 2.41-1.932 4.126-4.64 4.126h-4.5a.711.711 0 01-.712-.71V15.127a.71.71 0 01.712-.708h4.323c2.553 0 4.384 1.663 4.384 3.948 0 1.256-.64 2.362-1.593 3.094 1.226.673 2.026 1.761 2.026 3.248v-.001zm11.994 2.138c.4 0 .714.323.714.708v.57a.727.727 0 01-.21.504.717.717 0 01-.504.207h-6.829a.71.71 0 01-.712-.71V15.127a.71.71 0 01.712-.708h.77c.384 0 .712.326.712.708v11.719h5.347zm4.119-11.72c0-.38.329-.708.712-.708h.791c.384 0 .714.326.714.709v12.998a.726.726 0 01-.714.71h-.791a.725.725 0 01-.712-.711V15.127zm13.994-.903c1.949 0 3.477.617 5.017 1.923.288.288.31.735.019 1.026l-.508.502c-.292.363-.681.34-.999.025-.998-.86-2.328-1.39-3.548-1.39-2.876 0-5.169 2.4-5.169 5.318 0 2.9 2.297 5.298 5.169 5.298 1.372 0 2.186-.368 3.558-1.399.291-.23.61-.25.911-.047l.571.512c.334.25.295.76.011 1.041-1.365 1.317-3.128 2-5.032 2-4.141 0-7.463-3.28-7.463-7.386 0-4.112 3.33-7.424 7.463-7.424zm24.873 12.624c.4 0 .714.322.714.708v.57a.708.708 0 01-.441.657.716.716 0 01-.273.053h-6.829a.71.71 0 01-.712-.71V15.127a.71.71 0 01.712-.708h.771c.383 0 .712.327.712.708v11.719h5.346zm4.119-11.72c0-.382.329-.708.713-.708h.788c.385 0 .714.326.714.708v12.998a.725.725 0 01-.714.71h-.788a.724.724 0 01-.713-.711V15.127zm12.572 5.456c1.259 0 2.03-.848 2.03-2.117 0-1.266-.734-2.02-2.03-2.02h-2.88v4.138h2.88v-.001zm.336 6.264c1.242 0 2.149-.917 2.149-2.157 0-1.169-1.088-2.079-2.485-2.079h-2.918v4.236h3.254zm4.482-2.139c0 2.41-1.933 4.127-4.641 4.127h-4.499a.71.71 0 01-.714-.71V15.127c0-.385.314-.708.714-.708h4.322c2.554 0 4.385 1.663 4.385 3.948 0 1.256-.64 2.362-1.594 3.094 1.226.673 2.027 1.761 2.027 3.248zm10.178-3.221c1.36 0 2.504-1.133 2.504-2.53 0-1.301-1.164-2.432-2.504-2.432h-3.491v4.962h3.491zm-3.529 6.638a.723.723 0 01-.712.708h-.771a.714.714 0 01-.658-.436.725.725 0 01-.055-.272V15.127a.71.71 0 01.713-.709h5.111c2.567 0 4.642 2.005 4.642 4.518 0 1.783-1.091 3.353-2.788 4.166l2.531 4.667c.262.487-.048 1.064-.635 1.064h-1.006a.675.675 0 01-.617-.36l-2.531-5.018h-3.224v4.67zm18.887-7.384a575.069 575.069 0 00-1.209-2.708l-2.441 5.455h4.878c-.318-.707-.64-1.426-1.228-2.747zm-1.926-6.12a.688.688 0 01.637-.4h.198c.297 0 .514.157.643.415l5.961 13.21c.222.48-.104.988-.644.988h-.79a.688.688 0 01-.643-.415l-1.37-3.04h-6.569l-1.347 3.028a.698.698 0 01-.651.427h-.788c-.539 0-.866-.506-.644-.986l6.007-13.227zm16.639 6.865c1.36 0 2.503-1.133 2.503-2.53 0-1.301-1.164-2.432-2.503-2.432h-3.491v4.962h3.491zm-3.531 6.639a.724.724 0 01-.713.709h-.77a.716.716 0 01-.504-.207.706.706 0 01-.209-.502V15.127a.71.71 0 01.712-.709h5.113c2.566 0 4.641 2.005 4.641 4.518 0 1.782-1.092 3.353-2.788 4.166l2.531 4.668c.261.486-.049 1.063-.635 1.063h-1.006a.671.671 0 01-.618-.36l-2.53-5.018h-3.224v4.67zM308.115 15.5a.694.694 0 01-.026-.724.698.698 0 01.63-.358h.926c.241 0 .45.133.59.316l3.714 5.101 3.716-5.106a.744.744 0 01.586-.31h.929c.578 0 .901.598.588 1.103l-4.751 6.45v6.153a.726.726 0 01-.713.71h-.771a.71.71 0 01-.712-.71V21.99l-4.706-6.49V15.5zm-245.026-.33c0-.38.328-.707.712-.707h.75a.71.71 0 01.713.708v8.188c0 2.15 1.338 3.65 3.374 3.65 2.063 0 3.411-1.474 3.411-3.61V15.17a.71.71 0 01.712-.708h.751c.384 0 .713.326.713.708v8.306c0 3.218-2.33 5.598-5.587 5.598-3.24 0-5.55-2.379-5.55-5.598v-8.306zm24.767 11.72c.4 0 .714.323.714.71v.57a.712.712 0 01-.714.708h-7.777a.711.711 0 01-.712-.709V15.171c0-.386.312-.708.712-.708h7.777c.399 0 .714.322.714.708v.57a.711.711 0 01-.714.71h-6.294v4.118h5.327c.383 0 .712.328.712.708v.57a.71.71 0 01-.712.709h-5.327v4.334h6.294zm13.653 0c.4 0 .714.323.714.71v.57a.712.712 0 01-.714.708h-7.777a.712.712 0 01-.712-.709V15.171a.71.71 0 01.712-.708h7.777c.4 0 .714.322.714.708v.57a.708.708 0 01-.441.656.712.712 0 01-.273.054h-6.294v4.118h5.327c.384 0 .713.328.713.708v.57a.71.71 0 01-.712.709h-5.327v4.334h6.293zm7.281 1.28a.704.704 0 01-.209.502.724.724 0 01-.503.206h-.692a.723.723 0 01-.712-.709V14.956c0-.385.329-.69.712-.69h.332c.206 0 .399.094.527.253l8.238 10.21v-9.557a.71.71 0 01.713-.709h.691c.384 0 .714.327.714.709v13.214c0 .384-.331.69-.714.69h-.192a.677.677 0 01-.527-.253l-8.378-10.402v9.749zm14.292-1.87l.027-.036c.036-.045.068-.084.139-.175.077-.1.111-.143.147-.184.34-.444.752-.595 1.18-.228l.107.093c.26.229.539.435.834.618.707.439 1.444.698 2.174.698 1.361 0 2.307-.81 2.307-1.824 0-1.072-.869-1.803-3.251-2.793-2.668-1.159-3.678-2.203-3.678-4.372 0-2.023 1.686-3.83 4.543-3.83a6.623 6.623 0 012.544.526c.277.115.526.238.744.362.133.075.228.136.24.148.374.188.56.66.248 1.154a5.326 5.326 0 00-.11.172l-.002.006c-.04.064-.08.127-.122.19-.279.434-.677.548-1.14.288-.008-.003-.186-.11-.275-.162-.172-.1-.348-.19-.528-.275-.527-.245-1.042-.398-1.509-.42a2.478 2.478 0 00-.109-.003c-1.577 0-2.386.843-2.386 1.824 0 1.042.727 1.742 2.453 2.458 3.317 1.343 4.594 2.465 4.594 4.67 0 2.2-2.066 3.87-4.602 3.87a6.553 6.553 0 01-3.014-.744 6.331 6.331 0 01-1.373-.929l-.042-.036c-.329-.29-.423-.622-.14-1.066zm-71.594.684c2.957 0 5.385-2.405 5.385-5.338 0-2.94-2.437-5.377-5.385-5.377-2.944 0-5.365 2.434-5.365 5.378 0 2.935 2.413 5.336 5.365 5.336z"
7889
8199
  })));
7890
8200
  }
7891
8201
 
7892
- var _path$J, _path2$l, _path3$g, _path4$5, _path5$4;
8202
+ var _path$L, _path2$n, _path3$i, _path4$7, _path5$6;
7893
8203
 
7894
- var _excluded$1g = ["title", "titleId"];
8204
+ var _excluded$1i = ["title", "titleId"];
7895
8205
 
7896
- function _extends$W() { _extends$W = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$W.apply(this, arguments); }
8206
+ function _extends$Y() { _extends$Y = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$Y.apply(this, arguments); }
7897
8207
 
7898
- function _objectWithoutProperties$V(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$W(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8208
+ function _objectWithoutProperties$X(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$Y(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
7899
8209
 
7900
- function _objectWithoutPropertiesLoose$W(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8210
+ function _objectWithoutPropertiesLoose$Y(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
7901
8211
 
7902
8212
  function SvgLogoReservoirIconColor(_ref) {
7903
8213
  var title = _ref.title,
7904
8214
  titleId = _ref.titleId,
7905
- props = _objectWithoutProperties$V(_ref, _excluded$1g);
8215
+ props = _objectWithoutProperties$X(_ref, _excluded$1i);
7906
8216
 
7907
- return /*#__PURE__*/React.createElement("svg", _extends$W({
8217
+ return /*#__PURE__*/React.createElement("svg", _extends$Y({
7908
8218
  viewBox: "0 0 105 129",
7909
8219
  fill: "none",
7910
8220
  xmlns: "http://www.w3.org/2000/svg",
7911
8221
  "aria-labelledby": titleId
7912
8222
  }, props), title ? /*#__PURE__*/React.createElement("title", {
7913
8223
  id: titleId
7914
- }, title) : null, _path$J || (_path$J = /*#__PURE__*/React.createElement("path", {
8224
+ }, title) : null, _path$L || (_path$L = /*#__PURE__*/React.createElement("path", {
7915
8225
  d: "M57.736.066H27.298S17.876-1.02 9.18 5.622C.483 12.265.604 20.962.604 20.962h48.798S73.317 19.634 71.868 42.1c-1.45 22.466-22.466 19.446-22.466 19.446L40 61.667l9.146 19.688h.86s14.735 4.953 32.733-7.247C100.736 61.908 99.528 42.1 99.528 42.1s1.812-15.944-9.059-28.627C79.599.791 57.736.066 57.736.066z",
7916
8226
  fill: "#0576D3"
7917
- })), _path2$l || (_path2$l = /*#__PURE__*/React.createElement("path", {
8227
+ })), _path2$n || (_path2$n = /*#__PURE__*/React.createElement("path", {
7918
8228
  d: "M49.146 81.355V61.546L57.736 68l12.79 13.355h-21.38z",
7919
8229
  fill: "#fff"
7920
- })), _path3$g || (_path3$g = /*#__PURE__*/React.createElement("path", {
8230
+ })), _path3$i || (_path3$i = /*#__PURE__*/React.createElement("path", {
7921
8231
  d: "M57.132 61.667H38.41l34.303 66.916h32.13l-27.66-51.28s-9.663-15.636-20.05-15.636z",
7922
8232
  fill: "#004B98"
7923
- })), _path4$5 || (_path4$5 = /*#__PURE__*/React.createElement("path", {
8233
+ })), _path4$7 || (_path4$7 = /*#__PURE__*/React.createElement("path", {
7924
8234
  d: "M55.079 61.305c-13.528.362-16.669.362-16.669.362l10.364 19.787s12.965-.229 18.504-1.548c5.54-1.32 9.784-2.537 9.784-2.537s-8.455-16.427-21.983-16.064zM0 .066h27.056v20.775H0z",
7925
8235
  fill: "#004B98"
7926
- })), _path5$4 || (_path5$4 = /*#__PURE__*/React.createElement("path", {
8236
+ })), _path5$6 || (_path5$6 = /*#__PURE__*/React.createElement("path", {
7927
8237
  fill: "#0576D3",
7928
8238
  d: "M0 20.841h27.056v107.5H0z"
7929
8239
  })));
7930
8240
  }
7931
8241
 
7932
- var _g$b;
8242
+ var _g$a;
7933
8243
 
7934
- var _excluded$1h = ["title", "titleId"];
8244
+ var _excluded$1j = ["title", "titleId"];
7935
8245
 
7936
- function _extends$X() { _extends$X = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$X.apply(this, arguments); }
8246
+ function _extends$Z() { _extends$Z = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$Z.apply(this, arguments); }
7937
8247
 
7938
- function _objectWithoutProperties$W(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$X(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8248
+ function _objectWithoutProperties$Y(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$Z(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
7939
8249
 
7940
- function _objectWithoutPropertiesLoose$X(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8250
+ function _objectWithoutPropertiesLoose$Z(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
7941
8251
 
7942
8252
  function SvgLogoReservoirVerticalColor(_ref) {
7943
8253
  var title = _ref.title,
7944
8254
  titleId = _ref.titleId,
7945
- props = _objectWithoutProperties$W(_ref, _excluded$1h);
8255
+ props = _objectWithoutProperties$Y(_ref, _excluded$1j);
7946
8256
 
7947
- return /*#__PURE__*/React.createElement("svg", _extends$X({
8257
+ return /*#__PURE__*/React.createElement("svg", _extends$Z({
7948
8258
  viewBox: "0 0 234 261",
7949
8259
  fill: "none",
7950
8260
  xmlns: "http://www.w3.org/2000/svg",
7951
8261
  "aria-labelledby": titleId
7952
8262
  }, props), title ? /*#__PURE__*/React.createElement("title", {
7953
8263
  id: titleId
7954
- }, title) : null, _g$b || (_g$b = /*#__PURE__*/React.createElement("g", {
8264
+ }, title) : null, _g$a || (_g$a = /*#__PURE__*/React.createElement("g", {
7955
8265
  clipPath: "url(#logo-reservoir-vertical-color_svg__clip0_362_388)"
7956
8266
  }, /*#__PURE__*/React.createElement("path", {
7957
8267
  d: "M3.63 181.54H17.3a14.33 14.33 0 016.56 1.4 10.237 10.237 0 014.3 3.93 11.481 11.481 0 011.52 6v.06a11.16 11.16 0 01-2.22 7 10.896 10.896 0 01-6.08 3.92l9.4 16.46h-4.27l-8.92-15.9c-.13.011-.26.011-.39 0H7.28v15.87H3.63v-38.74zM17 201.17a9.403 9.403 0 006.57-2.17 7.75 7.75 0 002.35-6 7.624 7.624 0 00-2.42-6 9.677 9.677 0 00-6.66-2.14H7.28v16.35l9.72-.04zM41.15 219a11.557 11.557 0 01-4.39-5 17.6 17.6 0 01-1.54-7.64 17.739 17.739 0 011.54-7.65 11.911 11.911 0 014.34-5.08 11.786 11.786 0 016.52-1.8 11.809 11.809 0 016.46 1.73 11.392 11.392 0 014.22 4.88 16.998 16.998 0 011.49 7.33v1.4H37v-2.82h21.07l-1.8 2.55v-1.35a13.449 13.449 0 00-1.11-5.78 8.22 8.22 0 00-3.06-3.56 8.43 8.43 0 00-12.17 3.64 13.048 13.048 0 00-1.14 5.7v1.35a13.422 13.422 0 001.14 5.8 8.37 8.37 0 003.21 3.65 9.162 9.162 0 004.86 1.28 9.927 9.927 0 003.65-.63 7.162 7.162 0 002.69-1.78 6.86 6.86 0 001.53-2.69l.08-.24h3.49v.27a9.678 9.678 0 01-1.44 3.29c-.66 1.02-1.5 1.911-2.48 2.63a11.782 11.782 0 01-3.44 1.72c-1.358.41-2.771.612-4.19.6a12.665 12.665 0 01-6.74-1.8zM70.65 219.74a9.361 9.361 0 01-3.75-2.93 8.558 8.558 0 01-1.66-4.33v-.25h3.52v.25a6.002 6.002 0 002.34 3.88 8.222 8.222 0 005 1.43 10.21 10.21 0 003.69-.59 5.24 5.24 0 002.39-1.7c.56-.739.86-1.643.85-2.57A3.812 3.812 0 0082 210a8.8 8.8 0 00-4-1.75l-4.22-1a12.702 12.702 0 01-5.86-2.76 6.125 6.125 0 01-1.92-4.66 6.899 6.899 0 011.27-4.12 8.552 8.552 0 013.52-2.81 12.281 12.281 0 015.14-1 11.883 11.883 0 015.2 1.06 8.902 8.902 0 013.52 2.93 8.593 8.593 0 011.49 4.28v.3H82.8v-.19a5.802 5.802 0 00-2.11-3.91 7.231 7.231 0 00-4.69-1.51 8.543 8.543 0 00-3.33.6 5.081 5.081 0 00-2.2 1.7 4.18 4.18 0 00-.78 2.51 3.567 3.567 0 001.21 2.77 9.203 9.203 0 004 1.77l4.19 1c2.8.667 4.783 1.583 5.95 2.75a6.33 6.33 0 011.76 4.68 6.859 6.859 0 01-1.37 4.22 9.117 9.117 0 01-3.75 2.86 13.45 13.45 0 01-5.43 1 13.224 13.224 0 01-5.6-.98zM99.15 219a11.557 11.557 0 01-4.39-5 17.599 17.599 0 01-1.55-7.64 17.74 17.74 0 011.55-7.65 12.282 12.282 0 0117.32-5.15 11.367 11.367 0 014.21 4.88 16.841 16.841 0 011.49 7.33v1.4H95v-2.82h21.09l-1.8 2.55v-1.35a13.31 13.31 0 00-1.12-5.78 8.094 8.094 0 00-3.06-3.56 8.42 8.42 0 00-6.909-.95 8.408 8.408 0 00-5.251 4.59 12.91 12.91 0 00-1.15 5.7v1.35a13.269 13.269 0 001.15 5.8 8.41 8.41 0 003.2 3.65 9.169 9.169 0 004.87 1.26 10.014 10.014 0 003.65-.63 7.124 7.124 0 002.68-1.78 6.62 6.62 0 001.53-2.69l.08-.24h3.5l-.06.27a9.882 9.882 0 01-1.35 3.29 10.197 10.197 0 01-2.49 2.63 11.685 11.685 0 01-3.44 1.72 13.99 13.99 0 01-4.19.6 12.614 12.614 0 01-6.78-1.78zM125.67 192.36h3.55v5h.08a7.999 7.999 0 012.54-4 6.54 6.54 0 014.33-1.48 8.024 8.024 0 012.21.32v3.47a4.558 4.558 0 00-1-.28 9.786 9.786 0 00-1.64-.12 5.997 5.997 0 00-5.68 3.65 9.813 9.813 0 00-.79 4.11v17.29h-3.55l-.05-27.96zM143.52 192.36h3.73l8.49 24.22h.1l8.52-24.22H168l-10.37 27.93h-3.76l-10.35-27.93zM177.41 219a11.85 11.85 0 01-4.47-5 17.174 17.174 0 01-1.6-7.68v-.06a16.99 16.99 0 011.6-7.66 11.775 11.775 0 014.47-5 13.457 13.457 0 0113.31 0 11.994 11.994 0 014.47 5 17.067 17.067 0 011.61 7.68v.06a17.139 17.139 0 01-1.61 7.69 12.099 12.099 0 01-4.46 5 12.366 12.366 0 01-6.66 1.77 12.74 12.74 0 01-6.66-1.8zm11.47-2.73a8.821 8.821 0 003.17-3.89 14.997 14.997 0 001.13-6.07v-.06a14.877 14.877 0 00-1.13-6.07 8.728 8.728 0 00-3.19-3.85A8.63 8.63 0 00184 195a8.497 8.497 0 00-4.75 1.34 8.892 8.892 0 00-3.18 3.87 14.599 14.599 0 00-1.14 6v.06a14.813 14.813 0 001.14 6.07 8.837 8.837 0 003.18 3.89 9.254 9.254 0 009.59 0l.04.04zM204 186.63a2.288 2.288 0 01-.68-1.68 2.206 2.206 0 01.68-1.65 2.354 2.354 0 012.566-.512c.286.119.546.293.764.512a2.217 2.217 0 01.67 1.7 2.354 2.354 0 01-1.446 2.159 2.36 2.36 0 01-2.554-.479v-.05zm-.12 5.73h3.54v27.93h-3.54v-27.93zM215.8 192.36h3.55v5h.08a8.007 8.007 0 012.53-4 6.579 6.579 0 014.34-1.48c.432-.002.864.035 1.29.11.308.05.612.12.91.21v3.47a4.25 4.25 0 00-1-.28 10.002 10.002 0 00-1.64-.12 5.927 5.927 0 00-5.68 3.65 9.813 9.813 0 00-.79 4.11v17.29h-3.59v-27.96zM3.28 235.89H5.2l8.24 11.83-2.2-1.95h.9v-9.88h2.06v13.39h-1.92l-8.23-11.85 2.2 1.94h-.9v9.91H3.28v-13.39zM22 243.79l-4.71-7.9h2.31l3.42 5.9h.06l3.41-5.9h2.32l-4.72 7.9v5.49H22v-5.49zM31.86 235.89h2.08v13.39h-2.08v-13.39zm1 7.07h3.43a2.9 2.9 0 002.09-.7 2.513 2.513 0 00.75-1.94 2.541 2.541 0 00-.75-2 3.002 3.002 0 00-2.09-.7H32.9v-1.75h4a4.815 4.815 0 012.32.55c.64.376 1.163.923 1.51 1.58a4.54 4.54 0 01.57 2.3 4.54 4.54 0 01-.57 2.3 4.004 4.004 0 01-1.56 1.55 4.71 4.71 0 01-2.32.55h-4l.01-1.74zM44.71 235.89h2.08v11.59H53v1.8h-8.29v-13.39zM64.88 235.89h4.72a7.002 7.002 0 013.41.78 5.292 5.292 0 012.17 2.27 7.91 7.91 0 01.76 3.6 7.901 7.901 0 01-.76 3.62 5.257 5.257 0 01-2.18 2.33 6.999 6.999 0 01-3.42.79h-4.7v-13.39zm4.52 11.59c.84.026 1.671-.17 2.41-.57a3.608 3.608 0 001.49-1.66 6.298 6.298 0 00.51-2.67 6.28 6.28 0 00-.51-2.66 3.761 3.761 0 00-1.5-1.65 4.786 4.786 0 00-2.4-.56H67v9.79l2.4-.02zM79.52 235.89H88v1.8h-6.4v3.9h6.07v1.74H81.6v4.15H88v1.8h-8.5l.02-13.39zM93.69 249.05a4.238 4.238 0 01-1.79-1.31 3.652 3.652 0 01-.74-2v-.14h2v.12c.054.4.237.772.52 1.06.306.315.683.552 1.1.69a4.79 4.79 0 001.58.24 4.24 4.24 0 001.55-.25 2.31 2.31 0 001-.71 1.78 1.78 0 00.35-1.09 1.558 1.558 0 00-.58-1.28 4.489 4.489 0 00-1.91-.77l-1.46-.3a6.003 6.003 0 01-2.93-1.34 3.202 3.202 0 01-1-2.41c-.01-.717.21-1.418.63-2a3.996 3.996 0 011.71-1.35 6.06 6.06 0 012.52-.49 6.14 6.14 0 012.46.47c.666.285 1.245.74 1.68 1.32.425.583.668 1.279.7 2v.15h-2v-.12a2 2 0 00-.46-1.07 2.42 2.42 0 00-1-.69 4.412 4.412 0 00-2.84 0 2.126 2.126 0 00-.94.69 1.592 1.592 0 00-.34 1 1.49 1.49 0 00.6 1.23c.552.378 1.18.631 1.84.74l1.46.32a6.21 6.21 0 013 1.33 3.186 3.186 0 01.94 2.44 3.65 3.65 0 01-.62 2.12 3.901 3.901 0 01-1.67 1.35 6.837 6.837 0 01-2.73.49 7.083 7.083 0 01-2.63-.44zM105.26 235.89h2.08v13.39h-2.08v-13.39zM113.85 248.65a5.64 5.64 0 01-2.16-2.41 8.373 8.373 0 01-.77-3.72 7.998 7.998 0 01.76-3.64 5.644 5.644 0 012.16-2.37 6.421 6.421 0 013.31-.83 6.26 6.26 0 012.72.55 5.11 5.11 0 011.91 1.51 5.518 5.518 0 011 2.17v.16h-2.08v-.11a3.676 3.676 0 00-1.31-1.8 3.742 3.742 0 00-2.2-.64 4 4 0 00-2.2.6 3.697 3.697 0 00-1.41 1.71 6.644 6.644 0 00-.49 2.69 6.809 6.809 0 00.5 2.76A4.005 4.005 0 00115 247c.656.418 1.422.63 2.2.61a4.172 4.172 0 001.92-.42 3.241 3.241 0 001.3-1.19 3.479 3.479 0 00.48-1.78V244h-3.51v-1.7h5.57v1.37a6.56 6.56 0 01-.69 3.11 4.686 4.686 0 01-2 2 6.498 6.498 0 01-3.11.69 6.247 6.247 0 01-3.31-.82zM126.56 235.89h1.92l8.24 11.83-2.2-1.95h.9v-9.88h2.07v13.39h-1.92l-8.24-11.85 2.2 1.94h-.9v9.91h-2.07v-13.39zM152 249.05a4.24 4.24 0 01-1.79-1.31 3.569 3.569 0 01-.74-2v-.14h2v.12c.055.398.233.769.51 1.06.311.313.691.55 1.11.69.51.168 1.044.249 1.58.24a4.24 4.24 0 001.55-.25 2.311 2.311 0 001-.71 1.78 1.78 0 00.35-1.09 1.558 1.558 0 00-.58-1.28 4.486 4.486 0 00-1.91-.77l-1.46-.3a6 6 0 01-2.93-1.34 3.208 3.208 0 01-1-2.41 3.417 3.417 0 01.64-2 3.995 3.995 0 011.71-1.35 6.673 6.673 0 015 0 4.1 4.1 0 011.69 1.32c.425.583.668 1.279.7 2v.15h-2v-.12a2.003 2.003 0 00-.46-1.07 2.416 2.416 0 00-1-.69 4.412 4.412 0 00-2.84 0 2.125 2.125 0 00-.94.69 1.59 1.59 0 00-.34 1 1.49 1.49 0 00.6 1.23c.552.378 1.18.631 1.84.74l1.46.32a6.212 6.212 0 013 1.33 3.215 3.215 0 01.94 2.44 3.65 3.65 0 01-.62 2.12 3.895 3.895 0 01-1.76 1.38 6.855 6.855 0 01-2.73.49 7.076 7.076 0 01-2.58-.49zM166.38 243.79l-4.72-7.9H164l3.43 5.9 3.42-5.9h2.32l-4.73 7.9v5.49h-2.08l.02-5.49zM177.85 249.05a4.24 4.24 0 01-1.79-1.31 3.652 3.652 0 01-.74-2v-.14h2v.12c.059.399.241.769.52 1.06.308.317.689.554 1.11.69a4.73 4.73 0 001.57.24 4.24 4.24 0 001.55-.25 2.311 2.311 0 001-.71c.241-.311.368-.696.36-1.09a1.583 1.583 0 00-.58-1.28 4.607 4.607 0 00-1.92-.77l-1.46-.3a6.057 6.057 0 01-2.93-1.34 3.206 3.206 0 01-1-2.41 3.343 3.343 0 01.63-2 3.995 3.995 0 011.71-1.35 6.702 6.702 0 015 0 4.238 4.238 0 011.69 1.32 3.74 3.74 0 01.69 2v.15h-2v-.12a2.003 2.003 0 00-.46-1.07 2.416 2.416 0 00-1-.69 4.412 4.412 0 00-2.84 0 2.18 2.18 0 00-.94.69 1.65 1.65 0 00-.34 1 1.49 1.49 0 00.6 1.23c.552.378 1.18.631 1.84.74l1.46.32a6.163 6.163 0 013 1.33 3.193 3.193 0 01.94 2.44 3.58 3.58 0 01-.62 2.12 3.853 3.853 0 01-1.76 1.38 6.838 6.838 0 01-2.73.49 7.059 7.059 0 01-2.56-.49zM192.36 237.69h-4.1v-1.8h10.27v1.8h-4.09v11.59h-2.08v-11.59zM201.82 235.89h8.5v1.8h-6.42v3.9h6.1v1.74h-6.1v4.15h6.42v1.8h-8.5v-13.39zM214.06 235.89h2.4l4.33 10.68h.06l4.33-10.68h2.41v13.39h-1.9v-9.87h-1l2.17-3.15-5.31 13h-1.54l-5.31-13 2.17 3.15H216v9.87h-1.9l-.04-13.39z",
@@ -7968,252 +8278,252 @@ function SvgLogoReservoirVerticalColor(_ref) {
7968
8278
  }))));
7969
8279
  }
7970
8280
 
7971
- var _path$K, _path2$m, _path3$h, _path4$6, _path5$5;
8281
+ var _path$M, _path2$o, _path3$j, _path4$8, _path5$7;
7972
8282
 
7973
- var _excluded$1i = ["title", "titleId"];
8283
+ var _excluded$1k = ["title", "titleId"];
7974
8284
 
7975
- function _extends$Y() { _extends$Y = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$Y.apply(this, arguments); }
8285
+ function _extends$_() { _extends$_ = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$_.apply(this, arguments); }
7976
8286
 
7977
- function _objectWithoutProperties$X(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$Y(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8287
+ function _objectWithoutProperties$Z(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$_(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
7978
8288
 
7979
- function _objectWithoutPropertiesLoose$Y(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8289
+ function _objectWithoutPropertiesLoose$_(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
7980
8290
 
7981
8291
  function SvgLogoSchomburgBlack(_ref) {
7982
8292
  var title = _ref.title,
7983
8293
  titleId = _ref.titleId,
7984
- props = _objectWithoutProperties$X(_ref, _excluded$1i);
8294
+ props = _objectWithoutProperties$Z(_ref, _excluded$1k);
7985
8295
 
7986
- return /*#__PURE__*/React.createElement("svg", _extends$Y({
8296
+ return /*#__PURE__*/React.createElement("svg", _extends$_({
7987
8297
  viewBox: "0 0 185 79",
7988
8298
  xmlns: "http://www.w3.org/2000/svg",
7989
8299
  "aria-labelledby": titleId
7990
8300
  }, props), title ? /*#__PURE__*/React.createElement("title", {
7991
8301
  id: titleId
7992
- }, title) : null, _path$K || (_path$K = /*#__PURE__*/React.createElement("path", {
8302
+ }, title) : null, _path$M || (_path$M = /*#__PURE__*/React.createElement("path", {
7993
8303
  d: "M72.306 33.437a.607.607 0 100-1.213c-.306 0-.613.27-.613.606.034.337.307.607.613.607zm-.374 8.728h.817v-7.212h-.817v7.212zm2.758 0h.784v-5.257c.442-.674 1.328-1.416 2.248-1.416 1.09 0 1.498.674 1.498 1.72v4.953h.783v-5.122c0-1.315-.613-2.258-2.111-2.258-1.022 0-1.873.606-2.418 1.314v-1.146h-.784v7.212zm9.707 0h2.316c2.316 0 3.78-.81 3.78-2.797 0-1.45-1.056-2.292-2.316-2.528v-.033c1.124-.27 1.873-1.045 1.873-2.224 0-1.786-1.294-2.494-3.303-2.494H84.43v10.076h-.034zm.817-.708v-4.246h1.533c1.975 0 2.895.809 2.895 2.19 0 1.45-.954 2.09-2.93 2.09h-1.498v-.034zm0-4.954v-3.706h1.43c1.703 0 2.555.539 2.555 1.82 0 1.246-.817 1.886-2.554 1.886h-1.43zm6.948 5.662h.783V31.28h-.783v10.885zm4.632.168a2.87 2.87 0 002.213-1.078c0 .27.069.674.103.91h.783c-.102-.304-.17-.843-.17-1.45v-3.639c0-1.55-.852-2.291-2.35-2.291-.954 0-1.737.303-2.384.91l.442.539c.613-.573 1.192-.775 1.908-.775 1.09 0 1.6.539 1.6 1.718v.81h-.34c-1.703 0-3.849.538-3.849 2.459 0 1.146.818 1.887 2.044 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.03-1.82h.341v1.921c-.51.708-1.226 1.112-2.043 1.112zm7.458.674c1.09 0 1.874-.404 2.248-.741l-.34-.607c-.307.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.133 0-1.652.749-3.067 2.35-3.067.817 0 1.362.303 1.77.64l.409-.572c-.408-.337-1.09-.742-2.179-.742-1.874 0-3.202 1.483-3.202 3.774.034 1.955 1.09 3.808 3.167 3.808zm7.936-.168h.987l-3.405-4.044 3.235-3.168h-.987l-3.202 3.168 3.372 4.044zm-4.223 0h.783V31.28h-.783v10.885zm13.589.168c1.328 0 2.384-.438 2.997-1.01l-.409-.607c-.613.539-1.464.876-2.554.876-2.589 0-4.053-2.157-4.053-4.55 0-2.358 1.464-4.481 4.019-4.481.953 0 1.702.27 2.316.674l.442-.64c-.715-.472-1.566-.742-2.724-.742-3.065 0-4.905 2.46-4.905 5.19 0 2.83 1.805 5.29 4.871 5.29zm6.709 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783V31.28h-.783v10.885zm5.245.168c.681 0 1.192-.27 1.396-.438l-.307-.607c-.136.102-.579.337-1.021.337-.647 0-.886-.404-.886-1.145v-4.92h1.873v-.64h-1.873v-2.056h-.783v2.056h-1.226v.64h1.226v4.953c0 1.18.511 1.82 1.601 1.82zm5.006 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783v-5.021c.204-.438.851-1.618 1.873-1.618.307 0 .477.068.613.101l.205-.741c-.137-.034-.375-.135-.716-.135-1.021 0-1.669.91-1.941 1.415V34.92h-.783v7.245h-.034zm7.356.168c1.192 0 2.009-.404 2.486-.741l-.34-.607a3.708 3.708 0 01-2.112.674c-1.737 0-2.452-1.516-2.452-3.167v-.169h5.04v-.404c0-1.854-1.021-3.134-2.758-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.055 1.021 3.841 3.269 3.841zm-2.384-4.65c.204-1.247.954-2.224 2.214-2.224 1.396 0 1.975 1.112 1.975 2.224H155.1zM72.1 26.53h.783v-6.572h1.907v-.64h-1.907v-1.146c0-1.314.545-1.988 1.67-1.988.442 0 .748.101.919.202l.204-.707c-.204-.102-.579-.203-1.124-.203-1.6 0-2.452.977-2.452 2.629v1.213h-1.26v.64h1.26v6.571zm6.777.168c2.282 0 3.338-1.989 3.338-3.808 0-1.786-1.056-3.74-3.338-3.74-2.281 0-3.27 1.954-3.27 3.774s.989 3.774 3.27 3.774zm.035-.674c-1.67 0-2.453-1.483-2.453-3.134 0-1.618.75-3.067 2.418-3.067 1.67 0 2.555 1.483 2.555 3.1-.034 1.652-.852 3.1-2.52 3.1zm4.836.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.022 0-1.668.876-1.941 1.415v-1.247h-.783v7.245h-.034zm8.446 0h.851v-4.886h.273c.613 0 .783.101 1.805 1.483l2.486 3.403h1.022l-2.827-3.808c-.579-.741-.783-1.01-.988-1.112h.136c1.772-.067 2.998-.91 2.998-2.56 0-1.686-1.26-2.596-3.304-2.596h-2.418V26.53h-.034zm.817-5.56v-3.808h1.465c1.668 0 2.554.64 2.554 1.887 0 1.247-.851 1.921-2.486 1.921H93.01zm9.604 5.729c1.192 0 2.01-.405 2.487-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.269 3.842zm-2.384-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.975 2.224h-4.189zm8.447 4.683c1.498 0 2.452-.775 2.452-2.022 0-1.179-1.022-1.684-2.146-2.19-.851-.37-1.566-.674-1.566-1.516 0-.708.476-1.18 1.362-1.18a2.71 2.71 0 011.669.573l.408-.573c-.34-.27-1.055-.674-2.077-.674-1.362 0-2.146.81-2.146 1.887 0 1.18.92 1.685 2.01 2.157.987.438 1.668.775 1.668 1.584 0 .775-.647 1.247-1.634 1.247-.784 0-1.533-.337-1.873-.607l-.341.607c.443.337 1.26.707 2.214.707zm7.016-.033c1.192 0 2.009-.405 2.486-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.27 3.842zm-2.385-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.976 2.224h-4.19zm8.379 4.65a2.87 2.87 0 002.213-1.079c0 .27.068.674.103.91h.783c-.102-.303-.136-.842-.136-1.449v-3.64c0-1.55-.852-2.29-2.35-2.29-.954 0-1.737.303-2.384.91l.442.538c.613-.572 1.192-.775 1.908-.775 1.089 0 1.6.54 1.6 1.719v.809h-.34c-1.703 0-3.849.539-3.849 2.46-.034 1.145.784 1.887 2.01 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.031-1.82h.34v1.92c-.545.708-1.226 1.113-2.043 1.113zm5.313.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.021 0-1.668.876-1.941 1.415v-1.247h-.817v7.245zm7.186.169c1.09 0 1.873-.405 2.248-.742l-.341-.606c-.306.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.134 0-1.651.749-3.066 2.35-3.066.817 0 1.362.303 1.771.64l.409-.573c-.409-.337-1.09-.741-2.18-.741-1.873 0-3.201 1.482-3.201 3.774.034 1.954 1.055 3.808 3.167 3.808zm3.985-.169h.783v-5.257c.272-.404 1.158-1.415 2.248-1.415 1.09 0 1.498.674 1.498 1.719v4.953h.784v-5.122c0-1.314-.613-2.258-2.112-2.258-1.226 0-2.078.81-2.418 1.315v-4.82h-.783V26.53zM74.452 48.769v-.809h-3.576v.809h1.294v3.808h.988v-3.808h1.294zm3.44 3.808v-2.36c0-.606-.273-1.078-1.022-1.078a1.36 1.36 0 00-1.056.506v-2.022h-.92v4.987h.92v-2.325c.068-.1.34-.438.716-.438.34 0 .442.169.442.506v2.19h.92v.034zm1.532-1.483h2.18c.102-1.247-.409-1.988-1.464-1.988-.954 0-1.703.674-1.703 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.817-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm8.48 2.123V47.96h-.885v2.426c0 .37.034.708.034.742 0 0-.204-.371-.477-.775l-1.668-2.393h-1.056v4.617h.885v-2.629c0-.303-.034-.606-.034-.606s.17.337.443.707l1.805 2.561h.954v-.033zm1.567-1.483h2.18c.102-1.247-.409-1.988-1.465-1.988-.953 0-1.702.674-1.702 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.818-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm7.425-1.247h-.92l-.545 2.157-.579-2.157h-.851l-.579 2.157-.51-2.157h-.989l.954 3.37h.852l.715-2.258.715 2.258h.851l.886-3.37zm5.551-1.247h-.953l-.988 1.954-.988-1.954h-1.09l1.533 2.864v1.753h.988v-1.753l1.498-2.864zm3.031 2.898c0-.876-.545-1.752-1.737-1.752-1.192 0-1.702.91-1.702 1.786s.51 1.752 1.702 1.752c1.226 0 1.737-.944 1.737-1.786zm-.987.034c0 .64-.205 1.044-.716 1.044-.51 0-.749-.471-.749-1.078 0-.606.17-1.078.715-1.078.511 0 .75.471.75 1.112zm3.78-1.685a.974.974 0 00-.477-.101c-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.328 1.718l1.09 1.652h1.09l-1.294-1.854 1.26-1.516h-1.022l-1.124 1.348v-2.966h-.919v4.988h.919v-1.652zm7.561-1.516c0-.977-.783-1.449-1.771-1.449h-1.533v4.617h.988v-1.652h.443c1.158 0 1.873-.505 1.873-1.516zm-.988 0c0 .505-.272.775-.885.775h-.443v-1.483h.477c.613 0 .851.27.851.708zm1.465-.202v2.359c0 .606.272 1.078 1.022 1.078.579 0 .919-.303 1.089-.54 0 .136.034.371.069.439h.919c-.034-.202-.102-.54-.102-.977v-2.393h-.92v2.258c-.068.067-.34.438-.715.438-.34 0-.443-.169-.443-.505v-2.19h-.919v.033zm3.78-1.618v4.785c.17.068.613.27 1.397.27 1.021 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.465-1.752-.374 0-.681.202-.817.337v-1.854h-.92zm.954 2.494c.068-.067.272-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.307 1.079-.817 1.079-.273 0-.409-.068-.477-.068v-1.752zm3.814-2.494h-.919v4.988h.919v-4.988zm1.873 1.618h-.953v3.37h.953v-3.37zm.103-1.011c0-.303-.239-.54-.579-.54-.341 0-.579.237-.579.54 0 .303.238.54.579.54.34.033.579-.237.579-.54zm3.439 4.145l-.272-.607c-.102.068-.341.202-.749.202-.579 0-.852-.471-.852-1.078 0-.606.273-1.045.818-1.045.34 0 .545.101.715.203l.306-.64c-.17-.102-.476-.27-1.055-.27-1.022 0-1.805.64-1.805 1.786 0 1.044.681 1.752 1.77 1.752.648 0 .954-.202 1.124-.303zm4.905.236v-.775h-1.737v-3.808h-.988v4.616h2.725v-.033zm1.498-3.37h-.953v3.37h.953v-3.37zm.102-1.011c0-.303-.238-.54-.579-.54-.34 0-.579.237-.579.54 0 .303.239.54.579.54.341.033.579-.237.579-.54zm.784-.607v4.785c.17.068.613.27 1.396.27 1.022 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.464-1.752-.375 0-.682.202-.818.337v-1.854h-.919zm.953 2.494c.068-.067.273-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.306 1.079-.817 1.079-.272 0-.409-.068-.477-.068v-1.752zm5.075-.876c-.068-.034-.204-.101-.477-.101-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .306.034.34.068l.239-.775zm3.133 3.37c-.034-.203-.102-.54-.102-1.011v-1.213c0-.91-.443-1.247-1.362-1.247-.716 0-1.192.303-1.397.471l.409.573c.136-.1.443-.303.885-.303.443 0 .545.169.545.472v.202h-.136c-.919 0-1.805.303-1.805 1.213 0 .607.443.944 1.022.944.477 0 .817-.27.953-.438 0 .1.035.27.069.37h.919v-.033zm-1.022-.91c-.102.1-.306.303-.613.303-.204 0-.408-.101-.408-.337 0-.404.374-.54.919-.54h.136v.574h-.034zm3.951-2.46c-.068-.034-.204-.101-.477-.101-.442 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.396 3.302l-.136.337c-.136.37-.306.607-.783.607-.204 0-.273-.034-.341-.034l-.136.741c.068.034.238.068.511.068.919 0 1.294-.472 1.601-1.247l1.396-3.74h-.954l-.681 2.224h-.034l-.749-2.225h-.988l1.294 3.27zM55.275 46.374l3.541 3.539 1.84-1.82-3.576-3.505 2.928-2.898-1.839-1.785-8.31 8.222 8.378 8.256 1.84-1.786-6.573-6.47 1.77-1.753zM.613 41.693l6.54 6.436-1.772 1.718-3.542-3.504L0 48.129l3.576 3.538-2.997 2.965 1.84 1.786 8.343-8.29-8.344-8.255-1.805 1.82zM16.075 56.992L30.31 71.077l14.27-14.12 1.805-1.785L30.345 39.3l-1.805 1.786 14.202 14.086-12.431 12.3-14.202-14.086h-.034L4.802 64.54l1.839 1.82 9.434-9.368z"
7994
- })), _path2$m || (_path2$m = /*#__PURE__*/React.createElement("path", {
8304
+ })), _path2$o || (_path2$o = /*#__PURE__*/React.createElement("path", {
7995
8305
  d: "M30.31 74.513L16.072 60.427l-8.14 8.088L9.74 70.3l6.334-6.268 1.737 1.718-5.892 5.83 1.805 1.786 5.892-5.83 1.737 1.719-4.836 4.785 1.84 1.82 4.835-4.785 1.737 1.718-2.997 2.966 1.84 1.786 2.962-2.966 3.576 3.538 3.576-3.504 2.963 2.965 1.84-1.82-2.998-2.965 1.771-1.718 4.837 4.785 1.805-1.82-4.837-4.785 1.737-1.719 5.892 5.83 1.84-1.786-5.892-5.83 1.702-1.718L50.88 70.3l1.84-1.82-6.336-6.268 1.737-1.718 5.892 5.83 1.805-1.82-6.845-6.774-.852-.842L30.31 74.513zM48.136 49.83l-1.83 1.81L56.42 61.649l1.83-1.81L48.136 49.83z"
7996
- })), _path3$h || (_path3$h = /*#__PURE__*/React.createElement("path", {
8306
+ })), _path3$j || (_path3$j = /*#__PURE__*/React.createElement("path", {
7997
8307
  d: "M28.709 62.417l1.6 1.617 8.958-8.862-1.805-1.786-12.431-12.3 5.313-5.223 14.202 14.052h.034l13.725-13.58-1.805-1.82L44.58 46.31 30.344 32.224l-8.957 8.862 14.236 14.086-5.313 5.257-12.397-12.3-1.84-1.786L2.315 59.957l1.84 1.786 11.92-11.794 12.635 12.468zM4.18 34.547l-1.83 1.811 10.186 10.08 1.83-1.811L4.18 34.547z"
7998
- })), _path4$6 || (_path4$6 = /*#__PURE__*/React.createElement("path", {
8308
+ })), _path4$8 || (_path4$8 = /*#__PURE__*/React.createElement("path", {
7999
8309
  d: "M30.347 21.744l14.236 14.085 8.106-8.02-1.806-1.82-6.3 6.235-1.737-1.719 5.858-5.762-1.84-1.82-5.823 5.796L39.27 27l4.768-4.717-1.805-1.82-4.768 4.718-1.737-1.719 2.929-2.898-1.84-1.786-2.928 2.864-1.737-1.718h.034l-1.84-1.786-3.575 3.538-2.895-2.898-1.84 1.786 2.93 2.898-1.737 1.719-4.734-4.65-1.805 1.785L21.39 27l-1.737 1.719-5.858-5.796-1.805 1.82 5.858 5.762-1.771 1.719-6.3-6.234-1.806 1.82 6.3 6.233-1.736 1.719-5.892-5.796-1.805 1.786 7.697 7.616 17.812-17.624z"
8000
- })), _path5$5 || (_path5$5 = /*#__PURE__*/React.createElement("path", {
8310
+ })), _path5$7 || (_path5$7 = /*#__PURE__*/React.createElement("path", {
8001
8311
  d: "M30.347 25.179L14.27 41.084l1.805 1.786 14.236 14.086 1.84-1.786-14.236-14.086 12.43-12.3L44.584 42.87l11.205-11.086-1.84-1.786-9.365 9.267-14.236-14.086zM77.683 8.128c0-1.82-1.226-2.46-2.554-3.066-1.056-.472-1.84-.708-1.84-1.483 0-.674.512-1.01 1.33-1.01.85 0 1.6.37 1.94.606l.852-1.45c-.409-.302-1.294-.808-2.895-.808-1.771 0-3.201 1.045-3.201 2.73 0 1.583.92 2.325 2.111 2.931 1.158.573 2.214.809 2.214 1.685 0 .64-.58 1.146-1.567 1.146a3.338 3.338 0 01-2.111-.741l-.886 1.449c.443.336 1.465.977 3.065.977 2.214-.068 3.542-1.18 3.542-2.966zm6.676 2.258l-.613-1.314c-.239.135-.716.438-1.567.438-1.226 0-1.805-.977-1.805-2.291 0-1.315.613-2.224 1.77-2.224.716 0 1.193.235 1.5.438l.646-1.348c-.34-.236-1.055-.573-2.213-.573-2.18 0-3.815 1.348-3.815 3.774 0 2.224 1.43 3.74 3.747 3.74 1.362 0 2.009-.404 2.35-.64zm7.288.472V5.837c0-1.314-.58-2.325-2.18-2.325-1.192 0-1.873.64-2.248 1.044V.276h-1.975v10.582h1.975V6.039c.137-.202.716-.91 1.499-.91.715 0 .953.371.953 1.079v4.65h1.976zm8.276-3.606c0-1.853-1.158-3.706-3.678-3.706s-3.61 1.954-3.61 3.774c0 1.853 1.09 3.74 3.61 3.74 2.554-.034 3.678-2.022 3.678-3.808zm-2.112.034c0 1.348-.408 2.258-1.532 2.258s-1.567-.978-1.567-2.325c0-1.348.375-2.258 1.499-2.258s1.6 1.01 1.6 2.325zm9.094-2.628c-.273-.674-.818-1.146-1.874-1.146-1.158 0-1.805.64-2.179 1.044V3.68h-1.942v7.178h1.976V6.039c.136-.202.613-.876 1.362-.876.579 0 .852.37.852 1.078v4.617h1.975V5.972c.272-.337.715-.809 1.362-.809.647 0 .852.37.852 1.078v4.617h1.975V5.837c0-1.314-.545-2.325-2.078-2.325-1.021 0-1.702.472-2.281 1.146zm5.721-4.381v10.177c.341.168 1.328.572 2.963.572 2.18 0 3.849-1.381 3.849-3.807 0-2.46-1.26-3.707-3.065-3.707a2.54 2.54 0 00-1.771.741V.277h-1.976zm1.976 5.324c.136-.135.579-.54 1.226-.54 1.055 0 1.532.81 1.532 2.158 0 1.482-.647 2.291-1.771 2.291-.545 0-.851-.135-.987-.168v-3.74zm5.823-1.887v5.021c0 1.314.579 2.325 2.18 2.325a2.83 2.83 0 002.316-1.146c0 .304.102.775.136.944h1.941c-.102-.438-.204-1.146-.204-2.056V3.714h-1.975v4.785c-.136.169-.715.91-1.499.91-.715 0-.953-.37-.953-1.078V3.714h-1.942zm12.738 0c-.17-.101-.443-.202-.988-.202-.919 0-1.532.606-1.839 1.146V3.68h-1.975v7.178h1.975V6.342c.17-.337.681-1.078 1.567-1.078.408 0 .647.101.749.169l.511-1.719zm4.7 0c-.375-.135-.818-.168-1.294-.168-2.01 0-3.202 1.044-3.202 2.594 0 .944.477 1.685 1.294 2.157-.442.236-.817.674-.817 1.348 0 .505.238.842.647 1.078-.715.37-1.226.944-1.226 1.752 0 1.28 1.192 1.921 3.167 1.921 2.384 0 3.951-1.078 3.951-2.595 0-2.123-1.907-2.123-3.406-2.19-1.055-.067-1.464-.135-1.464-.505 0-.203.136-.337.272-.438.273.033.545.067.852.067 2.009 0 3.133-1.045 3.133-2.595 0-.404-.102-.808-.272-1.145h.953V3.714h-2.588zm-1.26 3.74c-.818 0-1.294-.505-1.294-1.314 0-.842.476-1.314 1.294-1.314.817 0 1.294.472 1.294 1.314 0 .809-.477 1.314-1.294 1.314zm-.852 3.64c.307.034.647.067.988.1 1.056.068 1.737.035 1.737.81 0 .606-.681 1.044-1.873 1.044-1.022 0-1.397-.404-1.397-.977-.034-.404.171-.741.545-.977zm15.939-1.079l-.851-1.449c-.511.371-1.158.742-2.248.742-1.941 0-2.895-1.55-2.895-3.404 0-1.82.988-3.268 2.861-3.268.919 0 1.532.236 2.077.573l.92-1.517c-.783-.505-1.669-.775-2.963-.775-3.338 0-5.109 2.393-5.109 5.055s1.703 5.088 5.075 5.088c1.464-.034 2.656-.607 3.133-1.045zm2.248-2.291h4.598c.238-2.662-.852-4.212-3.134-4.212-2.009 0-3.576 1.449-3.576 3.707 0 2.291 1.363 3.807 3.781 3.807 1.498 0 2.213-.438 2.69-.674l-.647-1.28c-.34.168-.919.505-1.873.505-1.192 0-1.737-.74-1.839-1.853zm0-1.314c.136-.944.613-1.483 1.43-1.483.92 0 1.226.674 1.26 1.483h-2.69zm12.158 4.448V5.837c0-1.314-.579-2.325-2.179-2.325-1.192 0-1.907.64-2.316 1.078v-.91h-1.941v7.178h1.975V6.039c.136-.202.715-.91 1.498-.91.716 0 .954.371.954 1.079v4.65h2.009zm1.976-5.695v3.64c0 1.381.579 2.223 2.282 2.223.919 0 1.532-.236 1.805-.404l-.477-1.449c-.136.101-.511.27-.954.27-.545 0-.715-.304-.715-1.011V5.163h1.703V3.714h-1.703v-2.09h-1.975v2.09h-1.158v1.449h1.192zm6.403 2.561h4.597c.239-2.662-.851-4.212-3.133-4.212-2.009 0-3.576 1.449-3.576 3.707 0 2.291 1.362 3.807 3.78 3.807 1.499 0 2.214-.438 2.691-.674l-.647-1.28c-.341.168-.92.505-1.873.505-1.192 0-1.771-.74-1.839-1.853zm0-1.314c.136-.944.613-1.483 1.43-1.483.92 0 1.226.674 1.26 1.483h-2.69zm10.523-2.696c-.17-.101-.442-.202-.987-.202-.92 0-1.499.606-1.839 1.146V3.68h-1.942v7.178h1.976V6.342c.17-.337.681-1.078 1.566-1.078.409 0 .647.101.749.169l.477-1.719z"
8002
8312
  })));
8003
8313
  }
8004
8314
 
8005
- var _path$L, _path2$n, _path3$i, _path4$7, _path5$6;
8315
+ var _path$N, _path2$p, _path3$k, _path4$9, _path5$8;
8006
8316
 
8007
- var _excluded$1j = ["title", "titleId"];
8317
+ var _excluded$1l = ["title", "titleId"];
8008
8318
 
8009
- function _extends$Z() { _extends$Z = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$Z.apply(this, arguments); }
8319
+ function _extends$$() { _extends$$ = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$$.apply(this, arguments); }
8010
8320
 
8011
- function _objectWithoutProperties$Y(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$Z(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8321
+ function _objectWithoutProperties$_(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$$(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8012
8322
 
8013
- function _objectWithoutPropertiesLoose$Z(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8323
+ function _objectWithoutPropertiesLoose$$(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8014
8324
 
8015
8325
  function SvgLogoSchomburgCircleBlack(_ref) {
8016
8326
  var title = _ref.title,
8017
8327
  titleId = _ref.titleId,
8018
- props = _objectWithoutProperties$Y(_ref, _excluded$1j);
8328
+ props = _objectWithoutProperties$_(_ref, _excluded$1l);
8019
8329
 
8020
- return /*#__PURE__*/React.createElement("svg", _extends$Z({
8330
+ return /*#__PURE__*/React.createElement("svg", _extends$$({
8021
8331
  viewBox: "0 0 67 67",
8022
8332
  xmlns: "http://www.w3.org/2000/svg",
8023
8333
  "aria-labelledby": titleId
8024
8334
  }, props), title ? /*#__PURE__*/React.createElement("title", {
8025
8335
  id: titleId
8026
- }, title) : null, _path$L || (_path$L = /*#__PURE__*/React.createElement("path", {
8336
+ }, title) : null, _path$N || (_path$N = /*#__PURE__*/React.createElement("path", {
8027
8337
  d: "M60.907 31.366l3.903 3.89 2.026-2-3.94-3.854 3.227-3.187-2.026-1.964-9.157 9.042 9.232 9.079 2.026-1.964-7.242-7.115 1.951-1.927zM.675 26.216l7.206 7.078-1.952 1.89-3.903-3.854L0 33.294l3.94 3.89-3.302 3.262 2.026 1.964 9.194-9.116-9.194-9.08-1.989 2.002zM17.714 43.04l15.687 15.49 15.723-15.527 1.99-1.964-17.676-17.454-1.989 1.964 15.649 15.49-13.697 13.526-15.65-15.49h-.037L5.293 51.34l2.026 2.001L17.714 43.04z"
8028
- })), _path2$n || (_path2$n = /*#__PURE__*/React.createElement("path", {
8338
+ })), _path2$p || (_path2$p = /*#__PURE__*/React.createElement("path", {
8029
8339
  d: "M33.397 62.312l-15.686-15.49-8.969 8.893 1.99 1.964 6.98-6.892 1.913 1.89-6.492 6.41 1.989 1.965 6.492-6.411 1.914 1.89-5.329 5.262 2.026 2.001 5.33-5.262 1.913 1.89-3.302 3.26 2.026 1.965 3.265-3.261 3.94 3.89 3.94-3.853 3.266 3.26 2.026-2-3.302-3.261 1.951-1.89 5.329 5.262 1.989-2.001-5.329-5.262 1.914-1.89 6.492 6.41 2.026-1.963-6.492-6.411 1.877-1.89 6.98 6.892 2.026-2-6.98-6.893 1.914-1.89 6.492 6.41 1.99-2-7.544-7.45-.938-.926-19.627 19.382zM53.041 35.163l-2.017 1.991L62.17 48.16l2.017-1.992L53.04 35.163z"
8030
- })), _path3$i || (_path3$i = /*#__PURE__*/React.createElement("path", {
8340
+ })), _path3$k || (_path3$k = /*#__PURE__*/React.createElement("path", {
8031
8341
  d: "M31.635 49.008l1.764 1.779 9.87-9.746-1.99-1.964L27.582 25.55l5.854-5.744 15.65 15.454h.037l15.123-14.935-1.989-2-13.134 12.97-15.687-15.49-9.87 9.745 15.687 15.49-5.854 5.782-13.66-13.527-2.026-1.964L2.552 46.303l2.026 1.964 13.135-12.97 13.922 13.711zM4.603 18.36l-2.017 1.992L13.81 31.436l2.017-1.991L4.603 18.36z"
8032
- })), _path4$7 || (_path4$7 = /*#__PURE__*/React.createElement("path", {
8342
+ })), _path4$9 || (_path4$9 = /*#__PURE__*/React.createElement("path", {
8033
8343
  d: "M33.437 4.278l15.686 15.49 8.931-8.82-1.989-2-6.942 6.855-1.914-1.89 6.455-6.336-2.027-2.002-6.417 6.374-1.951-1.89 5.254-5.188-1.99-2-5.253 5.187-1.914-1.89 3.227-3.187-2.026-1.964-3.227 3.15-1.914-1.89h.037L33.437.313l-3.94 3.891-3.19-3.187-2.027 1.964 3.227 3.187-1.913 1.89-5.217-5.114-1.988 1.964 5.178 5.151-1.914 1.89L15.2 5.575l-1.99 2.002 6.455 6.337-1.951 1.89-6.943-6.856-1.988 2 6.942 6.857-1.914 1.89-6.492-6.375-1.989 1.965 8.481 8.375L33.437 4.278z"
8034
- })), _path5$6 || (_path5$6 = /*#__PURE__*/React.createElement("path", {
8344
+ })), _path5$8 || (_path5$8 = /*#__PURE__*/React.createElement("path", {
8035
8345
  d: "M33.436 8.057L15.724 25.548l1.989 1.964 15.686 15.49 2.026-1.964-15.686-15.49 13.697-13.526 15.687 15.49L61.469 15.32l-2.026-1.964-10.32 10.191-15.687-15.49z"
8036
8346
  })));
8037
8347
  }
8038
8348
 
8039
- var _path$M, _path2$o, _path3$j, _path4$8, _path5$7;
8349
+ var _path$O, _path2$q, _path3$l, _path4$a, _path5$9;
8040
8350
 
8041
- var _excluded$1k = ["title", "titleId"];
8351
+ var _excluded$1m = ["title", "titleId"];
8042
8352
 
8043
- function _extends$_() { _extends$_ = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$_.apply(this, arguments); }
8353
+ function _extends$10() { _extends$10 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$10.apply(this, arguments); }
8044
8354
 
8045
- function _objectWithoutProperties$Z(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$_(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8355
+ function _objectWithoutProperties$$(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$10(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8046
8356
 
8047
- function _objectWithoutPropertiesLoose$_(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8357
+ function _objectWithoutPropertiesLoose$10(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8048
8358
 
8049
8359
  function SvgLogoSchomburgCircleColor(_ref) {
8050
8360
  var title = _ref.title,
8051
8361
  titleId = _ref.titleId,
8052
- props = _objectWithoutProperties$Z(_ref, _excluded$1k);
8362
+ props = _objectWithoutProperties$$(_ref, _excluded$1m);
8053
8363
 
8054
- return /*#__PURE__*/React.createElement("svg", _extends$_({
8364
+ return /*#__PURE__*/React.createElement("svg", _extends$10({
8055
8365
  viewBox: "0 0 67 67",
8056
8366
  fill: "none",
8057
8367
  xmlns: "http://www.w3.org/2000/svg",
8058
8368
  "aria-labelledby": titleId
8059
8369
  }, props), title ? /*#__PURE__*/React.createElement("title", {
8060
8370
  id: titleId
8061
- }, title) : null, _path$M || (_path$M = /*#__PURE__*/React.createElement("path", {
8371
+ }, title) : null, _path$O || (_path$O = /*#__PURE__*/React.createElement("path", {
8062
8372
  d: "M60.907 31.366l3.903 3.89 2.026-2-3.94-3.854 3.227-3.187-2.026-1.964-9.157 9.042 9.232 9.079 2.026-1.964-7.242-7.115 1.951-1.927zM.675 26.216l7.206 7.078-1.952 1.89-3.903-3.854L0 33.294l3.94 3.89-3.302 3.262 2.026 1.964 9.194-9.116-9.194-9.08-1.989 2.002zM17.714 43.04l15.687 15.49 15.723-15.527 1.99-1.964-17.676-17.454-1.989 1.964 15.649 15.49-13.697 13.526-15.65-15.49h-.037L5.293 51.34l2.026 2.001L17.714 43.04z",
8063
8373
  fill: "#C54B38"
8064
- })), _path2$o || (_path2$o = /*#__PURE__*/React.createElement("path", {
8374
+ })), _path2$q || (_path2$q = /*#__PURE__*/React.createElement("path", {
8065
8375
  d: "M33.397 62.312l-15.686-15.49-8.969 8.893 1.99 1.964 6.98-6.892 1.913 1.89-6.492 6.41 1.989 1.965 6.492-6.411 1.914 1.89-5.329 5.262 2.026 2.001 5.33-5.262 1.913 1.89-3.302 3.26 2.026 1.965 3.265-3.261 3.94 3.89 3.94-3.853 3.266 3.26 2.026-2-3.302-3.261 1.951-1.89 5.329 5.262 1.989-2.001-5.329-5.262 1.914-1.89 6.492 6.41 2.026-1.963-6.492-6.411 1.877-1.89 6.98 6.892 2.026-2-6.98-6.893 1.914-1.89 6.492 6.41 1.99-2-7.544-7.45-.938-.926-19.627 19.382zM53.041 35.163l-2.017 1.991L62.17 48.16l2.017-1.992L53.04 35.163z",
8066
8376
  fill: "#C54B38"
8067
- })), _path3$j || (_path3$j = /*#__PURE__*/React.createElement("path", {
8377
+ })), _path3$l || (_path3$l = /*#__PURE__*/React.createElement("path", {
8068
8378
  d: "M31.635 49.008l1.764 1.779 9.87-9.746-1.99-1.964L27.582 25.55l5.854-5.744 15.65 15.454h.037l15.123-14.935-1.989-2-13.134 12.97-15.687-15.49-9.87 9.745 15.687 15.49-5.854 5.782-13.66-13.527-2.026-1.964L2.552 46.303l2.026 1.964 13.135-12.97 13.922 13.711zM4.603 18.36l-2.017 1.992L13.81 31.436l2.017-1.991L4.603 18.36z",
8069
8379
  fill: "#C54B38"
8070
- })), _path4$8 || (_path4$8 = /*#__PURE__*/React.createElement("path", {
8380
+ })), _path4$a || (_path4$a = /*#__PURE__*/React.createElement("path", {
8071
8381
  d: "M33.437 4.278l15.686 15.49 8.931-8.82-1.989-2-6.942 6.855-1.914-1.89 6.455-6.336-2.027-2.002-6.417 6.374-1.951-1.89 5.254-5.188-1.99-2-5.253 5.187-1.914-1.89 3.227-3.187-2.026-1.964-3.227 3.15-1.914-1.89h.037L33.437.313l-3.94 3.891-3.19-3.187-2.027 1.964 3.227 3.187-1.913 1.89-5.217-5.114-1.988 1.964 5.178 5.151-1.914 1.89L15.2 5.575l-1.99 2.002 6.455 6.337-1.951 1.89-6.943-6.856-1.988 2 6.942 6.857-1.914 1.89-6.492-6.375-1.989 1.965 8.481 8.375L33.437 4.278z",
8072
8382
  fill: "#C54B38"
8073
- })), _path5$7 || (_path5$7 = /*#__PURE__*/React.createElement("path", {
8383
+ })), _path5$9 || (_path5$9 = /*#__PURE__*/React.createElement("path", {
8074
8384
  d: "M33.436 8.057L15.724 25.548l1.989 1.964 15.686 15.49 2.026-1.964-15.686-15.49 13.697-13.526 15.687 15.49L61.469 15.32l-2.026-1.964-10.32 10.191-15.687-15.49z",
8075
8385
  fill: "#C54B38"
8076
8386
  })));
8077
8387
  }
8078
8388
 
8079
- var _path$N, _path2$p, _path3$k, _path4$9, _path5$8;
8389
+ var _path$P, _path2$r, _path3$m, _path4$b, _path5$a;
8080
8390
 
8081
- var _excluded$1l = ["title", "titleId"];
8391
+ var _excluded$1n = ["title", "titleId"];
8082
8392
 
8083
- function _extends$$() { _extends$$ = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$$.apply(this, arguments); }
8393
+ function _extends$11() { _extends$11 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$11.apply(this, arguments); }
8084
8394
 
8085
- function _objectWithoutProperties$_(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$$(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8395
+ function _objectWithoutProperties$10(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$11(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8086
8396
 
8087
- function _objectWithoutPropertiesLoose$$(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8397
+ function _objectWithoutPropertiesLoose$11(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8088
8398
 
8089
8399
  function SvgLogoSchomburgCircleWhite(_ref) {
8090
8400
  var title = _ref.title,
8091
8401
  titleId = _ref.titleId,
8092
- props = _objectWithoutProperties$_(_ref, _excluded$1l);
8402
+ props = _objectWithoutProperties$10(_ref, _excluded$1n);
8093
8403
 
8094
- return /*#__PURE__*/React.createElement("svg", _extends$$({
8404
+ return /*#__PURE__*/React.createElement("svg", _extends$11({
8095
8405
  viewBox: "0 0 67 67",
8096
8406
  fill: "#fff",
8097
8407
  xmlns: "http://www.w3.org/2000/svg",
8098
8408
  "aria-labelledby": titleId
8099
8409
  }, props), title ? /*#__PURE__*/React.createElement("title", {
8100
8410
  id: titleId
8101
- }, title) : null, _path$N || (_path$N = /*#__PURE__*/React.createElement("path", {
8411
+ }, title) : null, _path$P || (_path$P = /*#__PURE__*/React.createElement("path", {
8102
8412
  d: "M60.907 31.366l3.903 3.89 2.026-2-3.94-3.854 3.227-3.187-2.026-1.964-9.157 9.042 9.232 9.079 2.026-1.964-7.242-7.115 1.951-1.927zM.675 26.216l7.206 7.078-1.952 1.89-3.903-3.854L0 33.294l3.94 3.89-3.302 3.262 2.026 1.964 9.194-9.116-9.194-9.08-1.989 2.002zM17.714 43.04l15.687 15.49 15.723-15.527 1.99-1.964-17.676-17.454-1.989 1.964 15.649 15.49-13.697 13.526-15.65-15.49h-.037L5.293 51.34l2.026 2.001L17.714 43.04z"
8103
- })), _path2$p || (_path2$p = /*#__PURE__*/React.createElement("path", {
8413
+ })), _path2$r || (_path2$r = /*#__PURE__*/React.createElement("path", {
8104
8414
  d: "M33.397 62.312l-15.686-15.49-8.969 8.893 1.99 1.964 6.98-6.892 1.913 1.89-6.492 6.41 1.989 1.965 6.492-6.411 1.914 1.89-5.329 5.262 2.026 2.001 5.33-5.262 1.913 1.89-3.302 3.26 2.026 1.965 3.265-3.261 3.94 3.89 3.94-3.853 3.266 3.26 2.026-2-3.302-3.261 1.951-1.89 5.329 5.262 1.989-2.001-5.329-5.262 1.914-1.89 6.492 6.41 2.026-1.963-6.492-6.411 1.877-1.89 6.98 6.892 2.026-2-6.98-6.893 1.914-1.89 6.492 6.41 1.99-2-7.544-7.45-.938-.926-19.627 19.382zM53.041 35.163l-2.017 1.991L62.17 48.16l2.017-1.992L53.04 35.163z"
8105
- })), _path3$k || (_path3$k = /*#__PURE__*/React.createElement("path", {
8415
+ })), _path3$m || (_path3$m = /*#__PURE__*/React.createElement("path", {
8106
8416
  d: "M31.635 49.008l1.764 1.779 9.87-9.746-1.99-1.964L27.582 25.55l5.854-5.744 15.65 15.454h.037l15.123-14.935-1.989-2-13.134 12.97-15.687-15.49-9.87 9.745 15.687 15.49-5.854 5.782-13.66-13.527-2.026-1.964L2.552 46.303l2.026 1.964 13.135-12.97 13.922 13.711zM4.603 18.36l-2.017 1.992L13.81 31.436l2.017-1.991L4.603 18.36z"
8107
- })), _path4$9 || (_path4$9 = /*#__PURE__*/React.createElement("path", {
8417
+ })), _path4$b || (_path4$b = /*#__PURE__*/React.createElement("path", {
8108
8418
  d: "M33.437 4.278l15.686 15.49 8.931-8.82-1.989-2-6.942 6.855-1.914-1.89 6.455-6.336-2.027-2.002-6.417 6.374-1.951-1.89 5.254-5.188-1.99-2-5.253 5.187-1.914-1.89 3.227-3.187-2.026-1.964-3.227 3.15-1.914-1.89h.037L33.437.313l-3.94 3.891-3.19-3.187-2.027 1.964 3.227 3.187-1.913 1.89-5.217-5.114-1.988 1.964 5.178 5.151-1.914 1.89L15.2 5.575l-1.99 2.002 6.455 6.337-1.951 1.89-6.943-6.856-1.988 2 6.942 6.857-1.914 1.89-6.492-6.375-1.989 1.965 8.481 8.375L33.437 4.278z"
8109
- })), _path5$8 || (_path5$8 = /*#__PURE__*/React.createElement("path", {
8419
+ })), _path5$a || (_path5$a = /*#__PURE__*/React.createElement("path", {
8110
8420
  d: "M33.436 8.057L15.724 25.548l1.989 1.964 15.686 15.49 2.026-1.964-15.686-15.49 13.697-13.526 15.687 15.49L61.469 15.32l-2.026-1.964-10.32 10.191-15.687-15.49z"
8111
8421
  })));
8112
8422
  }
8113
8423
 
8114
- var _path$O, _path2$q, _path3$l, _path4$a, _path5$9, _path6$2, _path7$2;
8424
+ var _path$Q, _path2$s, _path3$n, _path4$c, _path5$b, _path6$4, _path7$4;
8115
8425
 
8116
- var _excluded$1m = ["title", "titleId"];
8426
+ var _excluded$1o = ["title", "titleId"];
8117
8427
 
8118
- function _extends$10() { _extends$10 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$10.apply(this, arguments); }
8428
+ function _extends$12() { _extends$12 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$12.apply(this, arguments); }
8119
8429
 
8120
- function _objectWithoutProperties$$(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$10(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8430
+ function _objectWithoutProperties$11(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$12(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8121
8431
 
8122
- function _objectWithoutPropertiesLoose$10(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8432
+ function _objectWithoutPropertiesLoose$12(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8123
8433
 
8124
8434
  function SvgLogoSchomburgColor(_ref) {
8125
8435
  var title = _ref.title,
8126
8436
  titleId = _ref.titleId,
8127
- props = _objectWithoutProperties$$(_ref, _excluded$1m);
8437
+ props = _objectWithoutProperties$11(_ref, _excluded$1o);
8128
8438
 
8129
- return /*#__PURE__*/React.createElement("svg", _extends$10({
8439
+ return /*#__PURE__*/React.createElement("svg", _extends$12({
8130
8440
  viewBox: "0 0 185 79",
8131
8441
  fill: "none",
8132
8442
  xmlns: "http://www.w3.org/2000/svg",
8133
8443
  "aria-labelledby": titleId
8134
8444
  }, props), title ? /*#__PURE__*/React.createElement("title", {
8135
8445
  id: titleId
8136
- }, title) : null, _path$O || (_path$O = /*#__PURE__*/React.createElement("path", {
8446
+ }, title) : null, _path$Q || (_path$Q = /*#__PURE__*/React.createElement("path", {
8137
8447
  d: "M72.306 33.437a.607.607 0 100-1.213c-.306 0-.613.27-.613.606.034.337.307.607.613.607zm-.374 8.728h.817v-7.212h-.817v7.212zm2.758 0h.784v-5.257c.442-.674 1.328-1.416 2.248-1.416 1.09 0 1.498.674 1.498 1.72v4.953h.783v-5.122c0-1.315-.613-2.258-2.111-2.258-1.022 0-1.873.606-2.418 1.314v-1.146h-.784v7.212zm9.707 0h2.316c2.316 0 3.78-.81 3.78-2.797 0-1.45-1.056-2.292-2.316-2.528v-.033c1.124-.27 1.873-1.045 1.873-2.224 0-1.786-1.294-2.494-3.303-2.494H84.43v10.076h-.034zm.817-.708v-4.246h1.533c1.975 0 2.895.809 2.895 2.19 0 1.45-.954 2.09-2.93 2.09h-1.498v-.034zm0-4.954v-3.706h1.43c1.703 0 2.555.539 2.555 1.82 0 1.246-.817 1.886-2.554 1.886h-1.43zm6.948 5.662h.783V31.28h-.783v10.885zm4.632.168a2.87 2.87 0 002.213-1.078c0 .27.069.674.103.91h.783c-.102-.304-.17-.843-.17-1.45v-3.639c0-1.55-.852-2.291-2.35-2.291-.954 0-1.737.303-2.384.91l.442.539c.613-.573 1.192-.775 1.908-.775 1.09 0 1.6.539 1.6 1.718v.81h-.34c-1.703 0-3.849.538-3.849 2.459 0 1.146.818 1.887 2.044 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.03-1.82h.341v1.921c-.51.708-1.226 1.112-2.043 1.112zm7.458.674c1.09 0 1.874-.404 2.248-.741l-.34-.607c-.307.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.133 0-1.652.749-3.067 2.35-3.067.817 0 1.362.303 1.77.64l.409-.572c-.408-.337-1.09-.742-2.179-.742-1.874 0-3.202 1.483-3.202 3.774.034 1.955 1.09 3.808 3.167 3.808zm7.936-.168h.987l-3.405-4.044 3.235-3.168h-.987l-3.202 3.168 3.372 4.044zm-4.223 0h.783V31.28h-.783v10.885zm13.589.168c1.328 0 2.384-.438 2.997-1.01l-.409-.607c-.613.539-1.464.876-2.554.876-2.589 0-4.053-2.157-4.053-4.55 0-2.358 1.464-4.481 4.019-4.481.953 0 1.702.27 2.316.674l.442-.64c-.715-.472-1.566-.742-2.724-.742-3.065 0-4.905 2.46-4.905 5.19 0 2.83 1.805 5.29 4.871 5.29zm6.709 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783V31.28h-.783v10.885zm5.245.168c.681 0 1.192-.27 1.396-.438l-.307-.607c-.136.102-.579.337-1.021.337-.647 0-.886-.404-.886-1.145v-4.92h1.873v-.64h-1.873v-2.056h-.783v2.056h-1.226v.64h1.226v4.953c0 1.18.511 1.82 1.601 1.82zm5.006 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783v-5.021c.204-.438.851-1.618 1.873-1.618.307 0 .477.068.613.101l.205-.741c-.137-.034-.375-.135-.716-.135-1.021 0-1.669.91-1.941 1.415V34.92h-.783v7.245h-.034zm7.356.168c1.192 0 2.009-.404 2.486-.741l-.34-.607a3.708 3.708 0 01-2.112.674c-1.737 0-2.452-1.516-2.452-3.167v-.169h5.04v-.404c0-1.854-1.021-3.134-2.758-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.055 1.021 3.841 3.269 3.841zm-2.384-4.65c.204-1.247.954-2.224 2.214-2.224 1.396 0 1.975 1.112 1.975 2.224H155.1zM72.1 26.53h.783v-6.572h1.907v-.64h-1.907v-1.146c0-1.314.545-1.988 1.67-1.988.442 0 .748.101.919.202l.204-.707c-.204-.102-.579-.203-1.124-.203-1.6 0-2.452.977-2.452 2.629v1.213h-1.26v.64h1.26v6.571zm6.777.168c2.282 0 3.338-1.989 3.338-3.808 0-1.786-1.056-3.74-3.338-3.74-2.281 0-3.27 1.954-3.27 3.774s.989 3.774 3.27 3.774zm.035-.674c-1.67 0-2.453-1.483-2.453-3.134 0-1.618.75-3.067 2.418-3.067 1.67 0 2.555 1.483 2.555 3.1-.034 1.652-.852 3.1-2.52 3.1zm4.836.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.022 0-1.668.876-1.941 1.415v-1.247h-.783v7.245h-.034zm8.446 0h.851v-4.886h.273c.613 0 .783.101 1.805 1.483l2.486 3.403h1.022l-2.827-3.808c-.579-.741-.783-1.01-.988-1.112h.136c1.772-.067 2.998-.91 2.998-2.56 0-1.686-1.26-2.596-3.304-2.596h-2.418V26.53h-.034zm.817-5.56v-3.808h1.465c1.668 0 2.554.64 2.554 1.887 0 1.247-.851 1.921-2.486 1.921H93.01zm9.604 5.729c1.192 0 2.01-.405 2.487-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.269 3.842zm-2.384-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.975 2.224h-4.189zm8.447 4.683c1.498 0 2.452-.775 2.452-2.022 0-1.179-1.022-1.684-2.146-2.19-.851-.37-1.566-.674-1.566-1.516 0-.708.476-1.18 1.362-1.18a2.71 2.71 0 011.669.573l.408-.573c-.34-.27-1.055-.674-2.077-.674-1.362 0-2.146.81-2.146 1.887 0 1.18.92 1.685 2.01 2.157.987.438 1.668.775 1.668 1.584 0 .775-.647 1.247-1.634 1.247-.784 0-1.533-.337-1.873-.607l-.341.607c.443.337 1.26.707 2.214.707zm7.016-.033c1.192 0 2.009-.405 2.486-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.27 3.842zm-2.385-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.976 2.224h-4.19zm8.379 4.65a2.87 2.87 0 002.213-1.079c0 .27.068.674.103.91h.783c-.102-.303-.136-.842-.136-1.449v-3.64c0-1.55-.852-2.29-2.35-2.29-.954 0-1.737.303-2.384.91l.442.538c.613-.572 1.192-.775 1.908-.775 1.089 0 1.6.54 1.6 1.719v.809h-.34c-1.703 0-3.849.539-3.849 2.46-.034 1.145.784 1.887 2.01 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.031-1.82h.34v1.92c-.545.708-1.226 1.113-2.043 1.113zm5.313.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.021 0-1.668.876-1.941 1.415v-1.247h-.817v7.245zm7.186.169c1.09 0 1.873-.405 2.248-.742l-.341-.606c-.306.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.134 0-1.651.749-3.066 2.35-3.066.817 0 1.362.303 1.771.64l.409-.573c-.409-.337-1.09-.741-2.18-.741-1.873 0-3.201 1.482-3.201 3.774.034 1.954 1.055 3.808 3.167 3.808zm3.985-.169h.783v-5.257c.272-.404 1.158-1.415 2.248-1.415 1.09 0 1.498.674 1.498 1.719v4.953h.784v-5.122c0-1.314-.613-2.258-2.112-2.258-1.226 0-2.078.81-2.418 1.315v-4.82h-.783V26.53zM74.452 48.769v-.809h-3.576v.809h1.294v3.808h.988v-3.808h1.294zm3.44 3.808v-2.36c0-.606-.273-1.078-1.022-1.078a1.36 1.36 0 00-1.056.506v-2.022h-.92v4.987h.92v-2.325c.068-.1.34-.438.716-.438.34 0 .442.169.442.506v2.19h.92v.034zm1.532-1.483h2.18c.102-1.247-.409-1.988-1.464-1.988-.954 0-1.703.674-1.703 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.817-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm8.48 2.123V47.96h-.885v2.426c0 .37.034.708.034.742 0 0-.204-.371-.477-.775l-1.668-2.393h-1.056v4.617h.885v-2.629c0-.303-.034-.606-.034-.606s.17.337.443.707l1.805 2.561h.954v-.033zm1.567-1.483h2.18c.102-1.247-.409-1.988-1.465-1.988-.953 0-1.702.674-1.702 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.818-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm7.425-1.247h-.92l-.545 2.157-.579-2.157h-.851l-.579 2.157-.51-2.157h-.989l.954 3.37h.852l.715-2.258.715 2.258h.851l.886-3.37zm5.551-1.247h-.953l-.988 1.954-.988-1.954h-1.09l1.533 2.864v1.753h.988v-1.753l1.498-2.864zm3.031 2.898c0-.876-.545-1.752-1.737-1.752-1.192 0-1.702.91-1.702 1.786s.51 1.752 1.702 1.752c1.226 0 1.737-.944 1.737-1.786zm-.987.034c0 .64-.205 1.044-.716 1.044-.51 0-.749-.471-.749-1.078 0-.606.17-1.078.715-1.078.511 0 .75.471.75 1.112zm3.78-1.685a.974.974 0 00-.477-.101c-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.328 1.718l1.09 1.652h1.09l-1.294-1.854 1.26-1.516h-1.022l-1.124 1.348v-2.966h-.919v4.988h.919v-1.652zm7.561-1.516c0-.977-.783-1.449-1.771-1.449h-1.533v4.617h.988v-1.652h.443c1.158 0 1.873-.505 1.873-1.516zm-.988 0c0 .505-.272.775-.885.775h-.443v-1.483h.477c.613 0 .851.27.851.708zm1.465-.202v2.359c0 .606.272 1.078 1.022 1.078.579 0 .919-.303 1.089-.54 0 .136.034.371.069.439h.919c-.034-.202-.102-.54-.102-.977v-2.393h-.92v2.258c-.068.067-.34.438-.715.438-.34 0-.443-.169-.443-.505v-2.19h-.919v.033zm3.78-1.618v4.785c.17.068.613.27 1.397.27 1.021 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.465-1.752-.374 0-.681.202-.817.337v-1.854h-.92zm.954 2.494c.068-.067.272-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.307 1.079-.817 1.079-.273 0-.409-.068-.477-.068v-1.752zm3.814-2.494h-.919v4.988h.919v-4.988zm1.873 1.618h-.953v3.37h.953v-3.37zm.103-1.011c0-.303-.239-.54-.579-.54-.341 0-.579.237-.579.54 0 .303.238.54.579.54.34.033.579-.237.579-.54zm3.439 4.145l-.272-.607c-.102.068-.341.202-.749.202-.579 0-.852-.471-.852-1.078 0-.606.273-1.045.818-1.045.34 0 .545.101.715.203l.306-.64c-.17-.102-.476-.27-1.055-.27-1.022 0-1.805.64-1.805 1.786 0 1.044.681 1.752 1.77 1.752.648 0 .954-.202 1.124-.303zm4.905.236v-.775h-1.737v-3.808h-.988v4.616h2.725v-.033zm1.498-3.37h-.953v3.37h.953v-3.37zm.102-1.011c0-.303-.238-.54-.579-.54-.34 0-.579.237-.579.54 0 .303.239.54.579.54.341.033.579-.237.579-.54zm.784-.607v4.785c.17.068.613.27 1.396.27 1.022 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.464-1.752-.375 0-.682.202-.818.337v-1.854h-.919zm.953 2.494c.068-.067.273-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.306 1.079-.817 1.079-.272 0-.409-.068-.477-.068v-1.752zm5.075-.876c-.068-.034-.204-.101-.477-.101-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .306.034.34.068l.239-.775zm3.133 3.37c-.034-.203-.102-.54-.102-1.011v-1.213c0-.91-.443-1.247-1.362-1.247-.716 0-1.192.303-1.397.471l.409.573c.136-.1.443-.303.885-.303.443 0 .545.169.545.472v.202h-.136c-.919 0-1.805.303-1.805 1.213 0 .607.443.944 1.022.944.477 0 .817-.27.953-.438 0 .1.035.27.069.37h.919v-.033zm-1.022-.91c-.102.1-.306.303-.613.303-.204 0-.408-.101-.408-.337 0-.404.374-.54.919-.54h.136v.574h-.034zm3.951-2.46c-.068-.034-.204-.101-.477-.101-.442 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.396 3.302l-.136.337c-.136.37-.306.607-.783.607-.204 0-.273-.034-.341-.034l-.136.741c.068.034.238.068.511.068.919 0 1.294-.472 1.601-1.247l1.396-3.74h-.954l-.681 2.224h-.034l-.749-2.225h-.988l1.294 3.27z",
8138
8448
  fill: "#010101"
8139
- })), _path2$q || (_path2$q = /*#__PURE__*/React.createElement("path", {
8449
+ })), _path2$s || (_path2$s = /*#__PURE__*/React.createElement("path", {
8140
8450
  d: "M55.275 46.374l3.541 3.539 1.84-1.82-3.576-3.505 2.928-2.898-1.839-1.785-8.31 8.222 8.378 8.256 1.84-1.786-6.573-6.47 1.77-1.753zM.613 41.693l6.54 6.436-1.772 1.718-3.542-3.504L0 48.129l3.576 3.538-2.997 2.965 1.84 1.786 8.343-8.29-8.344-8.255-1.805 1.82zM16.075 56.992L30.31 71.077l14.27-14.12 1.805-1.785L30.345 39.3l-1.805 1.786 14.202 14.086-12.431 12.3-14.202-14.086h-.034L4.802 64.54l1.839 1.82 9.434-9.368z",
8141
8451
  fill: "#C54B38"
8142
- })), _path3$l || (_path3$l = /*#__PURE__*/React.createElement("path", {
8452
+ })), _path3$n || (_path3$n = /*#__PURE__*/React.createElement("path", {
8143
8453
  d: "M30.31 74.513L16.072 60.427l-8.14 8.088L9.74 70.3l6.334-6.268 1.737 1.718-5.892 5.83 1.805 1.786 5.892-5.83 1.737 1.719-4.836 4.785 1.84 1.82 4.835-4.785 1.737 1.718-2.997 2.966 1.84 1.786 2.962-2.966 3.576 3.538 3.576-3.504 2.963 2.965 1.84-1.82-2.998-2.965 1.771-1.718 4.837 4.785 1.805-1.82-4.837-4.785 1.737-1.719 5.892 5.83 1.84-1.786-5.892-5.83 1.702-1.718L50.88 70.3l1.84-1.82-6.336-6.268 1.737-1.718 5.892 5.83 1.805-1.82-6.845-6.774-.852-.842L30.31 74.513zM48.136 49.83l-1.83 1.81L56.42 61.649l1.83-1.81L48.136 49.83z",
8144
8454
  fill: "#C54B38"
8145
- })), _path4$a || (_path4$a = /*#__PURE__*/React.createElement("path", {
8455
+ })), _path4$c || (_path4$c = /*#__PURE__*/React.createElement("path", {
8146
8456
  d: "M28.709 62.417l1.6 1.617 8.958-8.862-1.805-1.786-12.431-12.3 5.313-5.223 14.202 14.052h.034l13.725-13.58-1.805-1.82L44.58 46.31 30.344 32.224l-8.957 8.862 14.236 14.086-5.313 5.257-12.397-12.3-1.84-1.786L2.315 59.957l1.84 1.786 11.92-11.794 12.635 12.468zM4.18 34.547l-1.83 1.811 10.186 10.08 1.83-1.811L4.18 34.547z",
8147
8457
  fill: "#C54B38"
8148
- })), _path5$9 || (_path5$9 = /*#__PURE__*/React.createElement("path", {
8458
+ })), _path5$b || (_path5$b = /*#__PURE__*/React.createElement("path", {
8149
8459
  d: "M30.347 21.744l14.236 14.085 8.106-8.02-1.806-1.82-6.3 6.235-1.737-1.719 5.858-5.762-1.84-1.82-5.823 5.796L39.27 27l4.768-4.717-1.805-1.82-4.768 4.718-1.737-1.719 2.929-2.898-1.84-1.786-2.928 2.864-1.737-1.718h.034l-1.84-1.786-3.575 3.538-2.895-2.898-1.84 1.786 2.93 2.898-1.737 1.719-4.734-4.65-1.805 1.785L21.39 27l-1.737 1.719-5.858-5.796-1.805 1.82 5.858 5.762-1.771 1.719-6.3-6.234-1.806 1.82 6.3 6.233-1.736 1.719-5.892-5.796-1.805 1.786 7.697 7.616 17.812-17.624z",
8150
8460
  fill: "#C54B38"
8151
- })), _path6$2 || (_path6$2 = /*#__PURE__*/React.createElement("path", {
8461
+ })), _path6$4 || (_path6$4 = /*#__PURE__*/React.createElement("path", {
8152
8462
  d: "M30.347 25.179L14.27 41.084l1.805 1.786 14.236 14.086 1.84-1.786-14.236-14.086 12.43-12.3L44.584 42.87l11.205-11.086-1.84-1.786-9.365 9.267-14.236-14.086z",
8153
8463
  fill: "#C54B38"
8154
- })), _path7$2 || (_path7$2 = /*#__PURE__*/React.createElement("path", {
8464
+ })), _path7$4 || (_path7$4 = /*#__PURE__*/React.createElement("path", {
8155
8465
  d: "M77.683 8.128c0-1.82-1.226-2.46-2.554-3.066-1.056-.472-1.84-.708-1.84-1.483 0-.674.512-1.01 1.33-1.01.85 0 1.6.37 1.94.606l.852-1.45c-.409-.302-1.294-.808-2.895-.808-1.771 0-3.201 1.045-3.201 2.73 0 1.583.92 2.325 2.111 2.931 1.158.573 2.214.809 2.214 1.685 0 .64-.58 1.146-1.567 1.146a3.338 3.338 0 01-2.111-.741l-.886 1.449c.443.336 1.465.977 3.065.977 2.214-.068 3.542-1.18 3.542-2.966zm6.676 2.258l-.613-1.314c-.239.135-.716.438-1.567.438-1.226 0-1.805-.977-1.805-2.291 0-1.315.613-2.224 1.77-2.224.716 0 1.193.235 1.5.438l.646-1.348c-.34-.236-1.055-.573-2.213-.573-2.18 0-3.815 1.348-3.815 3.774 0 2.224 1.43 3.74 3.747 3.74 1.362 0 2.009-.404 2.35-.64zm7.288.472V5.837c0-1.314-.58-2.325-2.18-2.325-1.192 0-1.873.64-2.248 1.044V.276h-1.975v10.582h1.975V6.039c.137-.202.716-.91 1.499-.91.715 0 .953.371.953 1.079v4.65h1.976zm8.276-3.606c0-1.853-1.158-3.706-3.678-3.706s-3.61 1.954-3.61 3.774c0 1.853 1.09 3.74 3.61 3.74 2.554-.034 3.678-2.022 3.678-3.808zm-2.112.034c0 1.348-.408 2.258-1.532 2.258s-1.567-.978-1.567-2.325c0-1.348.375-2.258 1.499-2.258s1.6 1.01 1.6 2.325zm9.094-2.628c-.273-.674-.818-1.146-1.874-1.146-1.158 0-1.805.64-2.179 1.044V3.68h-1.942v7.178h1.976V6.039c.136-.202.613-.876 1.362-.876.579 0 .852.37.852 1.078v4.617h1.975V5.972c.272-.337.715-.809 1.362-.809.647 0 .852.37.852 1.078v4.617h1.975V5.837c0-1.314-.545-2.325-2.078-2.325-1.021 0-1.702.472-2.281 1.146zm5.721-4.381v10.177c.341.168 1.328.572 2.963.572 2.18 0 3.849-1.381 3.849-3.807 0-2.46-1.26-3.707-3.065-3.707a2.54 2.54 0 00-1.771.741V.277h-1.976zm1.976 5.324c.136-.135.579-.54 1.226-.54 1.055 0 1.532.81 1.532 2.158 0 1.482-.647 2.291-1.771 2.291-.545 0-.851-.135-.987-.168v-3.74zm5.823-1.887v5.021c0 1.314.579 2.325 2.18 2.325a2.83 2.83 0 002.316-1.146c0 .304.102.775.136.944h1.941c-.102-.438-.204-1.146-.204-2.056V3.714h-1.975v4.785c-.136.169-.715.91-1.499.91-.715 0-.953-.37-.953-1.078V3.714h-1.942zm12.738 0c-.17-.101-.443-.202-.988-.202-.919 0-1.532.606-1.839 1.146V3.68h-1.975v7.178h1.975V6.342c.17-.337.681-1.078 1.567-1.078.408 0 .647.101.749.169l.511-1.719zm4.7 0c-.375-.135-.818-.168-1.294-.168-2.01 0-3.202 1.044-3.202 2.594 0 .944.477 1.685 1.294 2.157-.442.236-.817.674-.817 1.348 0 .505.238.842.647 1.078-.715.37-1.226.944-1.226 1.752 0 1.28 1.192 1.921 3.167 1.921 2.384 0 3.951-1.078 3.951-2.595 0-2.123-1.907-2.123-3.406-2.19-1.055-.067-1.464-.135-1.464-.505 0-.203.136-.337.272-.438.273.033.545.067.852.067 2.009 0 3.133-1.045 3.133-2.595 0-.404-.102-.808-.272-1.145h.953V3.714h-2.588zm-1.26 3.74c-.818 0-1.294-.505-1.294-1.314 0-.842.476-1.314 1.294-1.314.817 0 1.294.472 1.294 1.314 0 .809-.477 1.314-1.294 1.314zm-.852 3.64c.307.034.647.067.988.1 1.056.068 1.737.035 1.737.81 0 .606-.681 1.044-1.873 1.044-1.022 0-1.397-.404-1.397-.977-.034-.404.171-.741.545-.977zm15.939-1.079l-.851-1.449c-.511.371-1.158.742-2.248.742-1.941 0-2.895-1.55-2.895-3.404 0-1.82.988-3.268 2.861-3.268.919 0 1.532.236 2.077.573l.92-1.517c-.783-.505-1.669-.775-2.963-.775-3.338 0-5.109 2.393-5.109 5.055s1.703 5.088 5.075 5.088c1.464-.034 2.656-.607 3.133-1.045zm2.248-2.291h4.598c.238-2.662-.852-4.212-3.134-4.212-2.009 0-3.576 1.449-3.576 3.707 0 2.291 1.363 3.807 3.781 3.807 1.498 0 2.213-.438 2.69-.674l-.647-1.28c-.34.168-.919.505-1.873.505-1.192 0-1.737-.74-1.839-1.853zm0-1.314c.136-.944.613-1.483 1.43-1.483.92 0 1.226.674 1.26 1.483h-2.69zm12.158 4.448V5.837c0-1.314-.579-2.325-2.179-2.325-1.192 0-1.907.64-2.316 1.078v-.91h-1.941v7.178h1.975V6.039c.136-.202.715-.91 1.498-.91.716 0 .954.371.954 1.079v4.65h2.009zm1.976-5.695v3.64c0 1.381.579 2.223 2.282 2.223.919 0 1.532-.236 1.805-.404l-.477-1.449c-.136.101-.511.27-.954.27-.545 0-.715-.304-.715-1.011V5.163h1.703V3.714h-1.703v-2.09h-1.975v2.09h-1.158v1.449h1.192zm6.403 2.561h4.597c.239-2.662-.851-4.212-3.133-4.212-2.009 0-3.576 1.449-3.576 3.707 0 2.291 1.362 3.807 3.78 3.807 1.499 0 2.214-.438 2.691-.674l-.647-1.28c-.341.168-.92.505-1.873.505-1.192 0-1.771-.74-1.839-1.853zm0-1.314c.136-.944.613-1.483 1.43-1.483.92 0 1.226.674 1.26 1.483h-2.69zm10.523-2.696c-.17-.101-.442-.202-.987-.202-.92 0-1.499.606-1.839 1.146V3.68h-1.942v7.178h1.976V6.342c.17-.337.681-1.078 1.566-1.078.409 0 .647.101.749.169l.477-1.719z",
8156
8466
  fill: "#010101"
8157
8467
  })));
8158
8468
  }
8159
8469
 
8160
- var _path$P, _path2$r, _path3$m, _path4$b, _path5$a;
8470
+ var _path$R, _path2$t, _path3$o, _path4$d, _path5$c;
8161
8471
 
8162
- var _excluded$1n = ["title", "titleId"];
8472
+ var _excluded$1p = ["title", "titleId"];
8163
8473
 
8164
- function _extends$11() { _extends$11 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$11.apply(this, arguments); }
8474
+ function _extends$13() { _extends$13 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$13.apply(this, arguments); }
8165
8475
 
8166
- function _objectWithoutProperties$10(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$11(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8476
+ function _objectWithoutProperties$12(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$13(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8167
8477
 
8168
- function _objectWithoutPropertiesLoose$11(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8478
+ function _objectWithoutPropertiesLoose$13(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8169
8479
 
8170
8480
  function SvgLogoSchomburgWhite(_ref) {
8171
8481
  var title = _ref.title,
8172
8482
  titleId = _ref.titleId,
8173
- props = _objectWithoutProperties$10(_ref, _excluded$1n);
8483
+ props = _objectWithoutProperties$12(_ref, _excluded$1p);
8174
8484
 
8175
- return /*#__PURE__*/React.createElement("svg", _extends$11({
8485
+ return /*#__PURE__*/React.createElement("svg", _extends$13({
8176
8486
  viewBox: "0 0 185 79",
8177
8487
  fill: "#fff",
8178
8488
  xmlns: "http://www.w3.org/2000/svg",
8179
8489
  "aria-labelledby": titleId
8180
8490
  }, props), title ? /*#__PURE__*/React.createElement("title", {
8181
8491
  id: titleId
8182
- }, title) : null, _path$P || (_path$P = /*#__PURE__*/React.createElement("path", {
8492
+ }, title) : null, _path$R || (_path$R = /*#__PURE__*/React.createElement("path", {
8183
8493
  d: "M72.306 33.437a.607.607 0 100-1.213c-.306 0-.613.27-.613.606.034.337.307.607.613.607zm-.374 8.728h.817v-7.212h-.817v7.212zm2.758 0h.784v-5.257c.442-.674 1.328-1.416 2.248-1.416 1.09 0 1.498.674 1.498 1.72v4.953h.783v-5.122c0-1.315-.613-2.258-2.111-2.258-1.022 0-1.873.606-2.418 1.314v-1.146h-.784v7.212zm9.707 0h2.316c2.316 0 3.78-.81 3.78-2.797 0-1.45-1.056-2.292-2.316-2.528v-.033c1.124-.27 1.873-1.045 1.873-2.224 0-1.786-1.294-2.494-3.303-2.494H84.43v10.076h-.034zm.817-.708v-4.246h1.533c1.975 0 2.895.809 2.895 2.19 0 1.45-.954 2.09-2.93 2.09h-1.498v-.034zm0-4.954v-3.706h1.43c1.703 0 2.555.539 2.555 1.82 0 1.246-.817 1.886-2.554 1.886h-1.43zm6.948 5.662h.783V31.28h-.783v10.885zm4.632.168a2.87 2.87 0 002.213-1.078c0 .27.069.674.103.91h.783c-.102-.304-.17-.843-.17-1.45v-3.639c0-1.55-.852-2.291-2.35-2.291-.954 0-1.737.303-2.384.91l.442.539c.613-.573 1.192-.775 1.908-.775 1.09 0 1.6.539 1.6 1.718v.81h-.34c-1.703 0-3.849.538-3.849 2.459 0 1.146.818 1.887 2.044 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.03-1.82h.341v1.921c-.51.708-1.226 1.112-2.043 1.112zm7.458.674c1.09 0 1.874-.404 2.248-.741l-.34-.607c-.307.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.133 0-1.652.749-3.067 2.35-3.067.817 0 1.362.303 1.77.64l.409-.572c-.408-.337-1.09-.742-2.179-.742-1.874 0-3.202 1.483-3.202 3.774.034 1.955 1.09 3.808 3.167 3.808zm7.936-.168h.987l-3.405-4.044 3.235-3.168h-.987l-3.202 3.168 3.372 4.044zm-4.223 0h.783V31.28h-.783v10.885zm13.589.168c1.328 0 2.384-.438 2.997-1.01l-.409-.607c-.613.539-1.464.876-2.554.876-2.589 0-4.053-2.157-4.053-4.55 0-2.358 1.464-4.481 4.019-4.481.953 0 1.702.27 2.316.674l.442-.64c-.715-.472-1.566-.742-2.724-.742-3.065 0-4.905 2.46-4.905 5.19 0 2.83 1.805 5.29 4.871 5.29zm6.709 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783V31.28h-.783v10.885zm5.245.168c.681 0 1.192-.27 1.396-.438l-.307-.607c-.136.102-.579.337-1.021.337-.647 0-.886-.404-.886-1.145v-4.92h1.873v-.64h-1.873v-2.056h-.783v2.056h-1.226v.64h1.226v4.953c0 1.18.511 1.82 1.601 1.82zm5.006 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783v-5.021c.204-.438.851-1.618 1.873-1.618.307 0 .477.068.613.101l.205-.741c-.137-.034-.375-.135-.716-.135-1.021 0-1.669.91-1.941 1.415V34.92h-.783v7.245h-.034zm7.356.168c1.192 0 2.009-.404 2.486-.741l-.34-.607a3.708 3.708 0 01-2.112.674c-1.737 0-2.452-1.516-2.452-3.167v-.169h5.04v-.404c0-1.854-1.021-3.134-2.758-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.055 1.021 3.841 3.269 3.841zm-2.384-4.65c.204-1.247.954-2.224 2.214-2.224 1.396 0 1.975 1.112 1.975 2.224H155.1zM72.1 26.53h.783v-6.572h1.907v-.64h-1.907v-1.146c0-1.314.545-1.988 1.67-1.988.442 0 .748.101.919.202l.204-.707c-.204-.102-.579-.203-1.124-.203-1.6 0-2.452.977-2.452 2.629v1.213h-1.26v.64h1.26v6.571zm6.777.168c2.282 0 3.338-1.989 3.338-3.808 0-1.786-1.056-3.74-3.338-3.74-2.281 0-3.27 1.954-3.27 3.774s.989 3.774 3.27 3.774zm.035-.674c-1.67 0-2.453-1.483-2.453-3.134 0-1.618.75-3.067 2.418-3.067 1.67 0 2.555 1.483 2.555 3.1-.034 1.652-.852 3.1-2.52 3.1zm4.836.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.022 0-1.668.876-1.941 1.415v-1.247h-.783v7.245h-.034zm8.446 0h.851v-4.886h.273c.613 0 .783.101 1.805 1.483l2.486 3.403h1.022l-2.827-3.808c-.579-.741-.783-1.01-.988-1.112h.136c1.772-.067 2.998-.91 2.998-2.56 0-1.686-1.26-2.596-3.304-2.596h-2.418V26.53h-.034zm.817-5.56v-3.808h1.465c1.668 0 2.554.64 2.554 1.887 0 1.247-.851 1.921-2.486 1.921H93.01zm9.604 5.729c1.192 0 2.01-.405 2.487-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.269 3.842zm-2.384-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.975 2.224h-4.189zm8.447 4.683c1.498 0 2.452-.775 2.452-2.022 0-1.179-1.022-1.684-2.146-2.19-.851-.37-1.566-.674-1.566-1.516 0-.708.476-1.18 1.362-1.18a2.71 2.71 0 011.669.573l.408-.573c-.34-.27-1.055-.674-2.077-.674-1.362 0-2.146.81-2.146 1.887 0 1.18.92 1.685 2.01 2.157.987.438 1.668.775 1.668 1.584 0 .775-.647 1.247-1.634 1.247-.784 0-1.533-.337-1.873-.607l-.341.607c.443.337 1.26.707 2.214.707zm7.016-.033c1.192 0 2.009-.405 2.486-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.27 3.842zm-2.385-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.976 2.224h-4.19zm8.379 4.65a2.87 2.87 0 002.213-1.079c0 .27.068.674.103.91h.783c-.102-.303-.136-.842-.136-1.449v-3.64c0-1.55-.852-2.29-2.35-2.29-.954 0-1.737.303-2.384.91l.442.538c.613-.572 1.192-.775 1.908-.775 1.089 0 1.6.54 1.6 1.719v.809h-.34c-1.703 0-3.849.539-3.849 2.46-.034 1.145.784 1.887 2.01 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.031-1.82h.34v1.92c-.545.708-1.226 1.113-2.043 1.113zm5.313.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.021 0-1.668.876-1.941 1.415v-1.247h-.817v7.245zm7.186.169c1.09 0 1.873-.405 2.248-.742l-.341-.606c-.306.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.134 0-1.651.749-3.066 2.35-3.066.817 0 1.362.303 1.771.64l.409-.573c-.409-.337-1.09-.741-2.18-.741-1.873 0-3.201 1.482-3.201 3.774.034 1.954 1.055 3.808 3.167 3.808zm3.985-.169h.783v-5.257c.272-.404 1.158-1.415 2.248-1.415 1.09 0 1.498.674 1.498 1.719v4.953h.784v-5.122c0-1.314-.613-2.258-2.112-2.258-1.226 0-2.078.81-2.418 1.315v-4.82h-.783V26.53zM74.452 48.769v-.809h-3.576v.809h1.294v3.808h.988v-3.808h1.294zm3.44 3.808v-2.36c0-.606-.273-1.078-1.022-1.078a1.36 1.36 0 00-1.056.506v-2.022h-.92v4.987h.92v-2.325c.068-.1.34-.438.716-.438.34 0 .442.169.442.506v2.19h.92v.034zm1.532-1.483h2.18c.102-1.247-.409-1.988-1.464-1.988-.954 0-1.703.674-1.703 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.817-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm8.48 2.123V47.96h-.885v2.426c0 .37.034.708.034.742 0 0-.204-.371-.477-.775l-1.668-2.393h-1.056v4.617h.885v-2.629c0-.303-.034-.606-.034-.606s.17.337.443.707l1.805 2.561h.954v-.033zm1.567-1.483h2.18c.102-1.247-.409-1.988-1.465-1.988-.953 0-1.702.674-1.702 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.818-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm7.425-1.247h-.92l-.545 2.157-.579-2.157h-.851l-.579 2.157-.51-2.157h-.989l.954 3.37h.852l.715-2.258.715 2.258h.851l.886-3.37zm5.551-1.247h-.953l-.988 1.954-.988-1.954h-1.09l1.533 2.864v1.753h.988v-1.753l1.498-2.864zm3.031 2.898c0-.876-.545-1.752-1.737-1.752-1.192 0-1.702.91-1.702 1.786s.51 1.752 1.702 1.752c1.226 0 1.737-.944 1.737-1.786zm-.987.034c0 .64-.205 1.044-.716 1.044-.51 0-.749-.471-.749-1.078 0-.606.17-1.078.715-1.078.511 0 .75.471.75 1.112zm3.78-1.685a.974.974 0 00-.477-.101c-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.328 1.718l1.09 1.652h1.09l-1.294-1.854 1.26-1.516h-1.022l-1.124 1.348v-2.966h-.919v4.988h.919v-1.652zm7.561-1.516c0-.977-.783-1.449-1.771-1.449h-1.533v4.617h.988v-1.652h.443c1.158 0 1.873-.505 1.873-1.516zm-.988 0c0 .505-.272.775-.885.775h-.443v-1.483h.477c.613 0 .851.27.851.708zm1.465-.202v2.359c0 .606.272 1.078 1.022 1.078.579 0 .919-.303 1.089-.54 0 .136.034.371.069.439h.919c-.034-.202-.102-.54-.102-.977v-2.393h-.92v2.258c-.068.067-.34.438-.715.438-.34 0-.443-.169-.443-.505v-2.19h-.919v.033zm3.78-1.618v4.785c.17.068.613.27 1.397.27 1.021 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.465-1.752-.374 0-.681.202-.817.337v-1.854h-.92zm.954 2.494c.068-.067.272-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.307 1.079-.817 1.079-.273 0-.409-.068-.477-.068v-1.752zm3.814-2.494h-.919v4.988h.919v-4.988zm1.873 1.618h-.953v3.37h.953v-3.37zm.103-1.011c0-.303-.239-.54-.579-.54-.341 0-.579.237-.579.54 0 .303.238.54.579.54.34.033.579-.237.579-.54zm3.439 4.145l-.272-.607c-.102.068-.341.202-.749.202-.579 0-.852-.471-.852-1.078 0-.606.273-1.045.818-1.045.34 0 .545.101.715.203l.306-.64c-.17-.102-.476-.27-1.055-.27-1.022 0-1.805.64-1.805 1.786 0 1.044.681 1.752 1.77 1.752.648 0 .954-.202 1.124-.303zm4.905.236v-.775h-1.737v-3.808h-.988v4.616h2.725v-.033zm1.498-3.37h-.953v3.37h.953v-3.37zm.102-1.011c0-.303-.238-.54-.579-.54-.34 0-.579.237-.579.54 0 .303.239.54.579.54.341.033.579-.237.579-.54zm.784-.607v4.785c.17.068.613.27 1.396.27 1.022 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.464-1.752-.375 0-.682.202-.818.337v-1.854h-.919zm.953 2.494c.068-.067.273-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.306 1.079-.817 1.079-.272 0-.409-.068-.477-.068v-1.752zm5.075-.876c-.068-.034-.204-.101-.477-.101-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .306.034.34.068l.239-.775zm3.133 3.37c-.034-.203-.102-.54-.102-1.011v-1.213c0-.91-.443-1.247-1.362-1.247-.716 0-1.192.303-1.397.471l.409.573c.136-.1.443-.303.885-.303.443 0 .545.169.545.472v.202h-.136c-.919 0-1.805.303-1.805 1.213 0 .607.443.944 1.022.944.477 0 .817-.27.953-.438 0 .1.035.27.069.37h.919v-.033zm-1.022-.91c-.102.1-.306.303-.613.303-.204 0-.408-.101-.408-.337 0-.404.374-.54.919-.54h.136v.574h-.034zm3.951-2.46c-.068-.034-.204-.101-.477-.101-.442 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.396 3.302l-.136.337c-.136.37-.306.607-.783.607-.204 0-.273-.034-.341-.034l-.136.741c.068.034.238.068.511.068.919 0 1.294-.472 1.601-1.247l1.396-3.74h-.954l-.681 2.224h-.034l-.749-2.225h-.988l1.294 3.27zM55.275 46.374l3.541 3.539 1.84-1.82-3.576-3.505 2.928-2.898-1.839-1.785-8.31 8.222 8.378 8.256 1.84-1.786-6.573-6.47 1.77-1.753zM.613 41.693l6.54 6.436-1.772 1.718-3.542-3.504L0 48.129l3.576 3.538-2.997 2.965 1.84 1.786 8.343-8.29-8.344-8.255-1.805 1.82zM16.075 56.992L30.31 71.077l14.27-14.12 1.805-1.785L30.345 39.3l-1.805 1.786 14.202 14.086-12.431 12.3-14.202-14.086h-.034L4.802 64.54l1.839 1.82 9.434-9.368z"
8184
- })), _path2$r || (_path2$r = /*#__PURE__*/React.createElement("path", {
8494
+ })), _path2$t || (_path2$t = /*#__PURE__*/React.createElement("path", {
8185
8495
  d: "M30.31 74.513L16.072 60.427l-8.14 8.088L9.74 70.3l6.334-6.268 1.737 1.718-5.892 5.83 1.805 1.786 5.892-5.83 1.737 1.719-4.836 4.785 1.84 1.82 4.835-4.785 1.737 1.718-2.997 2.966 1.84 1.786 2.962-2.966 3.576 3.538 3.576-3.504 2.963 2.965 1.84-1.82-2.998-2.965 1.771-1.718 4.837 4.785 1.805-1.82-4.837-4.785 1.737-1.719 5.892 5.83 1.84-1.786-5.892-5.83 1.702-1.718L50.88 70.3l1.84-1.82-6.336-6.268 1.737-1.718 5.892 5.83 1.805-1.82-6.845-6.774-.852-.842L30.31 74.513zM48.136 49.83l-1.83 1.81L56.42 61.649l1.83-1.81L48.136 49.83z"
8186
- })), _path3$m || (_path3$m = /*#__PURE__*/React.createElement("path", {
8496
+ })), _path3$o || (_path3$o = /*#__PURE__*/React.createElement("path", {
8187
8497
  d: "M28.709 62.417l1.6 1.617 8.958-8.862-1.805-1.786-12.431-12.3 5.313-5.223 14.202 14.052h.034l13.725-13.58-1.805-1.82L44.58 46.31 30.344 32.224l-8.957 8.862 14.236 14.086-5.313 5.257-12.397-12.3-1.84-1.786L2.315 59.957l1.84 1.786 11.92-11.794 12.635 12.468zM4.18 34.547l-1.83 1.811 10.186 10.08 1.83-1.811L4.18 34.547z"
8188
- })), _path4$b || (_path4$b = /*#__PURE__*/React.createElement("path", {
8498
+ })), _path4$d || (_path4$d = /*#__PURE__*/React.createElement("path", {
8189
8499
  d: "M30.347 21.744l14.236 14.085 8.106-8.02-1.806-1.82-6.3 6.235-1.737-1.719 5.858-5.762-1.84-1.82-5.823 5.796L39.27 27l4.768-4.717-1.805-1.82-4.768 4.718-1.737-1.719 2.929-2.898-1.84-1.786-2.928 2.864-1.737-1.718h.034l-1.84-1.786-3.575 3.538-2.895-2.898-1.84 1.786 2.93 2.898-1.737 1.719-4.734-4.65-1.805 1.785L21.39 27l-1.737 1.719-5.858-5.796-1.805 1.82 5.858 5.762-1.771 1.719-6.3-6.234-1.806 1.82 6.3 6.233-1.736 1.719-5.892-5.796-1.805 1.786 7.697 7.616 17.812-17.624z"
8190
- })), _path5$a || (_path5$a = /*#__PURE__*/React.createElement("path", {
8500
+ })), _path5$c || (_path5$c = /*#__PURE__*/React.createElement("path", {
8191
8501
  d: "M30.347 25.179L14.27 41.084l1.805 1.786 14.236 14.086 1.84-1.786-14.236-14.086 12.43-12.3L44.584 42.87l11.205-11.086-1.84-1.786-9.365 9.267-14.236-14.086zM77.683 8.128c0-1.82-1.226-2.46-2.554-3.066-1.056-.472-1.84-.708-1.84-1.483 0-.674.512-1.01 1.33-1.01.85 0 1.6.37 1.94.606l.852-1.45c-.409-.302-1.294-.808-2.895-.808-1.771 0-3.201 1.045-3.201 2.73 0 1.583.92 2.325 2.111 2.931 1.158.573 2.214.809 2.214 1.685 0 .64-.58 1.146-1.567 1.146a3.338 3.338 0 01-2.111-.741l-.886 1.449c.443.336 1.465.977 3.065.977 2.214-.068 3.542-1.18 3.542-2.966zm6.676 2.258l-.613-1.314c-.239.135-.716.438-1.567.438-1.226 0-1.805-.977-1.805-2.291 0-1.315.613-2.224 1.77-2.224.716 0 1.193.235 1.5.438l.646-1.348c-.34-.236-1.055-.573-2.213-.573-2.18 0-3.815 1.348-3.815 3.774 0 2.224 1.43 3.74 3.747 3.74 1.362 0 2.009-.404 2.35-.64zm7.288.472V5.837c0-1.314-.58-2.325-2.18-2.325-1.192 0-1.873.64-2.248 1.044V.276h-1.975v10.582h1.975V6.039c.137-.202.716-.91 1.499-.91.715 0 .953.371.953 1.079v4.65h1.976zm8.276-3.606c0-1.853-1.158-3.706-3.678-3.706s-3.61 1.954-3.61 3.774c0 1.853 1.09 3.74 3.61 3.74 2.554-.034 3.678-2.022 3.678-3.808zm-2.112.034c0 1.348-.408 2.258-1.532 2.258s-1.567-.978-1.567-2.325c0-1.348.375-2.258 1.499-2.258s1.6 1.01 1.6 2.325zm9.094-2.628c-.273-.674-.818-1.146-1.874-1.146-1.158 0-1.805.64-2.179 1.044V3.68h-1.942v7.178h1.976V6.039c.136-.202.613-.876 1.362-.876.579 0 .852.37.852 1.078v4.617h1.975V5.972c.272-.337.715-.809 1.362-.809.647 0 .852.37.852 1.078v4.617h1.975V5.837c0-1.314-.545-2.325-2.078-2.325-1.021 0-1.702.472-2.281 1.146zm5.721-4.381v10.177c.341.168 1.328.572 2.963.572 2.18 0 3.849-1.381 3.849-3.807 0-2.46-1.26-3.707-3.065-3.707a2.54 2.54 0 00-1.771.741V.277h-1.976zm1.976 5.324c.136-.135.579-.54 1.226-.54 1.055 0 1.532.81 1.532 2.158 0 1.482-.647 2.291-1.771 2.291-.545 0-.851-.135-.987-.168v-3.74zm5.823-1.887v5.021c0 1.314.579 2.325 2.18 2.325a2.83 2.83 0 002.316-1.146c0 .304.102.775.136.944h1.941c-.102-.438-.204-1.146-.204-2.056V3.714h-1.975v4.785c-.136.169-.715.91-1.499.91-.715 0-.953-.37-.953-1.078V3.714h-1.942zm12.738 0c-.17-.101-.443-.202-.988-.202-.919 0-1.532.606-1.839 1.146V3.68h-1.975v7.178h1.975V6.342c.17-.337.681-1.078 1.567-1.078.408 0 .647.101.749.169l.511-1.719zm4.7 0c-.375-.135-.818-.168-1.294-.168-2.01 0-3.202 1.044-3.202 2.594 0 .944.477 1.685 1.294 2.157-.442.236-.817.674-.817 1.348 0 .505.238.842.647 1.078-.715.37-1.226.944-1.226 1.752 0 1.28 1.192 1.921 3.167 1.921 2.384 0 3.951-1.078 3.951-2.595 0-2.123-1.907-2.123-3.406-2.19-1.055-.067-1.464-.135-1.464-.505 0-.203.136-.337.272-.438.273.033.545.067.852.067 2.009 0 3.133-1.045 3.133-2.595 0-.404-.102-.808-.272-1.145h.953V3.714h-2.588zm-1.26 3.74c-.818 0-1.294-.505-1.294-1.314 0-.842.476-1.314 1.294-1.314.817 0 1.294.472 1.294 1.314 0 .809-.477 1.314-1.294 1.314zm-.852 3.64c.307.034.647.067.988.1 1.056.068 1.737.035 1.737.81 0 .606-.681 1.044-1.873 1.044-1.022 0-1.397-.404-1.397-.977-.034-.404.171-.741.545-.977zm15.939-1.079l-.851-1.449c-.511.371-1.158.742-2.248.742-1.941 0-2.895-1.55-2.895-3.404 0-1.82.988-3.268 2.861-3.268.919 0 1.532.236 2.077.573l.92-1.517c-.783-.505-1.669-.775-2.963-.775-3.338 0-5.109 2.393-5.109 5.055s1.703 5.088 5.075 5.088c1.464-.034 2.656-.607 3.133-1.045zm2.248-2.291h4.598c.238-2.662-.852-4.212-3.134-4.212-2.009 0-3.576 1.449-3.576 3.707 0 2.291 1.363 3.807 3.781 3.807 1.498 0 2.213-.438 2.69-.674l-.647-1.28c-.34.168-.919.505-1.873.505-1.192 0-1.737-.74-1.839-1.853zm0-1.314c.136-.944.613-1.483 1.43-1.483.92 0 1.226.674 1.26 1.483h-2.69zm12.158 4.448V5.837c0-1.314-.579-2.325-2.179-2.325-1.192 0-1.907.64-2.316 1.078v-.91h-1.941v7.178h1.975V6.039c.136-.202.715-.91 1.498-.91.716 0 .954.371.954 1.079v4.65h2.009zm1.976-5.695v3.64c0 1.381.579 2.223 2.282 2.223.919 0 1.532-.236 1.805-.404l-.477-1.449c-.136.101-.511.27-.954.27-.545 0-.715-.304-.715-1.011V5.163h1.703V3.714h-1.703v-2.09h-1.975v2.09h-1.158v1.449h1.192zm6.403 2.561h4.597c.239-2.662-.851-4.212-3.133-4.212-2.009 0-3.576 1.449-3.576 3.707 0 2.291 1.362 3.807 3.78 3.807 1.499 0 2.214-.438 2.691-.674l-.647-1.28c-.341.168-.92.505-1.873.505-1.192 0-1.771-.74-1.839-1.853zm0-1.314c.136-.944.613-1.483 1.43-1.483.92 0 1.226.674 1.26 1.483h-2.69zm10.523-2.696c-.17-.101-.442-.202-.987-.202-.92 0-1.499.606-1.839 1.146V3.68h-1.942v7.178h1.976V6.342c.17-.337.681-1.078 1.566-1.078.409 0 .647.101.749.169l.477-1.719z"
8192
8502
  })));
8193
8503
  }
8194
8504
 
8195
- var _g$c, _defs$7;
8505
+ var _g$b, _defs$7;
8196
8506
 
8197
- var _excluded$1o = ["title", "titleId"];
8507
+ var _excluded$1q = ["title", "titleId"];
8198
8508
 
8199
- function _extends$12() { _extends$12 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$12.apply(this, arguments); }
8509
+ function _extends$14() { _extends$14 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$14.apply(this, arguments); }
8200
8510
 
8201
- function _objectWithoutProperties$11(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$12(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8511
+ function _objectWithoutProperties$13(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$14(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8202
8512
 
8203
- function _objectWithoutPropertiesLoose$12(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8513
+ function _objectWithoutPropertiesLoose$14(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8204
8514
 
8205
8515
  function SvgLogoSimplyeBlack(_ref) {
8206
8516
  var title = _ref.title,
8207
8517
  titleId = _ref.titleId,
8208
- props = _objectWithoutProperties$11(_ref, _excluded$1o);
8518
+ props = _objectWithoutProperties$13(_ref, _excluded$1q);
8209
8519
 
8210
- return /*#__PURE__*/React.createElement("svg", _extends$12({
8520
+ return /*#__PURE__*/React.createElement("svg", _extends$14({
8211
8521
  viewBox: "0 0 512 148",
8212
8522
  xmlns: "http://www.w3.org/2000/svg",
8213
8523
  "aria-labelledby": titleId
8214
8524
  }, props), title ? /*#__PURE__*/React.createElement("title", {
8215
8525
  id: titleId
8216
- }, title) : null, _g$c || (_g$c = /*#__PURE__*/React.createElement("g", {
8526
+ }, title) : null, _g$b || (_g$b = /*#__PURE__*/React.createElement("g", {
8217
8527
  clipPath: "url(#logo-simplye-black_svg__clip0)"
8218
8528
  }, /*#__PURE__*/React.createElement("path", {
8219
8529
  d: "M25.017 34.161c-.504-.616-.54-1.441.215-1.69l52.402-17.328a.944.944 0 011.24.898.998.998 0 00.93.945c.415.067.836.084 1.254.05a1.001 1.001 0 001.009-.941l-.003-5.512a1.001 1.001 0 00-.558-.914 1.137 1.137 0 00-.83-.118L21.98 29.023c-2.26.73-2.663 1.004-2.663 3.432l.02 99.764a.916.916 0 00.039.282c1.212 3.697 5.547 5.389 5.547 5.389 4.256 1.615 6.449 2.064 10.304.727 0 0 .085-99.525.035-99.963a.28.28 0 00-.23-.242c-.41-.077-6.716-.21-10.017-4.25"
@@ -8230,29 +8540,29 @@ function SvgLogoSimplyeBlack(_ref) {
8230
8540
  })))));
8231
8541
  }
8232
8542
 
8233
- var _g$d, _defs$8;
8543
+ var _g$c, _defs$8;
8234
8544
 
8235
- var _excluded$1p = ["title", "titleId"];
8545
+ var _excluded$1r = ["title", "titleId"];
8236
8546
 
8237
- function _extends$13() { _extends$13 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$13.apply(this, arguments); }
8547
+ function _extends$15() { _extends$15 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$15.apply(this, arguments); }
8238
8548
 
8239
- function _objectWithoutProperties$12(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$13(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8549
+ function _objectWithoutProperties$14(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$15(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8240
8550
 
8241
- function _objectWithoutPropertiesLoose$13(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8551
+ function _objectWithoutPropertiesLoose$15(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8242
8552
 
8243
8553
  function SvgLogoSimplyeWhite(_ref) {
8244
8554
  var title = _ref.title,
8245
8555
  titleId = _ref.titleId,
8246
- props = _objectWithoutProperties$12(_ref, _excluded$1p);
8556
+ props = _objectWithoutProperties$14(_ref, _excluded$1r);
8247
8557
 
8248
- return /*#__PURE__*/React.createElement("svg", _extends$13({
8558
+ return /*#__PURE__*/React.createElement("svg", _extends$15({
8249
8559
  viewBox: "0 0 512 148",
8250
8560
  fill: "#fff",
8251
8561
  xmlns: "http://www.w3.org/2000/svg",
8252
8562
  "aria-labelledby": titleId
8253
8563
  }, props), title ? /*#__PURE__*/React.createElement("title", {
8254
8564
  id: titleId
8255
- }, title) : null, _g$d || (_g$d = /*#__PURE__*/React.createElement("g", {
8565
+ }, title) : null, _g$c || (_g$c = /*#__PURE__*/React.createElement("g", {
8256
8566
  clipPath: "url(#logo-simplye-white_svg__clip0)"
8257
8567
  }, /*#__PURE__*/React.createElement("path", {
8258
8568
  d: "M25.017 34.161c-.504-.616-.54-1.441.215-1.69l52.402-17.328a.944.944 0 011.24.898.998.998 0 00.93.945c.415.067.836.084 1.254.05a1.001 1.001 0 001.009-.941l-.003-5.512a1.001 1.001 0 00-.558-.914 1.137 1.137 0 00-.83-.118L21.98 29.023c-2.26.73-2.663 1.004-2.663 3.432l.02 99.764a.916.916 0 00.039.282c1.212 3.697 5.547 5.389 5.547 5.389 4.256 1.615 6.449 2.064 10.304.727 0 0 .085-99.525.035-99.963a.28.28 0 00-.23-.242c-.41-.077-6.716-.21-10.017-4.25"
@@ -8268,29 +8578,29 @@ function SvgLogoSimplyeWhite(_ref) {
8268
8578
  })))));
8269
8579
  }
8270
8580
 
8271
- var _g$e, _defs$9;
8581
+ var _g$d, _defs$9;
8272
8582
 
8273
- var _excluded$1q = ["title", "titleId"];
8583
+ var _excluded$1s = ["title", "titleId"];
8274
8584
 
8275
- function _extends$14() { _extends$14 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$14.apply(this, arguments); }
8585
+ function _extends$16() { _extends$16 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$16.apply(this, arguments); }
8276
8586
 
8277
- function _objectWithoutProperties$13(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$14(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8587
+ function _objectWithoutProperties$15(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$16(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8278
8588
 
8279
- function _objectWithoutPropertiesLoose$14(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8589
+ function _objectWithoutPropertiesLoose$16(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8280
8590
 
8281
8591
  function SvgLogoSimplyeColor(_ref) {
8282
8592
  var title = _ref.title,
8283
8593
  titleId = _ref.titleId,
8284
- props = _objectWithoutProperties$13(_ref, _excluded$1q);
8594
+ props = _objectWithoutProperties$15(_ref, _excluded$1s);
8285
8595
 
8286
- return /*#__PURE__*/React.createElement("svg", _extends$14({
8596
+ return /*#__PURE__*/React.createElement("svg", _extends$16({
8287
8597
  viewBox: "0 0 682 196",
8288
8598
  fill: "none",
8289
8599
  xmlns: "http://www.w3.org/2000/svg",
8290
8600
  "aria-labelledby": titleId
8291
8601
  }, props), title ? /*#__PURE__*/React.createElement("title", {
8292
8602
  id: titleId
8293
- }, title) : null, _g$e || (_g$e = /*#__PURE__*/React.createElement("g", {
8603
+ }, title) : null, _g$d || (_g$d = /*#__PURE__*/React.createElement("g", {
8294
8604
  clipPath: "url(#logo-simplye-color_svg__clip0)"
8295
8605
  }, /*#__PURE__*/React.createElement("path", {
8296
8606
  d: "M32.454 44.821c-.672-.822-.72-1.921.288-2.254l69.866-23.102a1.258 1.258 0 011.654 1.195c-.001.69.559 1.155 1.242 1.26.528.083 1.108.12 1.67.068.727-.068 1.346-.526 1.346-1.255l-.004-7.35c0-.376-.164-.94-.744-1.218-.324-.158-.735-.28-1.108-.156l-78.258 25.96c-3.012.975-3.55 1.34-3.55 4.576l.027 133.016c0 .126.013.257.052.377 1.616 4.929 7.396 7.184 7.396 7.184 5.674 2.155 8.598 2.753 13.738.969 0 0 .115-132.697.047-133.28a.373.373 0 00-.306-.323c-.546-.103-8.954-.279-13.355-5.667",
@@ -8313,124 +8623,124 @@ function SvgLogoSimplyeColor(_ref) {
8313
8623
  })))));
8314
8624
  }
8315
8625
 
8316
- var _path$Q;
8626
+ var _path$S;
8317
8627
 
8318
- var _excluded$1r = ["title", "titleId"];
8628
+ var _excluded$1t = ["title", "titleId"];
8319
8629
 
8320
- function _extends$15() { _extends$15 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$15.apply(this, arguments); }
8630
+ function _extends$17() { _extends$17 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$17.apply(this, arguments); }
8321
8631
 
8322
- function _objectWithoutProperties$14(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$15(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8632
+ function _objectWithoutProperties$16(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$17(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8323
8633
 
8324
- function _objectWithoutPropertiesLoose$15(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8634
+ function _objectWithoutPropertiesLoose$17(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8325
8635
 
8326
8636
  function SvgLogoSnflBlack(_ref) {
8327
8637
  var title = _ref.title,
8328
8638
  titleId = _ref.titleId,
8329
- props = _objectWithoutProperties$14(_ref, _excluded$1r);
8639
+ props = _objectWithoutProperties$16(_ref, _excluded$1t);
8330
8640
 
8331
- return /*#__PURE__*/React.createElement("svg", _extends$15({
8641
+ return /*#__PURE__*/React.createElement("svg", _extends$17({
8332
8642
  viewBox: "0 0 84 111",
8333
8643
  xmlns: "http://www.w3.org/2000/svg",
8334
8644
  "aria-labelledby": titleId
8335
8645
  }, props), title ? /*#__PURE__*/React.createElement("title", {
8336
8646
  id: titleId
8337
- }, title) : null, _path$Q || (_path$Q = /*#__PURE__*/React.createElement("path", {
8647
+ }, title) : null, _path$S || (_path$S = /*#__PURE__*/React.createElement("path", {
8338
8648
  d: "M5.483 30.355c0 .392-.058.723-.204 1.055-.146.301-.32.572-.583.784a2.812 2.812 0 01-.933.512c-.38.12-.788.18-1.225.18-.35 0-.642-.03-.905-.09-.262-.06-.525-.12-.729-.21a9.82 9.82 0 01-.554-.272 1.82 1.82 0 01-.35-.271l.73-1.266c.057.03.116.09.233.15.087.06.233.151.379.211.145.06.32.12.525.181.204.06.408.09.641.09.409 0 .73-.09.963-.3a.854.854 0 00.35-.694.854.854 0 00-.146-.482c-.117-.121-.233-.242-.408-.362-.175-.09-.35-.211-.584-.302-.233-.09-.466-.21-.7-.331a3.985 3.985 0 01-.7-.422 3.085 3.085 0 01-.554-.513 2.213 2.213 0 01-.379-.693 2.928 2.928 0 01-.146-.904c0-.362.059-.694.204-.995.146-.302.321-.543.555-.754.233-.21.525-.362.845-.482.321-.12.671-.181 1.05-.181.35 0 .642.03.905.09.262.06.495.12.7.181.204.06.35.15.495.241.146.09.234.151.321.211l-.7 1.267-.262-.181a4.677 4.677 0 00-.38-.181 2.13 2.13 0 00-.466-.12c-.175-.031-.321-.061-.496-.061-.35 0-.613.06-.817.21-.204.152-.291.363-.291.664 0 .181.029.301.116.422.088.12.175.211.321.302.146.09.292.18.496.27.175.091.38.182.613.272.262.12.525.271.787.422.263.151.467.332.67.513.205.18.35.452.468.723.087.392.145.724.145 1.116zM11.171 25.712v7.024H9.392v-7.024H7.117v-1.477h6.3v1.477h-2.246zM18.346 27.672c-.059-.181-.117-.362-.175-.513-.059-.18-.088-.331-.146-.452a5.04 5.04 0 00-.088-.332c-.029-.09-.029-.15-.029-.18h-.03c0 .03-.028.09-.057.18a5.04 5.04 0 00-.088.332 2.71 2.71 0 01-.146.452c-.058.15-.116.332-.175.513l-.7 2.02h2.304l-.67-2.02zm-2.655 5.064h-1.75l3.15-8.5h1.692l3.238 8.5h-1.896l-.584-1.598h-3.295l-.555 1.598zM27.183 32.736h-1.662l-3.18-8.5h1.867l1.75 5.094c.059.15.088.331.146.482.059.15.088.301.146.452.03.15.088.241.088.332.029.09.029.15.029.15h.029s0-.06.03-.15c.028-.09.058-.211.087-.332.029-.15.087-.271.145-.452.059-.15.088-.332.146-.482l1.663-5.095h1.75l-3.034 8.501zM36.255 26.797c0-.391-.117-.693-.35-.874-.233-.18-.583-.301-1.08-.301h-.874v2.351h.962c.467 0 .817-.09 1.021-.301.204-.211.321-.513.321-.875zm.467 5.94l-1.517-2.413c-.175-.24-.292-.452-.408-.572-.117-.151-.204-.241-.292-.332-.087-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.116v3.496h-1.75v-8.5h2.741c.963 0 1.721.21 2.246.632.525.422.788 1.025.788 1.839 0 .362-.059.663-.175.904a2.152 2.152 0 01-.438.664 2.34 2.34 0 01-.612.452c-.234.12-.467.18-.73.24v.031c.117.09.263.211.409.392.146.18.35.452.554.814l1.604 2.532h-1.808zM46.522 28.486c0-.392-.058-.754-.146-1.116a2.491 2.491 0 00-.437-.934 2.123 2.123 0 00-.73-.633 2.262 2.262 0 00-1.05-.242c-.408 0-.758.09-1.078.242-.292.15-.555.361-.759.633a2.49 2.49 0 00-.437.934 4.669 4.669 0 00-.146 1.116c0 .392.058.783.146 1.145.087.362.233.694.437.965s.438.482.758.663c.292.15.671.241 1.08.241.408 0 .758-.09 1.079-.241.292-.15.554-.362.758-.633a2.49 2.49 0 00.438-.935c.029-.422.087-.783.087-1.205zm1.838-.03c0 .572-.088 1.145-.263 1.657a4.179 4.179 0 01-.787 1.417c-.35.422-.788.724-1.313.995-.525.241-1.137.362-1.808.362-.7 0-1.313-.12-1.838-.362a4.094 4.094 0 01-1.341-.965 4.112 4.112 0 01-.817-1.386 4.619 4.619 0 01-.292-1.658c0-.573.088-1.146.292-1.658.175-.543.467-.995.817-1.417.35-.422.787-.724 1.341-.965.525-.24 1.138-.361 1.838-.361.7 0 1.312.12 1.837.361.525.241.963.573 1.342.965.35.392.642.874.817 1.387.087.512.175 1.055.175 1.627zM55.534 30.355c0 .392-.058.724-.204 1.055-.146.302-.32.573-.583.784a2.81 2.81 0 01-.934.512c-.379.121-.787.181-1.225.181-.35 0-.641-.03-.904-.09-.262-.06-.525-.12-.73-.211-.203-.09-.378-.181-.553-.271a1.819 1.819 0 01-.35-.272l.729-1.266c.058.03.117.09.233.15.088.061.234.152.38.212.145.06.32.12.524.18.205.061.409.091.642.091.408 0 .73-.09.963-.301a.854.854 0 00.35-.694.854.854 0 00-.146-.482c-.117-.12-.234-.241-.409-.362-.175-.09-.35-.21-.583-.301a7.331 7.331 0 01-.7-.332 3.986 3.986 0 01-.7-.422 3.086 3.086 0 01-.554-.512 2.213 2.213 0 01-.38-.694 2.928 2.928 0 01-.145-.904c0-.362.058-.693.204-.995.146-.301.32-.542.554-.753.234-.211.525-.362.846-.483.32-.12.67-.18 1.05-.18.35 0 .642.03.904.09.263.06.496.12.7.18.204.061.35.151.496.242.146.09.233.15.32.21l-.7 1.267-.262-.18a4.669 4.669 0 00-.379-.182 2.125 2.125 0 00-.466-.12c-.175-.03-.321-.06-.496-.06-.35 0-.613.06-.817.21-.204.151-.292.362-.292.664 0 .18.03.301.117.422.088.12.175.21.32.301.147.09.293.18.497.271.175.09.379.181.612.272.263.12.525.271.788.422.262.15.466.331.67.512.205.211.35.452.467.724.088.392.146.723.146 1.115zM84 62.187H0v1.809h84v-1.809zM84 39.127H0v1.809h84v-1.809zM84 108.31H0v1.809h84v-1.809zM84 85.25H0v1.809h84V85.25zM5.542 55.796l-3.209-4.732a16.202 16.202 0 01-.583-.875c-.146-.24-.204-.392-.233-.392h.029v.121c0 .06 0 .15.029.271 0 .12 0 .211.03.362v5.245H0v-8.5h1.75l2.975 4.4c.117.181.233.362.35.513.117.181.204.332.263.452.087.12.145.242.175.332.058.09.058.12.058.12H5.6v-.12c0-.09 0-.181-.03-.302 0-.12 0-.27-.028-.422v-4.974h1.575v8.501H5.542zM11.842 47.295h-1.75v8.501h1.75v-8.5zM18.406 50.732c-.058-.18-.116-.362-.175-.513-.058-.18-.087-.331-.146-.452a5.04 5.04 0 00-.087-.331c-.03-.09-.03-.151-.03-.181h-.028c0 .03-.03.09-.059.18a5.04 5.04 0 00-.087.332 2.71 2.71 0 01-.146.452c-.058.151-.117.332-.175.513l-.7 2.02h2.304l-.67-2.02zm-2.625 5.064h-1.75l3.15-8.5h1.692l3.237 8.5h-1.895L19.66 54.2h-3.325l-.554 1.597zM28.174 49.858c0-.392-.117-.694-.35-.874-.233-.181-.583-.302-1.108-.302h-.875v2.351h.962c.467 0 .817-.09 1.021-.301.233-.211.35-.513.35-.874zm.467 5.938l-1.517-2.411c-.175-.241-.292-.452-.408-.573-.117-.15-.204-.241-.292-.332-.087-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.117v3.496h-1.75v-8.5h2.742c.963 0 1.721.21 2.246.633.525.421.788 1.024.788 1.838 0 .362-.059.663-.175.905a2.15 2.15 0 01-.438.663c-.175.18-.38.331-.613.452-.233.12-.466.18-.729.241v.03c.117.09.263.211.409.392.145.181.35.453.554.814l1.604 2.532h-1.808zM38.763 55.043c-.117.09-.234.211-.409.301-.175.09-.379.212-.583.302-.233.09-.467.15-.73.21-.262.061-.553.091-.845.091-.7 0-1.312-.12-1.837-.361a3.968 3.968 0 01-1.313-.965 4.18 4.18 0 01-.787-1.417 5.323 5.323 0 01-.263-1.658c0-.573.088-1.145.263-1.658.175-.542.437-.995.816-1.386.35-.392.817-.724 1.342-.965.525-.241 1.137-.362 1.837-.362.555 0 1.021.06 1.4.18.38.122.759.272 1.08.513l-.788 1.327a2.975 2.975 0 00-.758-.362c-.263-.09-.584-.12-.963-.12s-.729.06-1.02.21c-.292.151-.555.362-.73.603-.204.272-.35.573-.437.905-.117.331-.146.723-.146 1.115 0 .422.058.784.146 1.146.087.361.233.663.437.934.204.272.438.483.759.633.291.151.641.241 1.05.241.437 0 .816-.06 1.108-.21.292-.121.554-.272.758-.453l.613 1.206zM46.315 55.796V52.12H42.61v3.677H40.89v-8.5h1.72v3.346h3.705v-3.347h1.72v8.501h-1.72zM56.962 51.546c0-.392-.059-.754-.146-1.115a2.49 2.49 0 00-.438-.935 2.121 2.121 0 00-.729-.633 2.262 2.262 0 00-1.05-.241c-.408 0-.758.09-1.079.241-.292.15-.554.362-.758.633a2.49 2.49 0 00-.438.935 4.667 4.667 0 00-.146 1.115c0 .392.059.784.146 1.146.088.361.233.693.438.964.204.272.437.483.758.663.292.151.67.242 1.08.242.407 0 .758-.09 1.078-.242.292-.15.555-.361.759-.633.204-.27.35-.572.437-.934.03-.422.088-.784.088-1.206zm1.837-.03c0 .573-.087 1.145-.262 1.658a4.18 4.18 0 01-.788 1.417c-.35.422-.787.723-1.312.995-.525.24-1.138.361-1.809.361-.7 0-1.312-.12-1.837-.361a4.092 4.092 0 01-1.342-.965 4.112 4.112 0 01-.816-1.387 4.617 4.617 0 01-.292-1.658c0-.572.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.788-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.525.241.962.573 1.341.965.38.391.642.874.817 1.386.088.513.175 1.055.175 1.628zM66.033 53.416c0 .392-.058.724-.204 1.055-.146.302-.32.573-.583.784a2.811 2.811 0 01-.934.512c-.379.121-.787.181-1.225.181-.35 0-.641-.03-.904-.09-.262-.06-.525-.12-.729-.211-.204-.09-.38-.181-.554-.271a1.83 1.83 0 01-.35-.272l.729-1.266c.058.03.117.09.233.15.088.061.234.152.38.212.145.06.32.12.524.18.205.061.409.091.642.091.409 0 .73-.09.963-.301a.854.854 0 00.35-.694.853.853 0 00-.146-.482 1.707 1.707 0 00-.408-.362c-.175-.09-.35-.21-.584-.301a7.367 7.367 0 01-.7-.332 3.986 3.986 0 01-.7-.422 3.088 3.088 0 01-.554-.512 2.213 2.213 0 01-.38-.694 2.928 2.928 0 01-.145-.904c0-.362.058-.693.204-.995.146-.301.321-.542.554-.753.234-.211.525-.362.846-.483.321-.12.671-.18 1.05-.18a4 4 0 01.904.09c.263.06.496.12.7.18.204.061.35.151.496.242.146.09.234.15.321.21l-.7 1.267a1.17 1.17 0 00-.263-.15c-.116-.061-.233-.121-.379-.182a2.13 2.13 0 00-.466-.12c-.175-.03-.321-.06-.496-.06-.35 0-.613.06-.817.21-.204.151-.291.362-.291.664 0 .18.029.301.116.422.088.12.175.21.321.301.146.09.292.181.496.272.175.09.379.18.612.27.263.122.525.272.788.423.262.15.466.331.67.512.205.211.35.453.467.724.117.271.146.693.146 1.085zM1.75 71.834v2.08h2.625v1.417H1.75v3.527H0v-8.501h4.725v1.477H1.75zM13.182 74.608c0-.392-.058-.754-.146-1.115a2.49 2.49 0 00-.437-.935 2.122 2.122 0 00-.73-.633 2.262 2.262 0 00-1.05-.241c-.408 0-.758.09-1.078.241-.292.15-.554.362-.759.633a2.49 2.49 0 00-.437.935 4.668 4.668 0 00-.146 1.115c0 .392.058.784.146 1.146.087.361.233.693.437.964.205.272.438.483.759.663.291.151.67.242 1.079.242.408 0 .758-.09 1.079-.242.32-.15.554-.361.758-.632.204-.272.35-.573.438-.935.029-.422.087-.784.087-1.206zm1.838-.03c0 .573-.088 1.145-.263 1.658a4.18 4.18 0 01-.787 1.417c-.35.422-.788.723-1.313.995-.525.24-1.137.361-1.808.361-.7 0-1.312-.12-1.837-.361a4.094 4.094 0 01-1.342-.965 4.112 4.112 0 01-.817-1.387 4.617 4.617 0 01-.291-1.658c0-.573.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.787-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.524.241.962.573 1.341.965.38.391.642.874.817 1.386.087.513.175 1.055.175 1.628zM24.092 75.392c0 1.176-.291 2.05-.845 2.683-.555.633-1.4.934-2.538.934-1.196 0-2.07-.3-2.654-.874-.584-.603-.846-1.447-.846-2.562v-5.215h1.75v5.064c0 .724.146 1.266.408 1.598.263.332.73.512 1.4.512.613 0 1.05-.18 1.342-.542.292-.362.408-.844.408-1.477v-5.185h1.605v5.064h-.03zM32.345 78.858l-3.208-4.733a16.16 16.16 0 01-.583-.874c-.146-.241-.205-.392-.234-.392h-.029v.12c0 .06 0 .151.03.272 0 .12 0 .21.028.362v5.245h-1.575v-8.501h1.75l2.975 4.401c.117.181.234.362.35.513.117.18.205.331.263.452.087.12.146.241.175.331.058.09.058.121.058.121h.03v-.12c0-.091 0-.181-.03-.302 0-.12 0-.271-.029-.422v-4.974h1.575v8.5h-1.546zM42.262 74.547c0-.965-.233-1.658-.7-2.08-.466-.452-1.196-.663-2.158-.663h-.759v5.607h.817c.933 0 1.633-.241 2.1-.724.467-.482.7-1.205.7-2.14zm1.838-.06c0 .603-.088 1.175-.292 1.718-.204.543-.467.995-.875 1.387-.38.392-.875.693-1.487.934-.613.211-1.313.332-2.13.332h-2.42v-8.501h2.479c.816 0 1.516.09 2.1.301.583.211 1.079.483 1.458.844.38.362.67.814.846 1.297.233.512.32 1.085.32 1.688zM49.524 73.793c-.058-.18-.116-.361-.175-.512-.058-.18-.087-.332-.145-.452-.03-.12-.059-.241-.088-.332-.03-.09-.03-.15-.03-.18h-.028c0 .03-.03.09-.059.18-.029.09-.058.211-.087.332-.03.15-.088.301-.146.452a9.94 9.94 0 00-.175.512l-.7 2.02h2.304l-.67-2.02zM46.9 78.858h-1.75l3.15-8.501h1.692l3.238 8.5h-1.896l-.554-1.597h-3.296l-.584 1.598zM57.634 71.834v7.024h-1.75v-7.024H53.61v-1.477h6.3v1.477h-2.275zM63.846 70.357h-1.75v8.5h1.75v-8.5zM72.77 74.608c0-.392-.059-.754-.146-1.115a2.49 2.49 0 00-.438-.935 2.122 2.122 0 00-.73-.633 2.262 2.262 0 00-1.05-.241c-.407 0-.757.09-1.078.241-.292.15-.554.362-.759.633a2.49 2.49 0 00-.437.935 4.668 4.668 0 00-.146 1.115c0 .392.058.784.146 1.146.087.361.233.693.437.964.205.272.438.483.759.663.291.151.67.242 1.079.242.408 0 .758-.09 1.08-.242.29-.15.553-.361.757-.632a2.49 2.49 0 00.438-.935 8.39 8.39 0 00.087-1.206zm1.866-.03c0 .573-.087 1.145-.262 1.658a4.18 4.18 0 01-.788 1.417c-.35.422-.787.723-1.312.995-.525.24-1.138.361-1.809.361-.7 0-1.312-.12-1.837-.361a4.094 4.094 0 01-1.342-.965 4.112 4.112 0 01-.817-1.387 4.617 4.617 0 01-.291-1.658c0-.573.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.788-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.525.241.962.573 1.341.965.38.391.642.874.817 1.386.058.513.175 1.055.175 1.628zM82.395 78.858l-3.208-4.733a16.16 16.16 0 01-.584-.874c-.145-.241-.204-.392-.233-.392h-.03v.12c0 .06 0 .151.03.272 0 .12 0 .21.03.362v5.245h-1.576v-8.501h1.75l2.975 4.401c.117.181.234.362.35.513.117.18.204.331.263.452.087.12.146.241.175.331.058.09.058.121.058.121h.03v-.12c0-.091 0-.181-.03-.302 0-.12 0-.271-.03-.422v-4.974h1.576v8.5h-1.546zM0 101.92v-8.501h1.75v7.054h3.063v1.447H0zM8.867 93.419h-1.75v8.501h1.75v-8.501zM16.013 99.418c0-.392-.117-.694-.35-.905-.234-.21-.613-.3-1.109-.3h-.991v2.35h.904c.496 0 .875-.09 1.137-.271.292-.181.409-.482.409-.874zM15.72 95.8c0-.693-.437-1.025-1.312-1.025h-.846v2.11h.816c.467 0 .817-.09 1.021-.27.234-.151.321-.423.321-.815zm2.07 3.769c0 .422-.087.814-.232 1.115-.175.301-.38.543-.671.723a2.6 2.6 0 01-1.021.392 5.778 5.778 0 01-1.283.121H11.87v-8.501h2.742c.379 0 .729.03 1.079.09s.642.181.904.362c.263.15.467.392.613.663.145.272.233.603.233.995 0 .543-.146.995-.408 1.296a2.131 2.131 0 01-1.05.664v.03c.233.03.466.12.7.21.204.091.408.242.583.423.175.18.292.361.38.603.087.21.145.482.145.814zM24.267 95.981c0-.392-.117-.693-.35-.874-.234-.18-.584-.301-1.109-.301h-.875v2.351h.963c.467 0 .817-.09 1.02-.301.263-.212.35-.513.35-.875zm.466 5.939l-1.516-2.412c-.175-.24-.292-.452-.409-.572-.116-.151-.204-.242-.291-.332-.088-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.117v3.496h-1.75v-8.501h2.742c.962 0 1.72.211 2.246.633.525.422.787 1.025.787 1.839 0 .362-.058.663-.175.904a2.151 2.151 0 01-.437.663 2.34 2.34 0 01-.613.453c-.233.12-.466.18-.729.24v.03c.117.091.263.212.409.393.145.18.35.452.554.814l1.604 2.532h-1.809zM32.464 96.856c-.058-.181-.117-.362-.175-.513-.059-.18-.088-.332-.146-.452a5.006 5.006 0 00-.087-.332c-.03-.09-.03-.15-.03-.18h-.029c0 .03-.029.09-.058.18-.03.09-.058.211-.088.332-.029.15-.087.301-.145.452-.059.15-.117.332-.175.513l-.7 2.02h2.304l-.671-2.02zm-2.625 5.064h-1.75l3.15-8.501h1.692l3.237 8.501h-1.896l-.554-1.598h-3.296l-.583 1.598zM42.205 95.981c0-.392-.116-.693-.35-.874-.233-.18-.583-.301-1.079-.301h-.875v2.351h.963c.466 0 .816-.09 1.02-.301.205-.212.321-.513.321-.875zm.467 5.939l-1.517-2.412c-.175-.24-.291-.452-.408-.572-.117-.151-.204-.242-.292-.332-.087-.06-.146-.12-.233-.15-.058-.03-.146-.03-.263-.03h-.116v3.496h-1.75v-8.501h2.741c.963 0 1.721.211 2.246.633.525.422.788 1.025.788 1.839 0 .362-.059.663-.175.904a2.151 2.151 0 01-.438.663 2.34 2.34 0 01-.612.453c-.234.12-.467.18-.73.24v.03c.117.091.263.212.409.393.146.18.35.452.554.814l1.604 2.532h-1.808zM49.788 98.725v3.195h-1.75v-3.195l-2.713-5.306h1.925L49 97.036l1.75-3.617h1.692l-2.654 5.306zM84 17.844H55.533V3.224l-27.066 14.62H0v-1.778h28L57.254.119v15.947H84v1.778z"
8339
8649
  })));
8340
8650
  }
8341
8651
 
8342
- var _path$R;
8652
+ var _path$T;
8343
8653
 
8344
- var _excluded$1s = ["title", "titleId"];
8654
+ var _excluded$1u = ["title", "titleId"];
8345
8655
 
8346
- function _extends$16() { _extends$16 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$16.apply(this, arguments); }
8656
+ function _extends$18() { _extends$18 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$18.apply(this, arguments); }
8347
8657
 
8348
- function _objectWithoutProperties$15(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$16(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8658
+ function _objectWithoutProperties$17(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$18(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8349
8659
 
8350
- function _objectWithoutPropertiesLoose$16(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8660
+ function _objectWithoutPropertiesLoose$18(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8351
8661
 
8352
8662
  function SvgLogoSnflWhite(_ref) {
8353
8663
  var title = _ref.title,
8354
8664
  titleId = _ref.titleId,
8355
- props = _objectWithoutProperties$15(_ref, _excluded$1s);
8665
+ props = _objectWithoutProperties$17(_ref, _excluded$1u);
8356
8666
 
8357
- return /*#__PURE__*/React.createElement("svg", _extends$16({
8667
+ return /*#__PURE__*/React.createElement("svg", _extends$18({
8358
8668
  viewBox: "0 0 84 111",
8359
8669
  fill: "#fff",
8360
8670
  xmlns: "http://www.w3.org/2000/svg",
8361
8671
  "aria-labelledby": titleId
8362
8672
  }, props), title ? /*#__PURE__*/React.createElement("title", {
8363
8673
  id: titleId
8364
- }, title) : null, _path$R || (_path$R = /*#__PURE__*/React.createElement("path", {
8674
+ }, title) : null, _path$T || (_path$T = /*#__PURE__*/React.createElement("path", {
8365
8675
  d: "M5.483 30.355c0 .392-.058.723-.204 1.055-.146.301-.32.572-.583.784a2.812 2.812 0 01-.933.512c-.38.12-.788.18-1.225.18-.35 0-.642-.03-.905-.09-.262-.06-.525-.12-.729-.21a9.82 9.82 0 01-.554-.272 1.82 1.82 0 01-.35-.271l.73-1.266c.057.03.116.09.233.15.087.06.233.151.379.211.145.06.32.12.525.181.204.06.408.09.641.09.409 0 .73-.09.963-.3a.854.854 0 00.35-.694.854.854 0 00-.146-.482c-.117-.121-.233-.242-.408-.362-.175-.09-.35-.211-.584-.302-.233-.09-.466-.21-.7-.331a3.985 3.985 0 01-.7-.422 3.085 3.085 0 01-.554-.513 2.213 2.213 0 01-.379-.693 2.928 2.928 0 01-.146-.904c0-.362.059-.694.204-.995.146-.302.321-.543.555-.754.233-.21.525-.362.845-.482.321-.12.671-.181 1.05-.181.35 0 .642.03.905.09.262.06.495.12.7.181.204.06.35.15.495.241.146.09.234.151.321.211l-.7 1.267-.262-.181a4.677 4.677 0 00-.38-.181 2.13 2.13 0 00-.466-.12c-.175-.031-.321-.061-.496-.061-.35 0-.613.06-.817.21-.204.152-.291.363-.291.664 0 .181.029.301.116.422.088.12.175.211.321.302.146.09.292.18.496.27.175.091.38.182.613.272.262.12.525.271.787.422.263.151.467.332.67.513.205.18.35.452.468.723.087.392.145.724.145 1.116zM11.171 25.712v7.024H9.392v-7.024H7.117v-1.477h6.3v1.477h-2.246zM18.346 27.672c-.059-.181-.117-.362-.175-.513-.059-.18-.088-.331-.146-.452a5.04 5.04 0 00-.088-.332c-.029-.09-.029-.15-.029-.18h-.03c0 .03-.028.09-.057.18a5.04 5.04 0 00-.088.332 2.71 2.71 0 01-.146.452c-.058.15-.116.332-.175.513l-.7 2.02h2.304l-.67-2.02zm-2.655 5.064h-1.75l3.15-8.5h1.692l3.238 8.5h-1.896l-.584-1.598h-3.295l-.555 1.598zM27.183 32.736h-1.662l-3.18-8.5h1.867l1.75 5.094c.059.15.088.331.146.482.059.15.088.301.146.452.03.15.088.241.088.332.029.09.029.15.029.15h.029s0-.06.03-.15c.028-.09.058-.211.087-.332.029-.15.087-.271.145-.452.059-.15.088-.332.146-.482l1.663-5.095h1.75l-3.034 8.501zM36.255 26.797c0-.391-.117-.693-.35-.874-.233-.18-.583-.301-1.08-.301h-.874v2.351h.962c.467 0 .817-.09 1.021-.301.204-.211.321-.513.321-.875zm.467 5.94l-1.517-2.413c-.175-.24-.292-.452-.408-.572-.117-.151-.204-.241-.292-.332-.087-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.116v3.496h-1.75v-8.5h2.741c.963 0 1.721.21 2.246.632.525.422.788 1.025.788 1.839 0 .362-.059.663-.175.904a2.152 2.152 0 01-.438.664 2.34 2.34 0 01-.612.452c-.234.12-.467.18-.73.24v.031c.117.09.263.211.409.392.146.18.35.452.554.814l1.604 2.532h-1.808zM46.522 28.486c0-.392-.058-.754-.146-1.116a2.491 2.491 0 00-.437-.934 2.123 2.123 0 00-.73-.633 2.262 2.262 0 00-1.05-.242c-.408 0-.758.09-1.078.242-.292.15-.555.361-.759.633a2.49 2.49 0 00-.437.934 4.669 4.669 0 00-.146 1.116c0 .392.058.783.146 1.145.087.362.233.694.437.965s.438.482.758.663c.292.15.671.241 1.08.241.408 0 .758-.09 1.079-.241.292-.15.554-.362.758-.633a2.49 2.49 0 00.438-.935c.029-.422.087-.783.087-1.205zm1.838-.03c0 .572-.088 1.145-.263 1.657a4.179 4.179 0 01-.787 1.417c-.35.422-.788.724-1.313.995-.525.241-1.137.362-1.808.362-.7 0-1.313-.12-1.838-.362a4.094 4.094 0 01-1.341-.965 4.112 4.112 0 01-.817-1.386 4.619 4.619 0 01-.292-1.658c0-.573.088-1.146.292-1.658.175-.543.467-.995.817-1.417.35-.422.787-.724 1.341-.965.525-.24 1.138-.361 1.838-.361.7 0 1.312.12 1.837.361.525.241.963.573 1.342.965.35.392.642.874.817 1.387.087.512.175 1.055.175 1.627zM55.534 30.355c0 .392-.058.724-.204 1.055-.146.302-.32.573-.583.784a2.81 2.81 0 01-.934.512c-.379.121-.787.181-1.225.181-.35 0-.641-.03-.904-.09-.262-.06-.525-.12-.73-.211-.203-.09-.378-.181-.553-.271a1.819 1.819 0 01-.35-.272l.729-1.266c.058.03.117.09.233.15.088.061.234.152.38.212.145.06.32.12.524.18.205.061.409.091.642.091.408 0 .73-.09.963-.301a.854.854 0 00.35-.694.854.854 0 00-.146-.482c-.117-.12-.234-.241-.409-.362-.175-.09-.35-.21-.583-.301a7.331 7.331 0 01-.7-.332 3.986 3.986 0 01-.7-.422 3.086 3.086 0 01-.554-.512 2.213 2.213 0 01-.38-.694 2.928 2.928 0 01-.145-.904c0-.362.058-.693.204-.995.146-.301.32-.542.554-.753.234-.211.525-.362.846-.483.32-.12.67-.18 1.05-.18.35 0 .642.03.904.09.263.06.496.12.7.18.204.061.35.151.496.242.146.09.233.15.32.21l-.7 1.267-.262-.18a4.669 4.669 0 00-.379-.182 2.125 2.125 0 00-.466-.12c-.175-.03-.321-.06-.496-.06-.35 0-.613.06-.817.21-.204.151-.292.362-.292.664 0 .18.03.301.117.422.088.12.175.21.32.301.147.09.293.18.497.271.175.09.379.181.612.272.263.12.525.271.788.422.262.15.466.331.67.512.205.211.35.452.467.724.088.392.146.723.146 1.115zM84 62.187H0v1.809h84v-1.809zM84 39.127H0v1.809h84v-1.809zM84 108.31H0v1.809h84v-1.809zM84 85.25H0v1.809h84V85.25zM5.542 55.796l-3.209-4.732a16.202 16.202 0 01-.583-.875c-.146-.24-.204-.392-.233-.392h.029v.121c0 .06 0 .15.029.271 0 .12 0 .211.03.362v5.245H0v-8.5h1.75l2.975 4.4c.117.181.233.362.35.513.117.181.204.332.263.452.087.12.145.242.175.332.058.09.058.12.058.12H5.6v-.12c0-.09 0-.181-.03-.302 0-.12 0-.27-.028-.422v-4.974h1.575v8.501H5.542zM11.842 47.295h-1.75v8.501h1.75v-8.5zM18.406 50.732c-.058-.18-.116-.362-.175-.513-.058-.18-.087-.331-.146-.452a5.04 5.04 0 00-.087-.331c-.03-.09-.03-.151-.03-.181h-.028c0 .03-.03.09-.059.18a5.04 5.04 0 00-.087.332 2.71 2.71 0 01-.146.452c-.058.151-.117.332-.175.513l-.7 2.02h2.304l-.67-2.02zm-2.625 5.064h-1.75l3.15-8.5h1.692l3.237 8.5h-1.895L19.66 54.2h-3.325l-.554 1.597zM28.174 49.858c0-.392-.117-.694-.35-.874-.233-.181-.583-.302-1.108-.302h-.875v2.351h.962c.467 0 .817-.09 1.021-.301.233-.211.35-.513.35-.874zm.467 5.938l-1.517-2.411c-.175-.241-.292-.452-.408-.573-.117-.15-.204-.241-.292-.332-.087-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.117v3.496h-1.75v-8.5h2.742c.963 0 1.721.21 2.246.633.525.421.788 1.024.788 1.838 0 .362-.059.663-.175.905a2.15 2.15 0 01-.438.663c-.175.18-.38.331-.613.452-.233.12-.466.18-.729.241v.03c.117.09.263.211.409.392.145.181.35.453.554.814l1.604 2.532h-1.808zM38.763 55.043c-.117.09-.234.211-.409.301-.175.09-.379.212-.583.302-.233.09-.467.15-.73.21-.262.061-.553.091-.845.091-.7 0-1.312-.12-1.837-.361a3.968 3.968 0 01-1.313-.965 4.18 4.18 0 01-.787-1.417 5.323 5.323 0 01-.263-1.658c0-.573.088-1.145.263-1.658.175-.542.437-.995.816-1.386.35-.392.817-.724 1.342-.965.525-.241 1.137-.362 1.837-.362.555 0 1.021.06 1.4.18.38.122.759.272 1.08.513l-.788 1.327a2.975 2.975 0 00-.758-.362c-.263-.09-.584-.12-.963-.12s-.729.06-1.02.21c-.292.151-.555.362-.73.603-.204.272-.35.573-.437.905-.117.331-.146.723-.146 1.115 0 .422.058.784.146 1.146.087.361.233.663.437.934.204.272.438.483.759.633.291.151.641.241 1.05.241.437 0 .816-.06 1.108-.21.292-.121.554-.272.758-.453l.613 1.206zM46.315 55.796V52.12H42.61v3.677H40.89v-8.5h1.72v3.346h3.705v-3.347h1.72v8.501h-1.72zM56.962 51.546c0-.392-.059-.754-.146-1.115a2.49 2.49 0 00-.438-.935 2.121 2.121 0 00-.729-.633 2.262 2.262 0 00-1.05-.241c-.408 0-.758.09-1.079.241-.292.15-.554.362-.758.633a2.49 2.49 0 00-.438.935 4.667 4.667 0 00-.146 1.115c0 .392.059.784.146 1.146.088.361.233.693.438.964.204.272.437.483.758.663.292.151.67.242 1.08.242.407 0 .758-.09 1.078-.242.292-.15.555-.361.759-.633.204-.27.35-.572.437-.934.03-.422.088-.784.088-1.206zm1.837-.03c0 .573-.087 1.145-.262 1.658a4.18 4.18 0 01-.788 1.417c-.35.422-.787.723-1.312.995-.525.24-1.138.361-1.809.361-.7 0-1.312-.12-1.837-.361a4.092 4.092 0 01-1.342-.965 4.112 4.112 0 01-.816-1.387 4.617 4.617 0 01-.292-1.658c0-.572.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.788-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.525.241.962.573 1.341.965.38.391.642.874.817 1.386.088.513.175 1.055.175 1.628zM66.033 53.416c0 .392-.058.724-.204 1.055-.146.302-.32.573-.583.784a2.811 2.811 0 01-.934.512c-.379.121-.787.181-1.225.181-.35 0-.641-.03-.904-.09-.262-.06-.525-.12-.729-.211-.204-.09-.38-.181-.554-.271a1.83 1.83 0 01-.35-.272l.729-1.266c.058.03.117.09.233.15.088.061.234.152.38.212.145.06.32.12.524.18.205.061.409.091.642.091.409 0 .73-.09.963-.301a.854.854 0 00.35-.694.853.853 0 00-.146-.482 1.707 1.707 0 00-.408-.362c-.175-.09-.35-.21-.584-.301a7.367 7.367 0 01-.7-.332 3.986 3.986 0 01-.7-.422 3.088 3.088 0 01-.554-.512 2.213 2.213 0 01-.38-.694 2.928 2.928 0 01-.145-.904c0-.362.058-.693.204-.995.146-.301.321-.542.554-.753.234-.211.525-.362.846-.483.321-.12.671-.18 1.05-.18a4 4 0 01.904.09c.263.06.496.12.7.18.204.061.35.151.496.242.146.09.234.15.321.21l-.7 1.267a1.17 1.17 0 00-.263-.15c-.116-.061-.233-.121-.379-.182a2.13 2.13 0 00-.466-.12c-.175-.03-.321-.06-.496-.06-.35 0-.613.06-.817.21-.204.151-.291.362-.291.664 0 .18.029.301.116.422.088.12.175.21.321.301.146.09.292.181.496.272.175.09.379.18.612.27.263.122.525.272.788.423.262.15.466.331.67.512.205.211.35.453.467.724.117.271.146.693.146 1.085zM1.75 71.834v2.08h2.625v1.417H1.75v3.527H0v-8.501h4.725v1.477H1.75zM13.182 74.608c0-.392-.058-.754-.146-1.115a2.49 2.49 0 00-.437-.935 2.122 2.122 0 00-.73-.633 2.262 2.262 0 00-1.05-.241c-.408 0-.758.09-1.078.241-.292.15-.554.362-.759.633a2.49 2.49 0 00-.437.935 4.668 4.668 0 00-.146 1.115c0 .392.058.784.146 1.146.087.361.233.693.437.964.205.272.438.483.759.663.291.151.67.242 1.079.242.408 0 .758-.09 1.079-.242.32-.15.554-.361.758-.632.204-.272.35-.573.438-.935.029-.422.087-.784.087-1.206zm1.838-.03c0 .573-.088 1.145-.263 1.658a4.18 4.18 0 01-.787 1.417c-.35.422-.788.723-1.313.995-.525.24-1.137.361-1.808.361-.7 0-1.312-.12-1.837-.361a4.094 4.094 0 01-1.342-.965 4.112 4.112 0 01-.817-1.387 4.617 4.617 0 01-.291-1.658c0-.573.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.787-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.524.241.962.573 1.341.965.38.391.642.874.817 1.386.087.513.175 1.055.175 1.628zM24.092 75.392c0 1.176-.291 2.05-.845 2.683-.555.633-1.4.934-2.538.934-1.196 0-2.07-.3-2.654-.874-.584-.603-.846-1.447-.846-2.562v-5.215h1.75v5.064c0 .724.146 1.266.408 1.598.263.332.73.512 1.4.512.613 0 1.05-.18 1.342-.542.292-.362.408-.844.408-1.477v-5.185h1.605v5.064h-.03zM32.345 78.858l-3.208-4.733a16.16 16.16 0 01-.583-.874c-.146-.241-.205-.392-.234-.392h-.029v.12c0 .06 0 .151.03.272 0 .12 0 .21.028.362v5.245h-1.575v-8.501h1.75l2.975 4.401c.117.181.234.362.35.513.117.18.205.331.263.452.087.12.146.241.175.331.058.09.058.121.058.121h.03v-.12c0-.091 0-.181-.03-.302 0-.12 0-.271-.029-.422v-4.974h1.575v8.5h-1.546zM42.262 74.547c0-.965-.233-1.658-.7-2.08-.466-.452-1.196-.663-2.158-.663h-.759v5.607h.817c.933 0 1.633-.241 2.1-.724.467-.482.7-1.205.7-2.14zm1.838-.06c0 .603-.088 1.175-.292 1.718-.204.543-.467.995-.875 1.387-.38.392-.875.693-1.487.934-.613.211-1.313.332-2.13.332h-2.42v-8.501h2.479c.816 0 1.516.09 2.1.301.583.211 1.079.483 1.458.844.38.362.67.814.846 1.297.233.512.32 1.085.32 1.688zM49.524 73.793c-.058-.18-.116-.361-.175-.512-.058-.18-.087-.332-.145-.452-.03-.12-.059-.241-.088-.332-.03-.09-.03-.15-.03-.18h-.028c0 .03-.03.09-.059.18-.029.09-.058.211-.087.332-.03.15-.088.301-.146.452a9.94 9.94 0 00-.175.512l-.7 2.02h2.304l-.67-2.02zM46.9 78.858h-1.75l3.15-8.501h1.692l3.238 8.5h-1.896l-.554-1.597h-3.296l-.584 1.598zM57.634 71.834v7.024h-1.75v-7.024H53.61v-1.477h6.3v1.477h-2.275zM63.846 70.357h-1.75v8.5h1.75v-8.5zM72.77 74.608c0-.392-.059-.754-.146-1.115a2.49 2.49 0 00-.438-.935 2.122 2.122 0 00-.73-.633 2.262 2.262 0 00-1.05-.241c-.407 0-.757.09-1.078.241-.292.15-.554.362-.759.633a2.49 2.49 0 00-.437.935 4.668 4.668 0 00-.146 1.115c0 .392.058.784.146 1.146.087.361.233.693.437.964.205.272.438.483.759.663.291.151.67.242 1.079.242.408 0 .758-.09 1.08-.242.29-.15.553-.361.757-.632a2.49 2.49 0 00.438-.935 8.39 8.39 0 00.087-1.206zm1.866-.03c0 .573-.087 1.145-.262 1.658a4.18 4.18 0 01-.788 1.417c-.35.422-.787.723-1.312.995-.525.24-1.138.361-1.809.361-.7 0-1.312-.12-1.837-.361a4.094 4.094 0 01-1.342-.965 4.112 4.112 0 01-.817-1.387 4.617 4.617 0 01-.291-1.658c0-.573.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.788-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.525.241.962.573 1.341.965.38.391.642.874.817 1.386.058.513.175 1.055.175 1.628zM82.395 78.858l-3.208-4.733a16.16 16.16 0 01-.584-.874c-.145-.241-.204-.392-.233-.392h-.03v.12c0 .06 0 .151.03.272 0 .12 0 .21.03.362v5.245h-1.576v-8.501h1.75l2.975 4.401c.117.181.234.362.35.513.117.18.204.331.263.452.087.12.146.241.175.331.058.09.058.121.058.121h.03v-.12c0-.091 0-.181-.03-.302 0-.12 0-.271-.03-.422v-4.974h1.576v8.5h-1.546zM0 101.92v-8.501h1.75v7.054h3.063v1.447H0zM8.867 93.419h-1.75v8.501h1.75v-8.501zM16.013 99.418c0-.392-.117-.694-.35-.905-.234-.21-.613-.3-1.109-.3h-.991v2.35h.904c.496 0 .875-.09 1.137-.271.292-.181.409-.482.409-.874zM15.72 95.8c0-.693-.437-1.025-1.312-1.025h-.846v2.11h.816c.467 0 .817-.09 1.021-.27.234-.151.321-.423.321-.815zm2.07 3.769c0 .422-.087.814-.232 1.115-.175.301-.38.543-.671.723a2.6 2.6 0 01-1.021.392 5.778 5.778 0 01-1.283.121H11.87v-8.501h2.742c.379 0 .729.03 1.079.09s.642.181.904.362c.263.15.467.392.613.663.145.272.233.603.233.995 0 .543-.146.995-.408 1.296a2.131 2.131 0 01-1.05.664v.03c.233.03.466.12.7.21.204.091.408.242.583.423.175.18.292.361.38.603.087.21.145.482.145.814zM24.267 95.981c0-.392-.117-.693-.35-.874-.234-.18-.584-.301-1.109-.301h-.875v2.351h.963c.467 0 .817-.09 1.02-.301.263-.212.35-.513.35-.875zm.466 5.939l-1.516-2.412c-.175-.24-.292-.452-.409-.572-.116-.151-.204-.242-.291-.332-.088-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.117v3.496h-1.75v-8.501h2.742c.962 0 1.72.211 2.246.633.525.422.787 1.025.787 1.839 0 .362-.058.663-.175.904a2.151 2.151 0 01-.437.663 2.34 2.34 0 01-.613.453c-.233.12-.466.18-.729.24v.03c.117.091.263.212.409.393.145.18.35.452.554.814l1.604 2.532h-1.809zM32.464 96.856c-.058-.181-.117-.362-.175-.513-.059-.18-.088-.332-.146-.452a5.006 5.006 0 00-.087-.332c-.03-.09-.03-.15-.03-.18h-.029c0 .03-.029.09-.058.18-.03.09-.058.211-.088.332-.029.15-.087.301-.145.452-.059.15-.117.332-.175.513l-.7 2.02h2.304l-.671-2.02zm-2.625 5.064h-1.75l3.15-8.501h1.692l3.237 8.501h-1.896l-.554-1.598h-3.296l-.583 1.598zM42.205 95.981c0-.392-.116-.693-.35-.874-.233-.18-.583-.301-1.079-.301h-.875v2.351h.963c.466 0 .816-.09 1.02-.301.205-.212.321-.513.321-.875zm.467 5.939l-1.517-2.412c-.175-.24-.291-.452-.408-.572-.117-.151-.204-.242-.292-.332-.087-.06-.146-.12-.233-.15-.058-.03-.146-.03-.263-.03h-.116v3.496h-1.75v-8.501h2.741c.963 0 1.721.211 2.246.633.525.422.788 1.025.788 1.839 0 .362-.059.663-.175.904a2.151 2.151 0 01-.438.663 2.34 2.34 0 01-.612.453c-.234.12-.467.18-.73.24v.03c.117.091.263.212.409.393.146.18.35.452.554.814l1.604 2.532h-1.808zM49.788 98.725v3.195h-1.75v-3.195l-2.713-5.306h1.925L49 97.036l1.75-3.617h1.692l-2.654 5.306zM84 17.844H55.533V3.224l-27.066 14.62H0v-1.778h28L57.254.119v15.947H84v1.778z"
8366
8676
  })));
8367
8677
  }
8368
8678
 
8369
- var _path$S, _path2$s, _path3$n, _path4$c, _path5$b, _path6$3, _path7$3, _path8$1, _path9$1, _path10$1, _path11$1, _path12$1, _path13$1, _path14, _path15, _path16, _path17, _path18, _path19, _path20, _path21, _path22, _path23, _path24, _path25, _path26, _path27, _path28, _path29, _path30, _path31, _path32, _path33, _path34, _path35, _path36, _path37, _path38, _path39, _path40, _path41, _path42, _path43, _path44, _path45, _path46, _path47, _path48, _path49, _path50, _path51, _path52, _path53, _path54, _path55;
8679
+ var _path$U, _path2$u, _path3$p, _path4$e, _path5$d, _path6$5, _path7$5, _path8$3, _path9$3, _path10$3, _path11$3, _path12$3, _path13$3, _path14$2, _path15$2, _path16, _path17, _path18, _path19, _path20, _path21, _path22, _path23, _path24, _path25, _path26, _path27, _path28, _path29, _path30, _path31, _path32, _path33, _path34, _path35, _path36, _path37, _path38, _path39, _path40, _path41, _path42, _path43, _path44, _path45, _path46, _path47, _path48, _path49, _path50, _path51, _path52, _path53, _path54, _path55;
8370
8680
 
8371
- var _excluded$1t = ["title", "titleId"];
8681
+ var _excluded$1v = ["title", "titleId"];
8372
8682
 
8373
- function _extends$17() { _extends$17 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$17.apply(this, arguments); }
8683
+ function _extends$19() { _extends$19 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$19.apply(this, arguments); }
8374
8684
 
8375
- function _objectWithoutProperties$16(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$17(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8685
+ function _objectWithoutProperties$18(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$19(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8376
8686
 
8377
- function _objectWithoutPropertiesLoose$17(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8687
+ function _objectWithoutPropertiesLoose$19(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8378
8688
 
8379
8689
  function SvgLogoTreasuresColor(_ref) {
8380
8690
  var title = _ref.title,
8381
8691
  titleId = _ref.titleId,
8382
- props = _objectWithoutProperties$16(_ref, _excluded$1t);
8692
+ props = _objectWithoutProperties$18(_ref, _excluded$1v);
8383
8693
 
8384
- return /*#__PURE__*/React.createElement("svg", _extends$17({
8694
+ return /*#__PURE__*/React.createElement("svg", _extends$19({
8385
8695
  viewBox: "0 0 324 265",
8386
8696
  fill: "none",
8387
8697
  xmlns: "http://www.w3.org/2000/svg",
8388
8698
  "aria-labelledby": titleId
8389
8699
  }, props), title ? /*#__PURE__*/React.createElement("title", {
8390
8700
  id: titleId
8391
- }, title) : null, _path$S || (_path$S = /*#__PURE__*/React.createElement("path", {
8701
+ }, title) : null, _path$U || (_path$U = /*#__PURE__*/React.createElement("path", {
8392
8702
  d: "M21.553 153.725c-.997-.059-3.455-.118-5.33-.118-1.874 0-4.332.059-5.329.118-.059 0-.118-.177-.059-.236 2.111-.819 2.99-1.986 2.99-6.894v-31.067H10.31c-5.742 0-8.141 1.284-10.075 6.54-.059.059-.236 0-.236-.059.236-3.388.236-7.123.118-9.168 0-.118.06-.177.177-.177 1.174.059 5.388.118 8.142.118h15.581c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 2.045-.118 5.78.119 9.168 0 .059-.178.118-.237.059-1.934-5.256-4.332-6.54-10.075-6.54H18.63v31.067c0 4.908.878 6.075 2.99 6.894.05.059-.008.236-.067.236z",
8393
8703
  fill: "#D3BA81"
8394
- })), _path2$s || (_path2$s = /*#__PURE__*/React.createElement("path", {
8704
+ })), _path2$u || (_path2$u = /*#__PURE__*/React.createElement("path", {
8395
8705
  d: "M21.553 153.725c-.997-.059-3.455-.118-5.33-.118-1.874 0-4.332.059-5.329.118-.059 0-.118-.177-.059-.236 2.111-.819 2.99-1.986 2.99-6.894v-31.067H10.31c-5.742 0-8.141 1.284-10.075 6.54-.059.059-.236 0-.236-.059.236-3.388.236-7.123.118-9.168 0-.118.06-.177.177-.177 1.174.059 5.388.118 8.142.118h15.581c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 2.045-.118 5.78.119 9.168 0 .059-.178.118-.237.059-1.934-5.256-4.332-6.54-10.075-6.54H18.63v31.067c0 4.908.878 6.075 2.99 6.894.05.059-.008.236-.067.236zM51.246 115.536h-7.263v16.762h7.263c6.503 0 9.367-2.568 9.367-8.407.007-5.845-2.864-8.355-9.367-8.355zm5.27 18.859l6.385 11.854c1.934 3.616 3.75 5.196 5.912 5.196.524 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.982-1.639-7.322-6.016l-6.909-13.02h-7.38v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.06.236-.996-.059-3.454-.118-5.328-.118-1.875 0-4.156.059-5.152.118-.06 0-.118-.177-.06-.236 1.934-.82 2.813-1.868 2.813-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.06-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.724c9.315 0 14.35 3.565 14.35 10.924 0 6.015-3.219 9.581-9.139 10.688z",
8396
8706
  fill: "#D3BA81"
8397
- })), _path3$n || (_path3$n = /*#__PURE__*/React.createElement("path", {
8707
+ })), _path3$p || (_path3$p = /*#__PURE__*/React.createElement("path", {
8398
8708
  d: "M51.246 115.536h-7.263v16.762h7.263c6.503 0 9.367-2.568 9.367-8.407.007-5.845-2.864-8.355-9.367-8.355zm5.27 18.859l6.385 11.854c1.934 3.616 3.75 5.196 5.912 5.196.524 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.982-1.639-7.322-6.016l-6.909-13.02h-7.38v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.06.236-.996-.059-3.454-.118-5.328-.118-1.875 0-4.156.059-5.152.118-.06 0-.118-.177-.06-.236 1.934-.82 2.813-1.868 2.813-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.06-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.724c9.315 0 14.35 3.565 14.35 10.924 0 6.015-3.219 9.581-9.139 10.688zM104.139 153.784c-1.174-.059-5.388-.118-8.141-.118H80.593c-4.392 0-6.148.059-6.148.059-.06 0-.118-.177-.06-.236 1.935-.819 2.813-1.867 2.813-6.599v-27.332c0-4.731-.878-5.779-2.812-6.598-.06-.06 0-.237.059-.237 0 0 1.757.059 6.148.059H94.47c2.753 0 6.967-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.6v15.707h7.5c5.506 0 7.322-.937 8.606-3.853.06-.059.236 0 .236.059-.118 1.048-.177 3.27-.177 5.137 0 1.868.06 4.09.177 5.138 0 .059-.177.118-.236.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.5v16.991h11.537c6.326 0 8.725-1.056 10.659-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.17.184z",
8399
8709
  fill: "#D3BA81"
8400
- })), _path4$c || (_path4$c = /*#__PURE__*/React.createElement("path", {
8710
+ })), _path4$e || (_path4$e = /*#__PURE__*/React.createElement("path", {
8401
8711
  d: "M104.139 153.784c-1.174-.059-5.388-.118-8.141-.118H80.593c-4.392 0-6.148.059-6.148.059-.06 0-.118-.177-.06-.236 1.935-.819 2.813-1.867 2.813-6.599v-27.332c0-4.731-.878-5.779-2.812-6.598-.06-.06 0-.237.059-.237 0 0 1.757.059 6.148.059H94.47c2.753 0 6.967-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.6v15.707h7.5c5.506 0 7.322-.937 8.606-3.853.06-.059.236 0 .236.059-.118 1.048-.177 3.27-.177 5.137 0 1.868.06 4.09.177 5.138 0 .059-.177.118-.236.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.5v16.991h11.537c6.326 0 8.725-1.056 10.659-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.17.184zM133.126 138.661l-7.263-17.692-7.263 17.692h14.526zm2.17 15.065c-.059-.059-.059-.288-.059-.288 2.517-.937 3.1-2.222.819-7.706l-1.756-4.266h-16.807l-1.521 3.676c-2.221 5.373-2.17 7.004 1.174 8.296 0 0 0 .236-.059.288a108.307 108.307 0 00-5.152-.118c-1.757 0-3.927.059-5.152.118-.059-.059-.059-.288-.059-.288 2.635-1.225 3.808-2.923 6.03-8.296l13.884-33.754c.059-.059.295-.059.354 0l14.231 34.337c2.288 5.55 3.107 6.539 5.152 7.706 0 0 0 .236-.059.287a120.397 120.397 0 00-5.565-.118c-2.407.008-4.34.067-5.455.126z",
8402
8712
  fill: "#D3BA81"
8403
- })), _path5$b || (_path5$b = /*#__PURE__*/React.createElement("path", {
8713
+ })), _path5$d || (_path5$d = /*#__PURE__*/React.createElement("path", {
8404
8714
  d: "M133.126 138.661l-7.263-17.692-7.263 17.692h14.526zm2.17 15.065c-.059-.059-.059-.288-.059-.288 2.517-.937 3.1-2.222.819-7.706l-1.756-4.266h-16.807l-1.521 3.676c-2.221 5.373-2.17 7.004 1.174 8.296 0 0 0 .236-.059.288a108.307 108.307 0 00-5.152-.118c-1.757 0-3.927.059-5.152.118-.059-.059-.059-.288-.059-.288 2.635-1.225 3.808-2.923 6.03-8.296l13.884-33.754c.059-.059.295-.059.354 0l14.231 34.337c2.288 5.55 3.107 6.539 5.152 7.706 0 0 0 .236-.059.287a120.397 120.397 0 00-5.565-.118c-2.407.008-4.34.067-5.455.126zM170.141 113.491c.642 0 1.285-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.953-7.418-4.156 0-7.027 2.568-7.027 6.421 0 4.613 3.218 5.898 9.603 8.88 5.152 2.391 11.13 5.373 11.13 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805a2.68 2.68 0 00-1.402.406c-.059 0-.237-.059-.178-.118.532-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.437-3.27 8.437-7.824 0-4.731-2.695-6.311-9.374-9.404-5.211-2.391-11.36-4.967-11.36-11.913 0-6.539 5.093-10.746 11.419-10.746 3.816 0 6.333 1.579 8.495 1.579z",
8405
8715
  fill: "#D3BA81"
8406
- })), _path6$3 || (_path6$3 = /*#__PURE__*/React.createElement("path", {
8716
+ })), _path6$5 || (_path6$5 = /*#__PURE__*/React.createElement("path", {
8407
8717
  d: "M170.141 113.491c.642 0 1.285-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.953-7.418-4.156 0-7.027 2.568-7.027 6.421 0 4.613 3.218 5.898 9.603 8.88 5.152 2.391 11.13 5.373 11.13 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805a2.68 2.68 0 00-1.402.406c-.059 0-.237-.059-.178-.118.532-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.437-3.27 8.437-7.824 0-4.731-2.695-6.311-9.374-9.404-5.211-2.391-11.36-4.967-11.36-11.913 0-6.539 5.093-10.746 11.419-10.746 3.816 0 6.333 1.579 8.495 1.579zM183.444 138.366v-18.807c0-4.732-.878-5.78-2.812-6.599-.059-.059 0-.236.059-.236.996.059 3.277.118 5.152.118s4.155-.059 5.152-.118c.059 0 .118.177.059.236-1.934.819-2.812 1.867-2.812 6.599v18.917c0 9.168 4.037 12.674 11.418 12.674 7.086 0 11.131-4.03 11.131-13.08v-17.227c0-5.019-.76-6.886-3.395-7.883-.059-.059 0-.236.059-.236a94.55 94.55 0 004.864.118c2.052 0 3.867-.059 4.864-.118.059 0 .118.177.059.236-2.635.997-3.395 2.864-3.395 7.883v17.405c0 11.33-6.031 16.29-15.05 16.29-9.323.007-15.353-4.96-15.353-16.172z",
8408
8718
  fill: "#D3BA81"
8409
- })), _path7$3 || (_path7$3 = /*#__PURE__*/React.createElement("path", {
8719
+ })), _path7$5 || (_path7$5 = /*#__PURE__*/React.createElement("path", {
8410
8720
  d: "M183.444 138.366v-18.807c0-4.732-.878-5.78-2.812-6.599-.059-.059 0-.236.059-.236.996.059 3.277.118 5.152.118s4.155-.059 5.152-.118c.059 0 .118.177.059.236-1.934.819-2.812 1.867-2.812 6.599v18.917c0 9.168 4.037 12.674 11.418 12.674 7.086 0 11.131-4.03 11.131-13.08v-17.227c0-5.019-.76-6.886-3.395-7.883-.059-.059 0-.236.059-.236a94.55 94.55 0 004.864.118c2.052 0 3.867-.059 4.864-.118.059 0 .118.177.059.236-2.635.997-3.395 2.864-3.395 7.883v17.405c0 11.33-6.031 16.29-15.05 16.29-9.323.007-15.353-4.96-15.353-16.172zM238.379 115.536h-7.263v16.762h7.263c6.502 0 9.373-2.568 9.373-8.407-.007-5.845-2.878-8.355-9.373-8.355zm5.27 18.859l6.384 11.854c1.934 3.616 3.75 5.196 5.912 5.196.525 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.975-1.639-7.322-6.016l-6.908-13.02h-7.381v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.059.236-.997-.059-3.455-.118-5.329-.118-1.875 0-4.156.059-5.152.118-.059 0-.118-.177-.059-.236 1.933-.82 2.812-1.868 2.812-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.059-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.725c9.314 0 14.348 3.565 14.348 10.924 0 6.015-3.225 9.581-9.137 10.688z",
8411
8721
  fill: "#D3BA81"
8412
- })), _path8$1 || (_path8$1 = /*#__PURE__*/React.createElement("path", {
8722
+ })), _path8$3 || (_path8$3 = /*#__PURE__*/React.createElement("path", {
8413
8723
  d: "M238.379 115.536h-7.263v16.762h7.263c6.502 0 9.373-2.568 9.373-8.407-.007-5.845-2.878-8.355-9.373-8.355zm5.27 18.859l6.384 11.854c1.934 3.616 3.75 5.196 5.912 5.196.525 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.975-1.639-7.322-6.016l-6.908-13.02h-7.381v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.059.236-.997-.059-3.455-.118-5.329-.118-1.875 0-4.156.059-5.152.118-.059 0-.118-.177-.059-.236 1.933-.82 2.812-1.868 2.812-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.059-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.725c9.314 0 14.348 3.565 14.348 10.924 0 6.015-3.225 9.581-9.137 10.688zM291.728 153.784c-1.174-.059-5.388-.118-8.142-.118h-15.404c-4.392 0-6.148.059-6.148.059-.059 0-.118-.177-.059-.236 1.933-.819 2.812-1.867 2.812-6.599v-27.332c0-4.731-.879-5.779-2.812-6.598-.059-.06 0-.237.059-.237 0 0 1.756.059 6.148.059h13.884c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.599v15.707h7.499c5.506 0 7.322-.937 8.606-3.853.059-.059.237 0 .237.059-.119 1.048-.178 3.27-.178 5.137 0 1.868.059 4.09.178 5.138 0 .059-.178.118-.237.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.499v16.991h11.537c6.325 0 8.724-1.056 10.658-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.177.184z",
8414
8724
  fill: "#D3BA81"
8415
- })), _path9$1 || (_path9$1 = /*#__PURE__*/React.createElement("path", {
8725
+ })), _path9$3 || (_path9$3 = /*#__PURE__*/React.createElement("path", {
8416
8726
  d: "M291.728 153.784c-1.174-.059-5.388-.118-8.142-.118h-15.404c-4.392 0-6.148.059-6.148.059-.059 0-.118-.177-.059-.236 1.933-.819 2.812-1.867 2.812-6.599v-27.332c0-4.731-.879-5.779-2.812-6.598-.059-.06 0-.237.059-.237 0 0 1.756.059 6.148.059h13.884c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.599v15.707h7.499c5.506 0 7.322-.937 8.606-3.853.059-.059.237 0 .237.059-.119 1.048-.178 3.27-.178 5.137 0 1.868.059 4.09.178 5.138 0 .059-.178.118-.237.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.499v16.991h11.537c6.325 0 8.724-1.056 10.658-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.177.184zM318.907 113.491c.642 0 1.284-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.954-7.418-4.155 0-7.026 2.568-7.026 6.421 0 4.613 3.218 5.898 9.602 8.88 5.152 2.391 11.131 5.373 11.131 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805-.524 0-1.056.177-1.403.406-.059 0-.236-.059-.177-.118.524-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.436-3.27 8.436-7.824 0-4.731-2.694-6.311-9.374-9.404-5.211-2.391-11.359-4.967-11.359-11.913 0-6.539 5.093-10.746 11.419-10.746 3.808 0 6.332 1.579 8.495 1.579z",
8417
8727
  fill: "#D3BA81"
8418
- })), _path10$1 || (_path10$1 = /*#__PURE__*/React.createElement("path", {
8728
+ })), _path10$3 || (_path10$3 = /*#__PURE__*/React.createElement("path", {
8419
8729
  d: "M318.907 113.491c.642 0 1.284-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.954-7.418-4.155 0-7.026 2.568-7.026 6.421 0 4.613 3.218 5.898 9.602 8.88 5.152 2.391 11.131 5.373 11.131 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805-.524 0-1.056.177-1.403.406-.059 0-.236-.059-.177-.118.524-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.436-3.27 8.436-7.824 0-4.731-2.694-6.311-9.374-9.404-5.211-2.391-11.359-4.967-11.359-11.913 0-6.539 5.093-10.746 11.419-10.746 3.808 0 6.332 1.579 8.495 1.579z",
8420
8730
  fill: "#D3BA81"
8421
- })), _path11$1 || (_path11$1 = /*#__PURE__*/React.createElement("path", {
8731
+ })), _path11$3 || (_path11$3 = /*#__PURE__*/React.createElement("path", {
8422
8732
  d: "M43.565 89.555c.023-.067.14-.17.214-.17.421.17 1.713.494 2.746.679.067.037.037.288-.03.325-1.446.17-2.11.775-2.59 2.568l-.31 1.166 8.621 2.31c1.373.37 1.963.266 2.613-.553.044-.022.258.067.266.126a33.08 33.08 0 00-.584 1.97c-.199.753-.361 1.432-.48 2-.029.052-.265.023-.294-.022-.156-1.025-.613-1.41-1.986-1.778l-8.621-2.31-.31 1.166c-.48 1.793-.207 2.65.96 3.52.036.067-.06.303-.133.296-.99-.355-2.266-.724-2.717-.783-.066-.037-.118-.184-.103-.25.155-.31.45-1.13.93-2.909l1.174-4.392c.465-1.756.612-2.605.634-2.96z",
8423
8733
  fill: "#05002F"
8424
- })), _path12$1 || (_path12$1 = /*#__PURE__*/React.createElement("path", {
8734
+ })), _path12$3 || (_path12$3 = /*#__PURE__*/React.createElement("path", {
8425
8735
  d: "M43.565 89.555c.023-.067.14-.17.214-.17.421.17 1.713.494 2.746.679.067.037.037.288-.03.325-1.446.17-2.11.775-2.59 2.568l-.31 1.166 8.621 2.31c1.373.37 1.963.266 2.613-.553.044-.022.258.067.266.126a33.08 33.08 0 00-.584 1.97c-.199.753-.361 1.432-.48 2-.029.052-.265.023-.294-.022-.156-1.025-.613-1.41-1.986-1.778l-8.621-2.31-.31 1.166c-.48 1.793-.207 2.65.96 3.52.036.067-.06.303-.133.296-.99-.355-2.266-.724-2.717-.783-.066-.037-.118-.184-.103-.25.155-.31.45-1.13.93-2.909l1.174-4.392c.465-1.756.612-2.605.634-2.96zM52.118 86.1l3.063 1.225c1.27.51 1.86.495 2.539-.184.044-.022.25.103.25.155a35.084 35.084 0 00-1.461 3.646c-.036.044-.265-.007-.287-.059-.023-.96-.436-1.38-1.713-1.89l-6.997-2.797c-1.27-.51-1.86-.494-2.54.185-.043.022-.25-.104-.25-.155a35.184 35.184 0 001.462-3.646c.036-.045.265.007.287.058.022.96.436 1.38 1.713 1.89l2.945 1.18 2.48-6.207-2.945-1.18c-1.27-.51-1.86-.495-2.54.184-.044.022-.25-.103-.25-.155a34.754 34.754 0 001.461-3.646c.037-.044.266.007.288.059.022.96.435 1.38 1.712 1.89l6.998 2.797c1.27.51 1.86.494 2.539-.192.044-.022.25.103.25.155a35.093 35.093 0 00-1.462 3.646c-.036.044-.265-.007-.287-.059-.022-.96-.435-1.38-1.712-1.89l-3.063-1.225-2.48 6.215z",
8426
8736
  fill: "#05002F"
8427
- })), _path13$1 || (_path13$1 = /*#__PURE__*/React.createElement("path", {
8737
+ })), _path13$3 || (_path13$3 = /*#__PURE__*/React.createElement("path", {
8428
8738
  d: "M52.118 86.1l3.063 1.225c1.27.51 1.86.495 2.539-.184.044-.022.25.103.25.155a35.084 35.084 0 00-1.461 3.646c-.036.044-.265-.007-.287-.059-.023-.96-.436-1.38-1.713-1.89l-6.997-2.797c-1.27-.51-1.86-.494-2.54.185-.043.022-.25-.104-.25-.155a35.184 35.184 0 001.462-3.646c.036-.045.265.007.287.058.022.96.436 1.38 1.713 1.89l2.945 1.18 2.48-6.207-2.945-1.18c-1.27-.51-1.86-.495-2.54.184-.044.022-.25-.103-.25-.155a34.754 34.754 0 001.461-3.646c.037-.044.266.007.288.059.022.96.435 1.38 1.712 1.89l6.998 2.797c1.27.51 1.86.494 2.539-.192.044-.022.25.103.25.155a35.093 35.093 0 00-1.462 3.646c-.036.044-.265-.007-.287-.059-.022-.96-.435-1.38-1.712-1.89l-3.063-1.225-2.48 6.215zM62.391 76.918c-.044.037-.265-.044-.28-.088.066-.953-.317-1.447-1.66-2.185l-6.06-3.314c-1.484-.812-2.156-.871-2.909-.318-.051.015-.236-.133-.229-.184.259-.436.65-1.107.982-1.72l1.97-3.61c.88-1.608 1.233-2.406 1.337-2.738.037-.066.177-.133.243-.11.37.265 1.314.76 2.274 1.18.051.052-.037.288-.111.31-1.255-.147-1.963.325-2.805 1.86l-1.557 2.85 4.096 2.243 1.056-1.933c.56-1.026.672-1.787.11-2.569-.029-.059.133-.28.185-.266.31.192.967.569 1.402.812.443.244 1.115.59 1.44.746.037.044-.06.295-.126.302-.96-.051-1.542.45-2.103 1.484l-1.056 1.926 4.193 2.296 1.653-3.019c.9-1.646.87-2.458-.126-3.639-.022-.074.133-.28.2-.258.96.605 1.948 1.13 2.42 1.321.067.037.097.2.067.258-.177.251-.516.79-1.609 2.798l-2.089 3.83a76.59 76.59 0 00-.908 1.735z",
8429
8739
  fill: "#05002F"
8430
- })), _path14 || (_path14 = /*#__PURE__*/React.createElement("path", {
8740
+ })), _path14$2 || (_path14$2 = /*#__PURE__*/React.createElement("path", {
8431
8741
  d: "M62.391 76.918c-.044.037-.265-.044-.28-.088.066-.953-.317-1.447-1.66-2.185l-6.06-3.314c-1.484-.812-2.156-.871-2.909-.318-.051.015-.236-.133-.229-.184.259-.436.65-1.107.982-1.72l1.97-3.61c.88-1.608 1.233-2.406 1.337-2.738.037-.066.177-.133.243-.11.37.265 1.314.76 2.274 1.18.051.052-.037.288-.111.31-1.255-.147-1.963.325-2.805 1.86l-1.557 2.85 4.096 2.243 1.056-1.933c.56-1.026.672-1.787.11-2.569-.029-.059.133-.28.185-.266.31.192.967.569 1.402.812.443.244 1.115.59 1.44.746.037.044-.06.295-.126.302-.96-.051-1.542.45-2.103 1.484l-1.056 1.926 4.193 2.296 1.653-3.019c.9-1.646.87-2.458-.126-3.639-.022-.074.133-.28.2-.258.96.605 1.948 1.13 2.42 1.321.067.037.097.2.067.258-.177.251-.516.79-1.609 2.798l-2.089 3.83a76.59 76.59 0 00-.908 1.735zM77.832 53.528l-13.006.354 5.396 4.222c1.35 1.055 1.993 1.255 2.974.79.052-.008.214.162.192.221-.273.317-.716.856-1.085 1.329a46.4 46.4 0 00-1.026 1.372c-.052.03-.258-.08-.258-.132.214-1.07-.133-1.639-1.484-2.694l-5.41-4.23c-1.078-.841-1.727-1.011-2.569-.612-.051.007-.214-.17-.192-.222.28-.332.709-.841 1.085-1.328.436-.554.672-.893.967-1.329.045-.03.2-.022.259.022.347.546.93.775 2.007.746l9.02-.178-4.827-3.771c-1.351-1.056-1.993-1.262-2.975-.79-.052.007-.214-.17-.192-.221.266-.318.716-.857 1.085-1.33a38.22 38.22 0 001.026-1.372c.044-.03.251.081.259.133-.215 1.07.132 1.639 1.483 2.694l7.5 5.86c.029.067-.14.436-.23.466z",
8432
8742
  fill: "#05002F"
8433
- })), _path15 || (_path15 = /*#__PURE__*/React.createElement("path", {
8743
+ })), _path15$2 || (_path15$2 = /*#__PURE__*/React.createElement("path", {
8434
8744
  d: "M77.832 53.528l-13.006.354 5.396 4.222c1.35 1.055 1.993 1.255 2.974.79.052-.008.214.162.192.221-.273.317-.716.856-1.085 1.329a46.4 46.4 0 00-1.026 1.372c-.052.03-.258-.08-.258-.132.214-1.07-.133-1.639-1.484-2.694l-5.41-4.23c-1.078-.841-1.727-1.011-2.569-.612-.051.007-.214-.17-.192-.222.28-.332.709-.841 1.085-1.328.436-.554.672-.893.967-1.329.045-.03.2-.022.259.022.347.546.93.775 2.007.746l9.02-.178-4.827-3.771c-1.351-1.056-1.993-1.262-2.975-.79-.052.007-.214-.17-.192-.221.266-.318.716-.857 1.085-1.33a38.22 38.22 0 001.026-1.372c.044-.03.251.081.259.133-.215 1.07.132 1.639 1.483 2.694l7.5 5.86c.029.067-.14.436-.23.466zM80.61 50.265c-.052.03-.244-.11-.244-.162.325-.893.096-1.476-.996-2.561l-4.901-4.857c-1.203-1.189-1.83-1.432-2.709-1.107-.052 0-.192-.192-.17-.244.37-.347.93-.886 1.425-1.38l2.893-2.923c1.292-1.306 1.853-1.97 2.045-2.266.051-.052.206-.074.265-.037.28.354 1.049 1.092 1.853 1.764.037.067-.11.266-.192.266-1.159-.495-1.978-.236-3.21 1.011l-2.281 2.303 3.314 3.284 1.55-1.564c.827-.834 1.136-1.535.82-2.436-.016-.067.198-.229.25-.207.244.266.768.812 1.13 1.166a34.9 34.9 0 001.18 1.115c.03.052-.14.266-.199.258-.908-.317-1.609.008-2.428.842l-1.55 1.565 3.395 3.358 2.42-2.443c1.322-1.329 1.521-2.126.887-3.536 0-.073.199-.228.265-.192.753.85 1.565 1.624 1.956 1.942.052.051.037.214-.014.265-.244.192-.709.613-2.326 2.244l-3.07 3.1a82.204 82.204 0 00-1.358 1.432z",
8435
8745
  fill: "#05002F"
8436
8746
  })), _path16 || (_path16 = /*#__PURE__*/React.createElement("path", {
@@ -8556,71 +8866,71 @@ function SvgLogoTreasuresColor(_ref) {
8556
8866
  })));
8557
8867
  }
8558
8868
 
8559
- var _path$T, _path2$t, _path3$o, _path4$d, _path5$c, _path6$4, _path7$4, _path8$2, _path9$2, _path10$2, _path11$2, _path12$2, _path13$2, _path14$1, _path15$1, _path16$1, _path17$1, _path18$1, _path19$1, _path20$1, _path21$1, _path22$1, _path23$1, _path24$1, _path25$1, _path26$1, _path27$1, _path28$1, _path29$1, _path30$1, _path31$1, _path32$1, _path33$1, _path34$1, _path35$1, _path36$1, _path37$1, _path38$1, _path39$1, _path40$1, _path41$1, _path42$1, _path43$1, _path44$1, _path45$1, _path46$1, _path47$1, _path48$1, _path49$1, _path50$1, _path51$1, _path52$1, _path53$1, _path54$1, _path55$1;
8869
+ var _path$V, _path2$v, _path3$q, _path4$f, _path5$e, _path6$6, _path7$6, _path8$4, _path9$4, _path10$4, _path11$4, _path12$4, _path13$4, _path14$3, _path15$3, _path16$1, _path17$1, _path18$1, _path19$1, _path20$1, _path21$1, _path22$1, _path23$1, _path24$1, _path25$1, _path26$1, _path27$1, _path28$1, _path29$1, _path30$1, _path31$1, _path32$1, _path33$1, _path34$1, _path35$1, _path36$1, _path37$1, _path38$1, _path39$1, _path40$1, _path41$1, _path42$1, _path43$1, _path44$1, _path45$1, _path46$1, _path47$1, _path48$1, _path49$1, _path50$1, _path51$1, _path52$1, _path53$1, _path54$1, _path55$1;
8560
8870
 
8561
- var _excluded$1u = ["title", "titleId"];
8871
+ var _excluded$1w = ["title", "titleId"];
8562
8872
 
8563
- function _extends$18() { _extends$18 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$18.apply(this, arguments); }
8873
+ function _extends$1a() { _extends$1a = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1a.apply(this, arguments); }
8564
8874
 
8565
- function _objectWithoutProperties$17(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$18(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8875
+ function _objectWithoutProperties$19(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$1a(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
8566
8876
 
8567
- function _objectWithoutPropertiesLoose$18(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8877
+ function _objectWithoutPropertiesLoose$1a(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
8568
8878
 
8569
8879
  function SvgLogoTreasuresColorNegative(_ref) {
8570
8880
  var title = _ref.title,
8571
8881
  titleId = _ref.titleId,
8572
- props = _objectWithoutProperties$17(_ref, _excluded$1u);
8882
+ props = _objectWithoutProperties$19(_ref, _excluded$1w);
8573
8883
 
8574
- return /*#__PURE__*/React.createElement("svg", _extends$18({
8884
+ return /*#__PURE__*/React.createElement("svg", _extends$1a({
8575
8885
  viewBox: "0 0 327 266",
8576
8886
  fill: "none",
8577
8887
  xmlns: "http://www.w3.org/2000/svg",
8578
8888
  "aria-labelledby": titleId
8579
8889
  }, props), title ? /*#__PURE__*/React.createElement("title", {
8580
8890
  id: titleId
8581
- }, title) : null, _path$T || (_path$T = /*#__PURE__*/React.createElement("path", {
8891
+ }, title) : null, _path$V || (_path$V = /*#__PURE__*/React.createElement("path", {
8582
8892
  d: "M23.553 154.725c-.997-.059-3.455-.118-5.33-.118-1.874 0-4.332.059-5.329.118-.059 0-.118-.177-.059-.236 2.111-.819 2.99-1.986 2.99-6.894v-31.067H12.31c-5.742 0-8.141 1.284-10.075 6.54-.059.059-.236 0-.236-.059.236-3.388.236-7.123.118-9.168 0-.118.06-.177.177-.177 1.174.059 5.388.118 8.142.118h15.581c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 2.045-.118 5.78.119 9.168 0 .059-.178.118-.237.059-1.934-5.256-4.332-6.54-10.075-6.54H20.63v31.067c0 4.908.878 6.075 2.99 6.894.05.059-.008.236-.067.236z",
8583
8893
  fill: "#D3BA81"
8584
- })), _path2$t || (_path2$t = /*#__PURE__*/React.createElement("path", {
8894
+ })), _path2$v || (_path2$v = /*#__PURE__*/React.createElement("path", {
8585
8895
  d: "M23.553 154.725c-.997-.059-3.455-.118-5.33-.118-1.874 0-4.332.059-5.329.118-.059 0-.118-.177-.059-.236 2.111-.819 2.99-1.986 2.99-6.894v-31.067H12.31c-5.742 0-8.141 1.284-10.075 6.54-.059.059-.236 0-.236-.059.236-3.388.236-7.123.118-9.168 0-.118.06-.177.177-.177 1.174.059 5.388.118 8.142.118h15.581c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 2.045-.118 5.78.119 9.168 0 .059-.178.118-.237.059-1.934-5.256-4.332-6.54-10.075-6.54H20.63v31.067c0 4.908.878 6.075 2.99 6.894.05.059-.008.236-.067.236zM53.246 116.536h-7.263v16.762h7.263c6.503 0 9.367-2.568 9.367-8.407.007-5.845-2.864-8.355-9.367-8.355zm5.27 18.859l6.385 11.854c1.934 3.616 3.75 5.196 5.912 5.196.524 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.982-1.639-7.322-6.016l-6.909-13.02h-7.38v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.06.236-.996-.059-3.454-.118-5.328-.118-1.875 0-4.156.059-5.152.118-.06 0-.118-.177-.06-.236 1.934-.82 2.813-1.868 2.813-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.06-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.724c9.315 0 14.35 3.565 14.35 10.924 0 6.015-3.219 9.581-9.139 10.688z",
8586
8896
  fill: "#D3BA81"
8587
- })), _path3$o || (_path3$o = /*#__PURE__*/React.createElement("path", {
8897
+ })), _path3$q || (_path3$q = /*#__PURE__*/React.createElement("path", {
8588
8898
  d: "M53.246 116.536h-7.263v16.762h7.263c6.503 0 9.367-2.568 9.367-8.407.007-5.845-2.864-8.355-9.367-8.355zm5.27 18.859l6.385 11.854c1.934 3.616 3.75 5.196 5.912 5.196.524 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.982-1.639-7.322-6.016l-6.909-13.02h-7.38v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.06.236-.996-.059-3.454-.118-5.328-.118-1.875 0-4.156.059-5.152.118-.06 0-.118-.177-.06-.236 1.934-.82 2.813-1.868 2.813-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.06-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.724c9.315 0 14.35 3.565 14.35 10.924 0 6.015-3.219 9.581-9.139 10.688zM106.139 154.784c-1.174-.059-5.388-.118-8.141-.118H82.593c-4.392 0-6.148.059-6.148.059-.06 0-.118-.177-.06-.236 1.935-.819 2.813-1.867 2.813-6.599v-27.332c0-4.731-.878-5.779-2.812-6.598-.06-.06 0-.237.059-.237 0 0 1.757.059 6.148.059H96.47c2.753 0 6.967-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.6v15.707h7.5c5.506 0 7.322-.937 8.606-3.853.059-.059.236 0 .236.059-.118 1.048-.177 3.27-.177 5.137 0 1.868.059 4.09.177 5.138 0 .059-.177.118-.236.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.5v16.991h11.537c6.326 0 8.725-1.056 10.659-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.17.184z",
8589
8899
  fill: "#D3BA81"
8590
- })), _path4$d || (_path4$d = /*#__PURE__*/React.createElement("path", {
8900
+ })), _path4$f || (_path4$f = /*#__PURE__*/React.createElement("path", {
8591
8901
  d: "M106.139 154.784c-1.174-.059-5.388-.118-8.141-.118H82.593c-4.392 0-6.148.059-6.148.059-.06 0-.118-.177-.06-.236 1.935-.819 2.813-1.867 2.813-6.599v-27.332c0-4.731-.878-5.779-2.812-6.598-.06-.06 0-.237.059-.237 0 0 1.757.059 6.148.059H96.47c2.753 0 6.967-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.6v15.707h7.5c5.506 0 7.322-.937 8.606-3.853.059-.059.236 0 .236.059-.118 1.048-.177 3.27-.177 5.137 0 1.868.059 4.09.177 5.138 0 .059-.177.118-.236.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.5v16.991h11.537c6.326 0 8.725-1.056 10.659-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.17.184zM135.126 139.661l-7.263-17.692-7.263 17.692h14.526zm2.17 15.065c-.059-.059-.059-.288-.059-.288 2.517-.937 3.1-2.222.819-7.706l-1.756-4.266h-16.807l-1.521 3.676c-2.221 5.373-2.17 7.004 1.174 8.296 0 0 0 .236-.059.288a108.307 108.307 0 00-5.152-.118c-1.757 0-3.927.059-5.152.118-.059-.059-.059-.288-.059-.288 2.635-1.225 3.808-2.923 6.03-8.296l13.884-33.754c.059-.059.295-.059.354 0l14.231 34.337c2.288 5.55 3.107 6.539 5.152 7.706 0 0 0 .236-.059.287a120.397 120.397 0 00-5.565-.118c-2.407.008-4.34.067-5.455.126z",
8592
8902
  fill: "#D3BA81"
8593
- })), _path5$c || (_path5$c = /*#__PURE__*/React.createElement("path", {
8903
+ })), _path5$e || (_path5$e = /*#__PURE__*/React.createElement("path", {
8594
8904
  d: "M135.126 139.661l-7.263-17.692-7.263 17.692h14.526zm2.17 15.065c-.059-.059-.059-.288-.059-.288 2.517-.937 3.1-2.222.819-7.706l-1.756-4.266h-16.807l-1.521 3.676c-2.221 5.373-2.17 7.004 1.174 8.296 0 0 0 .236-.059.288a108.307 108.307 0 00-5.152-.118c-1.757 0-3.927.059-5.152.118-.059-.059-.059-.288-.059-.288 2.635-1.225 3.808-2.923 6.03-8.296l13.884-33.754c.059-.059.295-.059.354 0l14.231 34.337c2.288 5.55 3.107 6.539 5.152 7.706 0 0 0 .236-.059.287a120.397 120.397 0 00-5.565-.118c-2.407.008-4.34.067-5.455.126zM172.141 114.491c.642 0 1.285-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.953-7.418-4.156 0-7.027 2.568-7.027 6.421 0 4.613 3.218 5.898 9.603 8.88 5.152 2.391 11.13 5.373 11.13 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805a2.68 2.68 0 00-1.402.406c-.059 0-.237-.059-.178-.118.532-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.437-3.27 8.437-7.824 0-4.731-2.695-6.311-9.374-9.404-5.211-2.391-11.36-4.967-11.36-11.913 0-6.539 5.093-10.746 11.419-10.746 3.816 0 6.333 1.579 8.495 1.579z",
8595
8905
  fill: "#D3BA81"
8596
- })), _path6$4 || (_path6$4 = /*#__PURE__*/React.createElement("path", {
8906
+ })), _path6$6 || (_path6$6 = /*#__PURE__*/React.createElement("path", {
8597
8907
  d: "M172.141 114.491c.642 0 1.285-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.953-7.418-4.156 0-7.027 2.568-7.027 6.421 0 4.613 3.218 5.898 9.603 8.88 5.152 2.391 11.13 5.373 11.13 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805a2.68 2.68 0 00-1.402.406c-.059 0-.237-.059-.178-.118.532-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.437-3.27 8.437-7.824 0-4.731-2.695-6.311-9.374-9.404-5.211-2.391-11.36-4.967-11.36-11.913 0-6.539 5.093-10.746 11.419-10.746 3.816 0 6.333 1.579 8.495 1.579zM185.444 139.366v-18.807c0-4.732-.878-5.78-2.812-6.599-.059-.059 0-.236.059-.236.996.059 3.277.118 5.152.118s4.155-.059 5.152-.118c.059 0 .118.177.059.236-1.934.819-2.812 1.867-2.812 6.599v18.917c0 9.168 4.037 12.674 11.418 12.674 7.086 0 11.131-4.03 11.131-13.08v-17.227c0-5.019-.76-6.886-3.395-7.883-.059-.059 0-.236.059-.236a94.55 94.55 0 004.864.118c2.052 0 3.867-.059 4.864-.118.059 0 .118.177.059.236-2.635.997-3.395 2.864-3.395 7.883v17.405c0 11.33-6.031 16.29-15.05 16.29-9.323.007-15.353-4.96-15.353-16.172z",
8598
8908
  fill: "#D3BA81"
8599
- })), _path7$4 || (_path7$4 = /*#__PURE__*/React.createElement("path", {
8909
+ })), _path7$6 || (_path7$6 = /*#__PURE__*/React.createElement("path", {
8600
8910
  d: "M185.444 139.366v-18.807c0-4.732-.878-5.78-2.812-6.599-.059-.059 0-.236.059-.236.996.059 3.277.118 5.152.118s4.155-.059 5.152-.118c.059 0 .118.177.059.236-1.934.819-2.812 1.867-2.812 6.599v18.917c0 9.168 4.037 12.674 11.418 12.674 7.086 0 11.131-4.03 11.131-13.08v-17.227c0-5.019-.76-6.886-3.395-7.883-.059-.059 0-.236.059-.236a94.55 94.55 0 004.864.118c2.052 0 3.867-.059 4.864-.118.059 0 .118.177.059.236-2.635.997-3.395 2.864-3.395 7.883v17.405c0 11.33-6.031 16.29-15.05 16.29-9.323.007-15.353-4.96-15.353-16.172zM240.379 116.536h-7.263v16.762h7.263c6.502 0 9.373-2.568 9.373-8.407-.007-5.845-2.878-8.355-9.373-8.355zm5.27 18.859l6.384 11.854c1.934 3.616 3.75 5.196 5.912 5.196.525 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.975-1.639-7.322-6.016l-6.908-13.02h-7.381v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.059.236-.997-.059-3.455-.118-5.329-.118-1.875 0-4.156.059-5.152.118-.059 0-.118-.177-.059-.236 1.933-.82 2.812-1.868 2.812-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.059-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.725c9.314 0 14.348 3.565 14.348 10.924 0 6.015-3.225 9.581-9.137 10.688z",
8601
8911
  fill: "#D3BA81"
8602
- })), _path8$2 || (_path8$2 = /*#__PURE__*/React.createElement("path", {
8912
+ })), _path8$4 || (_path8$4 = /*#__PURE__*/React.createElement("path", {
8603
8913
  d: "M240.379 116.536h-7.263v16.762h7.263c6.502 0 9.373-2.568 9.373-8.407-.007-5.845-2.878-8.355-9.373-8.355zm5.27 18.859l6.384 11.854c1.934 3.616 3.75 5.196 5.912 5.196.525 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.975-1.639-7.322-6.016l-6.908-13.02h-7.381v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.059.236-.997-.059-3.455-.118-5.329-.118-1.875 0-4.156.059-5.152.118-.059 0-.118-.177-.059-.236 1.933-.82 2.812-1.868 2.812-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.059-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.725c9.314 0 14.348 3.565 14.348 10.924 0 6.015-3.225 9.581-9.137 10.688zM293.728 154.784c-1.174-.059-5.388-.118-8.142-.118h-15.404c-4.392 0-6.148.059-6.148.059-.059 0-.118-.177-.059-.236 1.933-.819 2.812-1.867 2.812-6.599v-27.332c0-4.731-.879-5.779-2.812-6.598-.059-.06 0-.237.059-.237 0 0 1.756.059 6.148.059h13.884c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.599v15.707h7.499c5.506 0 7.322-.937 8.606-3.853.059-.059.237 0 .237.059-.119 1.048-.178 3.27-.178 5.137 0 1.868.059 4.09.178 5.138 0 .059-.178.118-.237.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.499v16.991h11.537c6.325 0 8.724-1.056 10.658-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.177.184z",
8604
8914
  fill: "#D3BA81"
8605
- })), _path9$2 || (_path9$2 = /*#__PURE__*/React.createElement("path", {
8915
+ })), _path9$4 || (_path9$4 = /*#__PURE__*/React.createElement("path", {
8606
8916
  d: "M293.728 154.784c-1.174-.059-5.388-.118-8.142-.118h-15.404c-4.392 0-6.148.059-6.148.059-.059 0-.118-.177-.059-.236 1.933-.819 2.812-1.867 2.812-6.599v-27.332c0-4.731-.879-5.779-2.812-6.598-.059-.06 0-.237.059-.237 0 0 1.756.059 6.148.059h13.884c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.599v15.707h7.499c5.506 0 7.322-.937 8.606-3.853.059-.059.237 0 .237.059-.119 1.048-.178 3.27-.178 5.137 0 1.868.059 4.09.178 5.138 0 .059-.178.118-.237.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.499v16.991h11.537c6.325 0 8.724-1.056 10.658-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.177.184zM320.907 114.491c.642 0 1.284-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.954-7.418-4.155 0-7.026 2.568-7.026 6.421 0 4.613 3.218 5.898 9.602 8.88 5.152 2.391 11.131 5.373 11.131 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805-.524 0-1.056.177-1.403.406-.059 0-.236-.059-.177-.118.524-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.436-3.27 8.436-7.824 0-4.731-2.694-6.311-9.374-9.404-5.211-2.391-11.359-4.967-11.359-11.913 0-6.539 5.093-10.746 11.419-10.746 3.808 0 6.332 1.579 8.495 1.579z",
8607
8917
  fill: "#D3BA81"
8608
- })), _path10$2 || (_path10$2 = /*#__PURE__*/React.createElement("path", {
8918
+ })), _path10$4 || (_path10$4 = /*#__PURE__*/React.createElement("path", {
8609
8919
  d: "M320.907 114.491c.642 0 1.284-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.954-7.418-4.155 0-7.026 2.568-7.026 6.421 0 4.613 3.218 5.898 9.602 8.88 5.152 2.391 11.131 5.373 11.131 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805-.524 0-1.056.177-1.403.406-.059 0-.236-.059-.177-.118.524-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.436-3.27 8.436-7.824 0-4.731-2.694-6.311-9.374-9.404-5.211-2.391-11.359-4.967-11.359-11.913 0-6.539 5.093-10.746 11.419-10.746 3.808 0 6.332 1.579 8.495 1.579z",
8610
8920
  fill: "#D3BA81"
8611
- })), _path11$2 || (_path11$2 = /*#__PURE__*/React.createElement("path", {
8921
+ })), _path11$4 || (_path11$4 = /*#__PURE__*/React.createElement("path", {
8612
8922
  d: "M45.565 90.555c.023-.067.14-.17.214-.17.421.17 1.713.494 2.746.679.067.037.037.288-.03.325-1.446.17-2.11.775-2.59 2.568l-.31 1.166 8.621 2.31c1.373.37 1.963.266 2.613-.553.044-.022.258.067.266.126a33.08 33.08 0 00-.584 1.97c-.199.753-.361 1.432-.48 2.001-.029.051-.265.022-.294-.023-.156-1.025-.613-1.41-1.986-1.778l-8.621-2.31-.31 1.166c-.48 1.793-.207 2.649.96 3.52.036.067-.06.303-.133.296-.99-.355-2.266-.724-2.717-.783-.066-.037-.118-.184-.103-.251.155-.31.45-1.13.93-2.908l1.174-4.392c.465-1.756.612-2.605.634-2.96z",
8613
8923
  fill: "#fff"
8614
- })), _path12$2 || (_path12$2 = /*#__PURE__*/React.createElement("path", {
8924
+ })), _path12$4 || (_path12$4 = /*#__PURE__*/React.createElement("path", {
8615
8925
  d: "M45.565 90.555c.023-.067.14-.17.214-.17.421.17 1.713.494 2.746.679.067.037.037.288-.03.325-1.446.17-2.11.775-2.59 2.568l-.31 1.166 8.621 2.31c1.373.37 1.963.266 2.613-.553.044-.022.258.067.266.126a33.08 33.08 0 00-.584 1.97c-.199.753-.361 1.432-.48 2.001-.029.051-.265.022-.294-.023-.156-1.025-.613-1.41-1.986-1.778l-8.621-2.31-.31 1.166c-.48 1.793-.207 2.649.96 3.52.036.067-.06.303-.133.296-.99-.355-2.266-.724-2.717-.783-.066-.037-.118-.184-.103-.251.155-.31.45-1.13.93-2.908l1.174-4.392c.465-1.756.612-2.605.634-2.96zM54.118 87.1l3.063 1.225c1.27.51 1.86.495 2.539-.184.044-.022.25.103.25.155a35.084 35.084 0 00-1.461 3.646c-.036.044-.265-.007-.287-.059-.023-.96-.436-1.38-1.713-1.89l-6.997-2.797c-1.27-.51-1.86-.494-2.54.185-.043.022-.25-.104-.25-.155a35.184 35.184 0 001.462-3.646c.036-.045.265.007.287.058.022.96.436 1.38 1.713 1.89l2.945 1.18 2.48-6.207-2.945-1.18c-1.27-.51-1.86-.495-2.54.184-.044.022-.25-.103-.25-.155a34.754 34.754 0 001.461-3.646c.037-.044.266.007.288.059.022.96.435 1.38 1.712 1.89l6.998 2.797c1.27.51 1.86.494 2.539-.192.044-.022.25.103.25.155a35.093 35.093 0 00-1.461 3.646c-.037.044-.266-.007-.288-.059-.022-.96-.435-1.38-1.712-1.89l-3.063-1.225-2.48 6.215z",
8616
8926
  fill: "#fff"
8617
- })), _path13$2 || (_path13$2 = /*#__PURE__*/React.createElement("path", {
8927
+ })), _path13$4 || (_path13$4 = /*#__PURE__*/React.createElement("path", {
8618
8928
  d: "M54.118 87.1l3.063 1.225c1.27.51 1.86.495 2.539-.184.044-.022.25.103.25.155a35.084 35.084 0 00-1.461 3.646c-.036.044-.265-.007-.287-.059-.023-.96-.436-1.38-1.713-1.89l-6.997-2.797c-1.27-.51-1.86-.494-2.54.185-.043.022-.25-.104-.25-.155a35.184 35.184 0 001.462-3.646c.036-.045.265.007.287.058.022.96.436 1.38 1.713 1.89l2.945 1.18 2.48-6.207-2.945-1.18c-1.27-.51-1.86-.495-2.54.184-.044.022-.25-.103-.25-.155a34.754 34.754 0 001.461-3.646c.037-.044.266.007.288.059.022.96.435 1.38 1.712 1.89l6.998 2.797c1.27.51 1.86.494 2.539-.192.044-.022.25.103.25.155a35.093 35.093 0 00-1.461 3.646c-.037.044-.266-.007-.288-.059-.022-.96-.435-1.38-1.712-1.89l-3.063-1.225-2.48 6.215zM64.391 77.918c-.044.037-.265-.044-.28-.088.066-.953-.318-1.447-1.66-2.185l-6.06-3.314c-1.484-.812-2.156-.871-2.909-.318-.051.015-.236-.133-.229-.184.259-.436.65-1.107.982-1.72l1.97-3.61c.88-1.608 1.233-2.406 1.337-2.738.037-.066.177-.133.243-.11.37.265 1.314.76 2.274 1.18.051.052-.037.288-.111.31-1.255-.147-1.963.325-2.805 1.86l-1.557 2.85 4.096 2.243 1.056-1.933c.56-1.026.672-1.787.11-2.569-.029-.059.133-.28.185-.266.31.192.967.569 1.402.812.443.244 1.115.59 1.44.746.037.044-.06.295-.126.302-.96-.051-1.542.45-2.103 1.484l-1.056 1.926 4.193 2.296 1.653-3.019c.9-1.646.87-2.458-.126-3.639-.022-.074.133-.28.2-.258.96.605 1.948 1.13 2.42 1.321.067.037.097.2.067.258-.177.251-.516.79-1.609 2.798l-2.089 3.83a76.59 76.59 0 00-.908 1.735z",
8619
8929
  fill: "#fff"
8620
- })), _path14$1 || (_path14$1 = /*#__PURE__*/React.createElement("path", {
8930
+ })), _path14$3 || (_path14$3 = /*#__PURE__*/React.createElement("path", {
8621
8931
  d: "M64.391 77.918c-.044.037-.265-.044-.28-.088.066-.953-.318-1.447-1.66-2.185l-6.06-3.314c-1.484-.812-2.156-.871-2.909-.318-.051.015-.236-.133-.229-.184.259-.436.65-1.107.982-1.72l1.97-3.61c.88-1.608 1.233-2.406 1.337-2.738.037-.066.177-.133.243-.11.37.265 1.314.76 2.274 1.18.051.052-.037.288-.111.31-1.255-.147-1.963.325-2.805 1.86l-1.557 2.85 4.096 2.243 1.056-1.933c.56-1.026.672-1.787.11-2.569-.029-.059.133-.28.185-.266.31.192.967.569 1.402.812.443.244 1.115.59 1.44.746.037.044-.06.295-.126.302-.96-.051-1.542.45-2.103 1.484l-1.056 1.926 4.193 2.296 1.653-3.019c.9-1.646.87-2.458-.126-3.639-.022-.074.133-.28.2-.258.96.605 1.948 1.13 2.42 1.321.067.037.097.2.067.258-.177.251-.516.79-1.609 2.798l-2.089 3.83a76.59 76.59 0 00-.908 1.735zM79.832 54.528l-13.006.354 5.396 4.222c1.35 1.055 1.993 1.255 2.974.79.052-.008.214.162.192.221-.273.317-.716.856-1.085 1.329a46.4 46.4 0 00-1.026 1.372c-.052.03-.258-.08-.258-.132.214-1.07-.133-1.639-1.484-2.694l-5.41-4.23c-1.078-.841-1.727-1.011-2.569-.612-.051.007-.214-.17-.192-.222.28-.332.709-.841 1.085-1.328.436-.554.672-.893.967-1.329.045-.03.2-.022.259.022.347.546.93.775 2.007.746l9.02-.178-4.827-3.771c-1.351-1.056-1.993-1.262-2.975-.79-.052.007-.214-.17-.192-.221.266-.318.716-.857 1.085-1.33a38.22 38.22 0 001.026-1.372c.044-.03.251.081.259.133-.215 1.07.132 1.639 1.483 2.694l7.5 5.86c.029.067-.14.436-.23.466z",
8622
8932
  fill: "#fff"
8623
- })), _path15$1 || (_path15$1 = /*#__PURE__*/React.createElement("path", {
8933
+ })), _path15$3 || (_path15$3 = /*#__PURE__*/React.createElement("path", {
8624
8934
  d: "M79.832 54.528l-13.006.354 5.396 4.222c1.35 1.055 1.993 1.255 2.974.79.052-.008.214.162.192.221-.273.317-.716.856-1.085 1.329a46.4 46.4 0 00-1.026 1.372c-.052.03-.258-.08-.258-.132.214-1.07-.133-1.639-1.484-2.694l-5.41-4.23c-1.078-.841-1.727-1.011-2.569-.612-.051.007-.214-.17-.192-.222.28-.332.709-.841 1.085-1.328.436-.554.672-.893.967-1.329.045-.03.2-.022.259.022.347.546.93.775 2.007.746l9.02-.178-4.827-3.771c-1.351-1.056-1.993-1.262-2.975-.79-.052.007-.214-.17-.192-.221.266-.318.716-.857 1.085-1.33a38.22 38.22 0 001.026-1.372c.044-.03.251.081.259.133-.215 1.07.132 1.639 1.483 2.694l7.5 5.86c.029.067-.14.436-.23.466zM82.61 51.265c-.052.03-.244-.11-.244-.162.325-.893.096-1.476-.996-2.561l-4.901-4.857c-1.203-1.189-1.83-1.432-2.709-1.107-.052 0-.192-.192-.17-.244.37-.347.93-.886 1.425-1.38l2.893-2.923c1.292-1.306 1.853-1.97 2.045-2.266.051-.052.206-.074.265-.037.28.354 1.049 1.092 1.853 1.764.037.067-.11.266-.192.266-1.159-.495-1.978-.236-3.21 1.011l-2.281 2.303 3.314 3.284 1.55-1.564c.827-.834 1.136-1.535.82-2.436-.016-.067.198-.229.25-.207.244.266.768.812 1.13 1.166a34.9 34.9 0 001.18 1.115c.03.052-.14.266-.199.258-.908-.317-1.609.008-2.428.842l-1.55 1.565 3.395 3.358 2.42-2.443c1.322-1.329 1.521-2.126.887-3.536 0-.073.199-.228.265-.192.753.85 1.565 1.624 1.956 1.942.052.051.037.214-.014.265-.244.192-.709.613-2.326 2.244l-3.07 3.1a82.204 82.204 0 00-1.358 1.432z",
8625
8935
  fill: "#fff"
8626
8936
  })), _path16$1 || (_path16$1 = /*#__PURE__*/React.createElement("path", {
@@ -8767,6 +9077,8 @@ var logoSvgs = {
8767
9077
  nyplFullWhite: SvgLogoNyplFullWhite,
8768
9078
  nyplLionBlack: SvgLogoNyplLionBlack,
8769
9079
  nyplLionWhite: SvgLogoNyplLionWhite,
9080
+ nyplTextBlack: SvgLogoNyplTextBlack,
9081
+ nyplTextWhite: SvgLogoNyplTextWhite,
8770
9082
  openebooksColor: SvgLogoOpenebooksColor,
8771
9083
  openebooksNegative: SvgLogoOpenebooksNegative,
8772
9084
  openebooksWithTextColor: SvgLogoOpenebooksWithTextColor,
@@ -8793,7 +9105,7 @@ var logoSvgs = {
8793
9105
  treasuresColorNegative: SvgLogoTreasuresColorNegative
8794
9106
  };
8795
9107
 
8796
- var _excluded$1v = ["children", "className", "decorative", "id", "name", "size", "title"];
9108
+ var _excluded$1x = ["children", "className", "decorative", "id", "name", "size", "title"];
8797
9109
  /**
8798
9110
  * The `Logo` component renders SVG-based logos and color variants that are
8799
9111
  * commonly used by the New York Public Library.
@@ -8812,7 +9124,7 @@ var Logo$1 = /*#__PURE__*/react.chakra(function (props) {
8812
9124
  size = _props$size === void 0 ? "medium" : _props$size,
8813
9125
  _props$title = props.title,
8814
9126
  title = _props$title === void 0 ? name + " logo" : _props$title,
8815
- rest = _objectWithoutPropertiesLoose(props, _excluded$1v);
9127
+ rest = _objectWithoutPropertiesLoose(props, _excluded$1x);
8816
9128
 
8817
9129
  var styles = react.useStyleConfig("Logo", {
8818
9130
  size: size
@@ -8861,7 +9173,7 @@ var Logo$1 = /*#__PURE__*/react.chakra(function (props) {
8861
9173
  }, childSVG);
8862
9174
  });
8863
9175
 
8864
- var _excluded$1w = ["bodyContent", "closeButtonLabel", "headingText", "id", "isOpen", "onClose"],
9176
+ var _excluded$1y = ["bodyContent", "closeButtonLabel", "headingText", "id", "isOpen", "onClose"],
8865
9177
  _excluded2$5 = ["buttonText", "id", "modalProps"],
8866
9178
  _excluded3$2 = ["bodyContent", "closeButtonLabel", "headingText", "id"];
8867
9179
  var BaseModal = /*#__PURE__*/react.chakra(function (_ref) {
@@ -8872,7 +9184,7 @@ var BaseModal = /*#__PURE__*/react.chakra(function (_ref) {
8872
9184
  id = _ref.id,
8873
9185
  isOpen = _ref.isOpen,
8874
9186
  onClose = _ref.onClose,
8875
- rest = _objectWithoutPropertiesLoose(_ref, _excluded$1w);
9187
+ rest = _objectWithoutPropertiesLoose(_ref, _excluded$1y);
8876
9188
 
8877
9189
  // Based on --nypl-breakpoint-medium
8878
9190
  var breakpointMedium = 600;
@@ -8971,7 +9283,7 @@ function useModal() {
8971
9283
  };
8972
9284
  }
8973
9285
 
8974
- var _excluded$1x = ["children", "icon", "id", "isCentered", "notificationType"],
9286
+ var _excluded$1z = ["children", "icon", "id", "isCentered", "notificationType"],
8975
9287
  _excluded2$6 = ["alignText", "children", "icon", "notificationType"],
8976
9288
  _excluded3$3 = ["ariaLabel", "className", "dismissible", "icon", "id", "isCentered", "noMargin", "notificationContent", "notificationHeading", "notificationType", "showIcon"];
8977
9289
  /**
@@ -8984,7 +9296,7 @@ var NotificationHeading$1 = /*#__PURE__*/react.chakra(function (props) {
8984
9296
  id = props.id,
8985
9297
  isCentered = props.isCentered,
8986
9298
  notificationType = props.notificationType,
8987
- rest = _objectWithoutPropertiesLoose(props, _excluded$1x);
9299
+ rest = _objectWithoutPropertiesLoose(props, _excluded$1z);
8988
9300
 
8989
9301
  var styles = react.useMultiStyleConfig("NotificationHeading", {
8990
9302
  icon: icon,
@@ -9140,7 +9452,7 @@ var Notification$1 = /*#__PURE__*/react.chakra(function (props) {
9140
9452
  }, childHeading, childContent), dismissibleButton);
9141
9453
  });
9142
9454
 
9143
- var _excluded$1y = ["className", "currentPage", "getPageHref", "id", "initialPage", "onPageChange", "pageCount"];
9455
+ var _excluded$1A = ["className", "currentPage", "getPageHref", "id", "initialPage", "onPageChange", "pageCount"];
9144
9456
  /**
9145
9457
  * A component that provides a navigational list of page items.
9146
9458
  */
@@ -9154,7 +9466,7 @@ var Pagination$1 = /*#__PURE__*/react.chakra(function (props) {
9154
9466
  initialPage = _props$initialPage === void 0 ? 1 : _props$initialPage,
9155
9467
  onPageChange = props.onPageChange,
9156
9468
  pageCount = props.pageCount,
9157
- rest = _objectWithoutPropertiesLoose(props, _excluded$1y);
9469
+ rest = _objectWithoutPropertiesLoose(props, _excluded$1A);
9158
9470
 
9159
9471
  var refCurrentPage = React.useRef(currentPage);
9160
9472
 
@@ -9346,7 +9658,7 @@ var Pagination$1 = /*#__PURE__*/react.chakra(function (props) {
9346
9658
  }, previousLiLink, getPaginationNumbers(selectedPage), nextLiLink));
9347
9659
  });
9348
9660
 
9349
- var _excluded$1z = ["darkMode", "id", "indicatorType", "isIndeterminate", "labelText", "showLabel", "size", "value"];
9661
+ var _excluded$1B = ["darkMode", "id", "indicatorType", "isIndeterminate", "labelText", "showLabel", "size", "value"];
9350
9662
  /**
9351
9663
  * A component that displays a progress status for any task that takes a long
9352
9664
  * time to complete or consists of multiple steps. Examples include downloading,
@@ -9368,7 +9680,7 @@ var ProgressIndicator$1 = /*#__PURE__*/react.chakra(function (props) {
9368
9680
  size = _props$size === void 0 ? "default" : _props$size,
9369
9681
  _props$value = props.value,
9370
9682
  value = _props$value === void 0 ? 0 : _props$value,
9371
- rest = _objectWithoutPropertiesLoose(props, _excluded$1z);
9683
+ rest = _objectWithoutPropertiesLoose(props, _excluded$1B);
9372
9684
 
9373
9685
  var styles = react.useMultiStyleConfig("ProgressIndicator", {
9374
9686
  darkMode: darkMode,
@@ -9434,7 +9746,7 @@ var ProgressIndicator$1 = /*#__PURE__*/react.chakra(function (props) {
9434
9746
  }, rest), progressComponent(indicatorType));
9435
9747
  });
9436
9748
 
9437
- var _excluded$1A = ["className", "helperText", "id", "invalidText", "isChecked", "isDisabled", "isInvalid", "isRequired", "labelText", "name", "onChange", "showHelperInvalidText", "showLabel", "value"];
9749
+ var _excluded$1C = ["className", "helperText", "id", "invalidText", "isChecked", "isDisabled", "isInvalid", "isRequired", "labelText", "name", "onChange", "showHelperInvalidText", "showLabel", "value"];
9438
9750
  var Radio$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function (props, ref) {
9439
9751
  var className = props.className,
9440
9752
  helperText = props.helperText,
@@ -9455,7 +9767,7 @@ var Radio$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function
9455
9767
  _props$showLabel = props.showLabel,
9456
9768
  showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
9457
9769
  value = props.value,
9458
- rest = _objectWithoutPropertiesLoose(props, _excluded$1A);
9770
+ rest = _objectWithoutPropertiesLoose(props, _excluded$1C);
9459
9771
 
9460
9772
  var styles = react.useMultiStyleConfig("Radio", {
9461
9773
  showLabel: showLabel
@@ -9502,7 +9814,7 @@ var Radio$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function
9502
9814
  }, labelText)));
9503
9815
  }));
9504
9816
 
9505
- var _excluded$1B = ["children", "className", "defaultValue", "helperText", "id", "invalidText", "isDisabled", "isFullWidth", "isInvalid", "isRequired", "labelText", "layout", "name", "onChange", "showHelperInvalidText", "showLabel", "showRequiredLabel"];
9817
+ var _excluded$1D = ["children", "className", "defaultValue", "helperText", "id", "invalidText", "isDisabled", "isFullWidth", "isInvalid", "isRequired", "labelText", "layout", "name", "onChange", "showHelperInvalidText", "showLabel", "showRequiredLabel"];
9506
9818
  /**
9507
9819
  * RadioGroup is a wrapper for DS `Radio` components that renders as a fieldset
9508
9820
  * HTML element along with optional helper text. The `name` prop is essential
@@ -9538,7 +9850,7 @@ var RadioGroup$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(func
9538
9850
  showLabel = _props$showLabel === void 0 ? true : _props$showLabel,
9539
9851
  _props$showRequiredLa = props.showRequiredLabel,
9540
9852
  showRequiredLabel = _props$showRequiredLa === void 0 ? true : _props$showRequiredLa,
9541
- rest = _objectWithoutPropertiesLoose(props, _excluded$1B);
9853
+ rest = _objectWithoutPropertiesLoose(props, _excluded$1D);
9542
9854
 
9543
9855
  var _React$useState = React.useState(defaultValue),
9544
9856
  value = _React$useState[0],
@@ -9608,7 +9920,7 @@ var RadioGroup$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(func
9608
9920
  }));
9609
9921
  }));
9610
9922
 
9611
- var _excluded$1C = ["children", "className", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRequired", "labelPosition", "labelText", "name", "onChange", "placeholder", "selectType", "showHelperInvalidText", "showLabel", "showRequiredLabel", "value"];
9923
+ var _excluded$1E = ["children", "className", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRequired", "labelPosition", "labelText", "name", "onChange", "placeholder", "selectType", "showHelperInvalidText", "showLabel", "showRequiredLabel", "value"];
9612
9924
  /**
9613
9925
  * Component that renders Chakra's `Select` component along with an accessible
9614
9926
  * `Label` and optional `HelperErrorText` component.
@@ -9642,7 +9954,7 @@ var Select$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React__default.forwardRef
9642
9954
  showRequiredLabel = _props$showRequiredLa === void 0 ? true : _props$showRequiredLa,
9643
9955
  _props$value = props.value,
9644
9956
  value = _props$value === void 0 ? "" : _props$value,
9645
- rest = _objectWithoutPropertiesLoose(props, _excluded$1C);
9957
+ rest = _objectWithoutPropertiesLoose(props, _excluded$1E);
9646
9958
 
9647
9959
  var _useState = React.useState(0),
9648
9960
  labelWidth = _useState[0],
@@ -9728,7 +10040,7 @@ var Select$1 = /*#__PURE__*/react.chakra( /*#__PURE__*/React__default.forwardRef
9728
10040
  }), children)));
9729
10041
  }));
9730
10042
 
9731
- var _excluded$1D = ["action", "buttonOnClick", "className", "descriptionText", "headingText", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRequired", "labelText", "method", "noBrandButtonType", "onSubmit", "selectProps", "textInputElement", "textInputProps"];
10043
+ var _excluded$1F = ["action", "buttonOnClick", "className", "descriptionText", "headingText", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRequired", "labelText", "method", "noBrandButtonType", "onSubmit", "selectProps", "textInputElement", "textInputProps"];
9732
10044
  /**
9733
10045
  * Renders a wrapper `form` element to be used with `Select` (optional),
9734
10046
  * `Input`, and `Button` components together.
@@ -9757,7 +10069,7 @@ var SearchBar$1 = /*#__PURE__*/react.chakra(function (props) {
9757
10069
  selectProps = props.selectProps,
9758
10070
  textInputElement = props.textInputElement,
9759
10071
  textInputProps = props.textInputProps,
9760
- rest = _objectWithoutPropertiesLoose(props, _excluded$1D);
10072
+ rest = _objectWithoutPropertiesLoose(props, _excluded$1F);
9761
10073
 
9762
10074
  var styles = react.useMultiStyleConfig("SearchBar", {});
9763
10075
  var stateProps = {
@@ -9850,7 +10162,7 @@ var SearchBar$1 = /*#__PURE__*/react.chakra(function (props) {
9850
10162
  }, selectElem, textInputElem, buttonElem));
9851
10163
  });
9852
10164
 
9853
- var _excluded$1E = ["className", "contentSize", "headingSize", "imageAspectRatio", "isBordered", "layout", "showButton", "showContent", "showHeading", "showImage", "width"];
10165
+ var _excluded$1G = ["className", "contentSize", "headingSize", "imageAspectRatio", "isBordered", "layout", "showButton", "showContent", "showHeading", "showImage", "width"];
9854
10166
  /**
9855
10167
  * The `SkeletonLoader` component renders a placeholder to be used while
9856
10168
  * dynamic content is loading.
@@ -9877,7 +10189,7 @@ var SkeletonLoader$1 = /*#__PURE__*/react.chakra(function (props) {
9877
10189
  _props$showImage = props.showImage,
9878
10190
  showImage = _props$showImage === void 0 ? true : _props$showImage,
9879
10191
  width = props.width,
9880
- rest = _objectWithoutPropertiesLoose(props, _excluded$1E);
10192
+ rest = _objectWithoutPropertiesLoose(props, _excluded$1G);
9881
10193
 
9882
10194
  var styles = react.useMultiStyleConfig("SkeletonLoader", {
9883
10195
  isBordered: isBordered,
@@ -9939,7 +10251,7 @@ var SkeletonLoader$1 = /*#__PURE__*/react.chakra(function (props) {
9939
10251
  })))));
9940
10252
  });
9941
10253
 
9942
- var _excluded$1F = ["className", "id", "target"];
10254
+ var _excluded$1H = ["className", "id", "target"];
9943
10255
  /**
9944
10256
  * SkipNavigation is a component that is used to provide a navigational list of
9945
10257
  * links. The first link is used to skip to the main content of the page using
@@ -9952,7 +10264,7 @@ var SkipNavigation$1 = /*#__PURE__*/react.chakra(function (props) {
9952
10264
  id = props.id,
9953
10265
  _props$target = props.target,
9954
10266
  target = _props$target === void 0 ? "#mainContent" : _props$target,
9955
- rest = _objectWithoutPropertiesLoose(props, _excluded$1F);
10267
+ rest = _objectWithoutPropertiesLoose(props, _excluded$1H);
9956
10268
 
9957
10269
  var styles = react.useStyleConfig("SkipNavigation");
9958
10270
  return React.createElement(react.Box, Object.assign({
@@ -9972,7 +10284,7 @@ var SkipNavigation$1 = /*#__PURE__*/react.chakra(function (props) {
9972
10284
  }, "Click to learn about accessibility at the Library"))));
9973
10285
  });
9974
10286
 
9975
- var _excluded$1G = ["className", "defaultValue", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRangeSlider", "isRequired", "labelText", "max", "min", "name", "onChange", "showBoxes", "showHelperInvalidText", "showLabel", "showRequiredLabel", "showValues", "step"];
10287
+ var _excluded$1I = ["className", "defaultValue", "helperText", "id", "invalidText", "isDisabled", "isInvalid", "isRangeSlider", "isRequired", "labelText", "max", "min", "name", "onChange", "showBoxes", "showHelperInvalidText", "showLabel", "showRequiredLabel", "showValues", "step"];
9976
10288
  /**
9977
10289
  * The `Slider` component renders a singular value slider or a range slider
9978
10290
  * with a min and max value. The value(s) can be updated through the slider
@@ -10013,7 +10325,7 @@ var Slider = /*#__PURE__*/react.chakra(function (props) {
10013
10325
  showValues = _props$showValues === void 0 ? true : _props$showValues,
10014
10326
  _props$step = props.step,
10015
10327
  step = _props$step === void 0 ? 1 : _props$step,
10016
- rest = _objectWithoutPropertiesLoose(props, _excluded$1G);
10328
+ rest = _objectWithoutPropertiesLoose(props, _excluded$1I);
10017
10329
 
10018
10330
  if (!id) {
10019
10331
  console.warn("NYPL Reservoir Slider: This component's required `id` prop was not passed.");
@@ -10202,7 +10514,7 @@ var Slider = /*#__PURE__*/react.chakra(function (props) {
10202
10514
  }, max), showBoxes && getTextInput("end")));
10203
10515
  });
10204
10516
 
10205
- var _excluded$1H = ["children", "className", "id", "level"];
10517
+ var _excluded$1J = ["children", "className", "id", "level"];
10206
10518
  /**
10207
10519
  * The `StatusBadge` component is used to display a visual badge for three
10208
10520
  * different status levels.
@@ -10214,7 +10526,7 @@ var StatusBadge$1 = /*#__PURE__*/react.chakra(function (props) {
10214
10526
  id = props.id,
10215
10527
  _props$level = props.level,
10216
10528
  level = _props$level === void 0 ? "low" : _props$level,
10217
- rest = _objectWithoutPropertiesLoose(props, _excluded$1H);
10529
+ rest = _objectWithoutPropertiesLoose(props, _excluded$1J);
10218
10530
 
10219
10531
  var styles = react.useStyleConfig("StatusBadge", {
10220
10532
  variant: level
@@ -10231,7 +10543,7 @@ var StatusBadge$1 = /*#__PURE__*/react.chakra(function (props) {
10231
10543
  }, rest), children);
10232
10544
  });
10233
10545
 
10234
- var _excluded$1I = ["calloutText", "className", "headingText", "id", "imageProps", "bodyContent"];
10546
+ var _excluded$1K = ["calloutText", "className", "headingText", "id", "imageProps", "bodyContent"];
10235
10547
  /**
10236
10548
  * Internal component used in the `StructuredContent` component
10237
10549
  * that renders the DS `Image` component.
@@ -10283,7 +10595,7 @@ var StructuredContent$1 = /*#__PURE__*/react.chakra(function (props) {
10283
10595
  src: ""
10284
10596
  } : _props$imageProps,
10285
10597
  bodyContent = props.bodyContent,
10286
- rest = _objectWithoutPropertiesLoose(props, _excluded$1I);
10598
+ rest = _objectWithoutPropertiesLoose(props, _excluded$1K);
10287
10599
 
10288
10600
  var hasImage = imageProps.src || imageProps.component;
10289
10601
  var hasFigureImage = imageProps.caption || imageProps.credit;
@@ -10384,7 +10696,7 @@ var useCarouselStyles = function useCarouselStyles(slidesCount, slideWidth) {
10384
10696
  };
10385
10697
  };
10386
10698
 
10387
- var _excluded$1J = ["children", "defaultIndex", "id", "onChange", "tabsData", "useHash"];
10699
+ var _excluded$1L = ["children", "defaultIndex", "id", "onChange", "tabsData", "useHash"];
10388
10700
  /**
10389
10701
  * An internal function used to update the hash in the URL.
10390
10702
  * This function is only used when `useHash` is `true`.
@@ -10503,7 +10815,7 @@ var Tabs = /*#__PURE__*/react.chakra(function (props) {
10503
10815
  tabsData = props.tabsData,
10504
10816
  _props$useHash = props.useHash,
10505
10817
  useHash = _props$useHash === void 0 ? false : _props$useHash,
10506
- rest = _objectWithoutPropertiesLoose(props, _excluded$1J);
10818
+ rest = _objectWithoutPropertiesLoose(props, _excluded$1L);
10507
10819
 
10508
10820
  var styles = react.useMultiStyleConfig("Tabs", {}); // Just an estimate of the tab width for the mobile carousel.
10509
10821
 
@@ -10598,7 +10910,7 @@ var Tabs = /*#__PURE__*/react.chakra(function (props) {
10598
10910
  }, React.createElement(react.Box, Object.assign({}, carouselStyle), tabs)), nextButton), panels);
10599
10911
  }); // Tabs is also exported above so the props can display in Storybook.
10600
10912
 
10601
- var _excluded$1K = ["aboveHeader", "breakout", "contentId", "contentPrimary", "contentSidebar", "contentTop", "footer", "header", "sidebar", "renderFooterElement", "renderHeaderElement", "renderSkipNavigation"];
10913
+ var _excluded$1M = ["aboveHeader", "breakout", "contentId", "contentPrimary", "contentSidebar", "contentTop", "footer", "header", "sidebar", "renderFooterElement", "renderHeaderElement", "renderSkipNavigation"];
10602
10914
  /**
10603
10915
  * The main top-level parent component that wraps all template-related
10604
10916
  * components.
@@ -10827,7 +11139,7 @@ var TemplateAppContainer = /*#__PURE__*/react.chakra(function (props) {
10827
11139
  renderHeaderElement = _props$renderHeaderEl === void 0 ? true : _props$renderHeaderEl,
10828
11140
  _props$renderSkipNavi = props.renderSkipNavigation,
10829
11141
  renderSkipNavigation = _props$renderSkipNavi === void 0 ? false : _props$renderSkipNavi,
10830
- rest = _objectWithoutPropertiesLoose(props, _excluded$1K);
11142
+ rest = _objectWithoutPropertiesLoose(props, _excluded$1M);
10831
11143
 
10832
11144
  var aboveHeaderElem = aboveHeader && React.createElement(TemplateAboveHeader, null, aboveHeader);
10833
11145
  var breakoutElem = breakout && React.createElement(TemplateBreakout$1, null, breakout);
@@ -10844,7 +11156,7 @@ var TemplateAppContainer = /*#__PURE__*/react.chakra(function (props) {
10844
11156
  }, footer));
10845
11157
  });
10846
11158
 
10847
- var _excluded$1L = ["defaultChecked", "helperText", "id", "invalidText", "isChecked", "isDisabled", "isInvalid", "isRequired", "labelText", "name", "onChange", "size"];
11159
+ var _excluded$1N = ["defaultChecked", "helperText", "id", "invalidText", "isChecked", "isDisabled", "isInvalid", "isRequired", "labelText", "name", "onChange", "size"];
10848
11160
  var onChangeDefault = function onChangeDefault() {
10849
11161
  return;
10850
11162
  };
@@ -10871,7 +11183,7 @@ var Toggle$2 = /*#__PURE__*/react.chakra( /*#__PURE__*/React.forwardRef(function
10871
11183
  onChange = _props$onChange === void 0 ? onChangeDefault : _props$onChange,
10872
11184
  _props$size = props.size,
10873
11185
  size = _props$size === void 0 ? "default" : _props$size,
10874
- rest = _objectWithoutPropertiesLoose(props, _excluded$1L);
11186
+ rest = _objectWithoutPropertiesLoose(props, _excluded$1N);
10875
11187
 
10876
11188
  var styles = react.useMultiStyleConfig("Toggle", {
10877
11189
  isDisabled: isDisabled,
@@ -11008,7 +11320,7 @@ function useNYPLTheme() {
11008
11320
  };
11009
11321
  }
11010
11322
 
11011
- var _excluded$1M = ["aspectRatio", "className", "descriptionText", "embedCode", "headingText", "helperText", "id", "iframeTitle", "showHelperInvalidText", "videoId", "videoType"];
11323
+ var _excluded$1O = ["aspectRatio", "className", "descriptionText", "embedCode", "headingText", "helperText", "id", "iframeTitle", "showHelperInvalidText", "videoId", "videoType"];
11012
11324
  var VideoPlayer$1 = /*#__PURE__*/react.chakra(function (props) {
11013
11325
  var aspectRatio = props.aspectRatio,
11014
11326
  className = props.className,
@@ -11022,7 +11334,7 @@ var VideoPlayer$1 = /*#__PURE__*/react.chakra(function (props) {
11022
11334
  showHelperInvalidText = _props$showHelperInva === void 0 ? true : _props$showHelperInva,
11023
11335
  videoId = props.videoId,
11024
11336
  videoType = props.videoType,
11025
- rest = _objectWithoutPropertiesLoose(props, _excluded$1M);
11337
+ rest = _objectWithoutPropertiesLoose(props, _excluded$1O);
11026
11338
 
11027
11339
  var iframeTitleFinal = videoType === "vimeo" ? iframeTitle || "Vimeo video player" : iframeTitle || "YouTube video player";
11028
11340
  var videoSrc = videoType === "vimeo" ? "https://player.vimeo.com/video/" + videoId + "?autoplay=0&loop=0" : "https://www.youtube.com/embed/" + videoId + "?disablekb=1&autoplay=0&fs=1&modestbranding=0";
@@ -11091,7 +11403,7 @@ var VideoPlayer$1 = /*#__PURE__*/react.chakra(function (props) {
11091
11403
  }, embedElement)));
11092
11404
  });
11093
11405
 
11094
- var _excluded$1N = ["className", "columnHeaders", "columnHeadersBackgroundColor", "columnHeadersTextColor", "id", "showRowDividers", "tableData", "titleText", "useRowHeaders"];
11406
+ var _excluded$1P = ["className", "columnHeaders", "columnHeadersBackgroundColor", "columnHeadersTextColor", "id", "showRowDividers", "tableData", "titleText", "useRowHeaders"];
11095
11407
  /**
11096
11408
  * Basic `Table` component used to organize and display tabular data in
11097
11409
  * rows and columns.
@@ -11110,24 +11422,28 @@ var Table = /*#__PURE__*/react.chakra(function (props) {
11110
11422
  titleText = props.titleText,
11111
11423
  _props$useRowHeaders = props.useRowHeaders,
11112
11424
  useRowHeaders = _props$useRowHeaders === void 0 ? false : _props$useRowHeaders,
11113
- rest = _objectWithoutPropertiesLoose(props, _excluded$1N);
11425
+ rest = _objectWithoutPropertiesLoose(props, _excluded$1P);
11114
11426
 
11115
11427
  var customColors = {};
11116
11428
  columnHeadersBackgroundColor && (customColors["backgroundColor"] = columnHeadersBackgroundColor);
11117
11429
  columnHeadersTextColor && (customColors["color"] = columnHeadersTextColor);
11118
11430
  var styles = react.useMultiStyleConfig("CustomTable", {
11431
+ columnHeadersBackgroundColor: columnHeadersBackgroundColor,
11119
11432
  columnHeadersTextColor: columnHeadersTextColor,
11120
11433
  showRowDividers: showRowDividers,
11121
11434
  useRowHeaders: useRowHeaders
11122
- });
11435
+ }); // Based on --nypl-breakpoint-medium
11436
+
11437
+ var breakpointMedium = 600;
11438
+ var windowDimensions = useWindowSize();
11123
11439
  var tableCaption = titleText && React.createElement(react.TableCaption, null, titleText);
11124
- var columnHeadersElems = (columnHeaders == null ? void 0 : columnHeaders.length) > 0 && React.createElement(react.Thead, null, React.createElement(react.Tr, null, columnHeaders.map(function (child, key) {
11440
+ var columnHeadersElems = columnHeaders.length > 0 ? React.createElement(react.Thead, null, React.createElement(react.Tr, null, columnHeaders.map(function (child, key) {
11125
11441
  return React.createElement(react.Th, {
11126
11442
  key: key,
11127
11443
  scope: "col",
11128
11444
  sx: customColors
11129
11445
  }, child);
11130
- })));
11446
+ }))) : console.warn("NYPL Reservoir Table: Column headers have not been set. For improved accessibility, " + "column headers are required.");
11131
11447
  /**
11132
11448
  * This renders a normal `tbody` DOM element structure if the `tableData`
11133
11449
  * passed is a two-dimensional array. This is to render the appropriate
@@ -11147,6 +11463,10 @@ var Table = /*#__PURE__*/react.chakra(function (props) {
11147
11463
  }
11148
11464
  }
11149
11465
 
11466
+ var cellContent = function cellContent(key, column) {
11467
+ return windowDimensions.width <= breakpointMedium ? React.createElement(React.Fragment, null, React.createElement("span", null, columnHeaders[key]), React.createElement("span", null, column)) : column;
11468
+ };
11469
+
11150
11470
  return React.createElement(react.Tbody, null, tableData.map(function (row, index) {
11151
11471
  return React.createElement(react.Tr, {
11152
11472
  key: index
@@ -11154,15 +11474,15 @@ var Table = /*#__PURE__*/react.chakra(function (props) {
11154
11474
  return key === 0 && useRowHeaders ? React.createElement(react.Th, {
11155
11475
  scope: "row",
11156
11476
  key: key
11157
- }, column) : React.createElement(react.Td, {
11477
+ }, cellContent(key, column)) : React.createElement(react.Td, {
11158
11478
  key: key
11159
- }, column);
11479
+ }, cellContent(key, column));
11160
11480
  }));
11161
11481
  }));
11162
11482
  };
11163
11483
 
11164
11484
  for (var j = 0; j < tableData.length; j++) {
11165
- if (columnHeaders.length !== tableData[j].length) {
11485
+ if (columnHeaders.length && columnHeaders.length !== tableData[j].length) {
11166
11486
  console.warn("NYPL Reservoir Table: The number of column headers in the `columnHeaders` prop is not equal " + "to the number of columns in the data table. " + "The `Table` component may not render properly.");
11167
11487
  break;
11168
11488
  }