@nypl/design-system-react-components 0.25.11 → 0.25.12

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.
Files changed (96) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/README.md +4 -16
  3. package/dist/components/Breadcrumbs/BreadcrumbsTypes.d.ts +1 -0
  4. package/dist/components/Icons/IconTypes.d.ts +9 -7
  5. package/dist/components/Logo/LogoSvgs.d.ts +6 -0
  6. package/dist/components/Logo/LogoTypes.d.ts +6 -0
  7. package/dist/components/Pagination/Pagination.d.ts +6 -2
  8. package/dist/components/SearchBar/SearchBar.d.ts +1 -1
  9. package/dist/components/Template/Template.d.ts +1 -1
  10. package/dist/design-system-react-components.cjs.development.js +947 -438
  11. package/dist/design-system-react-components.cjs.development.js.map +1 -1
  12. package/dist/design-system-react-components.cjs.production.min.js +1 -1
  13. package/dist/design-system-react-components.cjs.production.min.js.map +1 -1
  14. package/dist/design-system-react-components.esm.js +948 -439
  15. package/dist/design-system-react-components.esm.js.map +1 -1
  16. package/dist/styles.css +1 -1
  17. package/dist/theme/components/breadcrumb.d.ts +3 -0
  18. package/dist/theme/components/checkbox.d.ts +0 -2
  19. package/dist/theme/components/fieldset.d.ts +2 -0
  20. package/dist/theme/components/global.d.ts +15 -14
  21. package/dist/theme/components/globalMixins.d.ts +8 -8
  22. package/dist/theme/components/list.d.ts +6 -0
  23. package/dist/theme/components/notification.d.ts +3 -0
  24. package/dist/theme/components/radio.d.ts +3 -2
  25. package/dist/theme/components/select.d.ts +2 -9
  26. package/dist/theme/components/slider.d.ts +8 -4
  27. package/dist/theme/components/textInput.d.ts +8 -12
  28. package/dist/theme/components/toggle.d.ts +6 -2
  29. package/dist/theme/foundations/global.d.ts +31 -3
  30. package/dist/utils/utils.d.ts +10 -0
  31. package/package.json +1 -1
  32. package/src/components/Breadcrumbs/Breadcrumbs.stories.mdx +18 -1
  33. package/src/components/Breadcrumbs/Breadcrumbs.test.tsx +10 -0
  34. package/src/components/Breadcrumbs/BreadcrumbsTypes.tsx +1 -0
  35. package/src/components/Breadcrumbs/__snapshots__/Breadcrumbs.test.tsx.snap +99 -0
  36. package/src/components/Checkbox/Checkbox.stories.mdx +1 -1
  37. package/src/components/Checkbox/Checkbox.tsx +1 -0
  38. package/src/components/Checkbox/__snapshots__/Checkbox.test.tsx.snap +6 -6
  39. package/src/components/CheckboxGroup/__snapshots__/CheckboxGroup.test.tsx.snap +18 -18
  40. package/src/components/Fieldset/Fieldset.stories.mdx +1 -1
  41. package/src/components/Icons/Icon.stories.mdx +1 -1
  42. package/src/components/Icons/IconTypes.tsx +8 -6
  43. package/src/components/List/List.stories.mdx +1 -1
  44. package/src/components/Logo/Logo.stories.mdx +1 -1
  45. package/src/components/Logo/LogoSvgs.tsx +12 -0
  46. package/src/components/Logo/LogoTypes.tsx +6 -0
  47. package/src/components/Notification/Notification.stories.mdx +6 -1
  48. package/src/components/Notification/Notification.test.tsx +20 -9
  49. package/src/components/Notification/Notification.tsx +6 -4
  50. package/src/components/Notification/__snapshots__/Notification.test.tsx.snap +103 -8
  51. package/src/components/Pagination/Pagination.stories.mdx +54 -12
  52. package/src/components/Pagination/Pagination.test.tsx +63 -5
  53. package/src/components/Pagination/Pagination.tsx +45 -23
  54. package/src/components/Pagination/__snapshots__/Pagination.test.tsx.snap +3 -3
  55. package/src/components/Radio/Radio.stories.mdx +1 -1
  56. package/src/components/Radio/Radio.tsx +1 -0
  57. package/src/components/Radio/__snapshots__/Radio.test.tsx.snap +5 -5
  58. package/src/components/RadioGroup/__snapshots__/RadioGroup.test.tsx.snap +18 -18
  59. package/src/components/SearchBar/SearchBar.Test.tsx +20 -2
  60. package/src/components/SearchBar/SearchBar.stories.mdx +4 -4
  61. package/src/components/SearchBar/SearchBar.tsx +3 -2
  62. package/src/components/Select/Select.stories.mdx +1 -1
  63. package/src/components/Slider/Slider.stories.mdx +1 -1
  64. package/src/components/Slider/Slider.tsx +4 -1
  65. package/src/components/StyleGuide/Bidirectionality.stories.mdx +4 -4
  66. package/src/components/StyleGuide/Colors.stories.mdx +33 -18
  67. package/src/components/Template/Template.stories.mdx +1 -1
  68. package/src/components/Template/Template.tsx +2 -6
  69. package/src/components/Template/__snapshots__/Template.test.tsx.snap +2 -2
  70. package/src/components/Toggle/Toggle.stories.mdx +1 -1
  71. package/src/components/Toggle/Toggle.tsx +2 -1
  72. package/src/components/Toggle/__snapshots__/Toggle.test.tsx.snap +4 -4
  73. package/src/docs/Chakra.stories.mdx +1 -1
  74. package/src/styles/base/_place-holder.scss +2 -0
  75. package/src/styles.scss +0 -2
  76. package/src/theme/components/breadcrumb.ts +4 -0
  77. package/src/theme/components/checkbox.ts +3 -7
  78. package/src/theme/components/fieldset.ts +2 -0
  79. package/src/theme/components/global.ts +18 -15
  80. package/src/theme/components/globalMixins.ts +8 -8
  81. package/src/theme/components/list.ts +4 -0
  82. package/src/theme/components/notification.ts +3 -0
  83. package/src/theme/components/radio.ts +3 -6
  84. package/src/theme/components/select.ts +3 -3
  85. package/src/theme/components/slider.ts +12 -9
  86. package/src/theme/components/textInput.ts +2 -2
  87. package/src/theme/components/toggle.ts +41 -37
  88. package/src/theme/foundations/colors.ts +19 -12
  89. package/src/theme/foundations/global.ts +17 -5
  90. package/src/theme/foundations/typography.ts +1 -1
  91. package/src/utils/componentCategories.ts +1 -1
  92. package/src/utils/utils.ts +28 -0
  93. package/dist/components/Pagination/Pagination.stories.d.ts +0 -13
  94. package/src/components/Pagination/Pagination.stories.tsx +0 -54
  95. package/src/styles/base/_03-base.scss +0 -25
  96. package/src/styles/base/_04-focus.scss +0 -22
@@ -1,6 +1,6 @@
1
1
  import { useStyleConfig, Icon as Icon$2, Box, Accordion as Accordion$2, AccordionPanel, AccordionItem, AccordionButton, Breadcrumb as Breadcrumb$1, BreadcrumbItem, BreadcrumbLink, Button as Button$2, Heading as Heading$2, useMultiStyleConfig, LinkBox, LinkOverlay, Checkbox as Checkbox$2, CheckboxGroup as CheckboxGroup$2, Stack, SimpleGrid as SimpleGrid$1, Input, Textarea, extendTheme, ChakraProvider, CircularProgress, CircularProgressLabel, Progress, Radio as Radio$2, useRadioGroup, Text as Text$2, Select as Select$2, Skeleton as Skeleton$1, RangeSlider, RangeSliderTrack, RangeSliderFilledTrack, RangeSliderThumb, Slider as Slider$1, SliderTrack, SliderFilledTrack, SliderThumb, Tabs as Tabs$1, Tab, TabPanel, TabList, TabPanels, Switch as Switch$1, useTheme, TableCaption, Thead, Tr, Th, Table as Table$1, Tbody, Td } from '@chakra-ui/react';
2
2
  export { Box, ButtonGroup, Center, Circle, Flex, Grid, GridItem, HStack, Spacer, Square, Stack, Tab, TabList, TabPanel, TabPanels, VStack } from '@chakra-ui/react';
3
- import React__default, { createElement, cloneElement, Fragment, Children, forwardRef, useState, Component, useEffect } from 'react';
3
+ import React__default, { createElement, cloneElement, Fragment, Children, forwardRef, useState, Component, useRef, useEffect } from 'react';
4
4
  import { v4 } from 'uuid';
5
5
  import ReactDatePicker from 'react-datepicker';
6
6
  import { createBreakpoints } from '@chakra-ui/theme-tools';
@@ -91,19 +91,21 @@ var IconColors;
91
91
  IconColors["UiWhite"] = "ui.white";
92
92
  IconColors["BrandPrimary"] = "brand.primary";
93
93
  IconColors["BrandSecondary"] = "brand.secondary";
94
- IconColors["SectionWhatsOnPrimary"] = "section.whats-on.primary";
95
- IconColors["SectionWhatsOnSecondary"] = "section.whats-on.secondary";
94
+ IconColors["SectionBlogsPrimary"] = "section.blogs.primary";
95
+ IconColors["SectionBlogsSecondary"] = "section.blogs.secondary";
96
96
  IconColors["SectionBooksAndMorePrimary"] = "section.books-and-more.primary";
97
97
  IconColors["SectionBooksAndMoreSecondary"] = "section.books-and-more.secondary";
98
- IconColors["SectionResearchPrimary"] = "section.research.primary";
99
- IconColors["SectionResearchSecondary"] = "section.research.secondary";
98
+ IconColors["SectionEducationPrimary"] = "section.education.primary";
99
+ IconColors["SectionEducationSecondary"] = "section.education.secondary";
100
100
  IconColors["SectionLocationsPrimary"] = "section.locations.primary";
101
101
  IconColors["SectionLocationsSecondary"] = "section.locations.secondary";
102
- IconColors["SectionBlogsPrimary"] = "section.blogs.primary";
103
- IconColors["SectionBlogsSecondary"] = "section.blogs.secondary";
102
+ IconColors["SectionResearchPrimary"] = "section.research.primary";
103
+ IconColors["SectionResearchSecondary"] = "section.research.secondary";
104
104
  IconColors["SectionResearchLibraryLpa"] = "section.research-library.lpa";
105
105
  IconColors["SectionResearchLibrarySchomburg"] = "section.research-library.schomburg";
106
106
  IconColors["SectionResearchLibrarySchwartzman"] = "section.research-library.schwartzman";
107
+ IconColors["SectionWhatsOnPrimary"] = "section.whats-on.primary";
108
+ IconColors["SectionWhatsOnSecondary"] = "section.whats-on.secondary";
107
109
  })(IconColors || (IconColors = {}));
108
110
 
109
111
  var IconSizes;
@@ -1250,6 +1252,7 @@ var ColorVariants;
1250
1252
  (function (ColorVariants) {
1251
1253
  ColorVariants["Blogs"] = "blogs";
1252
1254
  ColorVariants["BooksAndMore"] = "booksAndMore";
1255
+ ColorVariants["Education"] = "education";
1253
1256
  ColorVariants["Locations"] = "locations";
1254
1257
  ColorVariants["Research"] = "research";
1255
1258
  ColorVariants["WhatsOn"] = "whatsOn";
@@ -2051,6 +2054,7 @@ var Checkbox = /*#__PURE__*/forwardRef(function (props, ref) {
2051
2054
  defaultIsChecked: false
2052
2055
  }, {
2053
2056
  icon: icon,
2057
+ alignItems: "flex-start",
2054
2058
  __css: styles
2055
2059
  }, ariaAttributes), showLabel && labelText), footnote && showHelperInvalidText && createElement(Box, {
2056
2060
  __css: styles.helper
@@ -2392,6 +2396,14 @@ function Form(props) {
2392
2396
  * These objects are also SCSS mixins but are now JS objects in the
2393
2397
  * context of css-in-js and the custom NYPL-theme.
2394
2398
  */
2399
+ var screenreaderOnly = {
2400
+ clip: "rect(1px, 1px, 1px, 1px)",
2401
+ height: "1px",
2402
+ overflow: "hidden",
2403
+ position: "absolute !important",
2404
+ width: "1px",
2405
+ wordWrap: "normal"
2406
+ };
2395
2407
  var wrapperStyles = {
2396
2408
  marginY: "0",
2397
2409
  marginX: "auto",
@@ -2402,26 +2414,24 @@ var wrapperStyles = {
2402
2414
  paddingLeft: "0",
2403
2415
  width: "100%"
2404
2416
  };
2405
- var screenreaderOnly = {
2406
- clip: "rect(1px, 1px, 1px, 1px)",
2407
- height: "1px",
2408
- overflow: "hidden",
2409
- position: "absolute !important",
2410
- width: "1px",
2411
- wordWrap: "normal"
2412
- };
2413
2417
 
2414
2418
  /** Reusable component styles. */
2415
2419
  // Used in `Select` and `TextInput`.
2416
2420
 
2417
- var activeFocus = {
2418
- border: "1px solid",
2419
- borderColor: "ui.focus",
2420
- zIndex: "9999",
2421
- outline: "1px solid",
2422
- outlineColor: "ui.focus"
2421
+ var activeFocus = function activeFocus(darkMode) {
2422
+ if (darkMode === void 0) {
2423
+ darkMode = false;
2424
+ }
2425
+
2426
+ return {
2427
+ outline: "2px solid",
2428
+ outlineOffset: "2px",
2429
+ outlineColor: darkMode ? "ui.white" : "ui.focus",
2430
+ zIndex: "9999"
2431
+ };
2423
2432
  }; // Used in `Select` and `TextInput`.
2424
2433
 
2434
+
2425
2435
  var helperTextMargin = {
2426
2436
  marginTop: "xxs",
2427
2437
  marginBottom: "0"
@@ -2429,11 +2439,9 @@ var helperTextMargin = {
2429
2439
 
2430
2440
  var checkboxRadioLabelStyles = {
2431
2441
  userSelect: "none",
2432
- fontSize: "text.default",
2433
2442
  fontWeight: "text.default",
2434
2443
  marginBottom: "0",
2435
2444
  marginLeft: "xs",
2436
- verticalAlign: "middle",
2437
2445
  _disabled: {
2438
2446
  color: "ui.gray.dark",
2439
2447
  opacity: 1,
@@ -2455,8 +2463,16 @@ var checkboxRadioHelperStyle = /*#__PURE__*/_extends({}, helperTextMargin, {
2455
2463
  _disabled: {
2456
2464
  fontStyle: "italic"
2457
2465
  }
2458
- }); // Used in `Label` and `Fieldset`.
2466
+ });
2459
2467
 
2468
+ var checkboxRadioGroupStyles = {
2469
+ helper: {
2470
+ marginTop: "s"
2471
+ },
2472
+ stack: {
2473
+ width: "fit-content"
2474
+ }
2475
+ }; // Used in `Label` and `Fieldset`.
2460
2476
 
2461
2477
  var labelLegendText = {
2462
2478
  alignItems: "baseline",
@@ -2471,14 +2487,11 @@ var labelLegendText = {
2471
2487
  fontSize: "helper.default",
2472
2488
  fontWeight: "helper.default"
2473
2489
  }
2474
- };
2475
- var checkboxRadioGroupStyles = {
2476
- helper: {
2477
- marginTop: "s"
2478
- },
2479
- stack: {
2480
- width: "fit-content"
2481
- }
2490
+ }; // Used for p, ul, and ol
2491
+
2492
+ var textMargin = {
2493
+ margin: "0",
2494
+ marginBottom: "s"
2482
2495
  };
2483
2496
 
2484
2497
  // HTML Input types as defined by MDN: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input
@@ -2974,10 +2987,9 @@ var DatePicker = /*#__PURE__*/React__default.forwardRef(function (props, ref) {
2974
2987
 
2975
2988
  /**
2976
2989
  * These rules affect all the global elements on the `body` element of the
2977
- * page when the `DSProvider` component is used. This means that even if the
2978
- * `nypl-ds` CSS class name is not used in a consuming application, these
2979
- * rules will still take effect.
2990
+ * page when the `DSProvider` component is used.
2980
2991
  */
2992
+
2981
2993
  var global = {
2982
2994
  // styles for the `body` element
2983
2995
  body: {
@@ -2997,8 +3009,19 @@ var global = {
2997
3009
  svg: {
2998
3010
  display: "inline"
2999
3011
  },
3000
- p: {
3001
- margin: "0 0 var(--nypl-space-s"
3012
+ "button, select, input, textarea": {
3013
+ "&:not([disabled])": {
3014
+ _focus: /*#__PURE__*/activeFocus()
3015
+ }
3016
+ },
3017
+ "iframe, [href], [tabindex], [contentEditable='true']": {
3018
+ _focus: /*#__PURE__*/activeFocus()
3019
+ },
3020
+ p: textMargin,
3021
+ ul: textMargin,
3022
+ ol: textMargin,
3023
+ "*, *::before, &::after": {
3024
+ boxSizing: "inherit"
3002
3025
  }
3003
3026
  };
3004
3027
 
@@ -3105,30 +3128,31 @@ var colors = {
3105
3128
 
3106
3129
  /** Brand fills for sections on NYPL pages. */
3107
3130
  section: {
3108
- /** What's On is used for Exhibitions & Events. */
3109
- "whats-on": {
3110
- primary: "#242424",
3111
- secondary: "#000000"
3131
+ /** Blogs is used for the Blogs section. */
3132
+ blogs: {
3133
+ primary: grayLightCool,
3134
+ secondary: grayMedium
3112
3135
  },
3113
3136
 
3114
3137
  /** Books and More is used for the Catalog, Staff Picks, Recommendations,
3115
3138
  * New Arrivals, and E-Book Central. */
3116
3139
  "books-and-more": brandObj,
3117
3140
 
3118
- /** Research is used for the Research Catalog and SCC. */
3119
- research: {
3120
- primary: "#00838a",
3121
- secondary: "#006166"
3141
+ /** Education is used for the Education section front and associated
3142
+ * sub-sections. */
3143
+ education: {
3144
+ primary: "#1D62E6",
3145
+ secondary: "#2540A4"
3122
3146
  },
3123
3147
 
3124
3148
  /** Locations is used for Location Finder and all branch pages with
3125
3149
  * the exceptions of some research libraries. */
3126
3150
  locations: brandObj,
3127
3151
 
3128
- /** Blogs is used for the Blogs section. */
3129
- blogs: {
3130
- primary: grayLightCool,
3131
- secondary: grayMedium
3152
+ /** Research is used for the Research Catalog and SCC. */
3153
+ research: {
3154
+ primary: "#00838a",
3155
+ secondary: "#006166"
3132
3156
  },
3133
3157
 
3134
3158
  /** Research libraries with specific brand colors to adhere to. */
@@ -3136,6 +3160,12 @@ var colors = {
3136
3160
  lpa: "#005d53",
3137
3161
  schomburg: "#a03e31",
3138
3162
  schwartzman: brandSecondary
3163
+ },
3164
+
3165
+ /** What's On is used for Exhibitions & Events. */
3166
+ "whats-on": {
3167
+ primary: "#242424",
3168
+ secondary: "#000000"
3139
3169
  }
3140
3170
  },
3141
3171
 
@@ -3262,7 +3292,7 @@ var typography = {
3262
3292
  // Values from "src/styles/02-typography/_typeface.css"
3263
3293
  fonts: {
3264
3294
  body: "-apple-system, BlinkMacSystemFont, system-ui, sans-serif",
3265
- heading: "-apple-system, BlinkMacSystemFont, system-ui, sans-seri"
3295
+ heading: "-apple-system, BlinkMacSystemFont, system-ui, sans-serif"
3266
3296
  },
3267
3297
  // Values from "src/styles/02-typography/_type-scale.css"
3268
3298
  fontSizes: {
@@ -3379,6 +3409,9 @@ var blogs = {
3379
3409
  var booksAndMore = {
3380
3410
  bg: "section.books-and-more.secondary"
3381
3411
  };
3412
+ var education = {
3413
+ bg: "section.education.secondary"
3414
+ };
3382
3415
  var locations = {
3383
3416
  bg: "section.locations.primary"
3384
3417
  };
@@ -3466,6 +3499,7 @@ var Breadcrumb = {
3466
3499
  variants: {
3467
3500
  blogs: blogs,
3468
3501
  booksAndMore: booksAndMore,
3502
+ education: education,
3469
3503
  locations: locations,
3470
3504
  research: research,
3471
3505
  whatsOn: whatsOn
@@ -3864,11 +3898,9 @@ var baseStyleControl = {
3864
3898
  }
3865
3899
  }; // Style object for the Checkbox's label
3866
3900
 
3867
- var baseStyleLabel = /*#__PURE__*/_extends({}, checkboxRadioLabelStyles); // Style object for the Checkbox's helper text
3868
-
3869
-
3870
- var baseStyleHelper = /*#__PURE__*/_extends({}, checkboxRadioHelperStyle);
3901
+ var baseStyleLabel = checkboxRadioLabelStyles; // Style object for the Checkbox's helper text
3871
3902
 
3903
+ var baseStyleHelper = checkboxRadioHelperStyle;
3872
3904
  var baseStyle$1 = {
3873
3905
  icon: baseStyleIcon,
3874
3906
  control: baseStyleControl,
@@ -3884,7 +3916,7 @@ var sizes = {
3884
3916
  }),
3885
3917
  // Controls the font-size of the label only.
3886
3918
  label: {
3887
- fontSize: "text.default"
3919
+ fontSize: "label.default"
3888
3920
  }
3889
3921
  }
3890
3922
  };
@@ -4036,15 +4068,15 @@ var select = {
4036
4068
  backgroundColor: "ui.white",
4037
4069
  borderRadius: "sm",
4038
4070
  borderColor: "ui.gray.medium",
4071
+ fontSize: "text.caption",
4039
4072
  paddingTop: "xs",
4040
4073
  paddingRight: "xl",
4041
4074
  paddingBottom: "xs",
4042
4075
  paddingLeft: "s",
4043
4076
  _hover: {
4044
- borderColor: "ui.gray.medium"
4077
+ borderColor: "ui.gray.dark"
4045
4078
  },
4046
- _active: activeFocus,
4047
- _focus: activeFocus,
4079
+ _active: /*#__PURE__*/activeFocus(),
4048
4080
  _disabled: {
4049
4081
  color: "ui.gray.xdark",
4050
4082
  bg: "ui.gray.xx-light-cool",
@@ -4108,6 +4140,8 @@ var Fieldset$1 = {
4108
4140
  var isLegendHidden = _ref.isLegendHidden;
4109
4141
  var screenreaderStyles = isLegendHidden ? screenreaderOnly : {};
4110
4142
  return {
4143
+ border: 0,
4144
+ padding: 0,
4111
4145
  legend: _extends({}, labelLegendText, screenreaderStyles),
4112
4146
  helper: _extends({}, labelLegendText.helper)
4113
4147
  };
@@ -4632,7 +4666,7 @@ var List = {
4632
4666
  variants: {
4633
4667
  ul: function ul(_ref2) {
4634
4668
  var noStyling = _ref2.noStyling;
4635
- return {
4669
+ return _extends({}, textMargin, {
4636
4670
  listStyle: "none",
4637
4671
  li: {
4638
4672
  _before: {
@@ -4648,8 +4682,9 @@ var List = {
4648
4682
  width: "1rem"
4649
4683
  }
4650
4684
  }
4651
- };
4685
+ });
4652
4686
  },
4687
+ ol: textMargin,
4653
4688
  dl: {
4654
4689
  borderBottom: "1px solid",
4655
4690
  borderColor: "ui.gray.light-cool",
@@ -4797,6 +4832,9 @@ var Notification = {
4797
4832
  position: "absolute",
4798
4833
  right: "0",
4799
4834
  top: "0",
4835
+ svg: {
4836
+ marginTop: "0"
4837
+ },
4800
4838
  _hover: {
4801
4839
  bg: "inherit"
4802
4840
  }
@@ -5008,11 +5046,9 @@ var baseStyleControl$1 = {
5008
5046
  }
5009
5047
  }; // Style object for the Radio's label
5010
5048
 
5011
- var baseStyleLabel$1 = /*#__PURE__*/_extends({}, checkboxRadioLabelStyles); // Style object for the Radio's helper text
5012
-
5013
-
5014
- var baseStyleHelper$1 = /*#__PURE__*/_extends({}, checkboxRadioHelperStyle);
5049
+ var baseStyleLabel$1 = checkboxRadioLabelStyles; // Style object for the Radio's helper text
5015
5050
 
5051
+ var baseStyleHelper$1 = checkboxRadioHelperStyle;
5016
5052
  var baseStyle$2 = {
5017
5053
  // Chakra-inserted elements in the Chakra Radio component
5018
5054
  control: baseStyleControl$1,
@@ -5023,7 +5059,10 @@ var baseStyle$2 = {
5023
5059
 
5024
5060
  var sizes$1 = {
5025
5061
  md: {
5026
- control: /*#__PURE__*/_extends({}, checkboxRadioControlSize)
5062
+ control: /*#__PURE__*/_extends({}, checkboxRadioControlSize),
5063
+ label: {
5064
+ fontSize: "label.default"
5065
+ }
5027
5066
  }
5028
5067
  };
5029
5068
  var Radio = {
@@ -5195,15 +5234,15 @@ var staticValues = {
5195
5234
  marginTop: "xs",
5196
5235
  marginBottom: "xs",
5197
5236
  marginRight: "s",
5198
- marginLeft: "s"
5237
+ marginLeft: "0"
5199
5238
  };
5200
5239
  var CustomSlider = {
5201
- parts: ["container", "helper", "leftValue", "rightValue", "textInput", "filledTrack", "track", "thumb"],
5240
+ parts: ["container", "helper", "leftValue", "rightValue", "textInput", "sliderContainer", "filledTrack", "track", "thumb"],
5202
5241
  baseStyle: function baseStyle(_ref) {
5203
5242
  var isDisabled = _ref.isDisabled,
5204
5243
  isInvalid = _ref.isInvalid,
5205
- isRangeSlider = _ref.isRangeSlider,
5206
- showBoxes = _ref.showBoxes;
5244
+ showBoxes = _ref.showBoxes,
5245
+ showValues = _ref.showValues;
5207
5246
  var baseColor = "ui.link.primary";
5208
5247
 
5209
5248
  if (isInvalid) {
@@ -5220,13 +5259,9 @@ var CustomSlider = {
5220
5259
  helper: {
5221
5260
  marginTop: "xs"
5222
5261
  },
5223
- leftValue: _extends({}, staticValues, {
5224
- // If the text input boxes are shown, then there already is a
5225
- // margin, so we can set this static value to "0". But for the
5226
- // single Slider, we *do* need the margin set.
5227
- marginLeft: showBoxes && isRangeSlider ? "0" : "s"
5228
- }),
5262
+ leftValue: staticValues,
5229
5263
  rightValue: _extends({}, staticValues, {
5264
+ marginLeft: "s",
5230
5265
  // If the text input boxes are shown, then there already is
5231
5266
  // a margin, so we can set this static value to "0".
5232
5267
  marginRight: showBoxes ? "0" : "s"
@@ -5237,6 +5272,13 @@ var CustomSlider = {
5237
5272
  minWidth: "65px",
5238
5273
  color: isInvalid ? "ui.error.primary" : "ui.black"
5239
5274
  },
5275
+ // This is added to the container so that the slider thumbs don't
5276
+ // overflow past the container when the value boxes or min/max values
5277
+ // are not shown.
5278
+ sliderContainer: {
5279
+ marginLeft: !showValues ? "xs" : null,
5280
+ marginRight: !showBoxes && !showValues ? "xs" : null
5281
+ },
5240
5282
  // Filled track doesn't have a _disabled or _invalid state...
5241
5283
  // so we manually do it through the props.
5242
5284
  filledTrack: {
@@ -5702,8 +5744,8 @@ var input = {
5702
5744
  color: "ui.gray.xdark",
5703
5745
  opacity: "1"
5704
5746
  },
5705
- _active: activeFocus,
5706
- _focus: activeFocus,
5747
+ _active: /*#__PURE__*/activeFocus(),
5748
+ _focus: /*#__PURE__*/activeFocus(),
5707
5749
  _placeholder: {
5708
5750
  color: "ui.gray.dark",
5709
5751
  fontStyle: "italic",
@@ -5751,8 +5793,8 @@ var TextInput$1 = {
5751
5793
 
5752
5794
  var baseStyle$4 = {
5753
5795
  label: {
5796
+ alignItems: "start",
5754
5797
  display: "flex",
5755
- alignItems: "center",
5756
5798
  width: "fit-content"
5757
5799
  },
5758
5800
  helper: /*#__PURE__*/_extends({}, helperTextMargin, {
@@ -5760,50 +5802,55 @@ var baseStyle$4 = {
5760
5802
  })
5761
5803
  };
5762
5804
  var Switch = {
5763
- baseStyle: {
5764
- opacity: 0.4,
5765
- track: {
5766
- border: "1px solid",
5767
- borderColor: "ui.gray.medium",
5768
- p: "4px",
5769
- _checked: {
5770
- bg: "ui.link.primary",
5771
- borderColor: "ui.link.primary",
5772
- opacity: 1
5773
- },
5774
- _invalid: {
5775
- bg: "inherit",
5776
- borderColor: "ui.error.primary",
5777
- "> span": {
5778
- bg: "ui.error.primary"
5779
- }
5780
- },
5781
- _disabled: {
5782
- bg: "ui.gray.medium",
5805
+ baseStyle: function baseStyle(_ref) {
5806
+ var size = _ref.size;
5807
+ return {
5808
+ alignItems: "start",
5809
+ opacity: 0.4,
5810
+ track: {
5811
+ border: "1px solid",
5783
5812
  borderColor: "ui.gray.medium",
5813
+ p: "4px",
5784
5814
  _checked: {
5785
- opacity: 0.4
5815
+ bg: "ui.link.primary",
5816
+ borderColor: "ui.link.primary",
5817
+ opacity: 1
5818
+ },
5819
+ _invalid: {
5820
+ bg: "inherit",
5821
+ borderColor: "ui.error.primary",
5822
+ "> span": {
5823
+ bg: "ui.error.primary"
5824
+ }
5825
+ },
5826
+ _disabled: {
5827
+ bg: "ui.gray.medium",
5828
+ borderColor: "ui.gray.medium",
5829
+ _checked: {
5830
+ opacity: 0.4
5831
+ }
5832
+ },
5833
+ _focus: {
5834
+ outline: "2px solid",
5835
+ outlineColor: "ui.focus",
5836
+ outlineOffset: "2px",
5837
+ zIndex: "9999"
5786
5838
  }
5787
5839
  },
5788
- _focus: {
5789
- outline: "2px solid",
5790
- outlineColor: "ui.focus",
5791
- outlineOffset: "2px",
5792
- zIndex: "9999"
5793
- }
5794
- },
5795
- label: {
5796
- fontSize: "label.default",
5797
- marginLeft: "xs",
5798
- _disabled: {
5799
- fontStyle: "italic"
5800
- }
5801
- },
5802
- thumb: {
5803
- _disabled: {
5804
- bg: "ui.error.primary"
5840
+ label: {
5841
+ fontSize: "label.default",
5842
+ marginLeft: "xs",
5843
+ marginTop: size === "lg" ? "6px" : null,
5844
+ _disabled: {
5845
+ fontStyle: "italic"
5846
+ }
5847
+ },
5848
+ thumb: {
5849
+ _disabled: {
5850
+ bg: "ui.error.primary"
5851
+ }
5805
5852
  }
5806
- }
5853
+ };
5807
5854
  },
5808
5855
  defaultProps: {
5809
5856
  colorScheme: "white"
@@ -6266,6 +6313,8 @@ var LogoNames;
6266
6313
  LogoNames["BrooklynPublicLibraryWhite"] = "logo_bpl_white";
6267
6314
  LogoNames["CleverColor"] = "logo_clever_color";
6268
6315
  LogoNames["CleverWhite"] = "logo_clever_white";
6316
+ LogoNames["FirstBookColor"] = "logo_firstbook_color";
6317
+ LogoNames["FirstBookColorNegative"] = "logo_firstbook_color_negative";
6269
6318
  LogoNames["LPAColor"] = "logo_lpa_color";
6270
6319
  LogoNames["LPABlack"] = "logo_lpa_black";
6271
6320
  LogoNames["LPAWhite"] = "logo_lpa_white";
@@ -6275,6 +6324,10 @@ var LogoNames;
6275
6324
  LogoNames["NYPLWhite"] = "logo_nypl_full_white";
6276
6325
  LogoNames["NYPLLionBlack"] = "logo_nypl_lion_black";
6277
6326
  LogoNames["NYPLLionWhite"] = "logo_nypl_lion_white";
6327
+ LogoNames["OpenEBooksColor"] = "logo_openebooks_color";
6328
+ LogoNames["OpenEBooksNegative"] = "logo_openebooks_negative";
6329
+ LogoNames["OpenEBooksWithTextColor"] = "logo_openebooks_wtext_color";
6330
+ LogoNames["OpenEBooksWithTextNegative"] = "logo_openebooks_wtext_negative";
6278
6331
  LogoNames["QueensPublicLibraryColor"] = "logo_qpl_color";
6279
6332
  LogoNames["QueensPublicLibraryBlack"] = "logo_qpl_black";
6280
6333
  LogoNames["QueensPublicLibraryWhite"] = "logo_qpl_white";
@@ -6414,7 +6467,7 @@ function SvgLogoCleverWhite(_ref) {
6414
6467
  })));
6415
6468
  }
6416
6469
 
6417
- var _path$v, _path2$e;
6470
+ var _path$v, _path2$e, _path3$9, _path4$1, _path5, _path6, _path7, _path8, _path9, _path10, _path11, _path12, _path13;
6418
6471
 
6419
6472
  var _excluded$y = ["title", "titleId"];
6420
6473
 
@@ -6424,28 +6477,61 @@ function _objectWithoutProperties$x(source, excluded) { if (source == null) retu
6424
6477
 
6425
6478
  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; }
6426
6479
 
6427
- function SvgLogoLpaColor(_ref) {
6480
+ function SvgLogoFirstbookColor(_ref) {
6428
6481
  var title = _ref.title,
6429
6482
  titleId = _ref.titleId,
6430
6483
  props = _objectWithoutProperties$x(_ref, _excluded$y);
6431
6484
 
6432
6485
  return /*#__PURE__*/createElement("svg", _extends$y({
6433
- viewBox: "0 0 186 74",
6486
+ viewBox: "0 0 172 152",
6434
6487
  fill: "none",
6435
6488
  xmlns: "http://www.w3.org/2000/svg",
6436
6489
  "aria-labelledby": titleId
6437
6490
  }, props), title ? /*#__PURE__*/createElement("title", {
6438
6491
  id: titleId
6439
6492
  }, title) : null, _path$v || (_path$v = /*#__PURE__*/createElement("path", {
6440
- d: "M44.43 13.745c-3.302-2.913-7.002-4.835-11.527-5.58-5.565-.93-9.692.404-12.047 1.179-.489.155-.55.465-.55.868-.03 1.023.397 1.829.734 2.139.367.34.734.154 1.284-.032 2.17-.744 5.167-1.27 8.316-.899 2.997.341 5.779 1.271 7.858 2.45-2.935.433-7.338 1.58-11.955 4.959-3.791-.217-8.56.31-13.85 3.007C2.664 26.92-3.634 39.846 2.297 53.919c2.416 5.703 7.889 10.973 14.279 12.864 3.73 1.116 7.063 1.023 7.95.96.275.218.733.559 1.284.93 8.958 6.014 17.213 4.805 22.075 2.108 4.464-2.48 10.395-8.71 10.579-19.56 8.285-8.09 6.726-17.42 5.625-21.388-2.599-9.454-11.282-15.437-19.66-16.088zm9.54 33.478c.03.713-.276 1.023-1.102 1.612-1.1.775-2.782 1.705-4.433 2.232-.214.062-.306-.186-.245-.341.214-.403.52-1.023.704-1.426.367-.806.733-1.643 1.04-2.449.641-1.674 1.283-3.844 1.68-5.61.062-.28.245-.31.337-.155.184.279.795 1.673 1.223 3.068.459 1.488.764 2.666.795 3.07zm-8.562.961c-.642 1.333-1.223 2.449-1.834 3.224-.367.465-2.783 1.302-7.247-.62-3.118-1.333-4.892-2.728-7.552-6.262-.611-.837-1.1-1.55-1.437-2.077-.367-.588-.55-1.053-1.59-.837-.764.155-2.385.806-3.271 2.14-.337.526-.092.96.214 1.456.58.992 1.468 2.17 2.293 3.162 2.905 3.534 6.574 6.51 10.885 7.998.58.185 1.681.495 2.17.62.337.093.49.495.306.681-1.131 1.24-4.066 3.255-4.953 3.72-2.14 1.116-4.311 1.891-5.931 2.139-.55.093-1.07.186-1.835-.465-.948-.837-1.804-1.829-2.568-2.82-1.498-1.985-2.66-4.248-3.455-6.603-1.651-4.867-1.835-10.168-.703-15.158 1.04-4.619 3.18-8.959 6.298-12.492.428-.496 2.049-2.108 2.538-2.45.397-.247.917-.495 2.201-.247 2.08.434 5.565 1.457 9.295 3.782 4.984 3.1 7.827 6.54 8.714 7.656.703.899.734 1.519.611 2.51-.428 4.185-2.018 8.587-3.149 10.943zM43.39 18.178c.245.031.52.093.887.589.703.992 1.865 3.007 2.323 4.06.826 1.985 1.468 4.526 1.743 5.797.061.31-.183.248-.275.186-.275-.31-.856-.806-1.04-.96-.855-.869-3.332-2.883-6.237-4.588-2.599-1.52-5.656-2.76-6.91-3.1-.153-.031-.214-.279-.03-.372.55-.248 2.323-.93 4.464-1.333 1.65-.31 3.516-.434 5.075-.279zM4.132 46.696c-1.07-6.664.917-13.205 5.228-17.452 2.324-2.293 5.137-4.122 8.225-5.145.917-.31 2.568-.744 3.669-.93.306-.031.397.34.214.527-1.04 1.116-2.507 3.44-2.966 4.215-3.577 6.045-5.136 13.33-4.403 20.335.887 8.648 5.106 13.856 5.779 14.755.153.217.306.589-.03.651-.062 0-.398-.062-.887-.155-9.57-2.139-13.82-10.57-14.83-16.8zm27.212 20.242c-.367-.155-.337-.434 0-.558.947-.341 2.69-1.054 3.516-1.52a26.587 26.587 0 004.647-3.223c.734-.62 2.293-2.046 3.21-3.13.306-.373.826-1.024 1.835-1.148 1.957-.217 2.538-.31 3.914-.65 1.314-.342 3.577-1.147 5.075-1.984.184-.093.49 0 .398.465-.673 3.378-2.997 8.586-7.155 11.252-4.8 3.162-10.395 2.82-15.44.496zm26.63-23.528c-.244.403-.611.31-.764-.03-.122-.373-.275-.9-.398-1.272-.642-1.797-1.436-3.564-2.415-5.207a56.94 56.94 0 00-1.62-2.542c-.367-.558-.367-.837-.367-1.519-.03-3.875-1.223-9.206-3.119-12.647-.183-.341.092-.558.306-.465 5.106 2.387 7.858 5.89 9.172 9.206 2.936 7.378.52 12.275-.795 14.476z",
6441
- fill: "#008375"
6493
+ d: "M154.516 34.244l-46.123 6.988 44.085-9.731a.68.68 0 00.411-.344.736.736 0 00.057-.547.726.726 0 00-.289-.395.677.677 0 00-.463-.112l-46.156 9.784 43.418-12.51a.655.655 0 00.237-.123.705.705 0 00.254-.474.715.715 0 00-.024-.276.714.714 0 00-.317-.434.66.66 0 00-.518-.073l-43.601 12.23 40.546-14.501a.696.696 0 00.396-.36.749.749 0 00.038-.549.712.712 0 00-.345-.415.658.658 0 00-.524-.039l-42.666 14.659 39.026-16.965a.704.704 0 00.373-.386.753.753 0 00.003-.549.705.705 0 00-.369-.39.658.658 0 00-.525-.003L99.893 36.393l37.172-19.813a.714.714 0 00.319-.435.749.749 0 00-.068-.543.71.71 0 00-.382-.317.673.673 0 00-.487.02l-38.575 19.97 33.95-21.822a.76.76 0 00.233-.891.674.674 0 00-.697-.344.665.665 0 00-.254.1L94.766 35.03l31.144-24.46a.715.715 0 00.253-.746.73.73 0 00-.119-.25.694.694 0 00-.194-.193.646.646 0 00-.758.036L92.128 34.593l27.42-26.609a.757.757 0 00-.038-.976.68.68 0 00-.931-.072L89.523 34.331l23.262-28.583a.745.745 0 00-.067-1.013.668.668 0 00-.969.07l-24.08 28.617 18.486-29.404a.752.752 0 00.005-.797.676.676 0 00-.702-.31.697.697 0 00-.438.302l-20.04 30.49 14.111-31.1a.746.746 0 00-.03-.544.697.697 0 00-.387-.364.656.656 0 00-.447-.005.69.69 0 00-.355.284L83.195 32.76l9.168-31.134a.73.73 0 00-.084-.528.687.687 0 00-.417-.31.658.658 0 00-.456.066.705.705 0 00-.312.353l-10.02 31.308 4.61-31.448a.742.742 0 00-.122-.534.662.662 0 00-.957-.16.722.722 0 00-.274.467l-5.444 32.2L78.719.715a.733.733 0 00-.2-.506.67.67 0 00-.485-.21.67.67 0 00-.484.21.733.733 0 00-.2.506l-.518 32.532L71.605.786a.72.72 0 00-.278-.444.661.661 0 00-.932.145.74.74 0 00-.143.509l4.459 32.531L64.274 1.24a.704.704 0 00-.341-.372.657.657 0 00-.492-.036.69.69 0 00-.387.32.745.745 0 00-.083.508l9.502 31.867L57.11 2.08a.69.69 0 00-.416-.334.658.658 0 00-.519.072.73.73 0 00-.303.4.766.766 0 00.02.509l14.444 31.098L49.93 3.39a.706.706 0 00-.194-.196.672.672 0 00-.52-.099.675.675 0 00-.247.112.741.741 0 00-.282.746c.02.093.056.18.107.259l19.054 29.578L43.033 5.05a.69.69 0 00-.474-.236.658.658 0 00-.495.184.716.716 0 00-.225.496.75.75 0 00.175.517L65.66 34.296 36.253 7.181a.668.668 0 00-.968.052.738.738 0 00.05 1.013L62.42 34 30.175 9.54a.656.656 0 00-.508-.133.65.65 0 00-.25.098.681.681 0 00-.194.193.712.712 0 00-.136.527.72.72 0 00.27.468l30.776 23.971-35.72-22.38a.65.65 0 00-.517-.087.657.657 0 00-.241.12.691.691 0 00-.177.21.745.745 0 00-.083.537c.041.183.149.342.3.442L58.08 35.624l-39.126-20.18a.657.657 0 00-.504-.015.696.696 0 00-.378.35.747.747 0 00-.046.525c.049.175.16.324.31.416l36.788 19.498L14.16 18.747a.659.659 0 00-.746.16.721.721 0 00-.198.508.746.746 0 00.204.505c.063.066.14.119.223.154l39.81 17.454L9.835 22.503a.66.66 0 00-.735.21.727.727 0 00-.167.522c.007.094.03.186.071.27.082.171.224.3.397.36L51.399 38.77 6.128 26.539a.66.66 0 00-.49.1.715.715 0 00-.295.42.746.746 0 00.057.52c.08.158.215.28.377.34l43.819 12.23-46.49-9.487a.658.658 0 00-.523.06.73.73 0 00-.352.709.743.743 0 00.253.482c.07.059.15.103.237.13h.1l43.535 9.294-45.421-6.64a.663.663 0 00-.487.15.742.742 0 00-.138.975c.1.15.252.255.424.291l32.68 5.084 44.303 5.434 37.84-4.7 39.159-6.272a.666.666 0 00.466-.258.732.732 0 00.126-.248c.026-.091.035-.186.026-.28a.742.742 0 00-.247-.487.674.674 0 00-.505-.16l-.066.018z",
6494
+ fill: "#ED1C24"
6442
6495
  })), _path2$e || (_path2$e = /*#__PURE__*/createElement("path", {
6443
- d: "M84.349 38.204c0-2.356-1.804-3.472-4.158-3.472h-3.578v11.005h2.324V41.8h.978c2.722 0 4.434-1.21 4.434-3.596zm-2.324.031c0 1.209-.611 1.829-2.079 1.829h-1.009V36.53h1.07c1.437-.03 2.018.59 2.018 1.705zm4.892 3.968h5.014c.276-2.976-.947-4.712-3.424-4.712-2.202 0-3.914 1.643-3.914 4.185 0 2.573 1.498 4.247 4.158 4.247 1.621 0 2.447-.465 2.966-.775l-.703-1.426c-.397.186-.978.558-2.079.558-1.284 0-1.896-.837-2.018-2.077zm0-1.488c.153-1.054.673-1.643 1.59-1.643.978 0 1.345.744 1.376 1.643h-2.966zm11.557-3.007c-.183-.093-.489-.217-1.07-.217-1.009 0-1.65.682-1.987 1.302v-1.085h-2.17v8.029h2.17v-5.053c.183-.372.764-1.209 1.712-1.209.459 0 .703.093.826.186l.52-1.953zm3.578 1.612h1.895v-1.643h-1.895v-.65c0-1.055.397-1.582 1.284-1.582.581 0 .948.155 1.101.217l.489-1.643c-.184-.124-.765-.372-1.927-.372-2.017 0-3.118 1.302-3.118 3.224v.837h-1.193v1.643h1.193v6.417h2.171V39.32zm10.242 2.325c0-2.077-1.253-4.185-4.005-4.185s-3.944 2.17-3.944 4.247 1.192 4.185 3.975 4.185c2.751.03 3.974-2.201 3.974-4.247zm-2.293.093c0 1.488-.428 2.51-1.681 2.51-1.223 0-1.713-1.084-1.713-2.603 0-1.488.398-2.542 1.621-2.542 1.253 0 1.773 1.116 1.773 2.635zm8.653-4.03c-.184-.093-.489-.217-1.07-.217-1.009 0-1.651.682-1.988 1.302v-1.085h-2.17v8.029h2.17v-5.053c.184-.372.765-1.209 1.713-1.209.458 0 .703.093.825.186l.52-1.953zm7.307 1.054c-.305-.744-.917-1.27-2.048-1.27-1.284 0-1.957.712-2.385 1.177v-.992h-2.11v8.029h2.171V40.28c.153-.217.673-.992 1.468-.992.642 0 .917.403.917 1.209v5.177h2.171v-5.487c.305-.372.795-.899 1.467-.899.704 0 .948.434.948 1.209v5.177h2.171v-5.642c0-1.488-.581-2.604-2.263-2.604-1.131.062-1.865.558-2.507 1.333zm8.622-1.085h-2.17v8.029h2.17v-8.029zm.245-2.356c0-.682-.581-1.302-1.345-1.302-.765 0-1.315.59-1.315 1.302 0 .713.55 1.333 1.315 1.333a1.34 1.34 0 001.345-1.333zm8.714 10.385v-5.642c0-1.488-.642-2.604-2.385-2.604-1.315 0-2.11.713-2.538 1.21v-.993h-2.109v8.029h2.17v-5.394c.153-.217.795-.992 1.621-.992.795 0 1.07.403 1.07 1.209v5.177h2.171zm6.084-8.029c-.397-.124-.886-.186-1.406-.186-2.202 0-3.516 1.178-3.516 2.914 0 1.054.52 1.89 1.406 2.418-.458.279-.886.744-.886 1.519 0 .589.275.96.703 1.209-.795.434-1.346 1.084-1.346 1.953 0 1.456 1.315 2.138 3.486 2.138 2.599 0 4.342-1.209 4.342-2.914 0-2.386-2.079-2.386-3.731-2.48-1.131-.061-1.589-.154-1.589-.588 0-.217.152-.372.305-.465.306.062.612.093.948.093 2.202 0 3.425-1.178 3.425-2.914 0-.465-.092-.899-.306-1.302h1.07v-1.426h-2.905v.031zm-1.406 4.216c-.887 0-1.437-.558-1.437-1.488 0-.93.55-1.488 1.437-1.488s1.437.558 1.437 1.488c0 .93-.52 1.488-1.437 1.488zm-.917 4.092c.336.062.703.093 1.07.124 1.162.093 1.895.062 1.895.898 0 .682-.733 1.178-2.079 1.178-1.1 0-1.559-.434-1.559-1.085.031-.465.245-.837.673-1.115zm11.863-2.325h4.341l.734 2.077h2.507l-4.25-11.005h-2.232l-4.127 11.005h2.323l.704-2.077zm3.669-1.86h-3.027l.917-2.635c.336-.93.55-1.767.581-1.89h.031c.03.123.244.96.58 1.89l.918 2.635zm9.937-4.092c-.184-.093-.49-.217-1.071-.217-1.009 0-1.651.682-1.987 1.302v-1.085h-2.171v8.029h2.171v-5.053c.184-.372.764-1.209 1.712-1.209.459 0 .704.093.826.186l.52-1.953zm1.498 1.612v4.092c0 1.55.642 2.51 2.507 2.51.978 0 1.651-.278 1.987-.464l-.489-1.643c-.153.093-.581.31-1.039.31-.612 0-.795-.341-.795-1.147V39.32h1.865v-1.643h-1.865v-2.325H174.3v2.325h-1.284v1.643h1.254zm10.732 4.03c0-1.364-.918-1.922-2.171-2.45-.918-.371-1.621-.526-1.621-1.053 0-.434.337-.713 1.101-.713s1.376.31 1.682.527l.764-1.488c-.367-.217-1.192-.65-2.538-.65-1.804 0-2.966.96-2.966 2.448 0 1.209.673 1.86 1.774 2.387 1.131.558 1.987.682 1.987 1.24 0 .465-.458.713-1.315.713-.886 0-1.651-.434-1.956-.651l-.734 1.519c.489.34 1.406.744 2.813.744 2.018 0 3.18-.9 3.18-2.573zM76.72 29.733h5.228v-.775h-4.342V18.73h-.886v11.004zm7.246-9.516c.367 0 .642-.31.642-.682a.65.65 0 00-.642-.65.65.65 0 00-.642.65c0 .372.275.682.642.682zm-.428 9.516h.856V21.86h-.856v7.873zm5.565.186c2.384 0 3.852-1.922 3.852-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.899V17.83h-.856V29.3c.581.371 1.437.62 2.355.62zm.03-.744c-.611 0-1.162-.124-1.529-.31v-5.517c.428-.496 1.223-.9 1.896-.9 1.896 0 2.538 1.644 2.538 3.349.03 1.642-.917 3.378-2.905 3.378zm5.779.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.08 1.55V21.89h-.886v7.842zm6.604.186c.917 0 1.804-.465 2.354-1.178.031.28.061.744.123.992h.856c-.092-.34-.153-.899-.153-1.58v-3.968c0-1.705-.887-2.511-2.477-2.511-1.009 0-1.865.34-2.537.992l.458.589c.642-.62 1.284-.837 2.018-.837 1.162 0 1.712.589 1.712 1.86v.899h-.367c-1.804 0-4.097.589-4.097 2.697-.06 1.24.826 2.045 2.11 2.045zm.122-.744c-.672 0-1.406-.465-1.406-1.332 0-1.457 1.467-1.984 3.21-1.984h.367v2.107c-.581.775-1.315 1.21-2.171 1.21zm5.32.558h.856v-5.486c.215-.465.918-1.736 1.988-1.736.336 0 .52.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.856v7.842h-.031zm4.77 3.782c1.682 0 2.293-1.178 2.844-2.666l3.332-9.02h-.886l-2.385 6.757-2.446-6.757h-.918l2.905 7.811-.397 1.116c-.459 1.24-.918 1.984-2.049 1.984-.306 0-.428-.03-.55-.062l-.123.713c.153.093.337.124.673.124zm11.588-3.782h.826v-7.191h2.017v-.682h-2.017v-1.24c0-1.426.58-2.17 1.773-2.17.458 0 .825.124.978.217l.214-.744c-.214-.093-.611-.217-1.192-.217-1.712 0-2.63 1.085-2.63 2.883v1.333h-1.345v.682h1.345v7.13h.031zm6.879.186c2.446 0 3.547-2.17 3.547-4.153 0-1.953-1.131-4.092-3.577-4.092-2.446 0-3.486 2.139-3.486 4.123.031 1.983 1.101 4.122 3.516 4.122zm.031-.744c-1.743 0-2.63-1.611-2.63-3.41 0-1.766.795-3.347 2.569-3.347 1.773 0 2.69 1.612 2.69 3.379 0 1.797-.856 3.378-2.629 3.378zm5.473.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.857v7.842h-.03zm10.793.186a2.65 2.65 0 001.498-.465l-.336-.65c-.153.123-.612.371-1.07.371-.704 0-.948-.434-.948-1.24v-5.362h1.987v-.682h-1.987v-2.263h-.856v2.232h-1.315v.682h1.315v5.424c0 1.24.55 1.953 1.712 1.953zm3.149-.186h.856V24c.275-.434 1.223-1.55 2.385-1.55 1.162 0 1.59.713 1.59 1.89v5.394h.856v-5.58c0-1.425-.642-2.48-2.263-2.48-1.314 0-2.201.9-2.568 1.427v-5.27h-.856v11.903zm11.068.186c1.254 0 2.14-.434 2.63-.806l-.367-.682c-.428.341-1.254.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.186h5.351c.031-.155.031-.28.031-.434 0-2.015-1.071-3.441-2.936-3.441-2.079 0-3.332 1.829-3.332 4.03 0 2.293 1.1 4.215 3.485 4.215zm-2.538-5.083c.214-1.364 1.009-2.418 2.355-2.418 1.467 0 2.079 1.209 2.109 2.418h-4.464zM76.687 12.688h.825V3.14l6.513 9.548h.825V1.684h-.856v9.485l-6.451-9.485h-.887v11.004h.03zm13.178.155c1.253 0 2.14-.434 2.63-.806l-.368-.682c-.428.34-1.253.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.187h5.351c.031-.155.031-.279.031-.434 0-2.015-1.07-3.44-2.935-3.44-2.08 0-3.333 1.828-3.333 4.03 0 2.293 1.1 4.215 3.486 4.215zM87.327 7.79c.214-1.364 1.009-2.418 2.354-2.418 1.468 0 2.08 1.21 2.11 2.418h-4.464zm8.5 4.898h.795l2.11-6.634 2.109 6.634h.795l2.354-7.874h-.856l-1.895 6.572-2.049-6.572h-.825l-2.049 6.54-1.896-6.54h-.917l2.324 7.874zm15.257 0h.886V8.534l3.608-6.85h-.917l-3.088 5.951h-.031l-3.088-5.951h-1.009l3.639 6.85v4.154zm7.093.155c2.446 0 3.547-2.17 3.547-4.154 0-1.953-1.132-4.092-3.578-4.092-2.445 0-3.485 2.14-3.485 4.123 0 2.015 1.07 4.123 3.516 4.123zm0-.744c-1.773 0-2.629-1.612-2.629-3.41 0-1.767.795-3.348 2.568-3.348 1.773 0 2.691 1.612 2.691 3.38 0 1.797-.857 3.378-2.63 3.378zm5.167.589h.856V7.2c.214-.465.918-1.736 1.988-1.736.336 0 .519.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.961-2.079 1.55V4.845h-.887v7.843zm9.723 0h1.07l-3.608-4.433 3.425-3.44h-1.07l-3.394 3.44 3.577 4.433zm-4.525 0h.856V.816h-.856v11.872zm11.007 0h.887v-4.68h1.376c2.446 0 3.821-1.24 3.821-3.225 0-1.953-1.437-3.1-3.699-3.1h-2.385v11.005zm.887-5.456V2.46h1.376c2.079 0 2.874.991 2.874 2.355 0 1.457-.857 2.418-2.905 2.418h-1.345zm8.866 5.61c1.315 0 2.202-.867 2.569-1.456 0 .434.061 1.023.122 1.302h.856c-.092-.31-.153-.9-.153-1.52V4.815h-.856v5.704c-.275.465-1.223 1.58-2.385 1.58-1.192 0-1.59-.743-1.59-1.89V4.814h-.856v5.549c0 1.426.642 2.48 2.293 2.48zm8.072 0c2.385 0 3.853-1.921 3.853-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.9V.753h-.856v11.469c.55.403 1.406.62 2.354.62zm.031-.743c-.612 0-1.162-.124-1.498-.31V6.302c.428-.496 1.223-.899 1.895-.899 1.896 0 2.538 1.643 2.538 3.348-.031 1.643-.978 3.348-2.935 3.348zm5.442.589h.856V.816h-.856v11.872zm3.73-9.548c.367 0 .642-.31.642-.681a.65.65 0 00-.642-.651.65.65 0 00-.642.65c0 .403.306.682.642.682zm-.428 9.548h.856V4.814h-.856v7.874zm5.901.155c1.162 0 1.988-.434 2.416-.806l-.367-.651c-.337.31-1.101.713-1.988.713-1.712 0-2.476-1.674-2.476-3.41 0-1.829.795-3.348 2.507-3.348.856 0 1.437.341 1.896.713l.428-.62c-.428-.372-1.162-.837-2.324-.837-1.987 0-3.424 1.612-3.424 4.123 0 2.139 1.1 4.123 3.332 4.123z",
6444
- fill: "#000"
6496
+ d: "M167.41 138.023a1.828 1.828 0 00-.484-.402c.338-.034.652-.195.885-.454.205-.246.313-.565.3-.891a1.428 1.428 0 00-.2-.734 1.032 1.032 0 00-.518-.454 3.043 3.043 0 00-1.052-.122h-1.67v4.699h.819v-1.747h.167c.133-.016.267-.016.4 0a.756.756 0 01.234.175c.15.192.284.402.418.612l.567.891h1.119l-.551-.891a4.553 4.553 0 00-.434-.682zm-1.336-.908h-.518v-1.276h.552c.195.106.414.154.634.14a.494.494 0 01.334.175.559.559 0 01.117.367.586.586 0 010 .332.446.446 0 01-.234.192 3.21 3.21 0 01-.885.07z",
6497
+ fill: "#00ACE4"
6498
+ })), _path3$9 || (_path3$9 = /*#__PURE__*/createElement("path", {
6499
+ d: "M166.258 133.114a4.07 4.07 0 00-2.341.732 4.367 4.367 0 00-1.558 1.969 4.598 4.598 0 00-.249 2.543 4.47 4.47 0 001.143 2.259 4.16 4.16 0 002.151 1.214c.815.173 1.662.09 2.432-.24a4.26 4.26 0 001.895-1.614 4.545 4.545 0 00.718-2.443 4.573 4.573 0 00-.314-1.686 4.43 4.43 0 00-.907-1.433 4.222 4.222 0 00-1.361-.96 4.051 4.051 0 00-1.609-.341zm0 8.194c-.72 0-1.424-.224-2.023-.642a3.783 3.783 0 01-1.341-1.71 3.98 3.98 0 01-.207-2.2 3.867 3.867 0 01.996-1.95 3.597 3.597 0 011.864-1.043 3.496 3.496 0 012.104.217 3.675 3.675 0 011.633 1.403c.4.626.614 1.363.614 2.116a3.913 3.913 0 01-1.071 2.688 3.58 3.58 0 01-2.569 1.121zM77.868 51.156h.167L56.409 48.64v.017L0 41.861v99.691l76.481 10.238 79.672-9.556V41.861l-78.285 9.295z",
6500
+ fill: "#00ACE4"
6501
+ })), _path4$1 || (_path4$1 = /*#__PURE__*/createElement("path", {
6502
+ d: "M8.183 99.674V67.666L25.35 69.85v6.657l-9.82-1.258v6.115l6.964.89v6.465l-6.963-.89V100.6l-7.348-.926z",
6503
+ fill: "#ED1C24"
6504
+ })), _path5 || (_path5 = /*#__PURE__*/createElement("path", {
6505
+ d: "M8.483 68.47l16.048 2.027v5.241l-9.401-1.205v7.39l6.946.891v5.241l-6.946-.89v12.753l-6.546-.838V68.26l-.1.21zm-1.119-1.537v33.195l1.103.14 6.479.821 1.403.175v-12.72l5.61.717 1.437.175v-7.74l-1.053-.14-5.894-.751v-4.822l8.082 1.048 1.32.175v-7.932l-1.07-.14-16.047-2.01-1.37-.174v-.017z",
6506
+ fill: "#fff"
6507
+ })), _path6 || (_path6 = /*#__PURE__*/createElement("path", {
6508
+ d: "M25.349 101.787v-23.22l6.546.84v23.201l-6.546-.821z",
6509
+ fill: "#ED1C24"
6510
+ })), _path7 || (_path7 = /*#__PURE__*/createElement("path", {
6511
+ d: "M26.186 79.32l5.294.68v21.857l-5.31-.681V79.372l.016-.053zm-1.235-1.486v24.46l1.068.14 5.327.681 1.37.175V78.83l-1.069-.14-5.327-.681-1.37-.175z",
6512
+ fill: "#fff"
6513
+ })), _path8 || (_path8 = /*#__PURE__*/createElement("path", {
6514
+ d: "M33.933 102.94V79.511l5.627.734.184 2.376c.38-.667.921-1.219 1.569-1.599a4.095 4.095 0 012.122-.567c.792.02 1.575.174 2.32.454l.401.157v6.796l-.75-.174a9.875 9.875 0 00-2.656-.472c-1.553 0-2.271.647-2.271 2.044v14.501l-6.546-.821z",
6515
+ fill: "#ED1C24"
6516
+ })), _path9 || (_path9 = /*#__PURE__*/createElement("path", {
6517
+ d: "M34.317 80.245l4.458.56.35 4.42c.736-2.848 2.172-4.141 4.126-4.141a6.42 6.42 0 012.12.42v5.485a9.788 9.788 0 00-2.839-.49c-2.104 0-2.888 1.154-2.888 2.692v13.854l-5.31-.681V80.228l-.017.017zm-1.203-1.467v24.739l1.069.14 5.327.681 1.37.175v-15.34c0-.716.133-1.415 1.67-1.415a9.2 9.2 0 012.487.437l1.587.471v-8.071l-.819-.297a7.48 7.48 0 00-2.538-.507 4.636 4.636 0 00-3.19 1.223V79.65l-1.001-.122-4.576-.577-1.386-.174z",
6518
+ fill: "#fff"
6519
+ })), _path10 || (_path10 = /*#__PURE__*/createElement("path", {
6520
+ d: "M56.092 106.086a11.832 11.832 0 01-1.37-.088c-5.009-.629-8.115-4.018-8.115-8.648v-1.52l5.728.734v1.258a2.347 2.347 0 00.454 1.67c.357.471.879.776 1.45.846h.885c.918 0 1.285-.35 1.285-1.258 0-1.485-1.402-2.341-4.325-3.984-2.454-1.345-5.01-3.25-5.01-7.18 0-3.931 2.506-6.22 6.397-6.22a7.683 7.683 0 011.269 0c4.525.576 7.43 3.756 7.43 8.09v1.065l-5.376-.594V88.98c0-1.188-.652-1.852-2.004-2.026h-.451c-.952 0-1.136.436-1.136 1.066 0 .908.768 1.607 3.34 2.97 3.09 1.642 6.229 3.948 6.229 8.596.02.84-.12 1.676-.41 2.46s-.725 1.5-1.28 2.107a6.101 6.101 0 01-1.957 1.432 5.879 5.879 0 01-2.331.535l-.702-.035z",
6521
+ fill: "#ED1C24"
6522
+ })), _path11 || (_path11 = /*#__PURE__*/createElement("path", {
6523
+ d: "M53.454 82.202h1.219c4.492.577 7.013 3.652 7.013 7.583v.367l-4.492-.577v-.664c0-1.45-.801-2.446-2.555-2.673h-.534c-1.136 0-1.67.577-1.67 1.747 0 1.17 1.035 2.15 3.624 3.495 3.34 1.747 5.911 3.948 5.911 8.019a5.981 5.981 0 01-.367 2.21 5.79 5.79 0 01-1.147 1.896 5.516 5.516 0 01-1.754 1.291 5.302 5.302 0 01-2.092.491h-.702a8.117 8.117 0 01-1.285 0c-5.01-.629-7.582-3.966-7.582-8.002v-.804l4.492.577v.786c-.037.386 0 .775.108 1.146.108.371.285.716.52 1.015.237.299.527.546.855.727.328.18.687.292 1.056.327h.901c1.253 0 1.92-.612 1.92-1.94 0-1.939-1.67-2.952-4.709-4.612-3.039-1.66-4.709-3.494-4.709-6.727 0-3.599 2.388-5.678 5.878-5.678h.1zm.25-1.1c-4.275 0-7.047 2.725-7.047 6.988s2.839 6.5 5.327 7.862l.184.105-4.459-.577-1.37-.174v2.219c0 4.892 3.34 8.473 8.45 9.137.468.026.936.026 1.403 0a6.285 6.285 0 002.546-.29 6.475 6.475 0 002.246-1.287 6.822 6.822 0 001.604-2.088c.398-.8.642-1.674.718-2.572v-.751c0-4.456-2.672-6.85-5.527-8.527l3.957.507 1.37.175v-1.747c0-4.752-3.14-8.23-8.016-8.858a11.72 11.72 0 00-1.353-.088l-.033-.034zm2.422 9.05c-1.92-1.084-2.305-1.573-2.305-2.027a.565.565 0 010-.332.973.973 0 01.45 0h.368c1.32.175 1.436.786 1.436 1.345v1.049l.05-.035zm-1.17 9.784h-.45c-1.203-.158-1.67-.717-1.67-1.94v-1.572c1.904 1.118 2.839 1.747 2.839 2.778 0 .524 0 .646-.685.646l-.034.088z",
6524
+ fill: "#fff"
6525
+ })), _path12 || (_path12 = /*#__PURE__*/createElement("path", {
6526
+ d: "M66.815 107.116l-.15-.332a18.192 18.192 0 01-1.27-7.915V89l-2.454-.35v-5.66l2.855.366v-3.879l6.546-.873v5.59l3.34.42v5.538l-3.34-.419v9.836c-.15 2.532.334 5.061 1.403 7.338l.585 1.136-7.515-.926z",
6527
+ fill: "#ED1C24"
6528
+ })), _path13 || (_path13 = /*#__PURE__*/createElement("path", {
6529
+ d: "M71.54 79.372v5.416l3.34.42v4.227l-3.34-.42v10.746a14.943 14.943 0 001.386 7.145l-5.578-.716a16.374 16.374 0 01-1.135-7.163V88.439l-2.856-.367v-4.368l2.856.367v-4.053l5.16-.681.166.035zm1.235-1.503l-1.42.192-5.276.7-1.102.191v3.67l-1.503-.175-1.303-.175v6.988l1.12.14 1.67.227v9.54a17.987 17.987 0 001.285 7.739l.284.629h.668l5.594.717 2.371.402-1.102-2.149a13.862 13.862 0 01-1.252-6.587V90.57l1.92.244 1.336.175v-6.988l-1.052-.14-2.221-.28V77.87h-.017zM91.228 106.645l-10.704 1.275V77.66l10.437-1.223c4.609-.542 7.147 1.747 7.147 5.993v2.236s-.768 5.241-3.724 6.115c3.073.402 4.158 5.136 4.158 5.136v2.918c0 4.368-2.638 7.251-7.314 7.81zm1.152-22.87c0-1.503-.618-2.394-2.237-2.202l-3.49.437v7.775l3.24-.35c.332-.004.662-.077.968-.215a2.54 2.54 0 00.816-.587c.233-.25.416-.545.54-.87.123-.323.184-.67.18-1.018a1.383 1.383 0 000-.262l-.017-2.708zm0 12.474c0-1.747-.851-2.515-2.438-2.34l-3.34.383v7.723l3.59-.35c.292-.004.58-.069.848-.19s.51-.296.713-.515c.204-.219.364-.478.471-.761.108-.284.16-.587.156-.892a1.383 1.383 0 000-.262v-2.796zM108.361 104.897c-4.459.524-7.398-1.957-7.398-6.779v-6.936c-.115-2.181.598-4.323 1.983-5.958 1.385-1.635 3.331-2.633 5.415-2.777a5.83 5.83 0 012.381-.032 5.947 5.947 0 012.211.926 6.246 6.246 0 011.703 1.741c.453.692.77 1.47.935 2.292.137.677.165 1.374.084 2.061v6.989c.082 2.132-.637 4.214-2.005 5.798-1.367 1.584-3.273 2.544-5.309 2.675zm2.003-15.829a2.091 2.091 0 00-.392-1.486 1.916 1.916 0 00-1.829-.767 2.454 2.454 0 00-1.68.901 2.683 2.683 0 00-.591 1.876v8.736a2.1 2.1 0 00.095.938c.102.3.271.57.493.789.222.219.49.379.783.467.293.089.601.103.9.042a2.472 2.472 0 001.643-.923 2.698 2.698 0 00.578-1.855v-8.718zM125.528 102.87c-4.459.525-7.398-1.956-7.398-6.778v-6.989c-.087-2.162.638-4.274 2.021-5.884 1.382-1.61 3.312-2.59 5.377-2.73a5.872 5.872 0 014.581.902c1.353.924 2.299 2.372 2.633 4.026.133.642.166 1.303.1 1.956v6.989c.096 2.14-.619 4.233-1.988 5.825-1.369 1.593-3.283 2.557-5.326 2.683zm2.003-15.829a2.1 2.1 0 00-.094-.937c-.102-.3-.271-.571-.493-.79a1.9 1.9 0 00-.783-.467 1.84 1.84 0 00-.901-.042 2.454 2.454 0 00-1.68.902 2.683 2.683 0 00-.591 1.876v8.736c-.04.266-.028.54.035.801.063.262.176.508.332.723.156.215.351.396.575.53.224.134.472.22.728.252.226.044.459.044.685 0a2.475 2.475 0 001.643-.923c.413-.517.62-1.182.578-1.855l-.034-8.805zM145.999 100.18l-3.34-8.333-2.004 3.878v5.102l-5.377.611V71.161l5.311-.63V88.86l4.876-10.483 5.176-.611-4.675 9.696 5.21 12.108-5.177.611zM29.058 67.946l1.068 3.11 2.422.35-1.754 1.554.735 2.953-2.471-1.87-2.489 1.171.735-2.743-1.753-2.027 2.421.297 1.086-2.795z",
6530
+ fill: "#fff"
6445
6531
  })));
6446
6532
  }
6447
6533
 
6448
- var _path$w;
6534
+ var _g;
6449
6535
 
6450
6536
  var _excluded$z = ["title", "titleId"];
6451
6537
 
@@ -6455,23 +6541,66 @@ function _objectWithoutProperties$y(source, excluded) { if (source == null) retu
6455
6541
 
6456
6542
  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; }
6457
6543
 
6458
- function SvgLogoLpaBlack(_ref) {
6544
+ function SvgLogoFirstbookColorNegative(_ref) {
6459
6545
  var title = _ref.title,
6460
6546
  titleId = _ref.titleId,
6461
6547
  props = _objectWithoutProperties$y(_ref, _excluded$z);
6462
6548
 
6463
6549
  return /*#__PURE__*/createElement("svg", _extends$z({
6464
- viewBox: "0 0 186 74",
6550
+ viewBox: "0 0 170 150",
6551
+ fill: "none",
6465
6552
  xmlns: "http://www.w3.org/2000/svg",
6466
6553
  "aria-labelledby": titleId
6467
6554
  }, props), title ? /*#__PURE__*/createElement("title", {
6468
6555
  id: titleId
6469
- }, title) : null, _path$w || (_path$w = /*#__PURE__*/createElement("path", {
6470
- d: "M44.43 13.745c-3.302-2.913-7.002-4.835-11.527-5.58-5.565-.93-9.692.404-12.047 1.179-.489.155-.55.465-.55.868-.03 1.023.397 1.829.734 2.139.367.34.734.154 1.284-.032 2.17-.744 5.167-1.27 8.316-.899 2.997.341 5.779 1.271 7.858 2.45-2.935.433-7.338 1.58-11.955 4.959-3.791-.217-8.56.31-13.85 3.007C2.664 26.92-3.634 39.846 2.297 53.919c2.416 5.703 7.889 10.973 14.279 12.864 3.73 1.116 7.063 1.023 7.95.96.275.218.733.559 1.284.93 8.958 6.014 17.213 4.805 22.075 2.108 4.464-2.48 10.395-8.71 10.579-19.56 8.285-8.09 6.726-17.42 5.625-21.388-2.599-9.454-11.282-15.437-19.66-16.088zm9.54 33.478c.03.713-.276 1.023-1.102 1.612-1.1.775-2.782 1.705-4.433 2.232-.214.062-.306-.186-.245-.341.214-.403.52-1.023.704-1.426.367-.806.733-1.643 1.04-2.449.641-1.674 1.283-3.844 1.68-5.61.062-.28.245-.31.337-.155.184.279.795 1.673 1.223 3.068.459 1.488.764 2.666.795 3.07zm-8.562.961c-.642 1.333-1.223 2.449-1.834 3.224-.367.465-2.783 1.302-7.247-.62-3.118-1.333-4.892-2.728-7.552-6.262-.611-.837-1.1-1.55-1.437-2.077-.367-.588-.55-1.053-1.59-.837-.764.155-2.385.806-3.271 2.14-.337.526-.092.96.214 1.456.58.992 1.468 2.17 2.293 3.162 2.905 3.534 6.574 6.51 10.885 7.998.58.185 1.681.495 2.17.62.337.093.49.495.306.681-1.131 1.24-4.066 3.255-4.953 3.72-2.14 1.116-4.311 1.891-5.931 2.139-.55.093-1.07.186-1.835-.465-.948-.837-1.804-1.829-2.568-2.82-1.498-1.985-2.66-4.248-3.455-6.603-1.651-4.867-1.835-10.168-.703-15.158 1.04-4.619 3.18-8.959 6.298-12.492.428-.496 2.049-2.108 2.538-2.45.397-.247.917-.495 2.201-.247 2.08.434 5.565 1.457 9.295 3.782 4.984 3.1 7.827 6.54 8.714 7.656.703.899.734 1.519.611 2.51-.428 4.185-2.018 8.587-3.149 10.943zM43.39 18.178c.245.031.52.093.887.589.703.992 1.865 3.007 2.323 4.06.826 1.985 1.468 4.526 1.743 5.797.061.31-.183.248-.275.186-.275-.31-.856-.806-1.04-.96-.855-.869-3.332-2.883-6.237-4.588-2.599-1.52-5.656-2.76-6.91-3.1-.153-.031-.214-.279-.03-.372.55-.248 2.323-.93 4.464-1.333 1.65-.31 3.516-.434 5.075-.279zM4.132 46.696c-1.07-6.664.917-13.205 5.228-17.452 2.324-2.293 5.137-4.122 8.225-5.145.917-.31 2.568-.744 3.669-.93.306-.031.397.34.214.527-1.04 1.116-2.507 3.44-2.966 4.215-3.577 6.045-5.136 13.33-4.403 20.335.887 8.648 5.106 13.856 5.779 14.755.153.217.306.589-.03.651-.062 0-.398-.062-.887-.155-9.57-2.139-13.82-10.57-14.83-16.8zm27.212 20.242c-.367-.155-.337-.434 0-.558.947-.341 2.69-1.054 3.516-1.52a26.587 26.587 0 004.647-3.223c.734-.62 2.293-2.046 3.21-3.13.306-.373.826-1.024 1.835-1.148 1.957-.217 2.538-.31 3.914-.65 1.314-.342 3.577-1.147 5.075-1.984.184-.093.49 0 .398.465-.673 3.378-2.997 8.586-7.155 11.252-4.8 3.162-10.395 2.82-15.44.496zm26.63-23.528c-.244.403-.611.31-.764-.03-.122-.373-.275-.9-.398-1.272-.642-1.797-1.436-3.564-2.415-5.207a56.94 56.94 0 00-1.62-2.542c-.367-.558-.367-.837-.367-1.519-.03-3.875-1.223-9.206-3.119-12.647-.183-.341.092-.558.306-.465 5.106 2.387 7.858 5.89 9.172 9.206 2.936 7.378.52 12.275-.795 14.476zM84.349 38.204c0-2.356-1.804-3.472-4.158-3.472h-3.578v11.005h2.324V41.8h.978c2.722 0 4.434-1.21 4.434-3.596zm-2.324.031c0 1.209-.611 1.829-2.079 1.829h-1.009V36.53h1.07c1.437-.03 2.018.59 2.018 1.705zm4.892 3.968h5.014c.276-2.976-.947-4.712-3.424-4.712-2.202 0-3.914 1.643-3.914 4.185 0 2.573 1.498 4.247 4.158 4.247 1.621 0 2.447-.465 2.966-.775l-.703-1.426c-.397.186-.978.558-2.079.558-1.284 0-1.896-.837-2.018-2.077zm0-1.488c.153-1.054.673-1.643 1.59-1.643.978 0 1.345.744 1.376 1.643h-2.966zm11.557-3.007c-.183-.093-.489-.217-1.07-.217-1.009 0-1.65.682-1.987 1.302v-1.085h-2.17v8.029h2.17v-5.053c.183-.372.764-1.209 1.712-1.209.459 0 .703.093.826.186l.52-1.953zm3.578 1.612h1.895v-1.643h-1.895v-.65c0-1.055.397-1.582 1.284-1.582.581 0 .948.155 1.101.217l.489-1.643c-.184-.124-.765-.372-1.927-.372-2.017 0-3.118 1.302-3.118 3.224v.837h-1.193v1.643h1.193v6.417h2.171V39.32zm10.242 2.325c0-2.077-1.253-4.185-4.005-4.185s-3.944 2.17-3.944 4.247 1.192 4.185 3.975 4.185c2.751.03 3.974-2.201 3.974-4.247zm-2.293.093c0 1.488-.428 2.51-1.681 2.51-1.223 0-1.713-1.084-1.713-2.603 0-1.488.398-2.542 1.621-2.542 1.253 0 1.773 1.116 1.773 2.635zm8.653-4.03c-.184-.093-.489-.217-1.07-.217-1.009 0-1.651.682-1.988 1.302v-1.085h-2.17v8.029h2.17v-5.053c.184-.372.765-1.209 1.713-1.209.458 0 .703.093.825.186l.52-1.953zm7.307 1.054c-.305-.744-.917-1.27-2.048-1.27-1.284 0-1.957.712-2.385 1.177v-.992h-2.11v8.029h2.171V40.28c.153-.217.673-.992 1.468-.992.642 0 .917.403.917 1.209v5.177h2.171v-5.487c.305-.372.795-.899 1.467-.899.704 0 .948.434.948 1.209v5.177h2.171v-5.642c0-1.488-.581-2.604-2.263-2.604-1.131.062-1.865.558-2.507 1.333zm8.622-1.085h-2.17v8.029h2.17v-8.029zm.245-2.356c0-.682-.581-1.302-1.345-1.302-.765 0-1.315.59-1.315 1.302 0 .713.55 1.333 1.315 1.333a1.34 1.34 0 001.345-1.333zm8.714 10.385v-5.642c0-1.488-.642-2.604-2.385-2.604-1.315 0-2.11.713-2.538 1.21v-.993h-2.109v8.029h2.17v-5.394c.153-.217.795-.992 1.621-.992.795 0 1.07.403 1.07 1.209v5.177h2.171zm6.084-8.029c-.397-.124-.886-.186-1.406-.186-2.202 0-3.516 1.178-3.516 2.914 0 1.054.52 1.89 1.406 2.418-.458.279-.886.744-.886 1.519 0 .589.275.96.703 1.209-.795.434-1.346 1.084-1.346 1.953 0 1.456 1.315 2.138 3.486 2.138 2.599 0 4.342-1.209 4.342-2.914 0-2.386-2.079-2.386-3.731-2.48-1.131-.061-1.589-.154-1.589-.588 0-.217.152-.372.305-.465.306.062.612.093.948.093 2.202 0 3.425-1.178 3.425-2.914 0-.465-.092-.899-.306-1.302h1.07v-1.426h-2.905v.031zm-1.406 4.216c-.887 0-1.437-.558-1.437-1.488 0-.93.55-1.488 1.437-1.488s1.437.558 1.437 1.488c0 .93-.52 1.488-1.437 1.488zm-.917 4.092c.336.062.703.093 1.07.124 1.162.093 1.895.062 1.895.898 0 .682-.733 1.178-2.079 1.178-1.1 0-1.559-.434-1.559-1.085.031-.465.245-.837.673-1.115zm11.863-2.325h4.341l.734 2.077h2.507l-4.25-11.005h-2.232l-4.127 11.005h2.323l.704-2.077zm3.669-1.86h-3.027l.917-2.635c.336-.93.55-1.767.581-1.89h.031c.03.123.244.96.58 1.89l.918 2.635zm9.937-4.092c-.184-.093-.49-.217-1.071-.217-1.009 0-1.651.682-1.987 1.302v-1.085h-2.171v8.029h2.171v-5.053c.184-.372.764-1.209 1.712-1.209.459 0 .704.093.826.186l.52-1.953zm1.498 1.612v4.092c0 1.55.642 2.51 2.507 2.51.978 0 1.651-.278 1.987-.464l-.489-1.643c-.153.093-.581.31-1.039.31-.612 0-.795-.341-.795-1.147V39.32h1.865v-1.643h-1.865v-2.325H174.3v2.325h-1.284v1.643h1.254zm10.732 4.03c0-1.364-.918-1.922-2.171-2.45-.918-.371-1.621-.526-1.621-1.053 0-.434.337-.713 1.101-.713s1.376.31 1.682.527l.764-1.488c-.367-.217-1.192-.65-2.538-.65-1.804 0-2.966.96-2.966 2.448 0 1.209.673 1.86 1.774 2.387 1.131.558 1.987.682 1.987 1.24 0 .465-.458.713-1.315.713-.886 0-1.651-.434-1.956-.651l-.734 1.519c.489.34 1.406.744 2.813.744 2.018 0 3.18-.9 3.18-2.573zM76.72 29.733h5.228v-.775h-4.342V18.73h-.886v11.004zm7.246-9.516c.367 0 .642-.31.642-.682a.65.65 0 00-.642-.65.65.65 0 00-.642.65c0 .372.275.682.642.682zm-.428 9.516h.856V21.86h-.856v7.873zm5.565.186c2.384 0 3.852-1.922 3.852-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.899V17.83h-.856V29.3c.581.371 1.437.62 2.355.62zm.03-.744c-.611 0-1.162-.124-1.529-.31v-5.517c.428-.496 1.223-.9 1.896-.9 1.896 0 2.538 1.644 2.538 3.349.03 1.642-.917 3.378-2.905 3.378zm5.779.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.08 1.55V21.89h-.886v7.842zm6.604.186c.917 0 1.804-.465 2.354-1.178.031.28.061.744.123.992h.856c-.092-.34-.153-.899-.153-1.58v-3.968c0-1.705-.887-2.511-2.477-2.511-1.009 0-1.865.34-2.537.992l.458.589c.642-.62 1.284-.837 2.018-.837 1.162 0 1.712.589 1.712 1.86v.899h-.367c-1.804 0-4.097.589-4.097 2.697-.06 1.24.826 2.045 2.11 2.045zm.122-.744c-.672 0-1.406-.465-1.406-1.332 0-1.457 1.467-1.984 3.21-1.984h.367v2.107c-.581.775-1.315 1.21-2.171 1.21zm5.32.558h.856v-5.486c.215-.465.918-1.736 1.988-1.736.336 0 .52.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.856v7.842h-.031zm4.77 3.782c1.682 0 2.293-1.178 2.844-2.666l3.332-9.02h-.886l-2.385 6.757-2.446-6.757h-.918l2.905 7.811-.397 1.116c-.459 1.24-.918 1.984-2.049 1.984-.306 0-.428-.03-.55-.062l-.123.713c.153.093.337.124.673.124zm11.588-3.782h.826v-7.191h2.017v-.682h-2.017v-1.24c0-1.426.58-2.17 1.773-2.17.458 0 .825.124.978.217l.214-.744c-.214-.093-.611-.217-1.192-.217-1.712 0-2.63 1.085-2.63 2.883v1.333h-1.345v.682h1.345v7.13h.031zm6.879.186c2.446 0 3.547-2.17 3.547-4.153 0-1.953-1.131-4.092-3.577-4.092-2.446 0-3.486 2.139-3.486 4.123.031 1.983 1.101 4.122 3.516 4.122zm.031-.744c-1.743 0-2.63-1.611-2.63-3.41 0-1.766.795-3.347 2.569-3.347 1.773 0 2.69 1.612 2.69 3.379 0 1.797-.856 3.378-2.629 3.378zm5.473.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.857v7.842h-.03zm10.793.186a2.65 2.65 0 001.498-.465l-.336-.65c-.153.123-.612.371-1.07.371-.704 0-.948-.434-.948-1.24v-5.362h1.987v-.682h-1.987v-2.263h-.856v2.232h-1.315v.682h1.315v5.424c0 1.24.55 1.953 1.712 1.953zm3.149-.186h.856V24c.275-.434 1.223-1.55 2.385-1.55 1.162 0 1.59.713 1.59 1.89v5.394h.856v-5.58c0-1.425-.642-2.48-2.263-2.48-1.314 0-2.201.9-2.568 1.427v-5.27h-.856v11.903zm11.068.186c1.254 0 2.14-.434 2.63-.806l-.367-.682c-.428.341-1.254.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.186h5.351c.031-.155.031-.28.031-.434 0-2.015-1.071-3.441-2.936-3.441-2.079 0-3.332 1.829-3.332 4.03 0 2.293 1.1 4.215 3.485 4.215zm-2.538-5.083c.214-1.364 1.009-2.418 2.355-2.418 1.467 0 2.079 1.209 2.109 2.418h-4.464zM76.687 12.688h.825V3.14l6.513 9.548h.825V1.684h-.856v9.485l-6.451-9.485h-.887v11.004h.03zm13.178.155c1.253 0 2.14-.434 2.63-.806l-.368-.682c-.428.34-1.253.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.187h5.351c.031-.155.031-.279.031-.434 0-2.015-1.07-3.44-2.935-3.44-2.08 0-3.333 1.828-3.333 4.03 0 2.293 1.1 4.215 3.486 4.215zM87.327 7.79c.214-1.364 1.009-2.418 2.354-2.418 1.468 0 2.08 1.21 2.11 2.418h-4.464zm8.5 4.898h.795l2.11-6.634 2.109 6.634h.795l2.354-7.874h-.856l-1.895 6.572-2.049-6.572h-.825l-2.049 6.54-1.896-6.54h-.917l2.324 7.874zm15.257 0h.886V8.534l3.608-6.85h-.917l-3.088 5.951h-.031l-3.088-5.951h-1.009l3.639 6.85v4.154zm7.093.155c2.446 0 3.547-2.17 3.547-4.154 0-1.953-1.132-4.092-3.578-4.092-2.445 0-3.485 2.14-3.485 4.123 0 2.015 1.07 4.123 3.516 4.123zm0-.744c-1.773 0-2.629-1.612-2.629-3.41 0-1.767.795-3.348 2.568-3.348 1.773 0 2.691 1.612 2.691 3.38 0 1.797-.857 3.378-2.63 3.378zm5.167.589h.856V7.2c.214-.465.918-1.736 1.988-1.736.336 0 .519.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.961-2.079 1.55V4.845h-.887v7.843zm9.723 0h1.07l-3.608-4.433 3.425-3.44h-1.07l-3.394 3.44 3.577 4.433zm-4.525 0h.856V.816h-.856v11.872zm11.007 0h.887v-4.68h1.376c2.446 0 3.821-1.24 3.821-3.225 0-1.953-1.437-3.1-3.699-3.1h-2.385v11.005zm.887-5.456V2.46h1.376c2.079 0 2.874.991 2.874 2.355 0 1.457-.857 2.418-2.905 2.418h-1.345zm8.866 5.61c1.315 0 2.202-.867 2.569-1.456 0 .434.061 1.023.122 1.302h.856c-.092-.31-.153-.9-.153-1.52V4.815h-.856v5.704c-.275.465-1.223 1.58-2.385 1.58-1.192 0-1.59-.743-1.59-1.89V4.814h-.856v5.549c0 1.426.642 2.48 2.293 2.48zm8.072 0c2.385 0 3.853-1.921 3.853-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.9V.753h-.856v11.469c.55.403 1.406.62 2.354.62zm.031-.743c-.612 0-1.162-.124-1.498-.31V6.302c.428-.496 1.223-.899 1.895-.899 1.896 0 2.538 1.643 2.538 3.348-.031 1.643-.978 3.348-2.935 3.348zm5.442.589h.856V.816h-.856v11.872zm3.73-9.548c.367 0 .642-.31.642-.681a.65.65 0 00-.642-.651.65.65 0 00-.642.65c0 .403.306.682.642.682zm-.428 9.548h.856V4.814h-.856v7.874zm5.901.155c1.162 0 1.988-.434 2.416-.806l-.367-.651c-.337.31-1.101.713-1.988.713-1.712 0-2.476-1.674-2.476-3.41 0-1.829.795-3.348 2.507-3.348.856 0 1.437.341 1.896.713l.428-.62c-.428-.372-1.162-.837-2.324-.837-1.987 0-3.424 1.612-3.424 4.123 0 2.139 1.1 4.123 3.332 4.123z"
6471
- })));
6556
+ }, title) : null, _g || (_g = /*#__PURE__*/createElement("g", {
6557
+ clipPath: "url(#logo_firstbook_color_negative_svg__clip0_50221_35656)"
6558
+ }, /*#__PURE__*/createElement("path", {
6559
+ d: "M78.283 0h-.425C74.686.183.018 4.8.018 44.05v92.317c0 1.966-.328 3.633 1.634 3.916l74.49 9.384h.931l77.432-8.834c1.961-.233 1.634-1.916 1.634-6.25V46.367C156.074 4.8 81.454.183 78.283 0z",
6560
+ fill: "#fff"
6561
+ }), /*#__PURE__*/createElement("path", {
6562
+ d: "M152.885 35.684l-45.148 6.666 43.154-9.283a.663.663 0 00.402-.328.686.686 0 00.056-.522.7.7 0 00-.283-.377.675.675 0 00-.453-.107l-45.181 9.334 42.5-11.933a.648.648 0 00.402-.319.694.694 0 00-.255-.928.658.658 0 00-.506-.07l-42.68 11.666 39.688-13.833a.675.675 0 00.389-.343.693.693 0 00-.301-.92.66.66 0 00-.513-.037l-41.764 13.983 38.201-16.183a.677.677 0 00.365-.368.697.697 0 00.003-.523.677.677 0 00-.361-.373.66.66 0 00-.514-.002l-40.669 16.85 36.387-18.9a.694.694 0 00.245-.933.69.69 0 00-.374-.303.673.673 0 00-.476.019l-37.76 19.05 33.232-20.817a.712.712 0 00.229-.85.685.685 0 00-.418-.317.658.658 0 00-.514.084l-35.57 21.667L124.885 13.1a.675.675 0 00.264-.447.678.678 0 00-.133-.503.662.662 0 00-.434-.277.644.644 0 00-.498.127L91.816 36.017l26.84-25.384a.708.708 0 00-.036-.93.682.682 0 00-.912-.07L89.266 35.768 112.036 8.5a.695.695 0 00-.065-.966.665.665 0 00-.948.066L87.452 34.9l18.095-28.05a.685.685 0 00-.421-1.054.66.66 0 00-.691.288L84.82 35.167 98.632 5.5a.696.696 0 00-.03-.519.675.675 0 00-.378-.347.658.658 0 00-.438-.005.672.672 0 00-.347.271L83.071 34.267l8.974-29.7a.68.68 0 00-.258-.693.648.648 0 00-.233-.107.659.659 0 00-.445.063.679.679 0 00-.306.337l-9.808 29.866 4.511-30a.694.694 0 00-.118-.509.66.66 0 00-.936-.153.686.686 0 00-.27.446l-5.329 30.716L78.69 3.7a.69.69 0 00-.196-.483.664.664 0 00-.948 0 .69.69 0 00-.196.483l-.507 31.034-5.116-30.967a.684.684 0 00-.272-.424.66.66 0 00-.913.138.693.693 0 00-.14.486L74.768 35 64.551 4.2a.678.678 0 00-.334-.355.659.659 0 00-.482-.034.673.673 0 00-.379.304.695.695 0 00-.08.485l9.3 30.4L57.539 5a.672.672 0 00-.407-.318.659.659 0 00-.508.068.698.698 0 00-.297.381.713.713 0 00.019.486l14.14 29.666L50.508 6.25a.682.682 0 00-.434-.286.663.663 0 00-.506.111.682.682 0 00-.28.443.702.702 0 00.109.516l18.65 28.216-24.29-27.416a.672.672 0 00-.464-.226.66.66 0 00-.484.176.683.683 0 00-.22.472.696.696 0 00.171.494l23.146 26.983L37.122 9.867a.664.664 0 00-.948.05.693.693 0 00.049.966L62.736 35.45 31.172 12.117a.649.649 0 00-.742-.034.66.66 0 00-.19.184.673.673 0 00.13.95l30.127 22.867-34.965-21.35a.647.647 0 00-.915.233.695.695 0 00.212.933L58.486 37 20.187 17.75a.658.658 0 00-.493-.015.674.674 0 00-.37.334.696.696 0 00-.045.501.682.682 0 00.303.397l36.011 18.6L15.496 20.9a.66.66 0 00-.73.152.684.684 0 00-.194.485.695.695 0 00.199.483.67.67 0 00.218.147l38.97 16.65-42.697-14.334a.66.66 0 00-.72.202.69.69 0 00-.093.755c.08.162.22.286.388.343L51.947 40 7.634 28.334a.66.66 0 00-.479.095.695.695 0 00-.234.896c.08.152.211.268.37.325l42.892 11.667-45.507-9.05a.662.662 0 00-.713.23.69.69 0 00-.065.758.684.684 0 00.402.328h.098L47.01 42.45 2.55 36.117a.661.661 0 00-.477.142.694.694 0 00-.135.93.67.67 0 00.416.278l31.989 4.85L77.709 47.5l37.041-4.483 38.331-5.984a.664.664 0 00.58-.483.699.699 0 00-.216-.732.66.66 0 00-.494-.152l-.066.018z",
6563
+ fill: "#ED1C24"
6564
+ }), /*#__PURE__*/createElement("path", {
6565
+ d: "M165.507 134.684a1.79 1.79 0 00-.474-.384 1.36 1.36 0 00.866-.433 1.23 1.23 0 00.294-.85 1.326 1.326 0 00-.196-.7.997.997 0 00-.506-.433 3.068 3.068 0 00-1.03-.117h-1.635v4.483h.801v-1.666h.164c.13-.016.262-.016.392 0 .086.04.164.096.229.166.147.184.278.384.408.584l.556.85h1.095l-.539-.85a4.457 4.457 0 00-.425-.65zm-1.308-.867h-.506V132.6h.539c.191.101.406.147.621.134.126.01.243.07.327.166.079.099.12.223.114.35a.535.535 0 010 .317.417.417 0 01-.228.183 3.196 3.196 0 01-.867.067z",
6566
+ fill: "#00ACE4"
6567
+ }), /*#__PURE__*/createElement("path", {
6568
+ d: "M164.379 130a4.061 4.061 0 00-2.291.699 4.182 4.182 0 00-1.525 1.878 4.283 4.283 0 00-.244 2.426 4.237 4.237 0 001.119 2.155c.574.59 1.307.993 2.105 1.158a4.055 4.055 0 002.381-.229 4.142 4.142 0 001.855-1.54 4.278 4.278 0 00.396-3.939 4.216 4.216 0 00-.888-1.366 4.108 4.108 0 00-1.333-.916 4.049 4.049 0 00-1.575-.326zm0 7.817a3.51 3.51 0 01-1.98-.613 3.61 3.61 0 01-1.312-1.63 3.693 3.693 0 01.772-3.96 3.547 3.547 0 011.825-.994 3.503 3.503 0 012.059.207c.651.275 1.207.74 1.599 1.338.391.597.6 1.3.6 2.018a3.687 3.687 0 01-1.048 2.565 3.549 3.549 0 01-2.515 1.069zM77.857 51.817h.163l-21.168-2.4v.016L1.635 42.95v95.1l74.865 9.767 77.987-9.117V42.95l-76.63 8.867z",
6569
+ fill: "#00ACE4"
6570
+ }), /*#__PURE__*/createElement("path", {
6571
+ d: "M9.645 98.1V67.567l16.804 2.083V76l-9.612-1.2v5.833l6.816.85v6.167l-6.816-.85v12.183L9.645 98.1z",
6572
+ fill: "#ED1C24"
6573
+ }), /*#__PURE__*/createElement("path", {
6574
+ d: "M9.939 68.334l15.708 1.933v5l-9.202-1.15v7.05l6.8.85v5l-6.8-.85v12.167l-6.408-.8v-29.4l-.098.2zm-1.095-1.467v31.667l1.078.133 6.343.783 1.373.167V87.484l5.492.683 1.406.167V80.95l-1.03-.133-5.77-.717v-4.6l7.911 1 1.292.167V69.1l-1.047-.133-15.708-1.917-1.34-.166v-.017z",
6575
+ fill: "#fff"
6576
+ }), /*#__PURE__*/createElement("path", {
6577
+ d: "M26.448 100.116v-22.15l6.407.8V100.9l-6.407-.784z",
6578
+ fill: "#ED1C24"
6579
+ }), /*#__PURE__*/createElement("path", {
6580
+ d: "M27.268 78.683l5.181.65v20.85l-5.198-.65v-20.8l.017-.05zm-1.21-1.417V100.6l1.046.133 5.215.65 1.34.167V78.216l-1.046-.133-5.215-.65-1.34-.167z",
6581
+ fill: "#fff"
6582
+ }), /*#__PURE__*/createElement("path", {
6583
+ d: "M34.85 101.216v-22.35l5.51.7.18 2.267a4.19 4.19 0 011.535-1.525 4.089 4.089 0 012.076-.542c.776.02 1.543.166 2.273.434l.392.15v6.483l-.736-.166a9.893 9.893 0 00-2.599-.45c-1.52 0-2.223.616-2.223 1.95V102l-6.407-.784z",
6584
+ fill: "#ED1C24"
6585
+ }), /*#__PURE__*/createElement("path", {
6586
+ d: "M35.226 79.567l4.364.533.344 4.217c.719-2.717 2.125-3.95 4.037-3.95.709.017 1.41.152 2.076.4V86a9.811 9.811 0 00-2.779-.467c-2.06 0-2.828 1.1-2.828 2.567v13.216l-5.198-.649V79.55l-.016.017zm-1.177-1.4v23.599l1.046.134 5.215.65 1.34.166V88.083c0-.683.13-1.35 1.635-1.35a9.215 9.215 0 012.435.417l1.553.45v-7.7l-.8-.284a7.488 7.488 0 00-2.486-.483 4.606 4.606 0 00-3.122 1.167V79l-.98-.117-4.48-.55-1.356-.166z",
6587
+ fill: "#fff"
6588
+ }), /*#__PURE__*/createElement("path", {
6589
+ d: "M56.542 104.217a12.257 12.257 0 01-1.34-.083c-4.904-.6-7.945-3.834-7.945-8.25v-1.45l5.607.7v1.2c-.065.57.095 1.143.445 1.593.35.45.86.74 1.418.807h.867c.899 0 1.258-.334 1.258-1.2 0-1.417-1.373-2.234-4.233-3.8-2.403-1.284-4.904-3.1-4.904-6.85 0-3.75 2.452-5.934 6.26-5.934a7.738 7.738 0 011.243 0c4.43.55 7.274 3.584 7.274 7.717v1.017l-5.264-.567V87.9c0-1.133-.637-1.766-1.961-1.933h-.442c-.931 0-1.111.417-1.111 1.017 0 .866.752 1.533 3.269 2.833 3.024 1.567 6.097 3.767 6.097 8.2.02.802-.116 1.6-.4 2.347a6.108 6.108 0 01-1.254 2.011 5.973 5.973 0 01-1.915 1.365 5.865 5.865 0 01-2.283.51l-.686-.033z",
6590
+ fill: "#ED1C24"
6591
+ }), /*#__PURE__*/createElement("path", {
6592
+ d: "M53.959 81.433h1.193c4.397.55 6.865 3.484 6.865 7.234v.35l-4.397-.55v-.634c0-1.383-.784-2.333-2.5-2.55h-.524c-1.111 0-1.634.55-1.634 1.667s1.013 2.05 3.547 3.333c3.269 1.667 5.786 3.767 5.786 7.65a5.577 5.577 0 01-.359 2.109 5.492 5.492 0 01-1.123 1.808c-.487.522-1.07.94-1.717 1.232a5.28 5.28 0 01-2.048.468h-.687c-.418.033-.84.033-1.258 0-4.904-.6-7.421-3.783-7.421-7.633v-.767l4.397.55v.75a2.851 2.851 0 00.615 2.061c.231.285.515.521.836.694.321.172.672.278 1.033.312h.883c1.226 0 1.88-.584 1.88-1.85 0-1.85-1.635-2.817-4.61-4.4-2.975-1.584-4.61-3.334-4.61-6.417 0-3.433 2.338-5.417 5.755-5.417h.098zm.245-1.05c-4.185 0-6.898 2.6-6.898 6.667s2.779 6.2 5.214 7.5l.18.1-4.364-.55-1.34-.167v2.117c0 4.667 3.268 8.083 8.27 8.717a13.1 13.1 0 001.373 0 6.32 6.32 0 002.492-.277 6.378 6.378 0 002.199-1.228 6.517 6.517 0 001.57-1.992c.39-.763.629-1.596.703-2.453V98.1c0-4.25-2.616-6.533-5.41-8.133l3.873.483 1.34.167V88.95c0-4.533-3.072-7.85-7.846-8.45-.439-.053-.881-.08-1.324-.083l-.032-.034zm2.37 8.634c-1.88-1.034-2.256-1.5-2.256-1.934a.527.527 0 010-.316.979.979 0 01.442 0h.36c1.29.166 1.405.75 1.405 1.283v1l.049-.033zM55.43 98.35h-.442c-1.176-.15-1.634-.683-1.634-1.85V95c1.863 1.067 2.779 1.667 2.779 2.65 0 .5 0 .617-.67.617l-.033.083z",
6593
+ fill: "#fff"
6594
+ }), /*#__PURE__*/createElement("path", {
6595
+ d: "M67.038 105.2l-.147-.317a16.956 16.956 0 01-1.243-7.55v-9.417l-2.402-.333v-5.4l2.795.35v-3.7L72.448 78v5.333l3.27.4v5.283l-3.27-.4V98a14.15 14.15 0 001.374 7l.572 1.083-7.356-.883z",
6596
+ fill: "#ED1C24"
6597
+ }), /*#__PURE__*/createElement("path", {
6598
+ d: "M71.662 78.733V83.9l3.27.4v4.033l-3.27-.4v10.25A13.95 13.95 0 0073.02 105l-5.46-.684a15.26 15.26 0 01-1.111-6.833v-10.1l-2.795-.35v-4.166l2.795.35V79.35l5.05-.65.164.033zm1.21-1.433l-1.39.183-5.165.667-1.079.183v3.5l-1.47-.166-1.276-.167v6.666l1.095.134 1.635.216v9.1A16.773 16.773 0 0066.481 105l.278.6h.653l5.476.683 2.322.383-1.08-2.05a12.927 12.927 0 01-1.225-6.283v-8.916l1.88.233 1.307.166V83.15l-1.03-.134-2.174-.266V77.3h-.016zM90.935 104.75l-10.478 1.217V77.1l10.216-1.166c4.512-.517 6.996 1.666 6.996 5.716v2.133s-.751 5-3.645 5.834c3.008.383 4.07 4.9 4.07 4.9V97.3c0 4.167-2.582 6.917-7.16 7.45zm1.128-21.817c0-1.433-.605-2.283-2.19-2.1l-3.417.417v7.417l3.171-.334c.327-.004.649-.074.949-.205.3-.131.57-.322.799-.56a2.575 2.575 0 00.704-1.801 1.289 1.289 0 000-.25l-.016-2.584zm0 11.9c0-1.666-.834-2.4-2.387-2.233l-3.269.367v7.367l3.514-.334c.286-.004.568-.066.83-.181.262-.116.5-.283.698-.492a2.256 2.256 0 00.614-1.577 1.289 1.289 0 000-.25v-2.666zM107.705 103.083c-4.364.5-7.241-1.866-7.241-6.466V90a8.012 8.012 0 011.941-5.684 7.71 7.71 0 015.3-2.65 5.853 5.853 0 012.331-.03 5.899 5.899 0 012.164.884 6.013 6.013 0 011.667 1.66 6.127 6.127 0 01.998 4.153V95a7.875 7.875 0 01-1.962 5.531 7.581 7.581 0 01-5.198 2.552zm1.962-15.1a1.963 1.963 0 00-.384-1.418 1.89 1.89 0 00-1.251-.732 1.954 1.954 0 00-.539 0 2.42 2.42 0 00-1.645.86 2.511 2.511 0 00-.578 1.79v8.334a1.941 1.941 0 00.575 1.647 1.846 1.846 0 001.648.486 2.439 2.439 0 001.608-.88 2.536 2.536 0 00.566-1.77v-8.317zM124.509 101.15c-4.364.5-7.241-1.867-7.241-6.467v-6.667a7.997 7.997 0 011.978-5.613 7.694 7.694 0 015.263-2.603 5.872 5.872 0 014.485.86 6.087 6.087 0 012.577 3.84 6 6 0 01.098 1.866v6.667a7.859 7.859 0 01-1.945 5.557 7.562 7.562 0 01-5.215 2.56zm1.962-15.1a1.955 1.955 0 00-.092-.895 1.923 1.923 0 00-.483-.753 1.869 1.869 0 00-.767-.446 1.844 1.844 0 00-.881-.04 2.421 2.421 0 00-1.645.86 2.516 2.516 0 00-.578 1.79V94.9a1.949 1.949 0 00.359 1.454 1.858 1.858 0 001.275.746c.222.041.449.041.671 0a2.439 2.439 0 001.608-.88 2.536 2.536 0 00.566-1.77l-.033-8.4zM144.549 98.584l-3.27-7.95-1.961 3.7V99.2l-5.264.584V70.9l5.199-.6v17.484l4.773-10 5.067-.584-4.577 9.25 5.1 11.55-5.067.584zM30.078 67.834l1.046 2.966 2.37.334-1.716 1.483.72 2.817-2.42-1.784-2.435 1.117.719-2.617-1.716-1.933 2.37.283 1.062-2.666z",
6599
+ fill: "#fff"
6600
+ }))));
6472
6601
  }
6473
6602
 
6474
- var _path$x;
6603
+ var _path$w, _path2$f;
6475
6604
 
6476
6605
  var _excluded$A = ["title", "titleId"];
6477
6606
 
@@ -6481,24 +6610,28 @@ function _objectWithoutProperties$z(source, excluded) { if (source == null) retu
6481
6610
 
6482
6611
  function _objectWithoutPropertiesLoose$A(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; }
6483
6612
 
6484
- function SvgLogoLpaWhite(_ref) {
6613
+ function SvgLogoLpaColor(_ref) {
6485
6614
  var title = _ref.title,
6486
6615
  titleId = _ref.titleId,
6487
6616
  props = _objectWithoutProperties$z(_ref, _excluded$A);
6488
6617
 
6489
6618
  return /*#__PURE__*/createElement("svg", _extends$A({
6490
6619
  viewBox: "0 0 186 74",
6491
- fill: "#fff",
6620
+ fill: "none",
6492
6621
  xmlns: "http://www.w3.org/2000/svg",
6493
6622
  "aria-labelledby": titleId
6494
6623
  }, props), title ? /*#__PURE__*/createElement("title", {
6495
6624
  id: titleId
6496
- }, title) : null, _path$x || (_path$x = /*#__PURE__*/createElement("path", {
6497
- d: "M44.43 13.745c-3.302-2.913-7.002-4.835-11.527-5.58-5.565-.93-9.692.404-12.047 1.179-.489.155-.55.465-.55.868-.03 1.023.397 1.829.734 2.139.367.34.734.154 1.284-.032 2.17-.744 5.167-1.27 8.316-.899 2.997.341 5.779 1.271 7.858 2.45-2.935.433-7.338 1.58-11.955 4.959-3.791-.217-8.56.31-13.85 3.007C2.664 26.92-3.634 39.846 2.297 53.919c2.416 5.703 7.889 10.973 14.279 12.864 3.73 1.116 7.063 1.023 7.95.96.275.218.733.559 1.284.93 8.958 6.014 17.213 4.805 22.075 2.108 4.464-2.48 10.395-8.71 10.579-19.56 8.285-8.09 6.726-17.42 5.625-21.388-2.599-9.454-11.282-15.437-19.66-16.088zm9.54 33.478c.03.713-.276 1.023-1.102 1.612-1.1.775-2.782 1.705-4.433 2.232-.214.062-.306-.186-.245-.341.214-.403.52-1.023.704-1.426.367-.806.733-1.643 1.04-2.449.641-1.674 1.283-3.844 1.68-5.61.062-.28.245-.31.337-.155.184.279.795 1.673 1.223 3.068.459 1.488.764 2.666.795 3.07zm-8.562.961c-.642 1.333-1.223 2.449-1.834 3.224-.367.465-2.783 1.302-7.247-.62-3.118-1.333-4.892-2.728-7.552-6.262-.611-.837-1.1-1.55-1.437-2.077-.367-.588-.55-1.053-1.59-.837-.764.155-2.385.806-3.271 2.14-.337.526-.092.96.214 1.456.58.992 1.468 2.17 2.293 3.162 2.905 3.534 6.574 6.51 10.885 7.998.58.185 1.681.495 2.17.62.337.093.49.495.306.681-1.131 1.24-4.066 3.255-4.953 3.72-2.14 1.116-4.311 1.891-5.931 2.139-.55.093-1.07.186-1.835-.465-.948-.837-1.804-1.829-2.568-2.82-1.498-1.985-2.66-4.248-3.455-6.603-1.651-4.867-1.835-10.168-.703-15.158 1.04-4.619 3.18-8.959 6.298-12.492.428-.496 2.049-2.108 2.538-2.45.397-.247.917-.495 2.201-.247 2.08.434 5.565 1.457 9.295 3.782 4.984 3.1 7.827 6.54 8.714 7.656.703.899.734 1.519.611 2.51-.428 4.185-2.018 8.587-3.149 10.943zM43.39 18.178c.245.031.52.093.887.589.703.992 1.865 3.007 2.323 4.06.826 1.985 1.468 4.526 1.743 5.797.061.31-.183.248-.275.186-.275-.31-.856-.806-1.04-.96-.855-.869-3.332-2.883-6.237-4.588-2.599-1.52-5.656-2.76-6.91-3.1-.153-.031-.214-.279-.03-.372.55-.248 2.323-.93 4.464-1.333 1.65-.31 3.516-.434 5.075-.279zM4.132 46.696c-1.07-6.664.917-13.205 5.228-17.452 2.324-2.293 5.137-4.122 8.225-5.145.917-.31 2.568-.744 3.669-.93.306-.031.397.34.214.527-1.04 1.116-2.507 3.44-2.966 4.215-3.577 6.045-5.136 13.33-4.403 20.335.887 8.648 5.106 13.856 5.779 14.755.153.217.306.589-.03.651-.062 0-.398-.062-.887-.155-9.57-2.139-13.82-10.57-14.83-16.8zm27.212 20.242c-.367-.155-.337-.434 0-.558.947-.341 2.69-1.054 3.516-1.52a26.587 26.587 0 004.647-3.223c.734-.62 2.293-2.046 3.21-3.13.306-.373.826-1.024 1.835-1.148 1.957-.217 2.538-.31 3.914-.65 1.314-.342 3.577-1.147 5.075-1.984.184-.093.49 0 .398.465-.673 3.378-2.997 8.586-7.155 11.252-4.8 3.162-10.395 2.82-15.44.496zm26.63-23.528c-.244.403-.611.31-.764-.03-.122-.373-.275-.9-.398-1.272-.642-1.797-1.436-3.564-2.415-5.207a56.94 56.94 0 00-1.62-2.542c-.367-.558-.367-.837-.367-1.519-.03-3.875-1.223-9.206-3.119-12.647-.183-.341.092-.558.306-.465 5.106 2.387 7.858 5.89 9.172 9.206 2.936 7.378.52 12.275-.795 14.476zM84.349 38.204c0-2.356-1.804-3.472-4.158-3.472h-3.578v11.005h2.324V41.8h.978c2.722 0 4.434-1.21 4.434-3.596zm-2.324.031c0 1.209-.611 1.829-2.079 1.829h-1.009V36.53h1.07c1.437-.03 2.018.59 2.018 1.705zm4.892 3.968h5.014c.276-2.976-.947-4.712-3.424-4.712-2.202 0-3.914 1.643-3.914 4.185 0 2.573 1.498 4.247 4.158 4.247 1.621 0 2.447-.465 2.966-.775l-.703-1.426c-.397.186-.978.558-2.079.558-1.284 0-1.896-.837-2.018-2.077zm0-1.488c.153-1.054.673-1.643 1.59-1.643.978 0 1.345.744 1.376 1.643h-2.966zm11.557-3.007c-.183-.093-.489-.217-1.07-.217-1.009 0-1.65.682-1.987 1.302v-1.085h-2.17v8.029h2.17v-5.053c.183-.372.764-1.209 1.712-1.209.459 0 .703.093.826.186l.52-1.953zm3.578 1.612h1.895v-1.643h-1.895v-.65c0-1.055.397-1.582 1.284-1.582.581 0 .948.155 1.101.217l.489-1.643c-.184-.124-.765-.372-1.927-.372-2.017 0-3.118 1.302-3.118 3.224v.837h-1.193v1.643h1.193v6.417h2.171V39.32zm10.242 2.325c0-2.077-1.253-4.185-4.005-4.185s-3.944 2.17-3.944 4.247 1.192 4.185 3.975 4.185c2.751.03 3.974-2.201 3.974-4.247zm-2.293.093c0 1.488-.428 2.51-1.681 2.51-1.223 0-1.713-1.084-1.713-2.603 0-1.488.398-2.542 1.621-2.542 1.253 0 1.773 1.116 1.773 2.635zm8.653-4.03c-.184-.093-.489-.217-1.07-.217-1.009 0-1.651.682-1.988 1.302v-1.085h-2.17v8.029h2.17v-5.053c.184-.372.765-1.209 1.713-1.209.458 0 .703.093.825.186l.52-1.953zm7.307 1.054c-.305-.744-.917-1.27-2.048-1.27-1.284 0-1.957.712-2.385 1.177v-.992h-2.11v8.029h2.171V40.28c.153-.217.673-.992 1.468-.992.642 0 .917.403.917 1.209v5.177h2.171v-5.487c.305-.372.795-.899 1.467-.899.704 0 .948.434.948 1.209v5.177h2.171v-5.642c0-1.488-.581-2.604-2.263-2.604-1.131.062-1.865.558-2.507 1.333zm8.622-1.085h-2.17v8.029h2.17v-8.029zm.245-2.356c0-.682-.581-1.302-1.345-1.302-.765 0-1.315.59-1.315 1.302 0 .713.55 1.333 1.315 1.333a1.34 1.34 0 001.345-1.333zm8.714 10.385v-5.642c0-1.488-.642-2.604-2.385-2.604-1.315 0-2.11.713-2.538 1.21v-.993h-2.109v8.029h2.17v-5.394c.153-.217.795-.992 1.621-.992.795 0 1.07.403 1.07 1.209v5.177h2.171zm6.084-8.029c-.397-.124-.886-.186-1.406-.186-2.202 0-3.516 1.178-3.516 2.914 0 1.054.52 1.89 1.406 2.418-.458.279-.886.744-.886 1.519 0 .589.275.96.703 1.209-.795.434-1.346 1.084-1.346 1.953 0 1.456 1.315 2.138 3.486 2.138 2.599 0 4.342-1.209 4.342-2.914 0-2.386-2.079-2.386-3.731-2.48-1.131-.061-1.589-.154-1.589-.588 0-.217.152-.372.305-.465.306.062.612.093.948.093 2.202 0 3.425-1.178 3.425-2.914 0-.465-.092-.899-.306-1.302h1.07v-1.426h-2.905v.031zm-1.406 4.216c-.887 0-1.437-.558-1.437-1.488 0-.93.55-1.488 1.437-1.488s1.437.558 1.437 1.488c0 .93-.52 1.488-1.437 1.488zm-.917 4.092c.336.062.703.093 1.07.124 1.162.093 1.895.062 1.895.898 0 .682-.733 1.178-2.079 1.178-1.1 0-1.559-.434-1.559-1.085.031-.465.245-.837.673-1.115zm11.863-2.325h4.341l.734 2.077h2.507l-4.25-11.005h-2.232l-4.127 11.005h2.323l.704-2.077zm3.669-1.86h-3.027l.917-2.635c.336-.93.55-1.767.581-1.89h.031c.03.123.244.96.58 1.89l.918 2.635zm9.937-4.092c-.184-.093-.49-.217-1.071-.217-1.009 0-1.651.682-1.987 1.302v-1.085h-2.171v8.029h2.171v-5.053c.184-.372.764-1.209 1.712-1.209.459 0 .704.093.826.186l.52-1.953zm1.498 1.612v4.092c0 1.55.642 2.51 2.507 2.51.978 0 1.651-.278 1.987-.464l-.489-1.643c-.153.093-.581.31-1.039.31-.612 0-.795-.341-.795-1.147V39.32h1.865v-1.643h-1.865v-2.325H174.3v2.325h-1.284v1.643h1.254zm10.732 4.03c0-1.364-.918-1.922-2.171-2.45-.918-.371-1.621-.526-1.621-1.053 0-.434.337-.713 1.101-.713s1.376.31 1.682.527l.764-1.488c-.367-.217-1.192-.65-2.538-.65-1.804 0-2.966.96-2.966 2.448 0 1.209.673 1.86 1.774 2.387 1.131.558 1.987.682 1.987 1.24 0 .465-.458.713-1.315.713-.886 0-1.651-.434-1.956-.651l-.734 1.519c.489.34 1.406.744 2.813.744 2.018 0 3.18-.9 3.18-2.573zM76.72 29.733h5.228v-.775h-4.342V18.73h-.886v11.004zm7.246-9.516c.367 0 .642-.31.642-.682a.65.65 0 00-.642-.65.65.65 0 00-.642.65c0 .372.275.682.642.682zm-.428 9.516h.856V21.86h-.856v7.873zm5.565.186c2.384 0 3.852-1.922 3.852-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.899V17.83h-.856V29.3c.581.371 1.437.62 2.355.62zm.03-.744c-.611 0-1.162-.124-1.529-.31v-5.517c.428-.496 1.223-.9 1.896-.9 1.896 0 2.538 1.644 2.538 3.349.03 1.642-.917 3.378-2.905 3.378zm5.779.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.08 1.55V21.89h-.886v7.842zm6.604.186c.917 0 1.804-.465 2.354-1.178.031.28.061.744.123.992h.856c-.092-.34-.153-.899-.153-1.58v-3.968c0-1.705-.887-2.511-2.477-2.511-1.009 0-1.865.34-2.537.992l.458.589c.642-.62 1.284-.837 2.018-.837 1.162 0 1.712.589 1.712 1.86v.899h-.367c-1.804 0-4.097.589-4.097 2.697-.06 1.24.826 2.045 2.11 2.045zm.122-.744c-.672 0-1.406-.465-1.406-1.332 0-1.457 1.467-1.984 3.21-1.984h.367v2.107c-.581.775-1.315 1.21-2.171 1.21zm5.32.558h.856v-5.486c.215-.465.918-1.736 1.988-1.736.336 0 .52.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.856v7.842h-.031zm4.77 3.782c1.682 0 2.293-1.178 2.844-2.666l3.332-9.02h-.886l-2.385 6.757-2.446-6.757h-.918l2.905 7.811-.397 1.116c-.459 1.24-.918 1.984-2.049 1.984-.306 0-.428-.03-.55-.062l-.123.713c.153.093.337.124.673.124zm11.588-3.782h.826v-7.191h2.017v-.682h-2.017v-1.24c0-1.426.58-2.17 1.773-2.17.458 0 .825.124.978.217l.214-.744c-.214-.093-.611-.217-1.192-.217-1.712 0-2.63 1.085-2.63 2.883v1.333h-1.345v.682h1.345v7.13h.031zm6.879.186c2.446 0 3.547-2.17 3.547-4.153 0-1.953-1.131-4.092-3.577-4.092-2.446 0-3.486 2.139-3.486 4.123.031 1.983 1.101 4.122 3.516 4.122zm.031-.744c-1.743 0-2.63-1.611-2.63-3.41 0-1.766.795-3.347 2.569-3.347 1.773 0 2.69 1.612 2.69 3.379 0 1.797-.856 3.378-2.629 3.378zm5.473.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.857v7.842h-.03zm10.793.186a2.65 2.65 0 001.498-.465l-.336-.65c-.153.123-.612.371-1.07.371-.704 0-.948-.434-.948-1.24v-5.362h1.987v-.682h-1.987v-2.263h-.856v2.232h-1.315v.682h1.315v5.424c0 1.24.55 1.953 1.712 1.953zm3.149-.186h.856V24c.275-.434 1.223-1.55 2.385-1.55 1.162 0 1.59.713 1.59 1.89v5.394h.856v-5.58c0-1.425-.642-2.48-2.263-2.48-1.314 0-2.201.9-2.568 1.427v-5.27h-.856v11.903zm11.068.186c1.254 0 2.14-.434 2.63-.806l-.367-.682c-.428.341-1.254.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.186h5.351c.031-.155.031-.28.031-.434 0-2.015-1.071-3.441-2.936-3.441-2.079 0-3.332 1.829-3.332 4.03 0 2.293 1.1 4.215 3.485 4.215zm-2.538-5.083c.214-1.364 1.009-2.418 2.355-2.418 1.467 0 2.079 1.209 2.109 2.418h-4.464zM76.687 12.688h.825V3.14l6.513 9.548h.825V1.684h-.856v9.485l-6.451-9.485h-.887v11.004h.03zm13.178.155c1.253 0 2.14-.434 2.63-.806l-.368-.682c-.428.34-1.253.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.187h5.351c.031-.155.031-.279.031-.434 0-2.015-1.07-3.44-2.935-3.44-2.08 0-3.333 1.828-3.333 4.03 0 2.293 1.1 4.215 3.486 4.215zM87.327 7.79c.214-1.364 1.009-2.418 2.354-2.418 1.468 0 2.08 1.21 2.11 2.418h-4.464zm8.5 4.898h.795l2.11-6.634 2.109 6.634h.795l2.354-7.874h-.856l-1.895 6.572-2.049-6.572h-.825l-2.049 6.54-1.896-6.54h-.917l2.324 7.874zm15.257 0h.886V8.534l3.608-6.85h-.917l-3.088 5.951h-.031l-3.088-5.951h-1.009l3.639 6.85v4.154zm7.093.155c2.446 0 3.547-2.17 3.547-4.154 0-1.953-1.132-4.092-3.578-4.092-2.445 0-3.485 2.14-3.485 4.123 0 2.015 1.07 4.123 3.516 4.123zm0-.744c-1.773 0-2.629-1.612-2.629-3.41 0-1.767.795-3.348 2.568-3.348 1.773 0 2.691 1.612 2.691 3.38 0 1.797-.857 3.378-2.63 3.378zm5.167.589h.856V7.2c.214-.465.918-1.736 1.988-1.736.336 0 .519.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.961-2.079 1.55V4.845h-.887v7.843zm9.723 0h1.07l-3.608-4.433 3.425-3.44h-1.07l-3.394 3.44 3.577 4.433zm-4.525 0h.856V.816h-.856v11.872zm11.007 0h.887v-4.68h1.376c2.446 0 3.821-1.24 3.821-3.225 0-1.953-1.437-3.1-3.699-3.1h-2.385v11.005zm.887-5.456V2.46h1.376c2.079 0 2.874.991 2.874 2.355 0 1.457-.857 2.418-2.905 2.418h-1.345zm8.866 5.61c1.315 0 2.202-.867 2.569-1.456 0 .434.061 1.023.122 1.302h.856c-.092-.31-.153-.9-.153-1.52V4.815h-.856v5.704c-.275.465-1.223 1.58-2.385 1.58-1.192 0-1.59-.743-1.59-1.89V4.814h-.856v5.549c0 1.426.642 2.48 2.293 2.48zm8.072 0c2.385 0 3.853-1.921 3.853-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.9V.753h-.856v11.469c.55.403 1.406.62 2.354.62zm.031-.743c-.612 0-1.162-.124-1.498-.31V6.302c.428-.496 1.223-.899 1.895-.899 1.896 0 2.538 1.643 2.538 3.348-.031 1.643-.978 3.348-2.935 3.348zm5.442.589h.856V.816h-.856v11.872zm3.73-9.548c.367 0 .642-.31.642-.681a.65.65 0 00-.642-.651.65.65 0 00-.642.65c0 .403.306.682.642.682zm-.428 9.548h.856V4.814h-.856v7.874zm5.901.155c1.162 0 1.988-.434 2.416-.806l-.367-.651c-.337.31-1.101.713-1.988.713-1.712 0-2.476-1.674-2.476-3.41 0-1.829.795-3.348 2.507-3.348.856 0 1.437.341 1.896.713l.428-.62c-.428-.372-1.162-.837-2.324-.837-1.987 0-3.424 1.612-3.424 4.123 0 2.139 1.1 4.123 3.332 4.123z"
6625
+ }, title) : null, _path$w || (_path$w = /*#__PURE__*/createElement("path", {
6626
+ d: "M44.43 13.745c-3.302-2.913-7.002-4.835-11.527-5.58-5.565-.93-9.692.404-12.047 1.179-.489.155-.55.465-.55.868-.03 1.023.397 1.829.734 2.139.367.34.734.154 1.284-.032 2.17-.744 5.167-1.27 8.316-.899 2.997.341 5.779 1.271 7.858 2.45-2.935.433-7.338 1.58-11.955 4.959-3.791-.217-8.56.31-13.85 3.007C2.664 26.92-3.634 39.846 2.297 53.919c2.416 5.703 7.889 10.973 14.279 12.864 3.73 1.116 7.063 1.023 7.95.96.275.218.733.559 1.284.93 8.958 6.014 17.213 4.805 22.075 2.108 4.464-2.48 10.395-8.71 10.579-19.56 8.285-8.09 6.726-17.42 5.625-21.388-2.599-9.454-11.282-15.437-19.66-16.088zm9.54 33.478c.03.713-.276 1.023-1.102 1.612-1.1.775-2.782 1.705-4.433 2.232-.214.062-.306-.186-.245-.341.214-.403.52-1.023.704-1.426.367-.806.733-1.643 1.04-2.449.641-1.674 1.283-3.844 1.68-5.61.062-.28.245-.31.337-.155.184.279.795 1.673 1.223 3.068.459 1.488.764 2.666.795 3.07zm-8.562.961c-.642 1.333-1.223 2.449-1.834 3.224-.367.465-2.783 1.302-7.247-.62-3.118-1.333-4.892-2.728-7.552-6.262-.611-.837-1.1-1.55-1.437-2.077-.367-.588-.55-1.053-1.59-.837-.764.155-2.385.806-3.271 2.14-.337.526-.092.96.214 1.456.58.992 1.468 2.17 2.293 3.162 2.905 3.534 6.574 6.51 10.885 7.998.58.185 1.681.495 2.17.62.337.093.49.495.306.681-1.131 1.24-4.066 3.255-4.953 3.72-2.14 1.116-4.311 1.891-5.931 2.139-.55.093-1.07.186-1.835-.465-.948-.837-1.804-1.829-2.568-2.82-1.498-1.985-2.66-4.248-3.455-6.603-1.651-4.867-1.835-10.168-.703-15.158 1.04-4.619 3.18-8.959 6.298-12.492.428-.496 2.049-2.108 2.538-2.45.397-.247.917-.495 2.201-.247 2.08.434 5.565 1.457 9.295 3.782 4.984 3.1 7.827 6.54 8.714 7.656.703.899.734 1.519.611 2.51-.428 4.185-2.018 8.587-3.149 10.943zM43.39 18.178c.245.031.52.093.887.589.703.992 1.865 3.007 2.323 4.06.826 1.985 1.468 4.526 1.743 5.797.061.31-.183.248-.275.186-.275-.31-.856-.806-1.04-.96-.855-.869-3.332-2.883-6.237-4.588-2.599-1.52-5.656-2.76-6.91-3.1-.153-.031-.214-.279-.03-.372.55-.248 2.323-.93 4.464-1.333 1.65-.31 3.516-.434 5.075-.279zM4.132 46.696c-1.07-6.664.917-13.205 5.228-17.452 2.324-2.293 5.137-4.122 8.225-5.145.917-.31 2.568-.744 3.669-.93.306-.031.397.34.214.527-1.04 1.116-2.507 3.44-2.966 4.215-3.577 6.045-5.136 13.33-4.403 20.335.887 8.648 5.106 13.856 5.779 14.755.153.217.306.589-.03.651-.062 0-.398-.062-.887-.155-9.57-2.139-13.82-10.57-14.83-16.8zm27.212 20.242c-.367-.155-.337-.434 0-.558.947-.341 2.69-1.054 3.516-1.52a26.587 26.587 0 004.647-3.223c.734-.62 2.293-2.046 3.21-3.13.306-.373.826-1.024 1.835-1.148 1.957-.217 2.538-.31 3.914-.65 1.314-.342 3.577-1.147 5.075-1.984.184-.093.49 0 .398.465-.673 3.378-2.997 8.586-7.155 11.252-4.8 3.162-10.395 2.82-15.44.496zm26.63-23.528c-.244.403-.611.31-.764-.03-.122-.373-.275-.9-.398-1.272-.642-1.797-1.436-3.564-2.415-5.207a56.94 56.94 0 00-1.62-2.542c-.367-.558-.367-.837-.367-1.519-.03-3.875-1.223-9.206-3.119-12.647-.183-.341.092-.558.306-.465 5.106 2.387 7.858 5.89 9.172 9.206 2.936 7.378.52 12.275-.795 14.476z",
6627
+ fill: "#008375"
6628
+ })), _path2$f || (_path2$f = /*#__PURE__*/createElement("path", {
6629
+ d: "M84.349 38.204c0-2.356-1.804-3.472-4.158-3.472h-3.578v11.005h2.324V41.8h.978c2.722 0 4.434-1.21 4.434-3.596zm-2.324.031c0 1.209-.611 1.829-2.079 1.829h-1.009V36.53h1.07c1.437-.03 2.018.59 2.018 1.705zm4.892 3.968h5.014c.276-2.976-.947-4.712-3.424-4.712-2.202 0-3.914 1.643-3.914 4.185 0 2.573 1.498 4.247 4.158 4.247 1.621 0 2.447-.465 2.966-.775l-.703-1.426c-.397.186-.978.558-2.079.558-1.284 0-1.896-.837-2.018-2.077zm0-1.488c.153-1.054.673-1.643 1.59-1.643.978 0 1.345.744 1.376 1.643h-2.966zm11.557-3.007c-.183-.093-.489-.217-1.07-.217-1.009 0-1.65.682-1.987 1.302v-1.085h-2.17v8.029h2.17v-5.053c.183-.372.764-1.209 1.712-1.209.459 0 .703.093.826.186l.52-1.953zm3.578 1.612h1.895v-1.643h-1.895v-.65c0-1.055.397-1.582 1.284-1.582.581 0 .948.155 1.101.217l.489-1.643c-.184-.124-.765-.372-1.927-.372-2.017 0-3.118 1.302-3.118 3.224v.837h-1.193v1.643h1.193v6.417h2.171V39.32zm10.242 2.325c0-2.077-1.253-4.185-4.005-4.185s-3.944 2.17-3.944 4.247 1.192 4.185 3.975 4.185c2.751.03 3.974-2.201 3.974-4.247zm-2.293.093c0 1.488-.428 2.51-1.681 2.51-1.223 0-1.713-1.084-1.713-2.603 0-1.488.398-2.542 1.621-2.542 1.253 0 1.773 1.116 1.773 2.635zm8.653-4.03c-.184-.093-.489-.217-1.07-.217-1.009 0-1.651.682-1.988 1.302v-1.085h-2.17v8.029h2.17v-5.053c.184-.372.765-1.209 1.713-1.209.458 0 .703.093.825.186l.52-1.953zm7.307 1.054c-.305-.744-.917-1.27-2.048-1.27-1.284 0-1.957.712-2.385 1.177v-.992h-2.11v8.029h2.171V40.28c.153-.217.673-.992 1.468-.992.642 0 .917.403.917 1.209v5.177h2.171v-5.487c.305-.372.795-.899 1.467-.899.704 0 .948.434.948 1.209v5.177h2.171v-5.642c0-1.488-.581-2.604-2.263-2.604-1.131.062-1.865.558-2.507 1.333zm8.622-1.085h-2.17v8.029h2.17v-8.029zm.245-2.356c0-.682-.581-1.302-1.345-1.302-.765 0-1.315.59-1.315 1.302 0 .713.55 1.333 1.315 1.333a1.34 1.34 0 001.345-1.333zm8.714 10.385v-5.642c0-1.488-.642-2.604-2.385-2.604-1.315 0-2.11.713-2.538 1.21v-.993h-2.109v8.029h2.17v-5.394c.153-.217.795-.992 1.621-.992.795 0 1.07.403 1.07 1.209v5.177h2.171zm6.084-8.029c-.397-.124-.886-.186-1.406-.186-2.202 0-3.516 1.178-3.516 2.914 0 1.054.52 1.89 1.406 2.418-.458.279-.886.744-.886 1.519 0 .589.275.96.703 1.209-.795.434-1.346 1.084-1.346 1.953 0 1.456 1.315 2.138 3.486 2.138 2.599 0 4.342-1.209 4.342-2.914 0-2.386-2.079-2.386-3.731-2.48-1.131-.061-1.589-.154-1.589-.588 0-.217.152-.372.305-.465.306.062.612.093.948.093 2.202 0 3.425-1.178 3.425-2.914 0-.465-.092-.899-.306-1.302h1.07v-1.426h-2.905v.031zm-1.406 4.216c-.887 0-1.437-.558-1.437-1.488 0-.93.55-1.488 1.437-1.488s1.437.558 1.437 1.488c0 .93-.52 1.488-1.437 1.488zm-.917 4.092c.336.062.703.093 1.07.124 1.162.093 1.895.062 1.895.898 0 .682-.733 1.178-2.079 1.178-1.1 0-1.559-.434-1.559-1.085.031-.465.245-.837.673-1.115zm11.863-2.325h4.341l.734 2.077h2.507l-4.25-11.005h-2.232l-4.127 11.005h2.323l.704-2.077zm3.669-1.86h-3.027l.917-2.635c.336-.93.55-1.767.581-1.89h.031c.03.123.244.96.58 1.89l.918 2.635zm9.937-4.092c-.184-.093-.49-.217-1.071-.217-1.009 0-1.651.682-1.987 1.302v-1.085h-2.171v8.029h2.171v-5.053c.184-.372.764-1.209 1.712-1.209.459 0 .704.093.826.186l.52-1.953zm1.498 1.612v4.092c0 1.55.642 2.51 2.507 2.51.978 0 1.651-.278 1.987-.464l-.489-1.643c-.153.093-.581.31-1.039.31-.612 0-.795-.341-.795-1.147V39.32h1.865v-1.643h-1.865v-2.325H174.3v2.325h-1.284v1.643h1.254zm10.732 4.03c0-1.364-.918-1.922-2.171-2.45-.918-.371-1.621-.526-1.621-1.053 0-.434.337-.713 1.101-.713s1.376.31 1.682.527l.764-1.488c-.367-.217-1.192-.65-2.538-.65-1.804 0-2.966.96-2.966 2.448 0 1.209.673 1.86 1.774 2.387 1.131.558 1.987.682 1.987 1.24 0 .465-.458.713-1.315.713-.886 0-1.651-.434-1.956-.651l-.734 1.519c.489.34 1.406.744 2.813.744 2.018 0 3.18-.9 3.18-2.573zM76.72 29.733h5.228v-.775h-4.342V18.73h-.886v11.004zm7.246-9.516c.367 0 .642-.31.642-.682a.65.65 0 00-.642-.65.65.65 0 00-.642.65c0 .372.275.682.642.682zm-.428 9.516h.856V21.86h-.856v7.873zm5.565.186c2.384 0 3.852-1.922 3.852-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.899V17.83h-.856V29.3c.581.371 1.437.62 2.355.62zm.03-.744c-.611 0-1.162-.124-1.529-.31v-5.517c.428-.496 1.223-.9 1.896-.9 1.896 0 2.538 1.644 2.538 3.349.03 1.642-.917 3.378-2.905 3.378zm5.779.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.08 1.55V21.89h-.886v7.842zm6.604.186c.917 0 1.804-.465 2.354-1.178.031.28.061.744.123.992h.856c-.092-.34-.153-.899-.153-1.58v-3.968c0-1.705-.887-2.511-2.477-2.511-1.009 0-1.865.34-2.537.992l.458.589c.642-.62 1.284-.837 2.018-.837 1.162 0 1.712.589 1.712 1.86v.899h-.367c-1.804 0-4.097.589-4.097 2.697-.06 1.24.826 2.045 2.11 2.045zm.122-.744c-.672 0-1.406-.465-1.406-1.332 0-1.457 1.467-1.984 3.21-1.984h.367v2.107c-.581.775-1.315 1.21-2.171 1.21zm5.32.558h.856v-5.486c.215-.465.918-1.736 1.988-1.736.336 0 .52.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.856v7.842h-.031zm4.77 3.782c1.682 0 2.293-1.178 2.844-2.666l3.332-9.02h-.886l-2.385 6.757-2.446-6.757h-.918l2.905 7.811-.397 1.116c-.459 1.24-.918 1.984-2.049 1.984-.306 0-.428-.03-.55-.062l-.123.713c.153.093.337.124.673.124zm11.588-3.782h.826v-7.191h2.017v-.682h-2.017v-1.24c0-1.426.58-2.17 1.773-2.17.458 0 .825.124.978.217l.214-.744c-.214-.093-.611-.217-1.192-.217-1.712 0-2.63 1.085-2.63 2.883v1.333h-1.345v.682h1.345v7.13h.031zm6.879.186c2.446 0 3.547-2.17 3.547-4.153 0-1.953-1.131-4.092-3.577-4.092-2.446 0-3.486 2.139-3.486 4.123.031 1.983 1.101 4.122 3.516 4.122zm.031-.744c-1.743 0-2.63-1.611-2.63-3.41 0-1.766.795-3.347 2.569-3.347 1.773 0 2.69 1.612 2.69 3.379 0 1.797-.856 3.378-2.629 3.378zm5.473.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.857v7.842h-.03zm10.793.186a2.65 2.65 0 001.498-.465l-.336-.65c-.153.123-.612.371-1.07.371-.704 0-.948-.434-.948-1.24v-5.362h1.987v-.682h-1.987v-2.263h-.856v2.232h-1.315v.682h1.315v5.424c0 1.24.55 1.953 1.712 1.953zm3.149-.186h.856V24c.275-.434 1.223-1.55 2.385-1.55 1.162 0 1.59.713 1.59 1.89v5.394h.856v-5.58c0-1.425-.642-2.48-2.263-2.48-1.314 0-2.201.9-2.568 1.427v-5.27h-.856v11.903zm11.068.186c1.254 0 2.14-.434 2.63-.806l-.367-.682c-.428.341-1.254.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.186h5.351c.031-.155.031-.28.031-.434 0-2.015-1.071-3.441-2.936-3.441-2.079 0-3.332 1.829-3.332 4.03 0 2.293 1.1 4.215 3.485 4.215zm-2.538-5.083c.214-1.364 1.009-2.418 2.355-2.418 1.467 0 2.079 1.209 2.109 2.418h-4.464zM76.687 12.688h.825V3.14l6.513 9.548h.825V1.684h-.856v9.485l-6.451-9.485h-.887v11.004h.03zm13.178.155c1.253 0 2.14-.434 2.63-.806l-.368-.682c-.428.34-1.253.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.187h5.351c.031-.155.031-.279.031-.434 0-2.015-1.07-3.44-2.935-3.44-2.08 0-3.333 1.828-3.333 4.03 0 2.293 1.1 4.215 3.486 4.215zM87.327 7.79c.214-1.364 1.009-2.418 2.354-2.418 1.468 0 2.08 1.21 2.11 2.418h-4.464zm8.5 4.898h.795l2.11-6.634 2.109 6.634h.795l2.354-7.874h-.856l-1.895 6.572-2.049-6.572h-.825l-2.049 6.54-1.896-6.54h-.917l2.324 7.874zm15.257 0h.886V8.534l3.608-6.85h-.917l-3.088 5.951h-.031l-3.088-5.951h-1.009l3.639 6.85v4.154zm7.093.155c2.446 0 3.547-2.17 3.547-4.154 0-1.953-1.132-4.092-3.578-4.092-2.445 0-3.485 2.14-3.485 4.123 0 2.015 1.07 4.123 3.516 4.123zm0-.744c-1.773 0-2.629-1.612-2.629-3.41 0-1.767.795-3.348 2.568-3.348 1.773 0 2.691 1.612 2.691 3.38 0 1.797-.857 3.378-2.63 3.378zm5.167.589h.856V7.2c.214-.465.918-1.736 1.988-1.736.336 0 .519.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.961-2.079 1.55V4.845h-.887v7.843zm9.723 0h1.07l-3.608-4.433 3.425-3.44h-1.07l-3.394 3.44 3.577 4.433zm-4.525 0h.856V.816h-.856v11.872zm11.007 0h.887v-4.68h1.376c2.446 0 3.821-1.24 3.821-3.225 0-1.953-1.437-3.1-3.699-3.1h-2.385v11.005zm.887-5.456V2.46h1.376c2.079 0 2.874.991 2.874 2.355 0 1.457-.857 2.418-2.905 2.418h-1.345zm8.866 5.61c1.315 0 2.202-.867 2.569-1.456 0 .434.061 1.023.122 1.302h.856c-.092-.31-.153-.9-.153-1.52V4.815h-.856v5.704c-.275.465-1.223 1.58-2.385 1.58-1.192 0-1.59-.743-1.59-1.89V4.814h-.856v5.549c0 1.426.642 2.48 2.293 2.48zm8.072 0c2.385 0 3.853-1.921 3.853-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.9V.753h-.856v11.469c.55.403 1.406.62 2.354.62zm.031-.743c-.612 0-1.162-.124-1.498-.31V6.302c.428-.496 1.223-.899 1.895-.899 1.896 0 2.538 1.643 2.538 3.348-.031 1.643-.978 3.348-2.935 3.348zm5.442.589h.856V.816h-.856v11.872zm3.73-9.548c.367 0 .642-.31.642-.681a.65.65 0 00-.642-.651.65.65 0 00-.642.65c0 .403.306.682.642.682zm-.428 9.548h.856V4.814h-.856v7.874zm5.901.155c1.162 0 1.988-.434 2.416-.806l-.367-.651c-.337.31-1.101.713-1.988.713-1.712 0-2.476-1.674-2.476-3.41 0-1.829.795-3.348 2.507-3.348.856 0 1.437.341 1.896.713l.428-.62c-.428-.372-1.162-.837-2.324-.837-1.987 0-3.424 1.612-3.424 4.123 0 2.139 1.1 4.123 3.332 4.123z",
6630
+ fill: "#000"
6498
6631
  })));
6499
6632
  }
6500
6633
 
6501
- var _g;
6634
+ var _path$x;
6502
6635
 
6503
6636
  var _excluded$B = ["title", "titleId"];
6504
6637
 
@@ -6508,25 +6641,23 @@ function _objectWithoutProperties$A(source, excluded) { if (source == null) retu
6508
6641
 
6509
6642
  function _objectWithoutPropertiesLoose$B(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; }
6510
6643
 
6511
- function SvgLogoMlnBlack(_ref) {
6644
+ function SvgLogoLpaBlack(_ref) {
6512
6645
  var title = _ref.title,
6513
6646
  titleId = _ref.titleId,
6514
6647
  props = _objectWithoutProperties$A(_ref, _excluded$B);
6515
6648
 
6516
6649
  return /*#__PURE__*/createElement("svg", _extends$B({
6517
- viewBox: "0 0 300 71",
6650
+ viewBox: "0 0 186 74",
6518
6651
  xmlns: "http://www.w3.org/2000/svg",
6519
6652
  "aria-labelledby": titleId
6520
6653
  }, props), title ? /*#__PURE__*/createElement("title", {
6521
6654
  id: titleId
6522
- }, title) : null, _g || (_g = /*#__PURE__*/createElement("g", {
6523
- clipPath: "url(#logo_mln_black_svg__clip0_51609_40290)"
6524
- }, /*#__PURE__*/createElement("path", {
6525
- d: "M0 66.115c3.741-4.266 7.607-8.432 11.173-12.871.254-.504.922-1.196 1.053-1.301.44-.354.774-.943 1.274-1.443.5 0 1.346.528 1.904.626 1.391.63.725.269 1.555.63a52.471 52.471 0 0030.7 3.422c15.464-2.48 30.702-6.175 46.065-9.3 9.726-1.983 19.477-3.819 29.528-2.802a32.053 32.053 0 0114.739 4.628 31.83 31.83 0 0110.824 10.97c.25.398.549.794.923 1.365.349-.37.667-.768.948-1.19 6.759-11.21 17.133-15.946 29.928-16.145 12.245-.198 23.992 2.877 35.813 5.431 11.323 2.48 22.67 4.96 34.118 6.795a57.052 57.052 0 0035.439-4.588l14.091 16.839c-5.163 1.091-9.702 2.48-14.291 2.976-17.906 2.48-35.215-.843-52.373-5.53-12.719-3.447-25.389-7.118-38.258-9.92-10.3-2.306-20.725-2.48-30.526 2.678a37.93 37.93 0 00-12.869 11.185l-1.646 2.182c-3.167-3.273-5.96-6.745-9.302-9.572-7.781-6.547-17.109-8.358-27.085-7.688-13.592.917-26.411 5.233-39.355 8.952a201.691 201.691 0 01-38.058 8.184A89.37 89.37 0 012.62 67.9c-.823-.248-1.721-.347-2.494-.52L-1 67l1-.885zM15.57 30h4.991V11.78h.372L27.798 30h3.507l6.865-18.22h.371V30h4.991V3.226h-6.42l-7.385 19.593h-.333L21.99 3.226h-6.42V30zm36.367 7.2c5.047 0 7.738-1.82 9.556-7.219l6.958-20.41h-5.715L58.45 25.046h-.37L53.792 9.57h-5.956L55.017 30l-.185.78c-.39 1.595-1.503 2.337-3.433 2.337-.5 0-1.039-.018-1.41-.055v4.082c.631.037 1.318.055 1.949.055zM72.757 30h17.516v-4.62H78.359V3.226h-5.603V30zM97.582 6.436c1.67 0 3.043-1.336 3.043-3.006A3.029 3.029 0 0097.582.405c-1.67 0-3.061 1.336-3.061 3.025 0 1.67 1.391 3.006 3.061 3.006zM94.855 30h5.417V9.571h-5.418V30zm22.933.315c5.103 0 8.294-3.989 8.294-10.52v-.037c0-6.568-3.117-10.52-8.294-10.52-2.802 0-5.084 1.372-6.123 3.599h-.334V1.76h-5.418V30h5.418v-3.173h.334c1.058 2.208 3.229 3.488 6.123 3.488zm-1.855-4.49c-2.858 0-4.658-2.264-4.658-6.011v-.038c0-3.748 1.819-6.049 4.658-6.049 2.857 0 4.638 2.301 4.638 6.03v.038c0 3.766-1.762 6.03-4.638 6.03zM130.479 30h5.418V18.57c0-2.894 1.949-4.657 5.029-4.657.835 0 1.67.13 2.486.316V9.497a8.113 8.113 0 00-2.022-.26c-2.654 0-4.509 1.3-5.159 3.507h-.334V9.571h-5.418V30zm21.747.315c2.671 0 4.824-1.131 5.863-3.024h.334V30h5.344V16.047c0-4.36-3.062-6.921-8.48-6.921-5.14 0-8.516 2.375-8.943 5.956l-.019.167h5.01l.037-.074c.427-1.206 1.67-1.893 3.618-1.893 2.227 0 3.433 1.002 3.433 2.765v1.688l-4.936.297c-5.084.297-7.923 2.45-7.923 6.123v.037c0 3.711 2.765 6.123 6.662 6.123zm-1.373-6.457v-.037c0-1.484 1.131-2.356 3.451-2.505l4.119-.26v1.504c0 2.152-1.874 3.803-4.379 3.803-1.874 0-3.191-.946-3.191-2.505zM169.073 30h5.418V18.57c0-2.894 1.948-4.657 5.029-4.657.834 0 1.669.13 2.486.316V9.497a8.115 8.115 0 00-2.023-.26c-2.653 0-4.508 1.3-5.158 3.507h-.334V9.571h-5.418V30zm19.353 7.2c5.047 0 7.737-1.82 9.555-7.219l6.958-20.41h-5.714l-4.287 15.475h-.371L190.281 9.57h-5.956L191.506 30l-.186.78c-.389 1.595-1.503 2.337-3.432 2.337-.501 0-1.039-.018-1.41-.055v4.082c.63.037 1.317.055 1.948.055zm20.818-7.2h5.362V12.874h.297L227.298 30h4.639V3.226h-5.363v17.051h-.297L213.92 3.226h-4.676V30zm36.609 0h5.603V19.999l9.333-16.773h-6.067l-5.882 11.262h-.334l-5.901-11.262h-6.067l9.315 16.773V30zm29.279.686c6.457 0 11.04-3.822 11.615-9.425l.019-.204h-5.455l-.038.148c-.593 2.858-2.913 4.732-6.123 4.732-4.23 0-6.846-3.563-6.846-9.315v-.037c0-5.752 2.616-9.296 6.828-9.296 3.191 0 5.585 2.041 6.16 5.047v.13h5.455v-.223c-.519-5.659-5.269-9.704-11.615-9.704-7.775 0-12.562 5.362-12.562 14.046v.037c0 8.684 4.806 14.064 12.562 14.064z"
6526
- }))));
6655
+ }, title) : null, _path$x || (_path$x = /*#__PURE__*/createElement("path", {
6656
+ d: "M44.43 13.745c-3.302-2.913-7.002-4.835-11.527-5.58-5.565-.93-9.692.404-12.047 1.179-.489.155-.55.465-.55.868-.03 1.023.397 1.829.734 2.139.367.34.734.154 1.284-.032 2.17-.744 5.167-1.27 8.316-.899 2.997.341 5.779 1.271 7.858 2.45-2.935.433-7.338 1.58-11.955 4.959-3.791-.217-8.56.31-13.85 3.007C2.664 26.92-3.634 39.846 2.297 53.919c2.416 5.703 7.889 10.973 14.279 12.864 3.73 1.116 7.063 1.023 7.95.96.275.218.733.559 1.284.93 8.958 6.014 17.213 4.805 22.075 2.108 4.464-2.48 10.395-8.71 10.579-19.56 8.285-8.09 6.726-17.42 5.625-21.388-2.599-9.454-11.282-15.437-19.66-16.088zm9.54 33.478c.03.713-.276 1.023-1.102 1.612-1.1.775-2.782 1.705-4.433 2.232-.214.062-.306-.186-.245-.341.214-.403.52-1.023.704-1.426.367-.806.733-1.643 1.04-2.449.641-1.674 1.283-3.844 1.68-5.61.062-.28.245-.31.337-.155.184.279.795 1.673 1.223 3.068.459 1.488.764 2.666.795 3.07zm-8.562.961c-.642 1.333-1.223 2.449-1.834 3.224-.367.465-2.783 1.302-7.247-.62-3.118-1.333-4.892-2.728-7.552-6.262-.611-.837-1.1-1.55-1.437-2.077-.367-.588-.55-1.053-1.59-.837-.764.155-2.385.806-3.271 2.14-.337.526-.092.96.214 1.456.58.992 1.468 2.17 2.293 3.162 2.905 3.534 6.574 6.51 10.885 7.998.58.185 1.681.495 2.17.62.337.093.49.495.306.681-1.131 1.24-4.066 3.255-4.953 3.72-2.14 1.116-4.311 1.891-5.931 2.139-.55.093-1.07.186-1.835-.465-.948-.837-1.804-1.829-2.568-2.82-1.498-1.985-2.66-4.248-3.455-6.603-1.651-4.867-1.835-10.168-.703-15.158 1.04-4.619 3.18-8.959 6.298-12.492.428-.496 2.049-2.108 2.538-2.45.397-.247.917-.495 2.201-.247 2.08.434 5.565 1.457 9.295 3.782 4.984 3.1 7.827 6.54 8.714 7.656.703.899.734 1.519.611 2.51-.428 4.185-2.018 8.587-3.149 10.943zM43.39 18.178c.245.031.52.093.887.589.703.992 1.865 3.007 2.323 4.06.826 1.985 1.468 4.526 1.743 5.797.061.31-.183.248-.275.186-.275-.31-.856-.806-1.04-.96-.855-.869-3.332-2.883-6.237-4.588-2.599-1.52-5.656-2.76-6.91-3.1-.153-.031-.214-.279-.03-.372.55-.248 2.323-.93 4.464-1.333 1.65-.31 3.516-.434 5.075-.279zM4.132 46.696c-1.07-6.664.917-13.205 5.228-17.452 2.324-2.293 5.137-4.122 8.225-5.145.917-.31 2.568-.744 3.669-.93.306-.031.397.34.214.527-1.04 1.116-2.507 3.44-2.966 4.215-3.577 6.045-5.136 13.33-4.403 20.335.887 8.648 5.106 13.856 5.779 14.755.153.217.306.589-.03.651-.062 0-.398-.062-.887-.155-9.57-2.139-13.82-10.57-14.83-16.8zm27.212 20.242c-.367-.155-.337-.434 0-.558.947-.341 2.69-1.054 3.516-1.52a26.587 26.587 0 004.647-3.223c.734-.62 2.293-2.046 3.21-3.13.306-.373.826-1.024 1.835-1.148 1.957-.217 2.538-.31 3.914-.65 1.314-.342 3.577-1.147 5.075-1.984.184-.093.49 0 .398.465-.673 3.378-2.997 8.586-7.155 11.252-4.8 3.162-10.395 2.82-15.44.496zm26.63-23.528c-.244.403-.611.31-.764-.03-.122-.373-.275-.9-.398-1.272-.642-1.797-1.436-3.564-2.415-5.207a56.94 56.94 0 00-1.62-2.542c-.367-.558-.367-.837-.367-1.519-.03-3.875-1.223-9.206-3.119-12.647-.183-.341.092-.558.306-.465 5.106 2.387 7.858 5.89 9.172 9.206 2.936 7.378.52 12.275-.795 14.476zM84.349 38.204c0-2.356-1.804-3.472-4.158-3.472h-3.578v11.005h2.324V41.8h.978c2.722 0 4.434-1.21 4.434-3.596zm-2.324.031c0 1.209-.611 1.829-2.079 1.829h-1.009V36.53h1.07c1.437-.03 2.018.59 2.018 1.705zm4.892 3.968h5.014c.276-2.976-.947-4.712-3.424-4.712-2.202 0-3.914 1.643-3.914 4.185 0 2.573 1.498 4.247 4.158 4.247 1.621 0 2.447-.465 2.966-.775l-.703-1.426c-.397.186-.978.558-2.079.558-1.284 0-1.896-.837-2.018-2.077zm0-1.488c.153-1.054.673-1.643 1.59-1.643.978 0 1.345.744 1.376 1.643h-2.966zm11.557-3.007c-.183-.093-.489-.217-1.07-.217-1.009 0-1.65.682-1.987 1.302v-1.085h-2.17v8.029h2.17v-5.053c.183-.372.764-1.209 1.712-1.209.459 0 .703.093.826.186l.52-1.953zm3.578 1.612h1.895v-1.643h-1.895v-.65c0-1.055.397-1.582 1.284-1.582.581 0 .948.155 1.101.217l.489-1.643c-.184-.124-.765-.372-1.927-.372-2.017 0-3.118 1.302-3.118 3.224v.837h-1.193v1.643h1.193v6.417h2.171V39.32zm10.242 2.325c0-2.077-1.253-4.185-4.005-4.185s-3.944 2.17-3.944 4.247 1.192 4.185 3.975 4.185c2.751.03 3.974-2.201 3.974-4.247zm-2.293.093c0 1.488-.428 2.51-1.681 2.51-1.223 0-1.713-1.084-1.713-2.603 0-1.488.398-2.542 1.621-2.542 1.253 0 1.773 1.116 1.773 2.635zm8.653-4.03c-.184-.093-.489-.217-1.07-.217-1.009 0-1.651.682-1.988 1.302v-1.085h-2.17v8.029h2.17v-5.053c.184-.372.765-1.209 1.713-1.209.458 0 .703.093.825.186l.52-1.953zm7.307 1.054c-.305-.744-.917-1.27-2.048-1.27-1.284 0-1.957.712-2.385 1.177v-.992h-2.11v8.029h2.171V40.28c.153-.217.673-.992 1.468-.992.642 0 .917.403.917 1.209v5.177h2.171v-5.487c.305-.372.795-.899 1.467-.899.704 0 .948.434.948 1.209v5.177h2.171v-5.642c0-1.488-.581-2.604-2.263-2.604-1.131.062-1.865.558-2.507 1.333zm8.622-1.085h-2.17v8.029h2.17v-8.029zm.245-2.356c0-.682-.581-1.302-1.345-1.302-.765 0-1.315.59-1.315 1.302 0 .713.55 1.333 1.315 1.333a1.34 1.34 0 001.345-1.333zm8.714 10.385v-5.642c0-1.488-.642-2.604-2.385-2.604-1.315 0-2.11.713-2.538 1.21v-.993h-2.109v8.029h2.17v-5.394c.153-.217.795-.992 1.621-.992.795 0 1.07.403 1.07 1.209v5.177h2.171zm6.084-8.029c-.397-.124-.886-.186-1.406-.186-2.202 0-3.516 1.178-3.516 2.914 0 1.054.52 1.89 1.406 2.418-.458.279-.886.744-.886 1.519 0 .589.275.96.703 1.209-.795.434-1.346 1.084-1.346 1.953 0 1.456 1.315 2.138 3.486 2.138 2.599 0 4.342-1.209 4.342-2.914 0-2.386-2.079-2.386-3.731-2.48-1.131-.061-1.589-.154-1.589-.588 0-.217.152-.372.305-.465.306.062.612.093.948.093 2.202 0 3.425-1.178 3.425-2.914 0-.465-.092-.899-.306-1.302h1.07v-1.426h-2.905v.031zm-1.406 4.216c-.887 0-1.437-.558-1.437-1.488 0-.93.55-1.488 1.437-1.488s1.437.558 1.437 1.488c0 .93-.52 1.488-1.437 1.488zm-.917 4.092c.336.062.703.093 1.07.124 1.162.093 1.895.062 1.895.898 0 .682-.733 1.178-2.079 1.178-1.1 0-1.559-.434-1.559-1.085.031-.465.245-.837.673-1.115zm11.863-2.325h4.341l.734 2.077h2.507l-4.25-11.005h-2.232l-4.127 11.005h2.323l.704-2.077zm3.669-1.86h-3.027l.917-2.635c.336-.93.55-1.767.581-1.89h.031c.03.123.244.96.58 1.89l.918 2.635zm9.937-4.092c-.184-.093-.49-.217-1.071-.217-1.009 0-1.651.682-1.987 1.302v-1.085h-2.171v8.029h2.171v-5.053c.184-.372.764-1.209 1.712-1.209.459 0 .704.093.826.186l.52-1.953zm1.498 1.612v4.092c0 1.55.642 2.51 2.507 2.51.978 0 1.651-.278 1.987-.464l-.489-1.643c-.153.093-.581.31-1.039.31-.612 0-.795-.341-.795-1.147V39.32h1.865v-1.643h-1.865v-2.325H174.3v2.325h-1.284v1.643h1.254zm10.732 4.03c0-1.364-.918-1.922-2.171-2.45-.918-.371-1.621-.526-1.621-1.053 0-.434.337-.713 1.101-.713s1.376.31 1.682.527l.764-1.488c-.367-.217-1.192-.65-2.538-.65-1.804 0-2.966.96-2.966 2.448 0 1.209.673 1.86 1.774 2.387 1.131.558 1.987.682 1.987 1.24 0 .465-.458.713-1.315.713-.886 0-1.651-.434-1.956-.651l-.734 1.519c.489.34 1.406.744 2.813.744 2.018 0 3.18-.9 3.18-2.573zM76.72 29.733h5.228v-.775h-4.342V18.73h-.886v11.004zm7.246-9.516c.367 0 .642-.31.642-.682a.65.65 0 00-.642-.65.65.65 0 00-.642.65c0 .372.275.682.642.682zm-.428 9.516h.856V21.86h-.856v7.873zm5.565.186c2.384 0 3.852-1.922 3.852-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.899V17.83h-.856V29.3c.581.371 1.437.62 2.355.62zm.03-.744c-.611 0-1.162-.124-1.529-.31v-5.517c.428-.496 1.223-.9 1.896-.9 1.896 0 2.538 1.644 2.538 3.349.03 1.642-.917 3.378-2.905 3.378zm5.779.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.08 1.55V21.89h-.886v7.842zm6.604.186c.917 0 1.804-.465 2.354-1.178.031.28.061.744.123.992h.856c-.092-.34-.153-.899-.153-1.58v-3.968c0-1.705-.887-2.511-2.477-2.511-1.009 0-1.865.34-2.537.992l.458.589c.642-.62 1.284-.837 2.018-.837 1.162 0 1.712.589 1.712 1.86v.899h-.367c-1.804 0-4.097.589-4.097 2.697-.06 1.24.826 2.045 2.11 2.045zm.122-.744c-.672 0-1.406-.465-1.406-1.332 0-1.457 1.467-1.984 3.21-1.984h.367v2.107c-.581.775-1.315 1.21-2.171 1.21zm5.32.558h.856v-5.486c.215-.465.918-1.736 1.988-1.736.336 0 .52.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.856v7.842h-.031zm4.77 3.782c1.682 0 2.293-1.178 2.844-2.666l3.332-9.02h-.886l-2.385 6.757-2.446-6.757h-.918l2.905 7.811-.397 1.116c-.459 1.24-.918 1.984-2.049 1.984-.306 0-.428-.03-.55-.062l-.123.713c.153.093.337.124.673.124zm11.588-3.782h.826v-7.191h2.017v-.682h-2.017v-1.24c0-1.426.58-2.17 1.773-2.17.458 0 .825.124.978.217l.214-.744c-.214-.093-.611-.217-1.192-.217-1.712 0-2.63 1.085-2.63 2.883v1.333h-1.345v.682h1.345v7.13h.031zm6.879.186c2.446 0 3.547-2.17 3.547-4.153 0-1.953-1.131-4.092-3.577-4.092-2.446 0-3.486 2.139-3.486 4.123.031 1.983 1.101 4.122 3.516 4.122zm.031-.744c-1.743 0-2.63-1.611-2.63-3.41 0-1.766.795-3.347 2.569-3.347 1.773 0 2.69 1.612 2.69 3.379 0 1.797-.856 3.378-2.629 3.378zm5.473.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.857v7.842h-.03zm10.793.186a2.65 2.65 0 001.498-.465l-.336-.65c-.153.123-.612.371-1.07.371-.704 0-.948-.434-.948-1.24v-5.362h1.987v-.682h-1.987v-2.263h-.856v2.232h-1.315v.682h1.315v5.424c0 1.24.55 1.953 1.712 1.953zm3.149-.186h.856V24c.275-.434 1.223-1.55 2.385-1.55 1.162 0 1.59.713 1.59 1.89v5.394h.856v-5.58c0-1.425-.642-2.48-2.263-2.48-1.314 0-2.201.9-2.568 1.427v-5.27h-.856v11.903zm11.068.186c1.254 0 2.14-.434 2.63-.806l-.367-.682c-.428.341-1.254.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.186h5.351c.031-.155.031-.28.031-.434 0-2.015-1.071-3.441-2.936-3.441-2.079 0-3.332 1.829-3.332 4.03 0 2.293 1.1 4.215 3.485 4.215zm-2.538-5.083c.214-1.364 1.009-2.418 2.355-2.418 1.467 0 2.079 1.209 2.109 2.418h-4.464zM76.687 12.688h.825V3.14l6.513 9.548h.825V1.684h-.856v9.485l-6.451-9.485h-.887v11.004h.03zm13.178.155c1.253 0 2.14-.434 2.63-.806l-.368-.682c-.428.34-1.253.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.187h5.351c.031-.155.031-.279.031-.434 0-2.015-1.07-3.44-2.935-3.44-2.08 0-3.333 1.828-3.333 4.03 0 2.293 1.1 4.215 3.486 4.215zM87.327 7.79c.214-1.364 1.009-2.418 2.354-2.418 1.468 0 2.08 1.21 2.11 2.418h-4.464zm8.5 4.898h.795l2.11-6.634 2.109 6.634h.795l2.354-7.874h-.856l-1.895 6.572-2.049-6.572h-.825l-2.049 6.54-1.896-6.54h-.917l2.324 7.874zm15.257 0h.886V8.534l3.608-6.85h-.917l-3.088 5.951h-.031l-3.088-5.951h-1.009l3.639 6.85v4.154zm7.093.155c2.446 0 3.547-2.17 3.547-4.154 0-1.953-1.132-4.092-3.578-4.092-2.445 0-3.485 2.14-3.485 4.123 0 2.015 1.07 4.123 3.516 4.123zm0-.744c-1.773 0-2.629-1.612-2.629-3.41 0-1.767.795-3.348 2.568-3.348 1.773 0 2.691 1.612 2.691 3.38 0 1.797-.857 3.378-2.63 3.378zm5.167.589h.856V7.2c.214-.465.918-1.736 1.988-1.736.336 0 .519.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.961-2.079 1.55V4.845h-.887v7.843zm9.723 0h1.07l-3.608-4.433 3.425-3.44h-1.07l-3.394 3.44 3.577 4.433zm-4.525 0h.856V.816h-.856v11.872zm11.007 0h.887v-4.68h1.376c2.446 0 3.821-1.24 3.821-3.225 0-1.953-1.437-3.1-3.699-3.1h-2.385v11.005zm.887-5.456V2.46h1.376c2.079 0 2.874.991 2.874 2.355 0 1.457-.857 2.418-2.905 2.418h-1.345zm8.866 5.61c1.315 0 2.202-.867 2.569-1.456 0 .434.061 1.023.122 1.302h.856c-.092-.31-.153-.9-.153-1.52V4.815h-.856v5.704c-.275.465-1.223 1.58-2.385 1.58-1.192 0-1.59-.743-1.59-1.89V4.814h-.856v5.549c0 1.426.642 2.48 2.293 2.48zm8.072 0c2.385 0 3.853-1.921 3.853-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.9V.753h-.856v11.469c.55.403 1.406.62 2.354.62zm.031-.743c-.612 0-1.162-.124-1.498-.31V6.302c.428-.496 1.223-.899 1.895-.899 1.896 0 2.538 1.643 2.538 3.348-.031 1.643-.978 3.348-2.935 3.348zm5.442.589h.856V.816h-.856v11.872zm3.73-9.548c.367 0 .642-.31.642-.681a.65.65 0 00-.642-.651.65.65 0 00-.642.65c0 .403.306.682.642.682zm-.428 9.548h.856V4.814h-.856v7.874zm5.901.155c1.162 0 1.988-.434 2.416-.806l-.367-.651c-.337.31-1.101.713-1.988.713-1.712 0-2.476-1.674-2.476-3.41 0-1.829.795-3.348 2.507-3.348.856 0 1.437.341 1.896.713l.428-.62c-.428-.372-1.162-.837-2.324-.837-1.987 0-3.424 1.612-3.424 4.123 0 2.139 1.1 4.123 3.332 4.123z"
6657
+ })));
6527
6658
  }
6528
6659
 
6529
- var _g$1;
6660
+ var _path$y;
6530
6661
 
6531
6662
  var _excluded$C = ["title", "titleId"];
6532
6663
 
@@ -6536,26 +6667,24 @@ function _objectWithoutProperties$B(source, excluded) { if (source == null) retu
6536
6667
 
6537
6668
  function _objectWithoutPropertiesLoose$C(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; }
6538
6669
 
6539
- function SvgLogoMlnWhite(_ref) {
6670
+ function SvgLogoLpaWhite(_ref) {
6540
6671
  var title = _ref.title,
6541
6672
  titleId = _ref.titleId,
6542
6673
  props = _objectWithoutProperties$B(_ref, _excluded$C);
6543
6674
 
6544
6675
  return /*#__PURE__*/createElement("svg", _extends$C({
6545
- viewBox: "0 0 300 71",
6676
+ viewBox: "0 0 186 74",
6546
6677
  fill: "#fff",
6547
6678
  xmlns: "http://www.w3.org/2000/svg",
6548
6679
  "aria-labelledby": titleId
6549
6680
  }, props), title ? /*#__PURE__*/createElement("title", {
6550
6681
  id: titleId
6551
- }, title) : null, _g$1 || (_g$1 = /*#__PURE__*/createElement("g", {
6552
- clipPath: "url(#logo_mln_white_svg__clip0_51609_40290)"
6553
- }, /*#__PURE__*/createElement("path", {
6554
- d: "M0 66.115c3.741-4.266 7.607-8.432 11.173-12.871.254-.504.922-1.196 1.053-1.301.44-.354.774-.943 1.274-1.443.5 0 1.346.528 1.904.626 1.391.63.725.269 1.555.63a52.471 52.471 0 0030.7 3.422c15.464-2.48 30.702-6.175 46.065-9.3 9.726-1.983 19.477-3.819 29.528-2.802a32.053 32.053 0 0114.739 4.628 31.83 31.83 0 0110.824 10.97c.25.398.549.794.923 1.365.349-.37.667-.768.948-1.19 6.759-11.21 17.133-15.946 29.928-16.145 12.245-.198 23.992 2.877 35.813 5.431 11.323 2.48 22.67 4.96 34.118 6.795a57.052 57.052 0 0035.439-4.588l14.091 16.839c-5.163 1.091-9.702 2.48-14.291 2.976-17.906 2.48-35.215-.843-52.373-5.53-12.719-3.447-25.389-7.118-38.258-9.92-10.3-2.306-20.725-2.48-30.526 2.678a37.93 37.93 0 00-12.869 11.185l-1.646 2.182c-3.167-3.273-5.96-6.745-9.302-9.572-7.781-6.547-17.109-8.358-27.085-7.688-13.592.917-26.411 5.233-39.355 8.952a201.691 201.691 0 01-38.058 8.184A89.37 89.37 0 012.62 67.9c-.823-.248-1.721-.347-2.494-.52L-1 67l1-.885zM15.57 30h4.991V11.78h.372L27.798 30h3.507l6.865-18.22h.371V30h4.991V3.226h-6.42l-7.385 19.593h-.333L21.99 3.226h-6.42V30zm36.367 7.2c5.047 0 7.738-1.82 9.556-7.219l6.958-20.41h-5.715L58.45 25.046h-.37L53.792 9.57h-5.956L55.017 30l-.185.78c-.39 1.595-1.503 2.337-3.433 2.337-.5 0-1.039-.018-1.41-.055v4.082c.631.037 1.318.055 1.949.055zM72.757 30h17.516v-4.62H78.359V3.226h-5.603V30zM97.582 6.436c1.67 0 3.043-1.336 3.043-3.006A3.029 3.029 0 0097.582.405c-1.67 0-3.061 1.336-3.061 3.025 0 1.67 1.391 3.006 3.061 3.006zM94.855 30h5.417V9.571h-5.418V30zm22.933.315c5.103 0 8.294-3.989 8.294-10.52v-.037c0-6.568-3.117-10.52-8.294-10.52-2.802 0-5.084 1.372-6.123 3.599h-.334V1.76h-5.418V30h5.418v-3.173h.334c1.058 2.208 3.229 3.488 6.123 3.488zm-1.855-4.49c-2.858 0-4.658-2.264-4.658-6.011v-.038c0-3.748 1.819-6.049 4.658-6.049 2.857 0 4.638 2.301 4.638 6.03v.038c0 3.766-1.762 6.03-4.638 6.03zM130.479 30h5.418V18.57c0-2.894 1.949-4.657 5.029-4.657.835 0 1.67.13 2.486.316V9.497a8.113 8.113 0 00-2.022-.26c-2.654 0-4.509 1.3-5.159 3.507h-.334V9.571h-5.418V30zm21.747.315c2.671 0 4.824-1.131 5.863-3.024h.334V30h5.344V16.047c0-4.36-3.062-6.921-8.48-6.921-5.14 0-8.516 2.375-8.943 5.956l-.019.167h5.01l.037-.074c.427-1.206 1.67-1.893 3.618-1.893 2.227 0 3.433 1.002 3.433 2.765v1.688l-4.936.297c-5.084.297-7.923 2.45-7.923 6.123v.037c0 3.711 2.765 6.123 6.662 6.123zm-1.373-6.457v-.037c0-1.484 1.131-2.356 3.451-2.505l4.119-.26v1.504c0 2.152-1.874 3.803-4.379 3.803-1.874 0-3.191-.946-3.191-2.505zM169.073 30h5.418V18.57c0-2.894 1.948-4.657 5.029-4.657.834 0 1.669.13 2.486.316V9.497a8.115 8.115 0 00-2.023-.26c-2.653 0-4.508 1.3-5.158 3.507h-.334V9.571h-5.418V30zm19.353 7.2c5.047 0 7.737-1.82 9.555-7.219l6.958-20.41h-5.714l-4.287 15.475h-.371L190.281 9.57h-5.956L191.506 30l-.186.78c-.389 1.595-1.503 2.337-3.432 2.337-.501 0-1.039-.018-1.41-.055v4.082c.63.037 1.317.055 1.948.055zm20.818-7.2h5.362V12.874h.297L227.298 30h4.639V3.226h-5.363v17.051h-.297L213.92 3.226h-4.676V30zm36.609 0h5.603V19.999l9.333-16.773h-6.067l-5.882 11.262h-.334l-5.901-11.262h-6.067l9.315 16.773V30zm29.279.686c6.457 0 11.04-3.822 11.615-9.425l.019-.204h-5.455l-.038.148c-.593 2.858-2.913 4.732-6.123 4.732-4.23 0-6.846-3.563-6.846-9.315v-.037c0-5.752 2.616-9.296 6.828-9.296 3.191 0 5.585 2.041 6.16 5.047v.13h5.455v-.223c-.519-5.659-5.269-9.704-11.615-9.704-7.775 0-12.562 5.362-12.562 14.046v.037c0 8.684 4.806 14.064 12.562 14.064z"
6555
- }))));
6682
+ }, title) : null, _path$y || (_path$y = /*#__PURE__*/createElement("path", {
6683
+ d: "M44.43 13.745c-3.302-2.913-7.002-4.835-11.527-5.58-5.565-.93-9.692.404-12.047 1.179-.489.155-.55.465-.55.868-.03 1.023.397 1.829.734 2.139.367.34.734.154 1.284-.032 2.17-.744 5.167-1.27 8.316-.899 2.997.341 5.779 1.271 7.858 2.45-2.935.433-7.338 1.58-11.955 4.959-3.791-.217-8.56.31-13.85 3.007C2.664 26.92-3.634 39.846 2.297 53.919c2.416 5.703 7.889 10.973 14.279 12.864 3.73 1.116 7.063 1.023 7.95.96.275.218.733.559 1.284.93 8.958 6.014 17.213 4.805 22.075 2.108 4.464-2.48 10.395-8.71 10.579-19.56 8.285-8.09 6.726-17.42 5.625-21.388-2.599-9.454-11.282-15.437-19.66-16.088zm9.54 33.478c.03.713-.276 1.023-1.102 1.612-1.1.775-2.782 1.705-4.433 2.232-.214.062-.306-.186-.245-.341.214-.403.52-1.023.704-1.426.367-.806.733-1.643 1.04-2.449.641-1.674 1.283-3.844 1.68-5.61.062-.28.245-.31.337-.155.184.279.795 1.673 1.223 3.068.459 1.488.764 2.666.795 3.07zm-8.562.961c-.642 1.333-1.223 2.449-1.834 3.224-.367.465-2.783 1.302-7.247-.62-3.118-1.333-4.892-2.728-7.552-6.262-.611-.837-1.1-1.55-1.437-2.077-.367-.588-.55-1.053-1.59-.837-.764.155-2.385.806-3.271 2.14-.337.526-.092.96.214 1.456.58.992 1.468 2.17 2.293 3.162 2.905 3.534 6.574 6.51 10.885 7.998.58.185 1.681.495 2.17.62.337.093.49.495.306.681-1.131 1.24-4.066 3.255-4.953 3.72-2.14 1.116-4.311 1.891-5.931 2.139-.55.093-1.07.186-1.835-.465-.948-.837-1.804-1.829-2.568-2.82-1.498-1.985-2.66-4.248-3.455-6.603-1.651-4.867-1.835-10.168-.703-15.158 1.04-4.619 3.18-8.959 6.298-12.492.428-.496 2.049-2.108 2.538-2.45.397-.247.917-.495 2.201-.247 2.08.434 5.565 1.457 9.295 3.782 4.984 3.1 7.827 6.54 8.714 7.656.703.899.734 1.519.611 2.51-.428 4.185-2.018 8.587-3.149 10.943zM43.39 18.178c.245.031.52.093.887.589.703.992 1.865 3.007 2.323 4.06.826 1.985 1.468 4.526 1.743 5.797.061.31-.183.248-.275.186-.275-.31-.856-.806-1.04-.96-.855-.869-3.332-2.883-6.237-4.588-2.599-1.52-5.656-2.76-6.91-3.1-.153-.031-.214-.279-.03-.372.55-.248 2.323-.93 4.464-1.333 1.65-.31 3.516-.434 5.075-.279zM4.132 46.696c-1.07-6.664.917-13.205 5.228-17.452 2.324-2.293 5.137-4.122 8.225-5.145.917-.31 2.568-.744 3.669-.93.306-.031.397.34.214.527-1.04 1.116-2.507 3.44-2.966 4.215-3.577 6.045-5.136 13.33-4.403 20.335.887 8.648 5.106 13.856 5.779 14.755.153.217.306.589-.03.651-.062 0-.398-.062-.887-.155-9.57-2.139-13.82-10.57-14.83-16.8zm27.212 20.242c-.367-.155-.337-.434 0-.558.947-.341 2.69-1.054 3.516-1.52a26.587 26.587 0 004.647-3.223c.734-.62 2.293-2.046 3.21-3.13.306-.373.826-1.024 1.835-1.148 1.957-.217 2.538-.31 3.914-.65 1.314-.342 3.577-1.147 5.075-1.984.184-.093.49 0 .398.465-.673 3.378-2.997 8.586-7.155 11.252-4.8 3.162-10.395 2.82-15.44.496zm26.63-23.528c-.244.403-.611.31-.764-.03-.122-.373-.275-.9-.398-1.272-.642-1.797-1.436-3.564-2.415-5.207a56.94 56.94 0 00-1.62-2.542c-.367-.558-.367-.837-.367-1.519-.03-3.875-1.223-9.206-3.119-12.647-.183-.341.092-.558.306-.465 5.106 2.387 7.858 5.89 9.172 9.206 2.936 7.378.52 12.275-.795 14.476zM84.349 38.204c0-2.356-1.804-3.472-4.158-3.472h-3.578v11.005h2.324V41.8h.978c2.722 0 4.434-1.21 4.434-3.596zm-2.324.031c0 1.209-.611 1.829-2.079 1.829h-1.009V36.53h1.07c1.437-.03 2.018.59 2.018 1.705zm4.892 3.968h5.014c.276-2.976-.947-4.712-3.424-4.712-2.202 0-3.914 1.643-3.914 4.185 0 2.573 1.498 4.247 4.158 4.247 1.621 0 2.447-.465 2.966-.775l-.703-1.426c-.397.186-.978.558-2.079.558-1.284 0-1.896-.837-2.018-2.077zm0-1.488c.153-1.054.673-1.643 1.59-1.643.978 0 1.345.744 1.376 1.643h-2.966zm11.557-3.007c-.183-.093-.489-.217-1.07-.217-1.009 0-1.65.682-1.987 1.302v-1.085h-2.17v8.029h2.17v-5.053c.183-.372.764-1.209 1.712-1.209.459 0 .703.093.826.186l.52-1.953zm3.578 1.612h1.895v-1.643h-1.895v-.65c0-1.055.397-1.582 1.284-1.582.581 0 .948.155 1.101.217l.489-1.643c-.184-.124-.765-.372-1.927-.372-2.017 0-3.118 1.302-3.118 3.224v.837h-1.193v1.643h1.193v6.417h2.171V39.32zm10.242 2.325c0-2.077-1.253-4.185-4.005-4.185s-3.944 2.17-3.944 4.247 1.192 4.185 3.975 4.185c2.751.03 3.974-2.201 3.974-4.247zm-2.293.093c0 1.488-.428 2.51-1.681 2.51-1.223 0-1.713-1.084-1.713-2.603 0-1.488.398-2.542 1.621-2.542 1.253 0 1.773 1.116 1.773 2.635zm8.653-4.03c-.184-.093-.489-.217-1.07-.217-1.009 0-1.651.682-1.988 1.302v-1.085h-2.17v8.029h2.17v-5.053c.184-.372.765-1.209 1.713-1.209.458 0 .703.093.825.186l.52-1.953zm7.307 1.054c-.305-.744-.917-1.27-2.048-1.27-1.284 0-1.957.712-2.385 1.177v-.992h-2.11v8.029h2.171V40.28c.153-.217.673-.992 1.468-.992.642 0 .917.403.917 1.209v5.177h2.171v-5.487c.305-.372.795-.899 1.467-.899.704 0 .948.434.948 1.209v5.177h2.171v-5.642c0-1.488-.581-2.604-2.263-2.604-1.131.062-1.865.558-2.507 1.333zm8.622-1.085h-2.17v8.029h2.17v-8.029zm.245-2.356c0-.682-.581-1.302-1.345-1.302-.765 0-1.315.59-1.315 1.302 0 .713.55 1.333 1.315 1.333a1.34 1.34 0 001.345-1.333zm8.714 10.385v-5.642c0-1.488-.642-2.604-2.385-2.604-1.315 0-2.11.713-2.538 1.21v-.993h-2.109v8.029h2.17v-5.394c.153-.217.795-.992 1.621-.992.795 0 1.07.403 1.07 1.209v5.177h2.171zm6.084-8.029c-.397-.124-.886-.186-1.406-.186-2.202 0-3.516 1.178-3.516 2.914 0 1.054.52 1.89 1.406 2.418-.458.279-.886.744-.886 1.519 0 .589.275.96.703 1.209-.795.434-1.346 1.084-1.346 1.953 0 1.456 1.315 2.138 3.486 2.138 2.599 0 4.342-1.209 4.342-2.914 0-2.386-2.079-2.386-3.731-2.48-1.131-.061-1.589-.154-1.589-.588 0-.217.152-.372.305-.465.306.062.612.093.948.093 2.202 0 3.425-1.178 3.425-2.914 0-.465-.092-.899-.306-1.302h1.07v-1.426h-2.905v.031zm-1.406 4.216c-.887 0-1.437-.558-1.437-1.488 0-.93.55-1.488 1.437-1.488s1.437.558 1.437 1.488c0 .93-.52 1.488-1.437 1.488zm-.917 4.092c.336.062.703.093 1.07.124 1.162.093 1.895.062 1.895.898 0 .682-.733 1.178-2.079 1.178-1.1 0-1.559-.434-1.559-1.085.031-.465.245-.837.673-1.115zm11.863-2.325h4.341l.734 2.077h2.507l-4.25-11.005h-2.232l-4.127 11.005h2.323l.704-2.077zm3.669-1.86h-3.027l.917-2.635c.336-.93.55-1.767.581-1.89h.031c.03.123.244.96.58 1.89l.918 2.635zm9.937-4.092c-.184-.093-.49-.217-1.071-.217-1.009 0-1.651.682-1.987 1.302v-1.085h-2.171v8.029h2.171v-5.053c.184-.372.764-1.209 1.712-1.209.459 0 .704.093.826.186l.52-1.953zm1.498 1.612v4.092c0 1.55.642 2.51 2.507 2.51.978 0 1.651-.278 1.987-.464l-.489-1.643c-.153.093-.581.31-1.039.31-.612 0-.795-.341-.795-1.147V39.32h1.865v-1.643h-1.865v-2.325H174.3v2.325h-1.284v1.643h1.254zm10.732 4.03c0-1.364-.918-1.922-2.171-2.45-.918-.371-1.621-.526-1.621-1.053 0-.434.337-.713 1.101-.713s1.376.31 1.682.527l.764-1.488c-.367-.217-1.192-.65-2.538-.65-1.804 0-2.966.96-2.966 2.448 0 1.209.673 1.86 1.774 2.387 1.131.558 1.987.682 1.987 1.24 0 .465-.458.713-1.315.713-.886 0-1.651-.434-1.956-.651l-.734 1.519c.489.34 1.406.744 2.813.744 2.018 0 3.18-.9 3.18-2.573zM76.72 29.733h5.228v-.775h-4.342V18.73h-.886v11.004zm7.246-9.516c.367 0 .642-.31.642-.682a.65.65 0 00-.642-.65.65.65 0 00-.642.65c0 .372.275.682.642.682zm-.428 9.516h.856V21.86h-.856v7.873zm5.565.186c2.384 0 3.852-1.922 3.852-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.899V17.83h-.856V29.3c.581.371 1.437.62 2.355.62zm.03-.744c-.611 0-1.162-.124-1.529-.31v-5.517c.428-.496 1.223-.9 1.896-.9 1.896 0 2.538 1.644 2.538 3.349.03 1.642-.917 3.378-2.905 3.378zm5.779.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.08 1.55V21.89h-.886v7.842zm6.604.186c.917 0 1.804-.465 2.354-1.178.031.28.061.744.123.992h.856c-.092-.34-.153-.899-.153-1.58v-3.968c0-1.705-.887-2.511-2.477-2.511-1.009 0-1.865.34-2.537.992l.458.589c.642-.62 1.284-.837 2.018-.837 1.162 0 1.712.589 1.712 1.86v.899h-.367c-1.804 0-4.097.589-4.097 2.697-.06 1.24.826 2.045 2.11 2.045zm.122-.744c-.672 0-1.406-.465-1.406-1.332 0-1.457 1.467-1.984 3.21-1.984h.367v2.107c-.581.775-1.315 1.21-2.171 1.21zm5.32.558h.856v-5.486c.215-.465.918-1.736 1.988-1.736.336 0 .52.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.856v7.842h-.031zm4.77 3.782c1.682 0 2.293-1.178 2.844-2.666l3.332-9.02h-.886l-2.385 6.757-2.446-6.757h-.918l2.905 7.811-.397 1.116c-.459 1.24-.918 1.984-2.049 1.984-.306 0-.428-.03-.55-.062l-.123.713c.153.093.337.124.673.124zm11.588-3.782h.826v-7.191h2.017v-.682h-2.017v-1.24c0-1.426.58-2.17 1.773-2.17.458 0 .825.124.978.217l.214-.744c-.214-.093-.611-.217-1.192-.217-1.712 0-2.63 1.085-2.63 2.883v1.333h-1.345v.682h1.345v7.13h.031zm6.879.186c2.446 0 3.547-2.17 3.547-4.153 0-1.953-1.131-4.092-3.577-4.092-2.446 0-3.486 2.139-3.486 4.123.031 1.983 1.101 4.122 3.516 4.122zm.031-.744c-1.743 0-2.63-1.611-2.63-3.41 0-1.766.795-3.347 2.569-3.347 1.773 0 2.69 1.612 2.69 3.379 0 1.797-.856 3.378-2.629 3.378zm5.473.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.857v7.842h-.03zm10.793.186a2.65 2.65 0 001.498-.465l-.336-.65c-.153.123-.612.371-1.07.371-.704 0-.948-.434-.948-1.24v-5.362h1.987v-.682h-1.987v-2.263h-.856v2.232h-1.315v.682h1.315v5.424c0 1.24.55 1.953 1.712 1.953zm3.149-.186h.856V24c.275-.434 1.223-1.55 2.385-1.55 1.162 0 1.59.713 1.59 1.89v5.394h.856v-5.58c0-1.425-.642-2.48-2.263-2.48-1.314 0-2.201.9-2.568 1.427v-5.27h-.856v11.903zm11.068.186c1.254 0 2.14-.434 2.63-.806l-.367-.682c-.428.341-1.254.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.186h5.351c.031-.155.031-.28.031-.434 0-2.015-1.071-3.441-2.936-3.441-2.079 0-3.332 1.829-3.332 4.03 0 2.293 1.1 4.215 3.485 4.215zm-2.538-5.083c.214-1.364 1.009-2.418 2.355-2.418 1.467 0 2.079 1.209 2.109 2.418h-4.464zM76.687 12.688h.825V3.14l6.513 9.548h.825V1.684h-.856v9.485l-6.451-9.485h-.887v11.004h.03zm13.178.155c1.253 0 2.14-.434 2.63-.806l-.368-.682c-.428.34-1.253.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.187h5.351c.031-.155.031-.279.031-.434 0-2.015-1.07-3.44-2.935-3.44-2.08 0-3.333 1.828-3.333 4.03 0 2.293 1.1 4.215 3.486 4.215zM87.327 7.79c.214-1.364 1.009-2.418 2.354-2.418 1.468 0 2.08 1.21 2.11 2.418h-4.464zm8.5 4.898h.795l2.11-6.634 2.109 6.634h.795l2.354-7.874h-.856l-1.895 6.572-2.049-6.572h-.825l-2.049 6.54-1.896-6.54h-.917l2.324 7.874zm15.257 0h.886V8.534l3.608-6.85h-.917l-3.088 5.951h-.031l-3.088-5.951h-1.009l3.639 6.85v4.154zm7.093.155c2.446 0 3.547-2.17 3.547-4.154 0-1.953-1.132-4.092-3.578-4.092-2.445 0-3.485 2.14-3.485 4.123 0 2.015 1.07 4.123 3.516 4.123zm0-.744c-1.773 0-2.629-1.612-2.629-3.41 0-1.767.795-3.348 2.568-3.348 1.773 0 2.691 1.612 2.691 3.38 0 1.797-.857 3.378-2.63 3.378zm5.167.589h.856V7.2c.214-.465.918-1.736 1.988-1.736.336 0 .519.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.961-2.079 1.55V4.845h-.887v7.843zm9.723 0h1.07l-3.608-4.433 3.425-3.44h-1.07l-3.394 3.44 3.577 4.433zm-4.525 0h.856V.816h-.856v11.872zm11.007 0h.887v-4.68h1.376c2.446 0 3.821-1.24 3.821-3.225 0-1.953-1.437-3.1-3.699-3.1h-2.385v11.005zm.887-5.456V2.46h1.376c2.079 0 2.874.991 2.874 2.355 0 1.457-.857 2.418-2.905 2.418h-1.345zm8.866 5.61c1.315 0 2.202-.867 2.569-1.456 0 .434.061 1.023.122 1.302h.856c-.092-.31-.153-.9-.153-1.52V4.815h-.856v5.704c-.275.465-1.223 1.58-2.385 1.58-1.192 0-1.59-.743-1.59-1.89V4.814h-.856v5.549c0 1.426.642 2.48 2.293 2.48zm8.072 0c2.385 0 3.853-1.921 3.853-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.9V.753h-.856v11.469c.55.403 1.406.62 2.354.62zm.031-.743c-.612 0-1.162-.124-1.498-.31V6.302c.428-.496 1.223-.899 1.895-.899 1.896 0 2.538 1.643 2.538 3.348-.031 1.643-.978 3.348-2.935 3.348zm5.442.589h.856V.816h-.856v11.872zm3.73-9.548c.367 0 .642-.31.642-.681a.65.65 0 00-.642-.651.65.65 0 00-.642.65c0 .403.306.682.642.682zm-.428 9.548h.856V4.814h-.856v7.874zm5.901.155c1.162 0 1.988-.434 2.416-.806l-.367-.651c-.337.31-1.101.713-1.988.713-1.712 0-2.476-1.674-2.476-3.41 0-1.829.795-3.348 2.507-3.348.856 0 1.437.341 1.896.713l.428-.62c-.428-.372-1.162-.837-2.324-.837-1.987 0-3.424 1.612-3.424 4.123 0 2.139 1.1 4.123 3.332 4.123z"
6684
+ })));
6556
6685
  }
6557
6686
 
6558
- var _path$y, _path2$f, _path3$9, _path4$1, _path5, _path6, _path7;
6687
+ var _g$1;
6559
6688
 
6560
6689
  var _excluded$D = ["title", "titleId"];
6561
6690
 
@@ -6565,40 +6694,26 @@ function _objectWithoutProperties$C(source, excluded) { if (source == null) retu
6565
6694
 
6566
6695
  function _objectWithoutPropertiesLoose$D(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; }
6567
6696
 
6568
- function SvgLogoNyplFullBlack(_ref) {
6697
+ function SvgLogoMlnBlack(_ref) {
6569
6698
  var title = _ref.title,
6570
6699
  titleId = _ref.titleId,
6571
6700
  props = _objectWithoutProperties$C(_ref, _excluded$D);
6572
6701
 
6573
6702
  return /*#__PURE__*/createElement("svg", _extends$D({
6703
+ viewBox: "0 0 300 71",
6574
6704
  xmlns: "http://www.w3.org/2000/svg",
6575
- viewBox: "0 0 966.787 543.733",
6576
6705
  "aria-labelledby": titleId
6577
6706
  }, props), title ? /*#__PURE__*/createElement("title", {
6578
6707
  id: titleId
6579
- }, title) : null, _path$y || (_path$y = /*#__PURE__*/createElement("path", {
6580
- d: "M485.288 7.284h7.269l53.44 77.4v-77.4h7v89.65h-6.867l-53.978-77.94v77.94h-6.864V7.284m126.535 49.67c-.134-9.691-5.114-19.652-17.365-19.652-11.171 0-17.634 8.614-19.518 19.653zm-44.692 7.27c0-18.172 10.5-32.98 27.597-32.98 16.422 0 25.442 13.192 24.094 31.498h-44.287v1.482c.136 14.673 6.328 28.134 21.674 28.134 8.21 0 15.076-3.366 18.576-6.059l2.96 5.52c-4.038 2.961-11.441 6.596-21.807 6.596-19.652 0-28.807-15.75-28.807-34.191m59.225-31.5h7.539l15.617 53.442 16.825-53.442h6.865L690.028 86.3l15.749-53.575h7.001l-19.385 64.21h-6.46l-17.366-54.112-17.365 54.112h-6.46l-19.386-64.21m148.337 30.422L744.676 7.284h8.345l25.44 48.459h.27l25.442-48.46h7.539l-29.75 55.863v33.788h-7.27V63.146m81.841 1.751c0-14.404-7.673-27.595-22.345-27.595-14.538 0-21.134 12.922-21.134 27.326 0 14.538 7.135 27.73 21.672 27.73 14.671 0 21.807-12.924 21.807-27.461zm-50.882 0c0-16.154 8.614-33.653 28.805-33.653 20.193 0 29.481 17.365 29.481 33.384 0 16.153-9.153 33.787-29.346 33.787-20.191 0-28.94-17.365-28.94-33.518m71.73-32.173h7v11.173c2.423-4.711 8.211-12.653 17.231-12.653 2.96 0 5.115.674 6.192 1.078l-1.75 6.594c-1.078-.404-2.558-.942-5.251-.942-8.884 0-14.673 10.5-16.421 14.27v44.69h-7.001v-64.21m51.013 28.134l28.135-28.134h8.75l-28.402 28.134 29.883 36.076h-8.75zM920.724.015h7v96.919h-7V.014m-416.725 187.38c17.095 0 24.094-7.808 24.094-19.654 0-11.173-6.73-19.25-23.826-19.25h-11.44v38.904zm-18.576-45.23h19.518c18.846 0 30.69 9.29 30.69 25.308 0 16.151-11.172 26.248-31.498 26.248h-11.307v38.094h-7.403v-89.65m61.513 70.805v-45.364h7v43.883c0 9.424 3.365 15.48 13.191 15.48 9.559 0 17.498-9.018 19.654-12.787v-46.576h6.999v51.825c0 5.115.538 9.962 1.212 12.384h-7.135c-.402-2.153-.942-7-.942-10.5-3.096 4.847-10.365 11.981-21.268 11.981-13.46 0-18.711-8.75-18.711-20.326m107.957-13.191c0-14-5.385-27.326-21-27.326-5.518 0-11.98 3.23-15.615 7.269v44.96c2.961 1.48 7.402 2.557 12.52 2.557 16.286 0 24.095-14.134 24.095-27.46zm-43.614 28.672v-93.555h6.999v38.634c3.904-4.443 10.232-7.404 16.827-7.404 18.305 0 27.19 14.672 27.19 33.383 0 18.038-12.115 33.787-31.768 33.787-7.672 0-14.806-1.884-19.248-4.845m65.416-93.555h7.001v96.92h-7v-96.92m27.862 32.71h7.134v64.21h-7.134zm-1.75-18.98c0-3.095 2.424-5.385 5.252-5.385 2.958 0 5.382 2.29 5.382 5.386s-2.424 5.52-5.382 5.52c-2.828 0-5.252-2.425-5.252-5.52m22.343 51.017c0-20.326 11.712-33.518 28.269-33.518 9.558 0 15.615 3.635 19.114 6.73l-3.635 5.115c-3.633-3.096-8.48-5.788-15.612-5.788-14.27 0-20.732 12.384-20.732 27.192 0 14.269 6.328 27.864 20.597 27.864 7.404 0 13.594-3.23 16.422-5.788l3.096 5.25c-3.5 3.096-10.23 6.595-19.923 6.595-18.441 0-27.596-16.422-27.596-33.652M483.403 366.697v-89.65h19.114v74.303H535.9v15.347h-52.498m66.689 0V301.14h18.036v65.558zm9.02-74.035c-6.328 0-10.906-4.981-10.906-10.77 0-5.654 4.578-10.5 10.905-10.5 6.327 0 11.037 4.846 11.037 10.5 0 5.789-4.71 10.77-11.037 10.77m42.67 60.17c1.21.403 4.037 1.482 9.018 1.482 9.961 0 15.883-7.404 15.883-20.865 0-12.25-4.17-19.788-13.864-19.788-5.652 0-9.961 3.634-11.037 4.98zm0-83.055v36.48c2.961-2.963 8.75-6.731 16.017-6.731 16.425 0 27.866 11.306 27.866 33.923 0 22.343-15.077 34.863-34.865 34.863-14.807 0-23.826-3.77-26.922-5.25v-93.285h17.904m94.224 47.114c-1.077-.672-3.097-1.482-6.868-1.482-7.94 0-12.651 7.002-14.267 9.961v41.327h-17.904V301.14h17.904v8.887c2.826-4.847 8.212-10.5 16.557-10.5 4.846 0 7.404.942 8.885 1.752l-4.307 15.613m45.362 20.728h-2.29c-10.498 0-17.767 3.1-17.767 10.77 0 4.846 3.905 6.865 7.941 6.865 6.463 0 10.232-3.77 12.116-5.787zm2.02 29.078c-.54-1.617-.942-4.98-1.079-7-2.96 3.5-9.153 8.615-18.44 8.615-11.174 0-19.788-6.73-19.788-18.442 0-17.096 17.634-23.288 34.998-23.288h2.289v-3.769c0-5.654-2.29-9.152-10.635-9.152-8.48 0-14.269 4.44-16.691 6.19l-7.808-10.901c3.904-3.5 12.52-9.424 26.52-9.424 17.903 0 26.383 6.866 26.383 24.23v23.557c0 8.883.941 15.209 1.884 19.384h-17.633m69.186-49.806c-1.076-.672-3.096-1.482-6.864-1.482-7.942 0-12.654 7.002-14.27 9.961v41.327h-17.904V301.14h17.904v8.887c2.828-4.847 8.212-10.5 16.558-10.5 4.844 0 7.403.942 8.884 1.752l-4.308 15.613m10.768-15.752h19.113l14.54 43.212h.673l13.326-43.212h18.442l-27.057 72.556c-5.789 15.48-12.654 24.499-30.556 24.499-5.52 0-8.75-.805-10.096-1.21l2.557-14.135c.942.27 2.423.672 6.327.672 9.153 0 12.384-4.44 14.94-11.441l2.423-6.73-24.632-64.21"
6581
- })), _path2$f || (_path2$f = /*#__PURE__*/createElement("path", {
6582
- d: "M244.07 275.908c-.632 3.292-2.639 9.649-5.848 10.062-3.233.413-5.562-3.053-7.881-4.352-3.912-2.182-9.444-3.61-14.556-5.302-4.41-1.462-10.457-3.27-12.23-7.479-2.657-6.265 3.55-9.229 8.02-10.605 4.21-1.293 7.292-1.78 12.78-2.036 8.075-.388 15.784.768 18.495 5.844 1.635 3.057 2.133 9.122 1.22 13.868zm74.12 4.038c-14.064-6.882-32.33-10.33-45.62-17.713-10.522-5.834-18.59-15.471-29.913-20.664-11.552-5.656-28.94-11.341-35.586-12.98-23.496-5.78-43.231 1.747-50.076 7.164-12.781 10.1-22.766 26.516-18.87 50.134 1.65 9.984 4.723 18.383 9.607 25.29 19.818 27.99 56.91 37.084 86.295 54.742 1.036.705 2.118.517 2.78-.383 4.935-7.258 8.947-13.1 17.26-16.558 8.44-3.524 21.722-2.327 33.174-1.77 11.83.573 24.6-.538 28.891-6.655 5.127-7.301 4.828-22.013-2.997-26.508-4.199-2.42-10.459-2.53-15.025-4.635-3.332-1.54-5.901-4.422-7.739-8.428-1.54-3.352-2.973-8.856-.976-12.447 1.84-3.308 6.475-2.372 10.199-1.506 7.38 1.694 19.711 3.49 26.811.376 2.092-1.068-5.386-6.076-8.216-7.459M20.98 299.71c.424-2.396.609-3.063 2.052-4.947 2.286-3.418 30.024-34.543 73.016-42.085 5.658-.811 9.734-.419 10.661 1.849 1.625 3.976-1.667 6.266-5.629 8.56-68.952 41.21-64.064 102.472-64.725 127.532.208 10.252-7.195 12.118-9.043 7.288-8.092-22.074-14.896-56.673-6.333-98.197m46.657-90.251c1.413-1.499 2.334-2.187 4.43-2.778 26.481-6.578 53.046-2.39 72.177 6.14 4.294 1.902 6.229 4.596 3.409 6.405-3.587 2.084-14.456 9.154-20.464 14.752-1.746 1.505-4.86 1.584-6.697 1.34-22.426-2.956-34.074-4.703-67.787 8.077-5.173 2.175-9.826-.784-7.445-4.85 4.489-8.04 14.927-21.49 22.377-29.086M111.209 183c-5.798-.66-5.88-4.902-3.428-6.553 6.3-4.414 16.521-9.743 26.804-13.82 3.078-1.22 4.668-1.537 7.487-1.255 7.578.759 20.125 5.86 34.522 16.133 17.266 12.32 32.626 35.725 22.354 33.83-6.497-1.125-3.668-.816-11.283-1.652-7.781-.69-12.888.11-16.475-.256-1.562-.128-2.793-1.168-3.893-2.07-14.573-13.067-31.407-21.36-56.088-24.357",
6583
- fill: "#fff"
6584
- })), _path3$9 || (_path3$9 = /*#__PURE__*/createElement("path", {
6585
- d: "M388.617 387.566c-1.555 4.852-3.401 10.939-7.359 8.115-7.351-5.47-23.692-15.988-39.517-21.825-.85-.19-.754-1.37-.454-2.035 1.122-2.485 1.624-4.784 2.11-7.725.45-2.752 2.436-4.59 3.801-6.797 4.056-6.479 6.253-17.772 7.138-24.817.672-6.473.272-13.686-1.13-19.698-.599-2.568-2.45-5.878-2.401-8.718.048-2.779 1.354-5.69 1.622-8.97.783-9.49-11.194-17.403-17.731-20.452-14.83-6.924-30.59-13.117-46.607-21.568-9.041-4.769-16.297-15.23-23.552-20.845-7.327-5.654-30.879-14.995-40.292-17.482-2.125-.67-2.879-1.552-3.239-3.244-3.88-18.518-14.808-38.916-35.223-54.69-6.61-5.138.803-8.06 9.907-8.504 143.51-4.92 226.095 127.15 192.927 239.255",
6586
- fill: "#fff"
6587
- })), _path4$1 || (_path4$1 = /*#__PURE__*/createElement("path", {
6588
- d: "M330.345 324.088c-.103-.73-.417-3.204-.415-3.715.008-1.305 2.691-3.081 3.942-4.074 1.897-1.51 4.093-3.17 5.532-3.895.52-.327.865.43.935.579 5.291 8.03 3.307 27.88-.515 37.318-.443.96-1.252 1.333-1.582.63-1.95-4.258-4.845-8.092-8.169-10.196-.613-.476-.66-1.468-.613-1.652 1.07-4.485 1.625-9.46.885-14.995m-65.426 48.855c1.14-3.291 2.466-5.23 5.024-6.83 4.814-3.02 12.815-3.15 20.538-3.678 7.482-.505 15.477-.943 20.8-3.403 3.222-1.481 6.444-5.7 11.423-3.552 2.357 1.016 3.64 3.176 4.344 5.324.79 2.394 1.364 4.81 1.118 8.019-.716 9.258-8.235 13.78-9.589 22.434-.125 1.337-.353 3.273-1.12 4.042-5.742 5.844-17.097 4.615-27.362 3.582-3.674-.366-7.306-.466-9.791-1.65-1.794-.838-3.403-2.549-4.894-3.932-3.283-3.043-5.14-5.283-8.433-8.975-1.117-1.251-3.648-3.515-3.814-4.89-.142-1.318 1.27-5.103 1.756-6.491M85.152 482.06c-3.768-3.087-5.388-5.69-7.555-9.347-17.576-28.094-27.427-127.586-4.778-161.332 7.208-11.823 14.843-6.373 12.306 2.767-4.338 20.517-1.68 32.014 8.297 54.276 15.679 33.083 64.073 79.017 76.884 95.676 21.963 28.57 29.272 49.386 29.172 54.993-.119 4.302-.944 7.045-8.483 6.408-39.764-3.151-78.206-19.638-105.843-43.441",
6589
- fill: "#fff"
6590
- })), _path5 || (_path5 = /*#__PURE__*/createElement("path", {
6591
- d: "M107.885 347.889c-12.129-29.548-4.208-56.154 1.149-66.245 2.701-5.092 5.341-8.419 8.789-7.462 3.75 1.047 4.617 4.886 5.135 12.003 3.817 59.062 39.542 78.948 84.414 99.801 35.4 18.097 75.678 38.787 109.435 88.906 5.109 7.235 5.846 11.625.078 15.77-20.58 14.05-39.225 23.844-66.503 30.205-4.107.961-8.341.24-11.979-9.143-37.895-97.638-101.518-93.237-130.518-163.835m234.716 120.04c-5.77 5.767-9.041 1.246-10.927-2.457-8.08-17.18-15.971-31.56-28.698-45.488-2.205-2.235-.506-5.372 2.735-5.053 4.143.332 6.857.105 11.414-1.854 3.855-1.655 8.272-7.06 10.475-14.824 1.605-5.664 1.68-7.33 5.15-7.684.863-.082 2.442.136 3.399.412 4.224 1.202 8.76 4.653 12.074 7.196 8.501 6.494 21.184 20.827 23.404 25.464 1.409 2.952.06 4.956-.735 6.642-4.448 9.095-18.477 27.943-28.291 37.647",
6592
- fill: "#fff"
6593
- })), _path6 || (_path6 = /*#__PURE__*/createElement("path", {
6594
- d: "M342.6 467.938c-5.768 5.766-9.04 1.245-10.926-2.458-8.08-17.18-15.971-31.56-28.698-45.488-2.205-2.235-.506-5.373 2.735-5.053 4.143.332 6.857.105 11.414-1.853 3.855-1.656 8.272-7.062 10.475-14.825 1.605-5.664 1.68-7.33 5.15-7.684.863-.082 2.442.136 3.399.412 4.224 1.202 8.76 4.653 12.074 7.196 8.501 6.493 21.184 20.826 23.404 25.465 1.409 2.951.06 4.955-.735 6.64-4.448 9.096-18.477 27.942-28.291 37.648zM107.91 347.859c-12.129-29.546-4.209-56.152 1.149-66.243 2.701-5.092 5.341-8.419 8.789-7.462 3.75 1.047 4.617 4.886 5.135 12.003 3.816 59.062 39.54 78.948 84.413 99.8 35.402 18.098 75.68 38.787 109.436 88.906 5.11 7.236 5.847 11.626.077 15.77-20.58 14.05-39.224 23.844-66.502 30.205-4.106.96-8.342.24-11.98-9.143-37.895-97.637-101.518-93.238-130.517-163.836zm-86.897-48.163c.426-2.396.612-3.062 2.054-4.946 2.286-3.417 30.023-34.543 73.017-42.084 5.656-.81 9.733-.419 10.66 1.849 1.625 3.976-1.667 6.268-5.628 8.56-68.953 41.21-64.065 102.472-64.725 127.532.208 10.25-7.195 12.118-9.044 7.288-8.092-22.074-14.896-56.674-6.334-98.199zm46.622-90.287c1.413-1.498 2.334-2.186 4.43-2.777 26.481-6.577 53.046-2.39 72.177 6.141 4.294 1.902 6.229 4.596 3.409 6.404-3.587 2.084-14.456 9.153-20.464 14.752-1.746 1.505-4.86 1.584-6.697 1.34-22.426-2.956-34.074-4.703-67.787 8.077-5.173 2.176-9.826-.784-7.445-4.85 4.489-8.04 14.927-21.49 22.377-29.087zm197.284 163.484c1.14-3.29 2.466-5.229 5.024-6.83 4.814-3.019 12.815-3.15 20.538-3.677 7.482-.506 15.477-.943 20.8-3.403 3.222-1.481 6.444-5.701 11.423-3.552 2.357 1.016 3.64 3.176 4.344 5.324.79 2.393 1.364 4.81 1.118 8.018-.716 9.259-8.235 13.78-9.589 22.434-.125 1.338-.353 3.274-1.12 4.043-5.742 5.844-17.097 4.615-27.362 3.581-3.674-.365-7.306-.465-9.791-1.649-1.794-.84-3.403-2.55-4.894-3.932-3.283-3.044-5.14-5.284-8.433-8.976-1.117-1.25-3.648-3.514-3.814-4.889-.142-1.319 1.27-5.104 1.756-6.492zm-153.71-189.94c-5.798-.662-5.88-4.902-3.428-6.553 6.3-4.415 16.521-9.744 26.804-13.821 3.078-1.22 4.668-1.538 7.487-1.254 7.578.759 20.125 5.86 34.522 16.132 17.266 12.32 32.626 35.724 22.354 33.83-6.497-1.126-3.668-.815-11.283-1.651-7.781-.69-12.888.108-16.475-.257-1.562-.127-2.793-1.168-3.893-2.068-14.573-13.068-31.407-21.361-56.088-24.358zm45.786 52.75c6.845-5.417 26.58-12.943 50.076-7.163 6.646 1.638 24.034 7.323 35.586 12.98 11.323 5.192 19.391 14.83 29.914 20.665 13.29 7.382 31.555 10.83 45.618 17.712 2.83 1.383 10.308 6.39 8.216 7.458-7.1 3.115-19.431 1.319-26.811-.376-3.724-.865-8.36-1.802-10.199 1.507-1.997 3.59-.565 9.094.976 12.446 1.838 4.007 4.407 6.888 7.739 8.428 4.566 2.105 10.826 2.216 15.025 4.636 7.825 4.495 8.124 19.206 2.997 26.507-4.29 6.116-17.06 7.227-28.891 6.656-11.452-.557-24.734-1.754-33.174 1.77-8.313 3.457-12.325 9.3-17.26 16.558-.662.9-1.744 1.088-2.78.382-29.384-17.658-66.477-26.752-86.295-54.742-4.884-6.907-7.957-15.305-9.607-25.289-3.896-23.618 6.089-40.035 18.87-50.135zm173.35 88.335c-.103-.73-.417-3.203-.415-3.714.008-1.305 2.691-3.081 3.942-4.075 1.897-1.51 4.093-3.169 5.532-3.894.52-.327.865.43.935.578 5.291 8.03 3.307 27.88-.515 37.318-.443.96-1.252 1.333-1.582.63-1.95-4.258-4.845-8.091-8.169-10.195-.613-.476-.66-1.468-.613-1.652 1.07-4.485 1.625-9.46.885-14.996zm58.272 63.479c-1.555 4.852-3.401 10.937-7.359 8.114-7.351-5.47-23.692-15.987-39.517-21.824-.85-.191-.754-1.37-.454-2.035 1.122-2.487 1.624-4.784 2.11-7.725.45-2.752 2.436-4.59 3.801-6.797 4.056-6.479 6.253-17.772 7.138-24.817.672-6.473.272-13.686-1.13-19.698-.599-2.568-2.45-5.879-2.401-8.719.048-2.778 1.354-5.689 1.622-8.969.783-9.49-11.194-17.402-17.731-20.453-14.83-6.923-30.59-13.115-46.607-21.566-9.041-4.769-16.297-15.231-23.552-20.846-7.327-5.653-30.879-14.996-40.292-17.48-2.125-.67-2.879-1.554-3.239-3.246-3.88-18.517-14.808-38.916-35.223-54.69-6.61-5.138.803-8.06 9.907-8.504 143.51-4.919 226.095 127.151 192.927 239.255zM85.152 482.01c-3.768-3.087-5.388-5.69-7.555-9.347-17.576-28.094-27.427-127.586-4.778-161.332 7.208-11.825 14.843-6.373 12.306 2.767-4.338 20.517-1.68 32.014 8.297 54.276 15.679 33.083 64.073 79.016 76.884 95.676 21.963 28.57 29.272 49.385 29.172 54.993-.119 4.302-.944 7.044-8.483 6.407-39.764-3.15-78.206-19.637-105.843-43.44zm120.73-352.236C92.439 129.775 0 222.018 0 336.73c0 114.706 93 207.004 206.01 207.004 114.711 0 207.544-92.25 207.544-206.957 0-114.715-92.966-207-207.671-207"
6595
- })), _path7 || (_path7 = /*#__PURE__*/createElement("path", {
6596
- d: "M215.816 276.316c5.112 1.692 10.642 3.12 14.554 5.302 2.319 1.299 4.648 4.765 7.883 4.352 3.208-.413 5.213-6.77 5.846-10.062.914-4.746.415-10.81-1.22-13.868-2.709-5.076-10.42-6.232-18.494-5.844-5.49.256-8.57.743-12.781 2.036-4.47 1.376-10.676 4.34-8.02 10.605 1.774 4.208 7.82 6.017 12.232 7.479"
6597
- })));
6598
- }
6599
-
6600
- var _g$2, _defs;
6601
-
6708
+ }, title) : null, _g$1 || (_g$1 = /*#__PURE__*/createElement("g", {
6709
+ clipPath: "url(#logo_mln_black_svg__clip0_51609_40290)"
6710
+ }, /*#__PURE__*/createElement("path", {
6711
+ d: "M0 66.115c3.741-4.266 7.607-8.432 11.173-12.871.254-.504.922-1.196 1.053-1.301.44-.354.774-.943 1.274-1.443.5 0 1.346.528 1.904.626 1.391.63.725.269 1.555.63a52.471 52.471 0 0030.7 3.422c15.464-2.48 30.702-6.175 46.065-9.3 9.726-1.983 19.477-3.819 29.528-2.802a32.053 32.053 0 0114.739 4.628 31.83 31.83 0 0110.824 10.97c.25.398.549.794.923 1.365.349-.37.667-.768.948-1.19 6.759-11.21 17.133-15.946 29.928-16.145 12.245-.198 23.992 2.877 35.813 5.431 11.323 2.48 22.67 4.96 34.118 6.795a57.052 57.052 0 0035.439-4.588l14.091 16.839c-5.163 1.091-9.702 2.48-14.291 2.976-17.906 2.48-35.215-.843-52.373-5.53-12.719-3.447-25.389-7.118-38.258-9.92-10.3-2.306-20.725-2.48-30.526 2.678a37.93 37.93 0 00-12.869 11.185l-1.646 2.182c-3.167-3.273-5.96-6.745-9.302-9.572-7.781-6.547-17.109-8.358-27.085-7.688-13.592.917-26.411 5.233-39.355 8.952a201.691 201.691 0 01-38.058 8.184A89.37 89.37 0 012.62 67.9c-.823-.248-1.721-.347-2.494-.52L-1 67l1-.885zM15.57 30h4.991V11.78h.372L27.798 30h3.507l6.865-18.22h.371V30h4.991V3.226h-6.42l-7.385 19.593h-.333L21.99 3.226h-6.42V30zm36.367 7.2c5.047 0 7.738-1.82 9.556-7.219l6.958-20.41h-5.715L58.45 25.046h-.37L53.792 9.57h-5.956L55.017 30l-.185.78c-.39 1.595-1.503 2.337-3.433 2.337-.5 0-1.039-.018-1.41-.055v4.082c.631.037 1.318.055 1.949.055zM72.757 30h17.516v-4.62H78.359V3.226h-5.603V30zM97.582 6.436c1.67 0 3.043-1.336 3.043-3.006A3.029 3.029 0 0097.582.405c-1.67 0-3.061 1.336-3.061 3.025 0 1.67 1.391 3.006 3.061 3.006zM94.855 30h5.417V9.571h-5.418V30zm22.933.315c5.103 0 8.294-3.989 8.294-10.52v-.037c0-6.568-3.117-10.52-8.294-10.52-2.802 0-5.084 1.372-6.123 3.599h-.334V1.76h-5.418V30h5.418v-3.173h.334c1.058 2.208 3.229 3.488 6.123 3.488zm-1.855-4.49c-2.858 0-4.658-2.264-4.658-6.011v-.038c0-3.748 1.819-6.049 4.658-6.049 2.857 0 4.638 2.301 4.638 6.03v.038c0 3.766-1.762 6.03-4.638 6.03zM130.479 30h5.418V18.57c0-2.894 1.949-4.657 5.029-4.657.835 0 1.67.13 2.486.316V9.497a8.113 8.113 0 00-2.022-.26c-2.654 0-4.509 1.3-5.159 3.507h-.334V9.571h-5.418V30zm21.747.315c2.671 0 4.824-1.131 5.863-3.024h.334V30h5.344V16.047c0-4.36-3.062-6.921-8.48-6.921-5.14 0-8.516 2.375-8.943 5.956l-.019.167h5.01l.037-.074c.427-1.206 1.67-1.893 3.618-1.893 2.227 0 3.433 1.002 3.433 2.765v1.688l-4.936.297c-5.084.297-7.923 2.45-7.923 6.123v.037c0 3.711 2.765 6.123 6.662 6.123zm-1.373-6.457v-.037c0-1.484 1.131-2.356 3.451-2.505l4.119-.26v1.504c0 2.152-1.874 3.803-4.379 3.803-1.874 0-3.191-.946-3.191-2.505zM169.073 30h5.418V18.57c0-2.894 1.948-4.657 5.029-4.657.834 0 1.669.13 2.486.316V9.497a8.115 8.115 0 00-2.023-.26c-2.653 0-4.508 1.3-5.158 3.507h-.334V9.571h-5.418V30zm19.353 7.2c5.047 0 7.737-1.82 9.555-7.219l6.958-20.41h-5.714l-4.287 15.475h-.371L190.281 9.57h-5.956L191.506 30l-.186.78c-.389 1.595-1.503 2.337-3.432 2.337-.501 0-1.039-.018-1.41-.055v4.082c.63.037 1.317.055 1.948.055zm20.818-7.2h5.362V12.874h.297L227.298 30h4.639V3.226h-5.363v17.051h-.297L213.92 3.226h-4.676V30zm36.609 0h5.603V19.999l9.333-16.773h-6.067l-5.882 11.262h-.334l-5.901-11.262h-6.067l9.315 16.773V30zm29.279.686c6.457 0 11.04-3.822 11.615-9.425l.019-.204h-5.455l-.038.148c-.593 2.858-2.913 4.732-6.123 4.732-4.23 0-6.846-3.563-6.846-9.315v-.037c0-5.752 2.616-9.296 6.828-9.296 3.191 0 5.585 2.041 6.16 5.047v.13h5.455v-.223c-.519-5.659-5.269-9.704-11.615-9.704-7.775 0-12.562 5.362-12.562 14.046v.037c0 8.684 4.806 14.064 12.562 14.064z"
6712
+ }))));
6713
+ }
6714
+
6715
+ var _g$2;
6716
+
6602
6717
  var _excluded$E = ["title", "titleId"];
6603
6718
 
6604
6719
  function _extends$E() { _extends$E = Object.assign || 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$E.apply(this, arguments); }
@@ -6607,19 +6722,90 @@ function _objectWithoutProperties$D(source, excluded) { if (source == null) retu
6607
6722
 
6608
6723
  function _objectWithoutPropertiesLoose$E(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; }
6609
6724
 
6610
- function SvgLogoNyplFullWhite(_ref) {
6725
+ function SvgLogoMlnWhite(_ref) {
6611
6726
  var title = _ref.title,
6612
6727
  titleId = _ref.titleId,
6613
6728
  props = _objectWithoutProperties$D(_ref, _excluded$E);
6614
6729
 
6615
6730
  return /*#__PURE__*/createElement("svg", _extends$E({
6731
+ viewBox: "0 0 300 71",
6732
+ fill: "#fff",
6733
+ xmlns: "http://www.w3.org/2000/svg",
6734
+ "aria-labelledby": titleId
6735
+ }, props), title ? /*#__PURE__*/createElement("title", {
6736
+ id: titleId
6737
+ }, title) : null, _g$2 || (_g$2 = /*#__PURE__*/createElement("g", {
6738
+ clipPath: "url(#logo_mln_white_svg__clip0_51609_40290)"
6739
+ }, /*#__PURE__*/createElement("path", {
6740
+ d: "M0 66.115c3.741-4.266 7.607-8.432 11.173-12.871.254-.504.922-1.196 1.053-1.301.44-.354.774-.943 1.274-1.443.5 0 1.346.528 1.904.626 1.391.63.725.269 1.555.63a52.471 52.471 0 0030.7 3.422c15.464-2.48 30.702-6.175 46.065-9.3 9.726-1.983 19.477-3.819 29.528-2.802a32.053 32.053 0 0114.739 4.628 31.83 31.83 0 0110.824 10.97c.25.398.549.794.923 1.365.349-.37.667-.768.948-1.19 6.759-11.21 17.133-15.946 29.928-16.145 12.245-.198 23.992 2.877 35.813 5.431 11.323 2.48 22.67 4.96 34.118 6.795a57.052 57.052 0 0035.439-4.588l14.091 16.839c-5.163 1.091-9.702 2.48-14.291 2.976-17.906 2.48-35.215-.843-52.373-5.53-12.719-3.447-25.389-7.118-38.258-9.92-10.3-2.306-20.725-2.48-30.526 2.678a37.93 37.93 0 00-12.869 11.185l-1.646 2.182c-3.167-3.273-5.96-6.745-9.302-9.572-7.781-6.547-17.109-8.358-27.085-7.688-13.592.917-26.411 5.233-39.355 8.952a201.691 201.691 0 01-38.058 8.184A89.37 89.37 0 012.62 67.9c-.823-.248-1.721-.347-2.494-.52L-1 67l1-.885zM15.57 30h4.991V11.78h.372L27.798 30h3.507l6.865-18.22h.371V30h4.991V3.226h-6.42l-7.385 19.593h-.333L21.99 3.226h-6.42V30zm36.367 7.2c5.047 0 7.738-1.82 9.556-7.219l6.958-20.41h-5.715L58.45 25.046h-.37L53.792 9.57h-5.956L55.017 30l-.185.78c-.39 1.595-1.503 2.337-3.433 2.337-.5 0-1.039-.018-1.41-.055v4.082c.631.037 1.318.055 1.949.055zM72.757 30h17.516v-4.62H78.359V3.226h-5.603V30zM97.582 6.436c1.67 0 3.043-1.336 3.043-3.006A3.029 3.029 0 0097.582.405c-1.67 0-3.061 1.336-3.061 3.025 0 1.67 1.391 3.006 3.061 3.006zM94.855 30h5.417V9.571h-5.418V30zm22.933.315c5.103 0 8.294-3.989 8.294-10.52v-.037c0-6.568-3.117-10.52-8.294-10.52-2.802 0-5.084 1.372-6.123 3.599h-.334V1.76h-5.418V30h5.418v-3.173h.334c1.058 2.208 3.229 3.488 6.123 3.488zm-1.855-4.49c-2.858 0-4.658-2.264-4.658-6.011v-.038c0-3.748 1.819-6.049 4.658-6.049 2.857 0 4.638 2.301 4.638 6.03v.038c0 3.766-1.762 6.03-4.638 6.03zM130.479 30h5.418V18.57c0-2.894 1.949-4.657 5.029-4.657.835 0 1.67.13 2.486.316V9.497a8.113 8.113 0 00-2.022-.26c-2.654 0-4.509 1.3-5.159 3.507h-.334V9.571h-5.418V30zm21.747.315c2.671 0 4.824-1.131 5.863-3.024h.334V30h5.344V16.047c0-4.36-3.062-6.921-8.48-6.921-5.14 0-8.516 2.375-8.943 5.956l-.019.167h5.01l.037-.074c.427-1.206 1.67-1.893 3.618-1.893 2.227 0 3.433 1.002 3.433 2.765v1.688l-4.936.297c-5.084.297-7.923 2.45-7.923 6.123v.037c0 3.711 2.765 6.123 6.662 6.123zm-1.373-6.457v-.037c0-1.484 1.131-2.356 3.451-2.505l4.119-.26v1.504c0 2.152-1.874 3.803-4.379 3.803-1.874 0-3.191-.946-3.191-2.505zM169.073 30h5.418V18.57c0-2.894 1.948-4.657 5.029-4.657.834 0 1.669.13 2.486.316V9.497a8.115 8.115 0 00-2.023-.26c-2.653 0-4.508 1.3-5.158 3.507h-.334V9.571h-5.418V30zm19.353 7.2c5.047 0 7.737-1.82 9.555-7.219l6.958-20.41h-5.714l-4.287 15.475h-.371L190.281 9.57h-5.956L191.506 30l-.186.78c-.389 1.595-1.503 2.337-3.432 2.337-.501 0-1.039-.018-1.41-.055v4.082c.63.037 1.317.055 1.948.055zm20.818-7.2h5.362V12.874h.297L227.298 30h4.639V3.226h-5.363v17.051h-.297L213.92 3.226h-4.676V30zm36.609 0h5.603V19.999l9.333-16.773h-6.067l-5.882 11.262h-.334l-5.901-11.262h-6.067l9.315 16.773V30zm29.279.686c6.457 0 11.04-3.822 11.615-9.425l.019-.204h-5.455l-.038.148c-.593 2.858-2.913 4.732-6.123 4.732-4.23 0-6.846-3.563-6.846-9.315v-.037c0-5.752 2.616-9.296 6.828-9.296 3.191 0 5.585 2.041 6.16 5.047v.13h5.455v-.223c-.519-5.659-5.269-9.704-11.615-9.704-7.775 0-12.562 5.362-12.562 14.046v.037c0 8.684 4.806 14.064 12.562 14.064z"
6741
+ }))));
6742
+ }
6743
+
6744
+ var _path$z, _path2$g, _path3$a, _path4$2, _path5$1, _path6$1, _path7$1;
6745
+
6746
+ var _excluded$F = ["title", "titleId"];
6747
+
6748
+ function _extends$F() { _extends$F = Object.assign || 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$F.apply(this, arguments); }
6749
+
6750
+ function _objectWithoutProperties$E(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$F(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; }
6751
+
6752
+ function _objectWithoutPropertiesLoose$F(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; }
6753
+
6754
+ function SvgLogoNyplFullBlack(_ref) {
6755
+ var title = _ref.title,
6756
+ titleId = _ref.titleId,
6757
+ props = _objectWithoutProperties$E(_ref, _excluded$F);
6758
+
6759
+ return /*#__PURE__*/createElement("svg", _extends$F({
6760
+ xmlns: "http://www.w3.org/2000/svg",
6761
+ viewBox: "0 0 966.787 543.733",
6762
+ "aria-labelledby": titleId
6763
+ }, props), title ? /*#__PURE__*/createElement("title", {
6764
+ id: titleId
6765
+ }, title) : null, _path$z || (_path$z = /*#__PURE__*/createElement("path", {
6766
+ d: "M485.288 7.284h7.269l53.44 77.4v-77.4h7v89.65h-6.867l-53.978-77.94v77.94h-6.864V7.284m126.535 49.67c-.134-9.691-5.114-19.652-17.365-19.652-11.171 0-17.634 8.614-19.518 19.653zm-44.692 7.27c0-18.172 10.5-32.98 27.597-32.98 16.422 0 25.442 13.192 24.094 31.498h-44.287v1.482c.136 14.673 6.328 28.134 21.674 28.134 8.21 0 15.076-3.366 18.576-6.059l2.96 5.52c-4.038 2.961-11.441 6.596-21.807 6.596-19.652 0-28.807-15.75-28.807-34.191m59.225-31.5h7.539l15.617 53.442 16.825-53.442h6.865L690.028 86.3l15.749-53.575h7.001l-19.385 64.21h-6.46l-17.366-54.112-17.365 54.112h-6.46l-19.386-64.21m148.337 30.422L744.676 7.284h8.345l25.44 48.459h.27l25.442-48.46h7.539l-29.75 55.863v33.788h-7.27V63.146m81.841 1.751c0-14.404-7.673-27.595-22.345-27.595-14.538 0-21.134 12.922-21.134 27.326 0 14.538 7.135 27.73 21.672 27.73 14.671 0 21.807-12.924 21.807-27.461zm-50.882 0c0-16.154 8.614-33.653 28.805-33.653 20.193 0 29.481 17.365 29.481 33.384 0 16.153-9.153 33.787-29.346 33.787-20.191 0-28.94-17.365-28.94-33.518m71.73-32.173h7v11.173c2.423-4.711 8.211-12.653 17.231-12.653 2.96 0 5.115.674 6.192 1.078l-1.75 6.594c-1.078-.404-2.558-.942-5.251-.942-8.884 0-14.673 10.5-16.421 14.27v44.69h-7.001v-64.21m51.013 28.134l28.135-28.134h8.75l-28.402 28.134 29.883 36.076h-8.75zM920.724.015h7v96.919h-7V.014m-416.725 187.38c17.095 0 24.094-7.808 24.094-19.654 0-11.173-6.73-19.25-23.826-19.25h-11.44v38.904zm-18.576-45.23h19.518c18.846 0 30.69 9.29 30.69 25.308 0 16.151-11.172 26.248-31.498 26.248h-11.307v38.094h-7.403v-89.65m61.513 70.805v-45.364h7v43.883c0 9.424 3.365 15.48 13.191 15.48 9.559 0 17.498-9.018 19.654-12.787v-46.576h6.999v51.825c0 5.115.538 9.962 1.212 12.384h-7.135c-.402-2.153-.942-7-.942-10.5-3.096 4.847-10.365 11.981-21.268 11.981-13.46 0-18.711-8.75-18.711-20.326m107.957-13.191c0-14-5.385-27.326-21-27.326-5.518 0-11.98 3.23-15.615 7.269v44.96c2.961 1.48 7.402 2.557 12.52 2.557 16.286 0 24.095-14.134 24.095-27.46zm-43.614 28.672v-93.555h6.999v38.634c3.904-4.443 10.232-7.404 16.827-7.404 18.305 0 27.19 14.672 27.19 33.383 0 18.038-12.115 33.787-31.768 33.787-7.672 0-14.806-1.884-19.248-4.845m65.416-93.555h7.001v96.92h-7v-96.92m27.862 32.71h7.134v64.21h-7.134zm-1.75-18.98c0-3.095 2.424-5.385 5.252-5.385 2.958 0 5.382 2.29 5.382 5.386s-2.424 5.52-5.382 5.52c-2.828 0-5.252-2.425-5.252-5.52m22.343 51.017c0-20.326 11.712-33.518 28.269-33.518 9.558 0 15.615 3.635 19.114 6.73l-3.635 5.115c-3.633-3.096-8.48-5.788-15.612-5.788-14.27 0-20.732 12.384-20.732 27.192 0 14.269 6.328 27.864 20.597 27.864 7.404 0 13.594-3.23 16.422-5.788l3.096 5.25c-3.5 3.096-10.23 6.595-19.923 6.595-18.441 0-27.596-16.422-27.596-33.652M483.403 366.697v-89.65h19.114v74.303H535.9v15.347h-52.498m66.689 0V301.14h18.036v65.558zm9.02-74.035c-6.328 0-10.906-4.981-10.906-10.77 0-5.654 4.578-10.5 10.905-10.5 6.327 0 11.037 4.846 11.037 10.5 0 5.789-4.71 10.77-11.037 10.77m42.67 60.17c1.21.403 4.037 1.482 9.018 1.482 9.961 0 15.883-7.404 15.883-20.865 0-12.25-4.17-19.788-13.864-19.788-5.652 0-9.961 3.634-11.037 4.98zm0-83.055v36.48c2.961-2.963 8.75-6.731 16.017-6.731 16.425 0 27.866 11.306 27.866 33.923 0 22.343-15.077 34.863-34.865 34.863-14.807 0-23.826-3.77-26.922-5.25v-93.285h17.904m94.224 47.114c-1.077-.672-3.097-1.482-6.868-1.482-7.94 0-12.651 7.002-14.267 9.961v41.327h-17.904V301.14h17.904v8.887c2.826-4.847 8.212-10.5 16.557-10.5 4.846 0 7.404.942 8.885 1.752l-4.307 15.613m45.362 20.728h-2.29c-10.498 0-17.767 3.1-17.767 10.77 0 4.846 3.905 6.865 7.941 6.865 6.463 0 10.232-3.77 12.116-5.787zm2.02 29.078c-.54-1.617-.942-4.98-1.079-7-2.96 3.5-9.153 8.615-18.44 8.615-11.174 0-19.788-6.73-19.788-18.442 0-17.096 17.634-23.288 34.998-23.288h2.289v-3.769c0-5.654-2.29-9.152-10.635-9.152-8.48 0-14.269 4.44-16.691 6.19l-7.808-10.901c3.904-3.5 12.52-9.424 26.52-9.424 17.903 0 26.383 6.866 26.383 24.23v23.557c0 8.883.941 15.209 1.884 19.384h-17.633m69.186-49.806c-1.076-.672-3.096-1.482-6.864-1.482-7.942 0-12.654 7.002-14.27 9.961v41.327h-17.904V301.14h17.904v8.887c2.828-4.847 8.212-10.5 16.558-10.5 4.844 0 7.403.942 8.884 1.752l-4.308 15.613m10.768-15.752h19.113l14.54 43.212h.673l13.326-43.212h18.442l-27.057 72.556c-5.789 15.48-12.654 24.499-30.556 24.499-5.52 0-8.75-.805-10.096-1.21l2.557-14.135c.942.27 2.423.672 6.327.672 9.153 0 12.384-4.44 14.94-11.441l2.423-6.73-24.632-64.21"
6767
+ })), _path2$g || (_path2$g = /*#__PURE__*/createElement("path", {
6768
+ d: "M244.07 275.908c-.632 3.292-2.639 9.649-5.848 10.062-3.233.413-5.562-3.053-7.881-4.352-3.912-2.182-9.444-3.61-14.556-5.302-4.41-1.462-10.457-3.27-12.23-7.479-2.657-6.265 3.55-9.229 8.02-10.605 4.21-1.293 7.292-1.78 12.78-2.036 8.075-.388 15.784.768 18.495 5.844 1.635 3.057 2.133 9.122 1.22 13.868zm74.12 4.038c-14.064-6.882-32.33-10.33-45.62-17.713-10.522-5.834-18.59-15.471-29.913-20.664-11.552-5.656-28.94-11.341-35.586-12.98-23.496-5.78-43.231 1.747-50.076 7.164-12.781 10.1-22.766 26.516-18.87 50.134 1.65 9.984 4.723 18.383 9.607 25.29 19.818 27.99 56.91 37.084 86.295 54.742 1.036.705 2.118.517 2.78-.383 4.935-7.258 8.947-13.1 17.26-16.558 8.44-3.524 21.722-2.327 33.174-1.77 11.83.573 24.6-.538 28.891-6.655 5.127-7.301 4.828-22.013-2.997-26.508-4.199-2.42-10.459-2.53-15.025-4.635-3.332-1.54-5.901-4.422-7.739-8.428-1.54-3.352-2.973-8.856-.976-12.447 1.84-3.308 6.475-2.372 10.199-1.506 7.38 1.694 19.711 3.49 26.811.376 2.092-1.068-5.386-6.076-8.216-7.459M20.98 299.71c.424-2.396.609-3.063 2.052-4.947 2.286-3.418 30.024-34.543 73.016-42.085 5.658-.811 9.734-.419 10.661 1.849 1.625 3.976-1.667 6.266-5.629 8.56-68.952 41.21-64.064 102.472-64.725 127.532.208 10.252-7.195 12.118-9.043 7.288-8.092-22.074-14.896-56.673-6.333-98.197m46.657-90.251c1.413-1.499 2.334-2.187 4.43-2.778 26.481-6.578 53.046-2.39 72.177 6.14 4.294 1.902 6.229 4.596 3.409 6.405-3.587 2.084-14.456 9.154-20.464 14.752-1.746 1.505-4.86 1.584-6.697 1.34-22.426-2.956-34.074-4.703-67.787 8.077-5.173 2.175-9.826-.784-7.445-4.85 4.489-8.04 14.927-21.49 22.377-29.086M111.209 183c-5.798-.66-5.88-4.902-3.428-6.553 6.3-4.414 16.521-9.743 26.804-13.82 3.078-1.22 4.668-1.537 7.487-1.255 7.578.759 20.125 5.86 34.522 16.133 17.266 12.32 32.626 35.725 22.354 33.83-6.497-1.125-3.668-.816-11.283-1.652-7.781-.69-12.888.11-16.475-.256-1.562-.128-2.793-1.168-3.893-2.07-14.573-13.067-31.407-21.36-56.088-24.357",
6769
+ fill: "#fff"
6770
+ })), _path3$a || (_path3$a = /*#__PURE__*/createElement("path", {
6771
+ d: "M388.617 387.566c-1.555 4.852-3.401 10.939-7.359 8.115-7.351-5.47-23.692-15.988-39.517-21.825-.85-.19-.754-1.37-.454-2.035 1.122-2.485 1.624-4.784 2.11-7.725.45-2.752 2.436-4.59 3.801-6.797 4.056-6.479 6.253-17.772 7.138-24.817.672-6.473.272-13.686-1.13-19.698-.599-2.568-2.45-5.878-2.401-8.718.048-2.779 1.354-5.69 1.622-8.97.783-9.49-11.194-17.403-17.731-20.452-14.83-6.924-30.59-13.117-46.607-21.568-9.041-4.769-16.297-15.23-23.552-20.845-7.327-5.654-30.879-14.995-40.292-17.482-2.125-.67-2.879-1.552-3.239-3.244-3.88-18.518-14.808-38.916-35.223-54.69-6.61-5.138.803-8.06 9.907-8.504 143.51-4.92 226.095 127.15 192.927 239.255",
6772
+ fill: "#fff"
6773
+ })), _path4$2 || (_path4$2 = /*#__PURE__*/createElement("path", {
6774
+ d: "M330.345 324.088c-.103-.73-.417-3.204-.415-3.715.008-1.305 2.691-3.081 3.942-4.074 1.897-1.51 4.093-3.17 5.532-3.895.52-.327.865.43.935.579 5.291 8.03 3.307 27.88-.515 37.318-.443.96-1.252 1.333-1.582.63-1.95-4.258-4.845-8.092-8.169-10.196-.613-.476-.66-1.468-.613-1.652 1.07-4.485 1.625-9.46.885-14.995m-65.426 48.855c1.14-3.291 2.466-5.23 5.024-6.83 4.814-3.02 12.815-3.15 20.538-3.678 7.482-.505 15.477-.943 20.8-3.403 3.222-1.481 6.444-5.7 11.423-3.552 2.357 1.016 3.64 3.176 4.344 5.324.79 2.394 1.364 4.81 1.118 8.019-.716 9.258-8.235 13.78-9.589 22.434-.125 1.337-.353 3.273-1.12 4.042-5.742 5.844-17.097 4.615-27.362 3.582-3.674-.366-7.306-.466-9.791-1.65-1.794-.838-3.403-2.549-4.894-3.932-3.283-3.043-5.14-5.283-8.433-8.975-1.117-1.251-3.648-3.515-3.814-4.89-.142-1.318 1.27-5.103 1.756-6.491M85.152 482.06c-3.768-3.087-5.388-5.69-7.555-9.347-17.576-28.094-27.427-127.586-4.778-161.332 7.208-11.823 14.843-6.373 12.306 2.767-4.338 20.517-1.68 32.014 8.297 54.276 15.679 33.083 64.073 79.017 76.884 95.676 21.963 28.57 29.272 49.386 29.172 54.993-.119 4.302-.944 7.045-8.483 6.408-39.764-3.151-78.206-19.638-105.843-43.441",
6775
+ fill: "#fff"
6776
+ })), _path5$1 || (_path5$1 = /*#__PURE__*/createElement("path", {
6777
+ d: "M107.885 347.889c-12.129-29.548-4.208-56.154 1.149-66.245 2.701-5.092 5.341-8.419 8.789-7.462 3.75 1.047 4.617 4.886 5.135 12.003 3.817 59.062 39.542 78.948 84.414 99.801 35.4 18.097 75.678 38.787 109.435 88.906 5.109 7.235 5.846 11.625.078 15.77-20.58 14.05-39.225 23.844-66.503 30.205-4.107.961-8.341.24-11.979-9.143-37.895-97.638-101.518-93.237-130.518-163.835m234.716 120.04c-5.77 5.767-9.041 1.246-10.927-2.457-8.08-17.18-15.971-31.56-28.698-45.488-2.205-2.235-.506-5.372 2.735-5.053 4.143.332 6.857.105 11.414-1.854 3.855-1.655 8.272-7.06 10.475-14.824 1.605-5.664 1.68-7.33 5.15-7.684.863-.082 2.442.136 3.399.412 4.224 1.202 8.76 4.653 12.074 7.196 8.501 6.494 21.184 20.827 23.404 25.464 1.409 2.952.06 4.956-.735 6.642-4.448 9.095-18.477 27.943-28.291 37.647",
6778
+ fill: "#fff"
6779
+ })), _path6$1 || (_path6$1 = /*#__PURE__*/createElement("path", {
6780
+ d: "M342.6 467.938c-5.768 5.766-9.04 1.245-10.926-2.458-8.08-17.18-15.971-31.56-28.698-45.488-2.205-2.235-.506-5.373 2.735-5.053 4.143.332 6.857.105 11.414-1.853 3.855-1.656 8.272-7.062 10.475-14.825 1.605-5.664 1.68-7.33 5.15-7.684.863-.082 2.442.136 3.399.412 4.224 1.202 8.76 4.653 12.074 7.196 8.501 6.493 21.184 20.826 23.404 25.465 1.409 2.951.06 4.955-.735 6.64-4.448 9.096-18.477 27.942-28.291 37.648zM107.91 347.859c-12.129-29.546-4.209-56.152 1.149-66.243 2.701-5.092 5.341-8.419 8.789-7.462 3.75 1.047 4.617 4.886 5.135 12.003 3.816 59.062 39.54 78.948 84.413 99.8 35.402 18.098 75.68 38.787 109.436 88.906 5.11 7.236 5.847 11.626.077 15.77-20.58 14.05-39.224 23.844-66.502 30.205-4.106.96-8.342.24-11.98-9.143-37.895-97.637-101.518-93.238-130.517-163.836zm-86.897-48.163c.426-2.396.612-3.062 2.054-4.946 2.286-3.417 30.023-34.543 73.017-42.084 5.656-.81 9.733-.419 10.66 1.849 1.625 3.976-1.667 6.268-5.628 8.56-68.953 41.21-64.065 102.472-64.725 127.532.208 10.25-7.195 12.118-9.044 7.288-8.092-22.074-14.896-56.674-6.334-98.199zm46.622-90.287c1.413-1.498 2.334-2.186 4.43-2.777 26.481-6.577 53.046-2.39 72.177 6.141 4.294 1.902 6.229 4.596 3.409 6.404-3.587 2.084-14.456 9.153-20.464 14.752-1.746 1.505-4.86 1.584-6.697 1.34-22.426-2.956-34.074-4.703-67.787 8.077-5.173 2.176-9.826-.784-7.445-4.85 4.489-8.04 14.927-21.49 22.377-29.087zm197.284 163.484c1.14-3.29 2.466-5.229 5.024-6.83 4.814-3.019 12.815-3.15 20.538-3.677 7.482-.506 15.477-.943 20.8-3.403 3.222-1.481 6.444-5.701 11.423-3.552 2.357 1.016 3.64 3.176 4.344 5.324.79 2.393 1.364 4.81 1.118 8.018-.716 9.259-8.235 13.78-9.589 22.434-.125 1.338-.353 3.274-1.12 4.043-5.742 5.844-17.097 4.615-27.362 3.581-3.674-.365-7.306-.465-9.791-1.649-1.794-.84-3.403-2.55-4.894-3.932-3.283-3.044-5.14-5.284-8.433-8.976-1.117-1.25-3.648-3.514-3.814-4.889-.142-1.319 1.27-5.104 1.756-6.492zm-153.71-189.94c-5.798-.662-5.88-4.902-3.428-6.553 6.3-4.415 16.521-9.744 26.804-13.821 3.078-1.22 4.668-1.538 7.487-1.254 7.578.759 20.125 5.86 34.522 16.132 17.266 12.32 32.626 35.724 22.354 33.83-6.497-1.126-3.668-.815-11.283-1.651-7.781-.69-12.888.108-16.475-.257-1.562-.127-2.793-1.168-3.893-2.068-14.573-13.068-31.407-21.361-56.088-24.358zm45.786 52.75c6.845-5.417 26.58-12.943 50.076-7.163 6.646 1.638 24.034 7.323 35.586 12.98 11.323 5.192 19.391 14.83 29.914 20.665 13.29 7.382 31.555 10.83 45.618 17.712 2.83 1.383 10.308 6.39 8.216 7.458-7.1 3.115-19.431 1.319-26.811-.376-3.724-.865-8.36-1.802-10.199 1.507-1.997 3.59-.565 9.094.976 12.446 1.838 4.007 4.407 6.888 7.739 8.428 4.566 2.105 10.826 2.216 15.025 4.636 7.825 4.495 8.124 19.206 2.997 26.507-4.29 6.116-17.06 7.227-28.891 6.656-11.452-.557-24.734-1.754-33.174 1.77-8.313 3.457-12.325 9.3-17.26 16.558-.662.9-1.744 1.088-2.78.382-29.384-17.658-66.477-26.752-86.295-54.742-4.884-6.907-7.957-15.305-9.607-25.289-3.896-23.618 6.089-40.035 18.87-50.135zm173.35 88.335c-.103-.73-.417-3.203-.415-3.714.008-1.305 2.691-3.081 3.942-4.075 1.897-1.51 4.093-3.169 5.532-3.894.52-.327.865.43.935.578 5.291 8.03 3.307 27.88-.515 37.318-.443.96-1.252 1.333-1.582.63-1.95-4.258-4.845-8.091-8.169-10.195-.613-.476-.66-1.468-.613-1.652 1.07-4.485 1.625-9.46.885-14.996zm58.272 63.479c-1.555 4.852-3.401 10.937-7.359 8.114-7.351-5.47-23.692-15.987-39.517-21.824-.85-.191-.754-1.37-.454-2.035 1.122-2.487 1.624-4.784 2.11-7.725.45-2.752 2.436-4.59 3.801-6.797 4.056-6.479 6.253-17.772 7.138-24.817.672-6.473.272-13.686-1.13-19.698-.599-2.568-2.45-5.879-2.401-8.719.048-2.778 1.354-5.689 1.622-8.969.783-9.49-11.194-17.402-17.731-20.453-14.83-6.923-30.59-13.115-46.607-21.566-9.041-4.769-16.297-15.231-23.552-20.846-7.327-5.653-30.879-14.996-40.292-17.48-2.125-.67-2.879-1.554-3.239-3.246-3.88-18.517-14.808-38.916-35.223-54.69-6.61-5.138.803-8.06 9.907-8.504 143.51-4.919 226.095 127.151 192.927 239.255zM85.152 482.01c-3.768-3.087-5.388-5.69-7.555-9.347-17.576-28.094-27.427-127.586-4.778-161.332 7.208-11.825 14.843-6.373 12.306 2.767-4.338 20.517-1.68 32.014 8.297 54.276 15.679 33.083 64.073 79.016 76.884 95.676 21.963 28.57 29.272 49.385 29.172 54.993-.119 4.302-.944 7.044-8.483 6.407-39.764-3.15-78.206-19.637-105.843-43.44zm120.73-352.236C92.439 129.775 0 222.018 0 336.73c0 114.706 93 207.004 206.01 207.004 114.711 0 207.544-92.25 207.544-206.957 0-114.715-92.966-207-207.671-207"
6781
+ })), _path7$1 || (_path7$1 = /*#__PURE__*/createElement("path", {
6782
+ d: "M215.816 276.316c5.112 1.692 10.642 3.12 14.554 5.302 2.319 1.299 4.648 4.765 7.883 4.352 3.208-.413 5.213-6.77 5.846-10.062.914-4.746.415-10.81-1.22-13.868-2.709-5.076-10.42-6.232-18.494-5.844-5.49.256-8.57.743-12.781 2.036-4.47 1.376-10.676 4.34-8.02 10.605 1.774 4.208 7.82 6.017 12.232 7.479"
6783
+ })));
6784
+ }
6785
+
6786
+ var _g$3, _defs;
6787
+
6788
+ var _excluded$G = ["title", "titleId"];
6789
+
6790
+ function _extends$G() { _extends$G = Object.assign || 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$G.apply(this, arguments); }
6791
+
6792
+ function _objectWithoutProperties$F(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$G(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; }
6793
+
6794
+ function _objectWithoutPropertiesLoose$G(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; }
6795
+
6796
+ function SvgLogoNyplFullWhite(_ref) {
6797
+ var title = _ref.title,
6798
+ titleId = _ref.titleId,
6799
+ props = _objectWithoutProperties$F(_ref, _excluded$G);
6800
+
6801
+ return /*#__PURE__*/createElement("svg", _extends$G({
6616
6802
  viewBox: "0 0 967 568",
6617
6803
  fill: "none",
6618
6804
  xmlns: "http://www.w3.org/2000/svg",
6619
6805
  "aria-labelledby": titleId
6620
6806
  }, props), title ? /*#__PURE__*/createElement("title", {
6621
6807
  id: titleId
6622
- }, title) : null, _g$2 || (_g$2 = /*#__PURE__*/createElement("g", {
6808
+ }, title) : null, _g$3 || (_g$3 = /*#__PURE__*/createElement("g", {
6623
6809
  clipPath: "url(#logo_nypl_full_white_svg__clip0_1147_1139)",
6624
6810
  fill: "#fff"
6625
6811
  }, /*#__PURE__*/createElement("path", {
@@ -6638,65 +6824,65 @@ function SvgLogoNyplFullWhite(_ref) {
6638
6824
  })))));
6639
6825
  }
6640
6826
 
6641
- var _path$z, _path2$g, _path3$a;
6827
+ var _path$A, _path2$h, _path3$b;
6642
6828
 
6643
- var _excluded$F = ["title", "titleId"];
6829
+ var _excluded$H = ["title", "titleId"];
6644
6830
 
6645
- function _extends$F() { _extends$F = Object.assign || 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$F.apply(this, arguments); }
6831
+ function _extends$H() { _extends$H = Object.assign || 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$H.apply(this, arguments); }
6646
6832
 
6647
- function _objectWithoutProperties$E(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$F(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; }
6833
+ function _objectWithoutProperties$G(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$H(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; }
6648
6834
 
6649
- function _objectWithoutPropertiesLoose$F(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; }
6835
+ function _objectWithoutPropertiesLoose$H(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; }
6650
6836
 
6651
6837
  function SvgLogoNyplLionBlack(_ref) {
6652
6838
  var title = _ref.title,
6653
6839
  titleId = _ref.titleId,
6654
- props = _objectWithoutProperties$E(_ref, _excluded$F);
6840
+ props = _objectWithoutProperties$G(_ref, _excluded$H);
6655
6841
 
6656
- return /*#__PURE__*/createElement("svg", _extends$F({
6842
+ return /*#__PURE__*/createElement("svg", _extends$H({
6657
6843
  viewBox: "0 0 136 135",
6658
6844
  fill: "none",
6659
6845
  xmlns: "http://www.w3.org/2000/svg",
6660
6846
  "aria-labelledby": titleId
6661
6847
  }, props), title ? /*#__PURE__*/createElement("title", {
6662
6848
  id: titleId
6663
- }, title) : null, _path$z || (_path$z = /*#__PURE__*/createElement("path", {
6849
+ }, title) : null, _path$A || (_path$A = /*#__PURE__*/createElement("path", {
6664
6850
  d: "M80.251 43.353c-.87-1.65-3.396-2.04-6.052-1.91a16.55 16.55 0 00-4.18.651c-1.48.434-3.484 1.433-2.613 3.473.566 1.39 2.57 1.954 4.006 2.432 1.655.564 3.484.998 4.746 1.736.74.434 1.524 1.563 2.57 1.433 1.044-.13 1.698-2.214 1.915-3.256.305-1.607.175-3.56-.392-4.559z",
6665
6851
  fill: "#000"
6666
- })), _path2$g || (_path2$g = /*#__PURE__*/createElement("path", {
6852
+ })), _path2$h || (_path2$h = /*#__PURE__*/createElement("path", {
6667
6853
  fillRule: "evenodd",
6668
6854
  clipRule: "evenodd",
6669
6855
  d: "M68.103.112C31.047.112.87 30.155.87 67.492c0 37.336 30.394 67.423 67.275 67.423 37.448 0 67.798-30.043 67.798-67.38C135.901 30.155 105.551.112 68.103.112zM28.652 114.77a10.757 10.757 0 01-2.482-3.039c-5.748-9.16-8.97-41.548-1.568-52.531 2.352-3.864 4.834-2.084 4.006.911-1.437 6.686-.566 10.42 2.7 17.67 3.631 7.609 12.59 17.32 19.008 24.279 2.664 2.887 4.89 5.301 6.117 6.893 7.185 9.29 9.58 16.063 9.536 17.887-.043 1.389-.305 2.3-2.787 2.083-12.932-.998-25.517-6.382-34.53-14.153zm99.052-30.575l.054-.162C138.6 47.52 111.647 4.497 64.837 6.19c-2.961.174-5.4 1.086-3.222 2.779 6.662 5.123 10.232 11.765 11.495 17.8.087.52.349.825 1.045 1.042 3.048.825 10.756 3.864 13.15 5.687.95.723 1.892 1.69 2.868 2.693 1.487 1.528 3.052 3.136 4.84 4.08 3.412 1.8 6.769 3.27 10.024 4.698h.003c1.77.777 3.511 1.54 5.213 2.335 2.134.955 6.053 3.56 5.792 6.642-.041.485-.157.952-.269 1.404-.13.518-.254 1.018-.254 1.505 0 .562.232 1.19.45 1.783.136.368.267.723.334 1.039.446 2.111.563 4.279.348 6.425-.305 2.301-1.045 5.948-2.351 8.075-.134.207-.282.4-.429.592-.375.49-.74.967-.834 1.623a11.233 11.233 0 01-.697 2.518c-.13.217-.13.608.131.65 5.138 1.911 10.494 5.34 12.889 7.12 1.22.881 1.83-.951 2.341-2.485zm-18.975-20.828a13.058 13.058 0 01-.13-1.215c0-.359.593-.806 1.046-1.147.095-.072.184-.139.26-.2a13.999 13.999 0 011.785-1.258c.14-.07.223.055.273.13.013.02.023.035.032.044 1.742 2.604 1.089 9.073-.174 12.156-.131.303-.392.434-.523.217-.653-1.39-1.567-2.649-2.656-3.3a.689.689 0 01-.218-.52c.435-1.599.538-3.268.305-4.907zM68.495 32.24c-7.708-1.867-14.152.564-16.373 2.344-4.18 3.3-7.446 8.64-6.14 16.238.523 3.256 1.524 5.99 3.136 8.248 4.45 6.297 11.622 9.674 18.79 13.048 3.21 1.512 6.42 3.023 9.382 4.796a.632.632 0 00.915-.13l.016-.024c1.604-2.334 2.91-4.235 5.601-5.36 2.43-1 6.123-.808 9.537-.63h.004c.44.023.874.046 1.302.066 3.875.173 8.055-.174 9.449-2.171 1.698-2.388 1.611-7.163-.958-8.64-.742-.415-1.668-.622-2.595-.83-.816-.181-1.633-.364-2.326-.69-1.088-.477-1.916-1.432-2.525-2.734-.48-1.086-.958-2.866-.305-4.038.556-1.066 2.037-.75 3.246-.49l.063.013c2.395.564 6.445 1.128 8.752.13.654-.347-1.785-1.997-2.699-2.431-2.15-1.062-4.607-1.873-7.06-2.684-2.765-.913-5.525-1.825-7.832-3.09-1.545-.858-2.923-1.961-4.307-3.07-1.7-1.36-3.408-2.727-5.447-3.66a74.478 74.478 0 00-11.626-4.211zM37.186 17.391c-1.872-.217-1.915-1.606-1.132-2.127a47.598 47.598 0 018.753-4.515 4.145 4.145 0 012.438-.391c2.482.26 6.575 1.91 11.278 5.253 5.617 3.994 10.668 11.635 7.315 11.027a34.483 34.483 0 00-3.7-.52c-1.441-.124-2.612-.093-3.57-.067-.723.02-1.325.036-1.83-.02a2.276 2.276 0 01-1.263-.695c-4.746-4.255-10.233-6.946-18.288-7.945zm51.818 59.652a3.828 3.828 0 00-1.655 2.214c-.027.09-.069.215-.118.361-.187.558-.473 1.413-.404 1.723.067.37.58.897.969 1.297.113.116.215.221.293.31a35.34 35.34 0 002.744 2.908 7.351 7.351 0 001.61 1.26c.604.3 1.44.37 2.348.445.273.022.55.045.832.075l.034.004c3.344.346 7.026.728 8.892-1.176.218-.217.305-.868.348-1.302.206-1.336.871-2.37 1.537-3.406.741-1.154 1.484-2.31 1.599-3.888a6.11 6.11 0 00-.349-2.605 2.827 2.827 0 00-1.437-1.737c-1.213-.509-2.098.102-2.896.652-.291.2-.57.393-.849.52-1.622.769-4 .934-6.289 1.094l-.503.035c-.296.02-.594.04-.89.058h-.001c-2.234.14-4.432.277-5.815 1.158zM22.948 26.03c.385-.43.883-.746 1.437-.912a37.386 37.386 0 0123.557 1.997c1.393.608 2.046 1.476 1.132 2.084-1.176.695-4.703 2.996-6.662 4.819-.566.478-1.568.521-2.177.434l-.246-.032c-7.157-.935-11.025-1.44-21.875 2.68-1.698.695-3.222-.26-2.438-1.563 1.437-2.648 4.833-7.033 7.272-9.507zM8.36 53.816a2.946 2.946 0 00-.653 1.606c-2.787 13.502-.566 24.79 2.09 31.997.61 1.563 3.048.955 2.961-2.388.017-.605.023-1.275.03-2.002.082-9.085.246-27.125 21.09-39.546 1.262-.738 2.35-1.476 1.828-2.778-.305-.738-1.655-.868-3.484-.608-14.064 2.475-23.121 12.59-23.862 13.72zm27.738 17.28c-3.963-9.639-1.393-18.279.392-21.578.87-1.65 1.741-2.735 2.874-2.431 1.219.347 1.524 1.606 1.698 3.907 1.263 19.233 12.932 25.702 27.563 32.518 11.583 5.904 24.733 12.633 35.75 28.957 1.654 2.345 1.916 3.777.043 5.123-6.705 4.559-12.802 7.771-21.728 9.855-1.35.304-2.743.087-3.919-2.995-6.742-17.265-15.964-24.728-24.497-31.632-7.174-5.805-13.86-11.216-18.176-21.725zm73.067 38.334c.609 1.172 1.698 2.649 3.57.782 3.223-3.17 7.795-9.291 9.319-12.243.035-.077.074-.154.115-.235.258-.511.56-1.11.146-1.936-.74-1.52-4.877-6.165-7.664-8.292l-.033-.025c-1.086-.823-2.55-1.933-3.929-2.32a3.246 3.246 0 00-1.089-.13c-1.025.118-1.158.592-1.561 2.034l-.137.484c-.74 2.518-2.177 4.298-3.44 4.82a6.957 6.957 0 01-3.745.607c-1.088-.087-1.654.912-.914 1.65 4.136 4.515 6.705 9.204 9.362 14.804z",
6670
6856
  fill: "#000"
6671
- })), _path3$a || (_path3$a = /*#__PURE__*/createElement("path", {
6857
+ })), _path3$b || (_path3$b = /*#__PURE__*/createElement("path", {
6672
6858
  d: "M71.456 47.998c1.654.565 3.483.999 4.746 1.737.74.434 1.524 1.563 2.569 1.433 1.045-.13 1.698-2.214 1.916-3.256.305-1.563.13-3.517-.392-4.515-.87-1.65-3.397-2.041-6.053-1.91-1.415.037-2.82.256-4.18.65-1.48.435-3.483 1.433-2.612 3.474.566 1.302 2.569 1.91 4.005 2.388z",
6673
6859
  fill: "#000"
6674
6860
  })));
6675
6861
  }
6676
6862
 
6677
- var _path$A, _mask, _g$3;
6863
+ var _path$B, _mask, _g$4;
6678
6864
 
6679
- var _excluded$G = ["title", "titleId"];
6865
+ var _excluded$I = ["title", "titleId"];
6680
6866
 
6681
- function _extends$G() { _extends$G = Object.assign || 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$G.apply(this, arguments); }
6867
+ function _extends$I() { _extends$I = Object.assign || 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$I.apply(this, arguments); }
6682
6868
 
6683
- function _objectWithoutProperties$F(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$G(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; }
6869
+ function _objectWithoutProperties$H(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$I(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; }
6684
6870
 
6685
- function _objectWithoutPropertiesLoose$G(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; }
6871
+ function _objectWithoutPropertiesLoose$I(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; }
6686
6872
 
6687
6873
  function SvgLogoNyplLionWhite(_ref) {
6688
6874
  var title = _ref.title,
6689
6875
  titleId = _ref.titleId,
6690
- props = _objectWithoutProperties$F(_ref, _excluded$G);
6876
+ props = _objectWithoutProperties$H(_ref, _excluded$I);
6691
6877
 
6692
- return /*#__PURE__*/createElement("svg", _extends$G({
6878
+ return /*#__PURE__*/createElement("svg", _extends$I({
6693
6879
  viewBox: "0 0 125 126",
6694
6880
  fill: "#fff",
6695
6881
  xmlns: "http://www.w3.org/2000/svg",
6696
6882
  "aria-labelledby": titleId
6697
6883
  }, props), title ? /*#__PURE__*/createElement("title", {
6698
6884
  id: titleId
6699
- }, title) : null, _path$A || (_path$A = /*#__PURE__*/createElement("path", {
6885
+ }, title) : null, _path$B || (_path$B = /*#__PURE__*/createElement("path", {
6700
6886
  fillRule: "evenodd",
6701
6887
  clipRule: "evenodd",
6702
6888
  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"
@@ -6711,131 +6897,424 @@ function SvgLogoNyplLionWhite(_ref) {
6711
6897
  fillRule: "evenodd",
6712
6898
  clipRule: "evenodd",
6713
6899
  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"
6714
- }))), _g$3 || (_g$3 = /*#__PURE__*/createElement("g", {
6900
+ }))), _g$4 || (_g$4 = /*#__PURE__*/createElement("g", {
6715
6901
  mask: "url(#logo_nypl_lion_white_svg__a)"
6716
6902
  }, /*#__PURE__*/createElement("path", {
6717
6903
  d: "M0-.994h125v126H0z"
6718
6904
  }))));
6719
6905
  }
6720
6906
 
6721
- var _path$B;
6907
+ var _g$5, _defs$1;
6722
6908
 
6723
- var _excluded$H = ["title", "titleId"];
6909
+ var _excluded$J = ["title", "titleId"];
6724
6910
 
6725
- function _extends$H() { _extends$H = Object.assign || 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$H.apply(this, arguments); }
6911
+ function _extends$J() { _extends$J = Object.assign || 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$J.apply(this, arguments); }
6726
6912
 
6727
- function _objectWithoutProperties$G(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$H(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; }
6913
+ function _objectWithoutProperties$I(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$J(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; }
6728
6914
 
6729
- function _objectWithoutPropertiesLoose$H(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; }
6915
+ function _objectWithoutPropertiesLoose$J(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; }
6916
+
6917
+ function SvgLogoOpenebooksColor(_ref) {
6918
+ var title = _ref.title,
6919
+ titleId = _ref.titleId,
6920
+ props = _objectWithoutProperties$I(_ref, _excluded$J);
6921
+
6922
+ return /*#__PURE__*/createElement("svg", _extends$J({
6923
+ viewBox: "0 0 152 139",
6924
+ fill: "none",
6925
+ xmlns: "http://www.w3.org/2000/svg",
6926
+ "aria-labelledby": titleId
6927
+ }, props), title ? /*#__PURE__*/createElement("title", {
6928
+ id: titleId
6929
+ }, title) : null, _g$5 || (_g$5 = /*#__PURE__*/createElement("g", {
6930
+ clipPath: "url(#logo_openebooks_color_svg__clip0_53471_41906)"
6931
+ }, /*#__PURE__*/createElement("path", {
6932
+ 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",
6933
+ fill: "#012F53"
6934
+ }), /*#__PURE__*/createElement("path", {
6935
+ 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",
6936
+ fill: "url(#logo_openebooks_color_svg__paint0_linear_53471_41906)"
6937
+ }), /*#__PURE__*/createElement("path", {
6938
+ 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",
6939
+ fill: "#fff"
6940
+ }))), _defs$1 || (_defs$1 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("linearGradient", {
6941
+ id: "logo_openebooks_color_svg__paint0_linear_53471_41906",
6942
+ x1: 76.519,
6943
+ y1: 132.496,
6944
+ x2: 75.513,
6945
+ y2: 5.94,
6946
+ gradientUnits: "userSpaceOnUse"
6947
+ }, /*#__PURE__*/createElement("stop", {
6948
+ offset: 0.15,
6949
+ stopColor: "#8AC33E"
6950
+ }), /*#__PURE__*/createElement("stop", {
6951
+ offset: 0.3,
6952
+ stopColor: "#5F9445"
6953
+ }), /*#__PURE__*/createElement("stop", {
6954
+ offset: 0.47,
6955
+ stopColor: "#37694B"
6956
+ }), /*#__PURE__*/createElement("stop", {
6957
+ offset: 0.62,
6958
+ stopColor: "#19494F"
6959
+ }), /*#__PURE__*/createElement("stop", {
6960
+ offset: 0.74,
6961
+ stopColor: "#073652"
6962
+ }), /*#__PURE__*/createElement("stop", {
6963
+ offset: 0.83,
6964
+ stopColor: "#012F53"
6965
+ })))));
6966
+ }
6967
+
6968
+ var _g$6, _defs$2;
6969
+
6970
+ var _excluded$K = ["title", "titleId"];
6971
+
6972
+ function _extends$K() { _extends$K = Object.assign || 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$K.apply(this, arguments); }
6973
+
6974
+ function _objectWithoutProperties$J(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$K(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; }
6975
+
6976
+ function _objectWithoutPropertiesLoose$K(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; }
6977
+
6978
+ function SvgLogoOpenebooksNegative(_ref) {
6979
+ var title = _ref.title,
6980
+ titleId = _ref.titleId,
6981
+ props = _objectWithoutProperties$J(_ref, _excluded$K);
6982
+
6983
+ return /*#__PURE__*/createElement("svg", _extends$K({
6984
+ viewBox: "0 0 155 139",
6985
+ fill: "none",
6986
+ xmlns: "http://www.w3.org/2000/svg",
6987
+ "aria-labelledby": titleId
6988
+ }, props), title ? /*#__PURE__*/createElement("title", {
6989
+ id: titleId
6990
+ }, title) : null, _g$6 || (_g$6 = /*#__PURE__*/createElement("g", {
6991
+ clipPath: "url(#logo_openebooks_negative_svg__clip0_54498_42323)"
6992
+ }, /*#__PURE__*/createElement("path", {
6993
+ 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",
6994
+ fill: "#fff"
6995
+ }), /*#__PURE__*/createElement("path", {
6996
+ 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",
6997
+ fill: "url(#logo_openebooks_negative_svg__paint0_linear_54498_42323)"
6998
+ }), /*#__PURE__*/createElement("path", {
6999
+ d: "M147.325 106.011c-36.336-17.126-64.97 0-64.97 0V16.268s28.603-17.128 64.97 0v89.743z",
7000
+ fill: "#0B1F31"
7001
+ }), /*#__PURE__*/createElement("path", {
7002
+ d: "M54.346 10.793C11.75 6.924 0 23.627 0 23.627v97.554s11.75-16.705 54.346-12.834V10.793z",
7003
+ fill: "url(#logo_openebooks_negative_svg__paint1_linear_54498_42323)"
7004
+ }), /*#__PURE__*/createElement("path", {
7005
+ d: "M8.52 106.014c36.338-17.129 64.973 0 64.973 0V16.266s-28.604-17.124-64.972 0v89.748z",
7006
+ fill: "#0B1F31"
7007
+ }))), _defs$2 || (_defs$2 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("linearGradient", {
7008
+ id: "logo_openebooks_negative_svg__paint0_linear_54498_42323",
7009
+ x1: 127.8,
7010
+ y1: 121.19,
7011
+ x2: 127.8,
7012
+ y2: 10.218,
7013
+ gradientUnits: "userSpaceOnUse"
7014
+ }, /*#__PURE__*/createElement("stop", {
7015
+ stopColor: "#8ABF3F"
7016
+ }), /*#__PURE__*/createElement("stop", {
7017
+ offset: 0.36,
7018
+ stopColor: "#9EC856"
7019
+ }), /*#__PURE__*/createElement("stop", {
7020
+ offset: 0.9,
7021
+ stopColor: "#FFFFF9"
7022
+ }), /*#__PURE__*/createElement("stop", {
7023
+ offset: 0.97,
7024
+ stopColor: "#fff"
7025
+ }), /*#__PURE__*/createElement("stop", {
7026
+ offset: 1,
7027
+ stopColor: "#fff"
7028
+ })), /*#__PURE__*/createElement("linearGradient", {
7029
+ id: "logo_openebooks_negative_svg__paint1_linear_54498_42323",
7030
+ x1: 27.173,
7031
+ y1: 121.181,
7032
+ x2: 27.173,
7033
+ y2: 10.209,
7034
+ gradientUnits: "userSpaceOnUse"
7035
+ }, /*#__PURE__*/createElement("stop", {
7036
+ stopColor: "#8ABF3F"
7037
+ }), /*#__PURE__*/createElement("stop", {
7038
+ offset: 0.36,
7039
+ stopColor: "#9EC856"
7040
+ }), /*#__PURE__*/createElement("stop", {
7041
+ offset: 0.9,
7042
+ stopColor: "#FFFFF9"
7043
+ }), /*#__PURE__*/createElement("stop", {
7044
+ offset: 0.97,
7045
+ stopColor: "#fff"
7046
+ }), /*#__PURE__*/createElement("stop", {
7047
+ offset: 1,
7048
+ stopColor: "#fff"
7049
+ })))));
7050
+ }
7051
+
7052
+ var _g$7, _defs$3;
7053
+
7054
+ var _excluded$L = ["title", "titleId"];
7055
+
7056
+ function _extends$L() { _extends$L = Object.assign || 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$L.apply(this, arguments); }
7057
+
7058
+ function _objectWithoutProperties$K(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$L(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; }
7059
+
7060
+ function _objectWithoutPropertiesLoose$L(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; }
7061
+
7062
+ function SvgLogoOpenebooksWtextColor(_ref) {
7063
+ var title = _ref.title,
7064
+ titleId = _ref.titleId,
7065
+ props = _objectWithoutProperties$K(_ref, _excluded$L);
7066
+
7067
+ return /*#__PURE__*/createElement("svg", _extends$L({
7068
+ viewBox: "0 0 152 139",
7069
+ fill: "none",
7070
+ xmlns: "http://www.w3.org/2000/svg",
7071
+ "aria-labelledby": titleId
7072
+ }, props), title ? /*#__PURE__*/createElement("title", {
7073
+ id: titleId
7074
+ }, title) : null, _g$7 || (_g$7 = /*#__PURE__*/createElement("g", {
7075
+ clipPath: "url(#logo_openebooks_wtext_color_svg__clip0_53471_41905)"
7076
+ }, /*#__PURE__*/createElement("path", {
7077
+ 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",
7078
+ fill: "#012F53"
7079
+ }), /*#__PURE__*/createElement("path", {
7080
+ 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",
7081
+ fill: "url(#logo_openebooks_wtext_color_svg__paint0_linear_53471_41905)"
7082
+ }), /*#__PURE__*/createElement("path", {
7083
+ 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.915zM130.032 126.627c.01.626-.171 1.24-.519 1.76-.372.531-.89.944-1.49 1.191a5.757 5.757 0 01-2.286.419 9.806 9.806 0 01-1.835-.145 7.126 7.126 0 01-1.545-.524v-2.556c.563.28 1.154.502 1.763.66a6.857 6.857 0 001.68.235 1.69 1.69 0 00.967-.21.679.679 0 00.309-.574.58.58 0 00-.128-.377 1.348 1.348 0 00-.397-.335c-.178-.109-.663-.338-1.455-.681a7.123 7.123 0 01-1.61-.916 2.88 2.88 0 01-.796-1.016 3.339 3.339 0 01-.254-1.36 2.701 2.701 0 011.103-2.288c.734-.548 1.743-.821 3.027-.819a8.723 8.723 0 013.47.762l-.911 2.201c-1.025-.456-1.909-.683-2.654-.681a1.402 1.402 0 00-.839.194.589.589 0 00-.263.487.695.695 0 00.097.319c.057.098.137.18.233.24a13.28 13.28 0 001.816.901c.943.411 1.597.853 1.963 1.328.383.515.579 1.145.554 1.785zm-8.358 3.227h-3.342l-2.164-4.06-.878.507v3.562h-2.981v-10.619h2.981v4.609c.273-.471.576-.925.907-1.357l2.309-3.254h3.229l-3.455 4.756 3.394 5.856zm-18.875-5.324c0 2.053.737 3.079 2.21 3.078.748 0 1.302-.247 1.663-.748s.546-1.276.546-2.33-.183-1.844-.554-2.347c-.372-.502-.912-.762-1.642-.762-1.482.003-2.223 1.039-2.223 3.109zm7.536 0c0 1.787-.452 3.145-1.356 4.075-.904.931-2.227 1.395-3.97 1.394-1.72 0-3.039-.467-3.957-1.402-.918-.934-1.375-2.295-1.37-4.082 0-1.768.453-3.117 1.362-4.046.908-.928 2.234-1.396 3.978-1.401 1.745 0 3.067.462 3.966 1.387.898.925 1.347 2.283 1.347 4.075zm-19.767 0c0 2.053.737 3.079 2.21 3.078.75 0 1.304-.247 1.663-.748s.548-1.276.548-2.33-.185-1.844-.556-2.347c-.372-.502-.912-.758-1.648-.758-1.478 0-2.217 1.035-2.217 3.105zm7.536 0c0 1.787-.45 3.145-1.354 4.075-.902.931-2.224 1.395-3.965 1.394-1.72 0-3.04-.467-3.958-1.402-.918-.934-1.375-2.295-1.37-4.082 0-1.768.454-3.117 1.364-4.046.91-.928 2.236-1.396 3.978-1.401 1.746 0 3.067.462 3.964 1.387.897.925 1.344 2.283 1.341 4.075zm-17.634.878v2.231h1.039c.924 0 1.386-.378 1.388-1.135a.96.96 0 00-.374-.813 1.74 1.74 0 00-1.075-.285l-.978.002zm0-2.095h.89c.346.021.69-.068.982-.256a.871.871 0 00.35-.756c0-.595-.463-.893-1.391-.893h-.84l.009 1.905zm-2.963-4.076h3.823c1.488 0 2.592.216 3.313.646.724.419 1.088 1.091 1.088 1.999a2.471 2.471 0 01-.475 1.523c-.3.414-.743.704-1.243.815v.071a2.277 2.277 0 011.934 2.456 2.683 2.683 0 01-1.123 2.28c-.746.558-1.764.838-3.053.838h-4.26l-.004-10.628zm-5.733 4.176c-.32-.007-.63.106-.87.319a1.464 1.464 0 00-.404.987h2.519a1.39 1.39 0 00-.35-.949 1.16 1.16 0 00-.89-.359l-.005.002zm.174 6.588c-1.415 0-2.514-.363-3.298-1.09-.784-.726-1.173-1.765-1.167-3.115 0-1.389.36-2.454 1.083-3.196.722-.741 1.757-1.114 3.105-1.119 1.278 0 2.265.325 2.96.975.697.641 1.05 1.573 1.05 2.789v1.257h-5.236a1.402 1.402 0 00.516 1.083c.39.28.865.418 1.344.392.475.005.95-.042 1.415-.138a7.152 7.152 0 001.409-.487v2.035a5.177 5.177 0 01-1.424.471c-.579.098-1.165.145-1.753.141l-.004.002zm-7.692-.145h-1.45l-5.988-8.913h-.059c.08 1.048.12 2.007.12 2.877v6.036H55.7v-10.619h1.438l5.975 8.876h.07c-.011-.132-.032-.549-.068-1.257a20.277 20.277 0 01-.036-1.525v-6.094h1.19l-.014 10.619zm-12.067 0h-6.11v-10.619h6.11v1.096H47.36v3.42h4.543v1.089h-4.547v3.916h4.828l.005 1.098zm-15.156-5.238h1.146c1.13 0 1.944-.178 2.45-.532.506-.354.756-.92.756-1.699 0-.702-.237-1.224-.712-1.57-.474-.345-1.213-.515-2.216-.515h-1.424v4.316zm5.669-2.288c0 1.073-.38 1.9-1.138 2.483-.759.582-1.84.87-3.246.863h-1.287v4.178h-1.274v-10.619h2.84c2.74 0 4.11 1.032 4.11 3.095h-.005zm-19.197 2.2c0 1.437.315 2.529.945 3.275.63.746 1.548 1.116 2.756 1.11 1.213 0 2.13-.37 2.75-1.11.62-.74.93-1.832.93-3.275 0-1.429-.31-2.511-.93-3.248-.62-.736-1.53-1.106-2.729-1.11-1.213 0-2.137.373-2.771 1.119-.634.746-.951 1.825-.951 3.239zm8.729 0c0 1.7-.444 3.036-1.333 4.008-.889.973-2.12 1.461-3.695 1.467-1.612 0-2.859-.477-3.739-1.431-.88-.954-1.318-2.305-1.312-4.052 0-1.731.44-3.07 1.318-4.017.88-.947 2.128-1.424 3.748-1.431 1.574 0 2.803.485 3.686 1.454.883.97 1.326 2.304 1.33 4.002h-.003z",
7084
+ fill: "#fff"
7085
+ }))), _defs$3 || (_defs$3 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("linearGradient", {
7086
+ id: "logo_openebooks_wtext_color_svg__paint0_linear_53471_41905",
7087
+ x1: 76.519,
7088
+ y1: 132.496,
7089
+ x2: 75.513,
7090
+ y2: 5.94,
7091
+ gradientUnits: "userSpaceOnUse"
7092
+ }, /*#__PURE__*/createElement("stop", {
7093
+ offset: 0.15,
7094
+ stopColor: "#8AC33E"
7095
+ }), /*#__PURE__*/createElement("stop", {
7096
+ offset: 0.3,
7097
+ stopColor: "#5F9445"
7098
+ }), /*#__PURE__*/createElement("stop", {
7099
+ offset: 0.47,
7100
+ stopColor: "#37694B"
7101
+ }), /*#__PURE__*/createElement("stop", {
7102
+ offset: 0.62,
7103
+ stopColor: "#19494F"
7104
+ }), /*#__PURE__*/createElement("stop", {
7105
+ offset: 0.74,
7106
+ stopColor: "#073652"
7107
+ }), /*#__PURE__*/createElement("stop", {
7108
+ offset: 0.83,
7109
+ stopColor: "#012F53"
7110
+ })))));
7111
+ }
7112
+
7113
+ var _g$8, _defs$4;
7114
+
7115
+ var _excluded$M = ["title", "titleId"];
7116
+
7117
+ function _extends$M() { _extends$M = Object.assign || 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$M.apply(this, arguments); }
7118
+
7119
+ function _objectWithoutProperties$L(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$M(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; }
7120
+
7121
+ function _objectWithoutPropertiesLoose$M(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; }
7122
+
7123
+ function SvgLogoOpenebooksWtextNegative(_ref) {
7124
+ var title = _ref.title,
7125
+ titleId = _ref.titleId,
7126
+ props = _objectWithoutProperties$L(_ref, _excluded$M);
7127
+
7128
+ return /*#__PURE__*/createElement("svg", _extends$M({
7129
+ viewBox: "0 0 155 139",
7130
+ fill: "none",
7131
+ xmlns: "http://www.w3.org/2000/svg",
7132
+ "aria-labelledby": titleId
7133
+ }, props), title ? /*#__PURE__*/createElement("title", {
7134
+ id: titleId
7135
+ }, title) : null, _g$8 || (_g$8 = /*#__PURE__*/createElement("g", {
7136
+ clipPath: "url(#logo_openebooks_wtext_negative_svg__clip0_54498_42322)"
7137
+ }, /*#__PURE__*/createElement("path", {
7138
+ 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",
7139
+ fill: "#fff"
7140
+ }), /*#__PURE__*/createElement("path", {
7141
+ 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",
7142
+ fill: "url(#logo_openebooks_wtext_negative_svg__paint0_linear_54498_42322)"
7143
+ }), /*#__PURE__*/createElement("path", {
7144
+ d: "M147.325 106.011c-36.336-17.126-64.97 0-64.97 0V16.268s28.603-17.128 64.97 0v89.743z",
7145
+ fill: "#0B1F31"
7146
+ }), /*#__PURE__*/createElement("path", {
7147
+ d: "M130.113 124.927a3.224 3.224 0 01-.514 1.802 3.401 3.401 0 01-1.479 1.218 5.51 5.51 0 01-2.266.432 9.509 9.509 0 01-1.822-.149 6.98 6.98 0 01-1.532-.535v-2.61a8.766 8.766 0 001.748.675 6.51 6.51 0 001.664.241 1.63 1.63 0 00.96-.225.702.702 0 00.304-.587.603.603 0 00-.126-.386 1.32 1.32 0 00-.394-.342c-.469-.257-.95-.49-1.442-.698a7.046 7.046 0 01-1.599-.936 2.983 2.983 0 01-.788-1.041 3.487 3.487 0 01-.252-1.391 2.778 2.778 0 011.092-2.34c.737-.567 1.739-.851 3.004-.851 1.19.014 2.363.28 3.442.782l-.901 2.265c-1.015-.464-1.893-.697-2.633-.698a1.35 1.35 0 00-.831.2.605.605 0 00-.261.498.715.715 0 00.326.572 13.42 13.42 0 001.802.923c.937.419 1.586.869 1.948 1.351.383.531.577 1.176.55 1.83zm-8.288 3.31h-3.316l-2.148-4.154-.87.52v3.634h-2.95v-10.875h2.95v4.728c.271-.481.572-.945.901-1.389l2.284-3.33h3.209l-3.418 4.859 3.358 6.007zm-18.725-5.449c0 2.102.731 3.153 2.193 3.153.741 0 1.291-.257 1.649-.766.358-.509.543-1.306.543-2.387s-.183-1.884-.55-2.398a1.856 1.856 0 00-1.628-.781c-1.472-.006-2.207 1.051-2.207 3.17v.009zm7.477 0c0 1.829-.45 3.219-1.351 4.17-.901.952-2.214 1.428-3.939 1.428-1.708 0-3.016-.479-3.926-1.437-.91-.957-1.36-2.349-1.351-4.174 0-1.802.45-3.182 1.351-4.141.901-.959 2.216-1.437 3.946-1.434 1.73 0 3.04.473 3.932 1.421.892.947 1.34 2.333 1.345 4.158l-.007.009zm-19.608 0c0 2.102.73 3.153 2.192 3.153.743 0 1.293-.257 1.65-.766.359-.509.541-1.306.541-2.387s-.18-1.884-.55-2.398a1.845 1.845 0 00-1.628-.781c-1.47-.006-2.205 1.051-2.205 3.17v.009zm7.475 0c0 1.829-.45 3.219-1.35 4.17-.902.952-2.215 1.428-3.94 1.428-1.704 0-3.013-.479-3.926-1.437-.913-.957-1.363-2.349-1.351-4.174 0-1.802.45-3.182 1.351-4.141.901-.959 2.217-1.437 3.946-1.434 1.731 0 3.042.473 3.933 1.421.89.947 1.336 2.333 1.337 4.158v.009zm-17.488.901v2.281h1.025c.916 0 1.376-.385 1.376-1.16a.989.989 0 00-.372-.833 1.673 1.673 0 00-1.063-.288h-.966zm0-2.148h.885c.344.022.686-.07.973-.261a.906.906 0 00.35-.773c0-.608-.451-.914-1.384-.914h-.824v1.948zm-2.928-4.17h3.79c1.478 0 2.573.225 3.287.662.713.437 1.078 1.126 1.078 2.044a2.605 2.605 0 01-.468 1.561 2.102 2.102 0 01-1.234.833v.072a2.537 2.537 0 011.464.901c.319.478.476 1.046.45 1.621a2.783 2.783 0 01-1.126 2.332c-.741.566-1.748.849-3.027.849h-4.223l.009-10.875zm-5.687 4.278a1.223 1.223 0 00-.862.326 1.521 1.521 0 00-.401 1.011h2.497a1.428 1.428 0 00-.349-.972 1.131 1.131 0 00-.894-.379l.01.014zm.171 6.741c-1.402 0-2.492-.375-3.27-1.125-.778-.751-1.164-1.814-1.16-3.189 0-1.423.36-2.513 1.077-3.269.717-.757 1.744-1.139 3.079-1.146 1.267 0 2.243.332 2.927.997.692.658 1.041 1.61 1.041 2.853v1.292h-5.198a1.449 1.449 0 00.513 1.108c.384.285.855.427 1.331.401.472.004.942-.043 1.404-.142a6.932 6.932 0 001.398-.497v2.089a5.103 5.103 0 01-1.41.482 9.762 9.762 0 01-1.74.133l.008.013zm-7.648-.153h-1.442l-5.939-9.119h-.051c.08 1.07.118 2.051.117 2.943v6.176h-1.167v-10.875h1.428l5.928 9.074h.06c-.012-.132-.034-.56-.067-1.284a22.04 22.04 0 01-.036-1.56v-6.23h1.169v10.875zm-11.969 0h-6.049v-10.875h6.059v1.126h-4.798v3.499h4.505v1.114h-4.505v3.999h4.797l-.009 1.137zm-15.033-5.359h1.137c1.12 0 1.93-.181 2.43-.542.5-.361.75-.941.75-1.739 0-.717-.235-1.253-.705-1.607-.47-.349-1.204-.527-2.2-.527h-1.412v4.415zm5.63-2.341c0 1.101-.375 1.949-1.126 2.542-.75.593-1.823.886-3.218.88h-1.277v4.278h-1.264v-10.875h2.818c2.715 0 4.072 1.055 4.072 3.166l-.005.009zm-19.046 2.251c0 1.47.312 2.587.936 3.353.625.766 1.536 1.145 2.735 1.137 1.2 0 2.11-.379 2.727-1.137s.925-1.876.923-3.353c0-1.462-.307-2.569-.923-3.321-.616-.752-1.517-1.127-2.703-1.126-1.2 0-2.117.382-2.75 1.144-.632.763-.945 1.861-.941 3.294l-.005.009zm8.66 0c0 1.742-.441 3.109-1.323 4.103-.881.993-2.103 1.492-3.666 1.495-1.6 0-2.836-.491-3.708-1.464-.871-.972-1.301-2.364-1.301-4.147 0-1.784.434-3.139 1.308-4.109.874-.971 2.11-1.466 3.716-1.466 1.562 0 2.781.496 3.658 1.488.877.992 1.316 2.356 1.318 4.091l-.003.009z",
7148
+ fill: "#000"
7149
+ }), /*#__PURE__*/createElement("path", {
7150
+ d: "M54.346 10.793C11.75 6.924 0 23.627 0 23.627v97.554s11.75-16.705 54.346-12.834V10.793z",
7151
+ fill: "url(#logo_openebooks_wtext_negative_svg__paint1_linear_54498_42322)"
7152
+ }), /*#__PURE__*/createElement("path", {
7153
+ d: "M8.52 106.014c36.338-17.129 64.973 0 64.973 0V16.266s-28.604-17.124-64.972 0v89.748z",
7154
+ fill: "#0B1F31"
7155
+ }))), _defs$4 || (_defs$4 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("linearGradient", {
7156
+ id: "logo_openebooks_wtext_negative_svg__paint0_linear_54498_42322",
7157
+ x1: 127.8,
7158
+ y1: 121.19,
7159
+ x2: 127.8,
7160
+ y2: 10.218,
7161
+ gradientUnits: "userSpaceOnUse"
7162
+ }, /*#__PURE__*/createElement("stop", {
7163
+ stopColor: "#8ABF3F"
7164
+ }), /*#__PURE__*/createElement("stop", {
7165
+ offset: 0.36,
7166
+ stopColor: "#9EC856"
7167
+ }), /*#__PURE__*/createElement("stop", {
7168
+ offset: 0.9,
7169
+ stopColor: "#FFFFF9"
7170
+ }), /*#__PURE__*/createElement("stop", {
7171
+ offset: 0.97,
7172
+ stopColor: "#fff"
7173
+ }), /*#__PURE__*/createElement("stop", {
7174
+ offset: 1,
7175
+ stopColor: "#fff"
7176
+ })), /*#__PURE__*/createElement("linearGradient", {
7177
+ id: "logo_openebooks_wtext_negative_svg__paint1_linear_54498_42322",
7178
+ x1: 27.173,
7179
+ y1: 121.181,
7180
+ x2: 27.173,
7181
+ y2: 10.209,
7182
+ gradientUnits: "userSpaceOnUse"
7183
+ }, /*#__PURE__*/createElement("stop", {
7184
+ stopColor: "#8ABF3F"
7185
+ }), /*#__PURE__*/createElement("stop", {
7186
+ offset: 0.36,
7187
+ stopColor: "#9EC856"
7188
+ }), /*#__PURE__*/createElement("stop", {
7189
+ offset: 0.9,
7190
+ stopColor: "#FFFFF9"
7191
+ }), /*#__PURE__*/createElement("stop", {
7192
+ offset: 0.97,
7193
+ stopColor: "#fff"
7194
+ }), /*#__PURE__*/createElement("stop", {
7195
+ offset: 1,
7196
+ stopColor: "#fff"
7197
+ })))));
7198
+ }
7199
+
7200
+ var _path$C;
7201
+
7202
+ var _excluded$N = ["title", "titleId"];
7203
+
7204
+ function _extends$N() { _extends$N = Object.assign || 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$N.apply(this, arguments); }
7205
+
7206
+ function _objectWithoutProperties$M(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$N(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; }
7207
+
7208
+ 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; }
6730
7209
 
6731
7210
  function SvgLogoQplAltBlack(_ref) {
6732
7211
  var title = _ref.title,
6733
7212
  titleId = _ref.titleId,
6734
- props = _objectWithoutProperties$G(_ref, _excluded$H);
7213
+ props = _objectWithoutProperties$M(_ref, _excluded$N);
6735
7214
 
6736
- return /*#__PURE__*/createElement("svg", _extends$H({
7215
+ return /*#__PURE__*/createElement("svg", _extends$N({
6737
7216
  viewBox: "0 0 250 134",
6738
7217
  xmlns: "http://www.w3.org/2000/svg",
6739
7218
  "aria-labelledby": titleId
6740
7219
  }, props), title ? /*#__PURE__*/createElement("title", {
6741
7220
  id: titleId
6742
- }, title) : null, _path$B || (_path$B = /*#__PURE__*/createElement("path", {
7221
+ }, title) : null, _path$C || (_path$C = /*#__PURE__*/createElement("path", {
6743
7222
  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"
6744
7223
  })));
6745
7224
  }
6746
7225
 
6747
- var _path$C;
7226
+ var _path$D;
6748
7227
 
6749
- var _excluded$I = ["title", "titleId"];
7228
+ var _excluded$O = ["title", "titleId"];
6750
7229
 
6751
- function _extends$I() { _extends$I = Object.assign || 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$I.apply(this, arguments); }
7230
+ function _extends$O() { _extends$O = Object.assign || 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$O.apply(this, arguments); }
6752
7231
 
6753
- function _objectWithoutProperties$H(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$I(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; }
7232
+ function _objectWithoutProperties$N(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$O(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; }
6754
7233
 
6755
- function _objectWithoutPropertiesLoose$I(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; }
7234
+ 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; }
6756
7235
 
6757
7236
  function SvgLogoQplAltWhite(_ref) {
6758
7237
  var title = _ref.title,
6759
7238
  titleId = _ref.titleId,
6760
- props = _objectWithoutProperties$H(_ref, _excluded$I);
7239
+ props = _objectWithoutProperties$N(_ref, _excluded$O);
6761
7240
 
6762
- return /*#__PURE__*/createElement("svg", _extends$I({
7241
+ return /*#__PURE__*/createElement("svg", _extends$O({
6763
7242
  viewBox: "0 0 250 134",
6764
7243
  fill: "#fff",
6765
7244
  xmlns: "http://www.w3.org/2000/svg",
6766
7245
  "aria-labelledby": titleId
6767
7246
  }, props), title ? /*#__PURE__*/createElement("title", {
6768
7247
  id: titleId
6769
- }, title) : null, _path$C || (_path$C = /*#__PURE__*/createElement("path", {
7248
+ }, title) : null, _path$D || (_path$D = /*#__PURE__*/createElement("path", {
6770
7249
  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"
6771
7250
  })));
6772
7251
  }
6773
7252
 
6774
- var _path$D, _path2$h, _path3$b, _path4$2, _path5$1;
7253
+ var _path$E, _path2$i, _path3$c, _path4$3, _path5$2;
6775
7254
 
6776
- var _excluded$J = ["title", "titleId"];
7255
+ var _excluded$P = ["title", "titleId"];
6777
7256
 
6778
- function _extends$J() { _extends$J = Object.assign || 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$J.apply(this, arguments); }
7257
+ function _extends$P() { _extends$P = Object.assign || 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); }
6779
7258
 
6780
- function _objectWithoutProperties$I(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$J(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; }
7259
+ 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; }
6781
7260
 
6782
- function _objectWithoutPropertiesLoose$J(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; }
7261
+ 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; }
6783
7262
 
6784
7263
  function SvgLogoQplBlack(_ref) {
6785
7264
  var title = _ref.title,
6786
7265
  titleId = _ref.titleId,
6787
- props = _objectWithoutProperties$I(_ref, _excluded$J);
7266
+ props = _objectWithoutProperties$O(_ref, _excluded$P);
6788
7267
 
6789
- return /*#__PURE__*/createElement("svg", _extends$J({
7268
+ return /*#__PURE__*/createElement("svg", _extends$P({
6790
7269
  viewBox: "0 0 320 43",
6791
7270
  xmlns: "http://www.w3.org/2000/svg",
6792
7271
  "aria-labelledby": titleId
6793
7272
  }, props), title ? /*#__PURE__*/createElement("title", {
6794
7273
  id: titleId
6795
- }, title) : null, _path$D || (_path$D = /*#__PURE__*/createElement("path", {
7274
+ }, title) : null, _path$E || (_path$E = /*#__PURE__*/createElement("path", {
6796
7275
  fillRule: "evenodd",
6797
7276
  clipRule: "evenodd",
6798
7277
  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"
6799
- })), _path2$h || (_path2$h = /*#__PURE__*/createElement("path", {
7278
+ })), _path2$i || (_path2$i = /*#__PURE__*/createElement("path", {
6800
7279
  fillRule: "evenodd",
6801
7280
  clipRule: "evenodd",
6802
7281
  d: "M8.115 32.626l16.223 9.32 8.112-4.66-16.225-9.322-8.11 4.662z"
6803
- })), _path3$b || (_path3$b = /*#__PURE__*/createElement("path", {
7282
+ })), _path3$c || (_path3$c = /*#__PURE__*/createElement("path", {
6804
7283
  fillRule: "evenodd",
6805
7284
  clipRule: "evenodd",
6806
7285
  d: "M24.338 13.982v18.644l8.113-4.661V9.322l-8.113 4.66zM0 27.965l8.113 4.66V13.982L0 9.322v18.643z"
6807
- })), _path4$2 || (_path4$2 = /*#__PURE__*/createElement("path", {
7286
+ })), _path4$3 || (_path4$3 = /*#__PURE__*/createElement("path", {
6808
7287
  fillRule: "evenodd",
6809
7288
  clipRule: "evenodd",
6810
7289
  d: "M0 9.322l8.116 4.66 8.11-4.66 8.112 4.66 8.113-4.66L16.225 0 0 9.322z"
6811
- })), _path5$1 || (_path5$1 = /*#__PURE__*/createElement("path", {
7290
+ })), _path5$2 || (_path5$2 = /*#__PURE__*/createElement("path", {
6812
7291
  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"
6813
7292
  })));
6814
7293
  }
6815
7294
 
6816
- var _g$4, _defs$1;
7295
+ var _g$9, _defs$5;
6817
7296
 
6818
- var _excluded$K = ["title", "titleId"];
7297
+ var _excluded$Q = ["title", "titleId"];
6819
7298
 
6820
- function _extends$K() { _extends$K = Object.assign || 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$K.apply(this, arguments); }
7299
+ function _extends$Q() { _extends$Q = Object.assign || 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); }
6821
7300
 
6822
- function _objectWithoutProperties$J(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$K(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; }
7301
+ 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; }
6823
7302
 
6824
- function _objectWithoutPropertiesLoose$K(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; }
7303
+ 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; }
6825
7304
 
6826
7305
  function SvgLogoQplColor(_ref) {
6827
7306
  var title = _ref.title,
6828
7307
  titleId = _ref.titleId,
6829
- props = _objectWithoutProperties$J(_ref, _excluded$K);
7308
+ props = _objectWithoutProperties$P(_ref, _excluded$Q);
6830
7309
 
6831
- return /*#__PURE__*/createElement("svg", _extends$K({
7310
+ return /*#__PURE__*/createElement("svg", _extends$Q({
6832
7311
  viewBox: "0 0 355 48",
6833
7312
  fill: "none",
6834
7313
  xmlns: "http://www.w3.org/2000/svg",
6835
7314
  "aria-labelledby": titleId
6836
7315
  }, props), title ? /*#__PURE__*/createElement("title", {
6837
7316
  id: titleId
6838
- }, title) : null, _g$4 || (_g$4 = /*#__PURE__*/createElement("g", {
7317
+ }, title) : null, _g$9 || (_g$9 = /*#__PURE__*/createElement("g", {
6839
7318
  clipPath: "url(#logo_qpl_color_svg__clip0)"
6840
7319
  }, /*#__PURE__*/createElement("path", {
6841
7320
  fillRule: "evenodd",
@@ -6865,7 +7344,7 @@ function SvgLogoQplColor(_ref) {
6865
7344
  }), /*#__PURE__*/createElement("path", {
6866
7345
  d: "M65.945 32.481a.78.78 0 01.033 1.395l-.856.485c-.312.18-.727.132-1.014-.039l-3.648-2.067c-.998.41-2.115.624-3.34.624-4.587 0-8.236-3.629-8.236-8.19a8.202 8.202 0 018.236-8.237 8.221 8.221 0 018.259 8.236c0 2.144-.916 4.438-2.547 6.016l3.113 1.777zm99.688-7.709a2.962 2.962 0 002.953-2.96c0-1.522-1.326-2.74-2.953-2.74h-3.107v5.7h3.107zm-3.107 7.104a.803.803 0 01-.79.786h-.832a.787.787 0 01-.791-.786v-14.42c0-.429.347-.787.79-.787h4.839c2.896 0 5.28 2.342 5.28 5.185 0 2.901-2.372 5.276-5.257 5.276h-3.239v4.746zm12.624-14.42c0-.425.365-.787.791-.787h.832c.444 0 .791.358.791.786v9.083c0 2.384 1.485 4.05 3.742 4.05 2.29 0 3.785-1.636 3.785-4.006v-9.126c0-.428.348-.786.79-.786h.834c.426 0 .79.362.79.786v9.213c0 3.571-2.585 6.212-6.2 6.212-3.591 0-6.155-2.64-6.155-6.212v-9.213zm23.645 6.051c1.395 0 2.251-.94 2.251-2.348 0-1.405-.815-2.24-2.251-2.24H195.6v4.59h3.195v-.002zm.372 6.95c1.378 0 2.384-1.018 2.384-2.394 0-1.296-1.207-2.306-2.756-2.306h-3.239v4.7H199.167zm4.972-2.373c0 2.674-2.144 4.578-5.148 4.578h-4.992a.79.79 0 01-.79-.788V17.455c0-.427.347-.785.79-.785h4.796c2.832 0 4.863 1.845 4.863 4.38 0 1.393-.71 2.62-1.767 3.432 1.36.747 2.248 1.954 2.248 3.603zm13.305 2.372c.444 0 .792.358.792.786v.633a.784.784 0 01-.233.558.785.785 0 01-.559.23h-7.576a.79.79 0 01-.79-.788v-14.42c0-.427.348-.785.79-.785h.855c.426 0 .79.362.79.786v13h5.931zm4.57-13c0-.424.365-.787.79-.787h.877c.426 0 .792.362.792.786v14.42a.805.805 0 01-.792.787h-.877a.804.804 0 01-.79-.788V17.455zm15.525-1.004c2.162 0 3.857.685 5.565 2.134.32.32.344.815.021 1.138l-.563.557c-.324.403-.756.378-1.109.028-1.107-.955-2.582-1.543-3.936-1.543-3.19 0-5.734 2.664-5.734 5.9 0 3.217 2.548 5.878 5.734 5.878 1.523 0 2.425-.408 3.948-1.552.322-.255.676-.278 1.01-.052l.634.568c.37.278.327.842.012 1.155-1.514 1.461-3.47 2.218-5.582 2.218-4.594 0-8.28-3.639-8.28-8.193 0-4.562 3.694-8.236 8.28-8.236zm27.593 14.005c.444 0 .792.358.792.786v.632a.784.784 0 01-.233.558.785.785 0 01-.559.23h-7.576a.79.79 0 01-.79-.788v-14.42c0-.427.346-.785.79-.785h.855c.425 0 .79.363.79.786v13h5.931v.001zm4.57-13c0-.425.364-.787.79-.787h.875c.427 0 .792.362.792.786v14.42a.805.805 0 01-.792.787h-.875a.802.802 0 01-.79-.789V17.455v.001zm13.947 6.051c1.396 0 2.252-.94 2.252-2.348 0-1.405-.815-2.24-2.252-2.24h-3.195v4.59h3.195v-.002zm.372 6.95c1.378 0 2.384-1.018 2.384-2.394 0-1.296-1.207-2.306-2.756-2.306h-3.238v4.7h3.61zm4.973-2.373c0 2.674-2.145 4.578-5.149 4.578h-4.991a.792.792 0 01-.792-.788v-14.42c0-.427.348-.785.792-.785h4.795c2.833 0 4.864 1.845 4.864 4.38 0 1.393-.71 2.62-1.768 3.432 1.36.747 2.249 1.954 2.249 3.603zm11.291-3.574c1.509 0 2.778-1.257 2.778-2.807 0-1.443-1.292-2.698-2.778-2.698h-3.873v5.505h3.873zm-3.915 7.364a.803.803 0 01-.79.786h-.855a.787.787 0 01-.791-.786v-14.42c0-.429.347-.786.79-.786h5.671c2.847 0 5.149 2.224 5.149 5.012 0 1.978-1.21 3.72-3.093 4.622l2.808 5.177c.291.54-.053 1.181-.704 1.181h-1.116a.75.75 0 01-.685-.4l-2.808-5.567h-3.576v5.181zm20.953-8.192a772.62 772.62 0 00-1.342-3.004l-2.708 6.052h5.412a687.64 687.64 0 01-1.362-3.048zm-2.137-6.789a.759.759 0 01.706-.443h.22c.33 0 .57.174.714.46l6.612 14.655c.247.533-.115 1.096-.714 1.096h-.876a.768.768 0 01-.714-.46l-1.52-3.374h-7.287l-1.494 3.36a.774.774 0 01-.722.474h-.875c-.598 0-.96-.562-.714-1.094l6.664-14.674zm18.459 7.616c1.508 0 2.777-1.257 2.777-2.807 0-1.443-1.292-2.698-2.777-2.698h-3.873v5.505h3.873zm-3.918 7.365a.803.803 0 01-.79.786h-.855a.787.787 0 01-.791-.786v-14.42c0-.428.348-.786.79-.786h5.672c2.847 0 5.149 2.224 5.149 5.012 0 1.977-1.211 3.72-3.093 4.622l2.808 5.178c.29.54-.054 1.18-.704 1.18h-1.117a.744.744 0 01-.685-.4l-2.807-5.567h-3.577v5.181zm12.088-14.006a.773.773 0 01.67-1.2h1.028c.267 0 .499.147.654.35l4.12 5.66 4.123-5.665a.824.824 0 01.65-.345h1.03c.642 0 1 .665.653 1.225l-5.271 7.155v6.826a.806.806 0 01-.791.788h-.855a.79.79 0 01-.79-.788V25.07l-5.221-7.2zm-271.826-.365c0-.423.364-.785.79-.785h.832c.445 0 .792.357.792.785v9.084c0 2.384 1.484 4.05 3.742 4.05 2.289 0 3.785-1.636 3.785-4.006v-9.128c0-.428.347-.785.79-.785h.833c.426 0 .79.362.79.785v9.215c0 3.57-2.584 6.21-6.198 6.21-3.593 0-6.156-2.639-6.156-6.21v-9.215zm27.476 13.001c.444 0 .792.358.792.787v.632a.79.79 0 01-.792.787h-8.627a.79.79 0 01-.79-.787v-14.42c0-.428.346-.785.79-.785h8.627c.443 0 .792.357.792.785v.632a.791.791 0 01-.792.788h-6.982v4.57h5.91c.425 0 .79.362.79.784v.632c0 .442-.36.787-.79.787h-5.91v4.808h6.982zm15.147 0c.444 0 .792.358.792.787v.632a.793.793 0 01-.792.787h-8.628a.79.79 0 01-.79-.787v-14.42c0-.427.347-.785.79-.785h8.628c.444 0 .792.357.792.785v.632a.784.784 0 01-.233.558.785.785 0 01-.559.23h-6.983v4.57h5.91c.426 0 .791.362.791.784v.632c0 .442-.36.787-.79.787h-5.91v4.808h6.982zm8.077 1.42a.78.78 0 01-.232.557.8.8 0 01-.558.23h-.767a.8.8 0 01-.79-.788V17.266c0-.427.365-.765.79-.765h.368a.75.75 0 01.585.28l9.139 11.326V17.505c0-.427.347-.786.79-.786h.767c.426 0 .792.363.792.786v14.66c0 .426-.367.765-.792.765h-.213a.752.752 0 01-.585-.28l-9.294-11.54v10.815zm15.855-2.074l.03-.04c.04-.05.076-.094.155-.195.085-.11.123-.158.163-.204.377-.492.834-.66 1.309-.253l.118.104a7 7 0 00.925.685c.785.487 1.602.775 2.412.775 1.51 0 2.56-.899 2.56-2.024 0-1.189-.964-2-3.607-3.098-2.96-1.286-4.08-2.444-4.08-4.85 0-2.245 1.87-4.25 5.04-4.25.97.007 1.929.205 2.822.584.307.128.583.264.825.402.148.083.253.15.266.164.415.208.622.732.276 1.28-.032.048-.06.091-.122.191l-.003.006a8.212 8.212 0 01-.135.211c-.31.482-.751.608-1.265.32-.009-.004-.206-.123-.305-.18a7.769 7.769 0 00-.585-.305c-.585-.272-1.156-.442-1.675-.466a2.67 2.67 0 00-.12-.003c-1.75 0-2.647.935-2.647 2.023 0 1.156.806 1.933 2.721 2.727 3.68 1.49 5.096 2.734 5.096 5.18 0 2.442-2.292 4.294-5.105 4.294a7.273 7.273 0 01-3.344-.825 7.02 7.02 0 01-1.523-1.03l-.046-.04c-.365-.323-.47-.69-.156-1.183zm-79.424.758c3.28 0 5.974-2.668 5.974-5.92 0-3.263-2.704-5.967-5.974-5.967-3.266 0-5.952 2.7-5.952 5.966 0 3.257 2.677 5.92 5.952 5.92v.001z",
6867
7346
  fill: "#422980"
6868
- }))), _defs$1 || (_defs$1 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("clipPath", {
7347
+ }))), _defs$5 || (_defs$5 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("clipPath", {
6869
7348
  id: "logo_qpl_color_svg__clip0"
6870
7349
  }, /*#__PURE__*/createElement("path", {
6871
7350
  fill: "#fff",
@@ -6874,295 +7353,295 @@ function SvgLogoQplColor(_ref) {
6874
7353
  })))));
6875
7354
  }
6876
7355
 
6877
- var _path$E, _path2$i, _path3$c, _path4$3, _path5$2;
7356
+ var _path$F, _path2$j, _path3$d, _path4$4, _path5$3;
6878
7357
 
6879
- var _excluded$L = ["title", "titleId"];
7358
+ var _excluded$R = ["title", "titleId"];
6880
7359
 
6881
- function _extends$L() { _extends$L = Object.assign || 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$L.apply(this, arguments); }
7360
+ function _extends$R() { _extends$R = Object.assign || 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); }
6882
7361
 
6883
- function _objectWithoutProperties$K(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$L(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; }
7362
+ 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; }
6884
7363
 
6885
- function _objectWithoutPropertiesLoose$L(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; }
7364
+ 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; }
6886
7365
 
6887
7366
  function SvgLogoQplWhite(_ref) {
6888
7367
  var title = _ref.title,
6889
7368
  titleId = _ref.titleId,
6890
- props = _objectWithoutProperties$K(_ref, _excluded$L);
7369
+ props = _objectWithoutProperties$Q(_ref, _excluded$R);
6891
7370
 
6892
- return /*#__PURE__*/createElement("svg", _extends$L({
7371
+ return /*#__PURE__*/createElement("svg", _extends$R({
6893
7372
  viewBox: "0 0 320 43",
6894
7373
  fill: "#fff",
6895
7374
  xmlns: "http://www.w3.org/2000/svg",
6896
7375
  "aria-labelledby": titleId
6897
7376
  }, props), title ? /*#__PURE__*/createElement("title", {
6898
7377
  id: titleId
6899
- }, title) : null, _path$E || (_path$E = /*#__PURE__*/createElement("path", {
7378
+ }, title) : null, _path$F || (_path$F = /*#__PURE__*/createElement("path", {
6900
7379
  fillRule: "evenodd",
6901
7380
  clipRule: "evenodd",
6902
7381
  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"
6903
- })), _path2$i || (_path2$i = /*#__PURE__*/createElement("path", {
7382
+ })), _path2$j || (_path2$j = /*#__PURE__*/createElement("path", {
6904
7383
  fillRule: "evenodd",
6905
7384
  clipRule: "evenodd",
6906
7385
  d: "M8.115 32.626l16.223 9.32 8.112-4.66-16.225-9.322-8.11 4.662z"
6907
- })), _path3$c || (_path3$c = /*#__PURE__*/createElement("path", {
7386
+ })), _path3$d || (_path3$d = /*#__PURE__*/createElement("path", {
6908
7387
  fillRule: "evenodd",
6909
7388
  clipRule: "evenodd",
6910
7389
  d: "M24.338 13.982v18.644l8.113-4.661V9.322l-8.113 4.66zM0 27.965l8.113 4.66V13.982L0 9.322v18.643z"
6911
- })), _path4$3 || (_path4$3 = /*#__PURE__*/createElement("path", {
7390
+ })), _path4$4 || (_path4$4 = /*#__PURE__*/createElement("path", {
6912
7391
  fillRule: "evenodd",
6913
7392
  clipRule: "evenodd",
6914
7393
  d: "M0 9.322l8.116 4.66 8.11-4.66 8.112 4.66 8.113-4.66L16.225 0 0 9.322z"
6915
- })), _path5$2 || (_path5$2 = /*#__PURE__*/createElement("path", {
7394
+ })), _path5$3 || (_path5$3 = /*#__PURE__*/createElement("path", {
6916
7395
  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"
6917
7396
  })));
6918
7397
  }
6919
7398
 
6920
- var _path$F, _path2$j, _path3$d, _path4$4, _path5$3;
7399
+ var _path$G, _path2$k, _path3$e, _path4$5, _path5$4;
6921
7400
 
6922
- var _excluded$M = ["title", "titleId"];
7401
+ var _excluded$S = ["title", "titleId"];
6923
7402
 
6924
- function _extends$M() { _extends$M = Object.assign || 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$M.apply(this, arguments); }
7403
+ function _extends$S() { _extends$S = Object.assign || 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); }
6925
7404
 
6926
- function _objectWithoutProperties$L(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$M(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; }
7405
+ 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; }
6927
7406
 
6928
- function _objectWithoutPropertiesLoose$M(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; }
7407
+ 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; }
6929
7408
 
6930
7409
  function SvgLogoSchomburgBlack(_ref) {
6931
7410
  var title = _ref.title,
6932
7411
  titleId = _ref.titleId,
6933
- props = _objectWithoutProperties$L(_ref, _excluded$M);
7412
+ props = _objectWithoutProperties$R(_ref, _excluded$S);
6934
7413
 
6935
- return /*#__PURE__*/createElement("svg", _extends$M({
7414
+ return /*#__PURE__*/createElement("svg", _extends$S({
6936
7415
  viewBox: "0 0 185 79",
6937
7416
  xmlns: "http://www.w3.org/2000/svg",
6938
7417
  "aria-labelledby": titleId
6939
7418
  }, props), title ? /*#__PURE__*/createElement("title", {
6940
7419
  id: titleId
6941
- }, title) : null, _path$F || (_path$F = /*#__PURE__*/createElement("path", {
7420
+ }, title) : null, _path$G || (_path$G = /*#__PURE__*/createElement("path", {
6942
7421
  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"
6943
- })), _path2$j || (_path2$j = /*#__PURE__*/createElement("path", {
7422
+ })), _path2$k || (_path2$k = /*#__PURE__*/createElement("path", {
6944
7423
  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"
6945
- })), _path3$d || (_path3$d = /*#__PURE__*/createElement("path", {
7424
+ })), _path3$e || (_path3$e = /*#__PURE__*/createElement("path", {
6946
7425
  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"
6947
- })), _path4$4 || (_path4$4 = /*#__PURE__*/createElement("path", {
7426
+ })), _path4$5 || (_path4$5 = /*#__PURE__*/createElement("path", {
6948
7427
  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"
6949
- })), _path5$3 || (_path5$3 = /*#__PURE__*/createElement("path", {
7428
+ })), _path5$4 || (_path5$4 = /*#__PURE__*/createElement("path", {
6950
7429
  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"
6951
7430
  })));
6952
7431
  }
6953
7432
 
6954
- var _path$G, _path2$k, _path3$e, _path4$5, _path5$4;
7433
+ var _path$H, _path2$l, _path3$f, _path4$6, _path5$5;
6955
7434
 
6956
- var _excluded$N = ["title", "titleId"];
7435
+ var _excluded$T = ["title", "titleId"];
6957
7436
 
6958
- function _extends$N() { _extends$N = Object.assign || 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$N.apply(this, arguments); }
7437
+ function _extends$T() { _extends$T = Object.assign || 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); }
6959
7438
 
6960
- function _objectWithoutProperties$M(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$N(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; }
7439
+ 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; }
6961
7440
 
6962
- 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; }
7441
+ 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; }
6963
7442
 
6964
7443
  function SvgLogoSchomburgCircleBlack(_ref) {
6965
7444
  var title = _ref.title,
6966
7445
  titleId = _ref.titleId,
6967
- props = _objectWithoutProperties$M(_ref, _excluded$N);
7446
+ props = _objectWithoutProperties$S(_ref, _excluded$T);
6968
7447
 
6969
- return /*#__PURE__*/createElement("svg", _extends$N({
7448
+ return /*#__PURE__*/createElement("svg", _extends$T({
6970
7449
  viewBox: "0 0 67 67",
6971
7450
  xmlns: "http://www.w3.org/2000/svg",
6972
7451
  "aria-labelledby": titleId
6973
7452
  }, props), title ? /*#__PURE__*/createElement("title", {
6974
7453
  id: titleId
6975
- }, title) : null, _path$G || (_path$G = /*#__PURE__*/createElement("path", {
7454
+ }, title) : null, _path$H || (_path$H = /*#__PURE__*/createElement("path", {
6976
7455
  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"
6977
- })), _path2$k || (_path2$k = /*#__PURE__*/createElement("path", {
7456
+ })), _path2$l || (_path2$l = /*#__PURE__*/createElement("path", {
6978
7457
  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"
6979
- })), _path3$e || (_path3$e = /*#__PURE__*/createElement("path", {
7458
+ })), _path3$f || (_path3$f = /*#__PURE__*/createElement("path", {
6980
7459
  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"
6981
- })), _path4$5 || (_path4$5 = /*#__PURE__*/createElement("path", {
7460
+ })), _path4$6 || (_path4$6 = /*#__PURE__*/createElement("path", {
6982
7461
  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"
6983
- })), _path5$4 || (_path5$4 = /*#__PURE__*/createElement("path", {
7462
+ })), _path5$5 || (_path5$5 = /*#__PURE__*/createElement("path", {
6984
7463
  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"
6985
7464
  })));
6986
7465
  }
6987
7466
 
6988
- var _path$H, _path2$l, _path3$f, _path4$6, _path5$5;
7467
+ var _path$I, _path2$m, _path3$g, _path4$7, _path5$6;
6989
7468
 
6990
- var _excluded$O = ["title", "titleId"];
7469
+ var _excluded$U = ["title", "titleId"];
6991
7470
 
6992
- function _extends$O() { _extends$O = Object.assign || 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$O.apply(this, arguments); }
7471
+ function _extends$U() { _extends$U = Object.assign || 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); }
6993
7472
 
6994
- function _objectWithoutProperties$N(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose$O(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; }
7473
+ 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; }
6995
7474
 
6996
- 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; }
7475
+ 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; }
6997
7476
 
6998
7477
  function SvgLogoSchomburgCircleColor(_ref) {
6999
7478
  var title = _ref.title,
7000
7479
  titleId = _ref.titleId,
7001
- props = _objectWithoutProperties$N(_ref, _excluded$O);
7480
+ props = _objectWithoutProperties$T(_ref, _excluded$U);
7002
7481
 
7003
- return /*#__PURE__*/createElement("svg", _extends$O({
7482
+ return /*#__PURE__*/createElement("svg", _extends$U({
7004
7483
  viewBox: "0 0 67 67",
7005
7484
  fill: "none",
7006
7485
  xmlns: "http://www.w3.org/2000/svg",
7007
7486
  "aria-labelledby": titleId
7008
7487
  }, props), title ? /*#__PURE__*/createElement("title", {
7009
7488
  id: titleId
7010
- }, title) : null, _path$H || (_path$H = /*#__PURE__*/createElement("path", {
7489
+ }, title) : null, _path$I || (_path$I = /*#__PURE__*/createElement("path", {
7011
7490
  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",
7012
7491
  fill: "#C54B38"
7013
- })), _path2$l || (_path2$l = /*#__PURE__*/createElement("path", {
7492
+ })), _path2$m || (_path2$m = /*#__PURE__*/createElement("path", {
7014
7493
  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",
7015
7494
  fill: "#C54B38"
7016
- })), _path3$f || (_path3$f = /*#__PURE__*/createElement("path", {
7495
+ })), _path3$g || (_path3$g = /*#__PURE__*/createElement("path", {
7017
7496
  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",
7018
7497
  fill: "#C54B38"
7019
- })), _path4$6 || (_path4$6 = /*#__PURE__*/createElement("path", {
7498
+ })), _path4$7 || (_path4$7 = /*#__PURE__*/createElement("path", {
7020
7499
  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",
7021
7500
  fill: "#C54B38"
7022
- })), _path5$5 || (_path5$5 = /*#__PURE__*/createElement("path", {
7501
+ })), _path5$6 || (_path5$6 = /*#__PURE__*/createElement("path", {
7023
7502
  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",
7024
7503
  fill: "#C54B38"
7025
7504
  })));
7026
7505
  }
7027
7506
 
7028
- var _path$I, _path2$m, _path3$g, _path4$7, _path5$6;
7507
+ var _path$J, _path2$n, _path3$h, _path4$8, _path5$7;
7029
7508
 
7030
- var _excluded$P = ["title", "titleId"];
7509
+ var _excluded$V = ["title", "titleId"];
7031
7510
 
7032
- function _extends$P() { _extends$P = Object.assign || 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); }
7511
+ function _extends$V() { _extends$V = Object.assign || 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); }
7033
7512
 
7034
- 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; }
7513
+ 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; }
7035
7514
 
7036
- 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; }
7515
+ 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; }
7037
7516
 
7038
7517
  function SvgLogoSchomburgCircleWhite(_ref) {
7039
7518
  var title = _ref.title,
7040
7519
  titleId = _ref.titleId,
7041
- props = _objectWithoutProperties$O(_ref, _excluded$P);
7520
+ props = _objectWithoutProperties$U(_ref, _excluded$V);
7042
7521
 
7043
- return /*#__PURE__*/createElement("svg", _extends$P({
7522
+ return /*#__PURE__*/createElement("svg", _extends$V({
7044
7523
  viewBox: "0 0 67 67",
7045
7524
  fill: "#fff",
7046
7525
  xmlns: "http://www.w3.org/2000/svg",
7047
7526
  "aria-labelledby": titleId
7048
7527
  }, props), title ? /*#__PURE__*/createElement("title", {
7049
7528
  id: titleId
7050
- }, title) : null, _path$I || (_path$I = /*#__PURE__*/createElement("path", {
7529
+ }, title) : null, _path$J || (_path$J = /*#__PURE__*/createElement("path", {
7051
7530
  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"
7052
- })), _path2$m || (_path2$m = /*#__PURE__*/createElement("path", {
7531
+ })), _path2$n || (_path2$n = /*#__PURE__*/createElement("path", {
7053
7532
  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"
7054
- })), _path3$g || (_path3$g = /*#__PURE__*/createElement("path", {
7533
+ })), _path3$h || (_path3$h = /*#__PURE__*/createElement("path", {
7055
7534
  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"
7056
- })), _path4$7 || (_path4$7 = /*#__PURE__*/createElement("path", {
7535
+ })), _path4$8 || (_path4$8 = /*#__PURE__*/createElement("path", {
7057
7536
  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"
7058
- })), _path5$6 || (_path5$6 = /*#__PURE__*/createElement("path", {
7537
+ })), _path5$7 || (_path5$7 = /*#__PURE__*/createElement("path", {
7059
7538
  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"
7060
7539
  })));
7061
7540
  }
7062
7541
 
7063
- var _path$J, _path2$n, _path3$h, _path4$8, _path5$7, _path6$1, _path7$1;
7542
+ var _path$K, _path2$o, _path3$i, _path4$9, _path5$8, _path6$2, _path7$2;
7064
7543
 
7065
- var _excluded$Q = ["title", "titleId"];
7544
+ var _excluded$W = ["title", "titleId"];
7066
7545
 
7067
- function _extends$Q() { _extends$Q = Object.assign || 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); }
7546
+ function _extends$W() { _extends$W = Object.assign || 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); }
7068
7547
 
7069
- 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; }
7548
+ 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; }
7070
7549
 
7071
- 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; }
7550
+ 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; }
7072
7551
 
7073
7552
  function SvgLogoSchomburgColor(_ref) {
7074
7553
  var title = _ref.title,
7075
7554
  titleId = _ref.titleId,
7076
- props = _objectWithoutProperties$P(_ref, _excluded$Q);
7555
+ props = _objectWithoutProperties$V(_ref, _excluded$W);
7077
7556
 
7078
- return /*#__PURE__*/createElement("svg", _extends$Q({
7557
+ return /*#__PURE__*/createElement("svg", _extends$W({
7079
7558
  viewBox: "0 0 185 79",
7080
7559
  fill: "none",
7081
7560
  xmlns: "http://www.w3.org/2000/svg",
7082
7561
  "aria-labelledby": titleId
7083
7562
  }, props), title ? /*#__PURE__*/createElement("title", {
7084
7563
  id: titleId
7085
- }, title) : null, _path$J || (_path$J = /*#__PURE__*/createElement("path", {
7564
+ }, title) : null, _path$K || (_path$K = /*#__PURE__*/createElement("path", {
7086
7565
  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",
7087
7566
  fill: "#010101"
7088
- })), _path2$n || (_path2$n = /*#__PURE__*/createElement("path", {
7567
+ })), _path2$o || (_path2$o = /*#__PURE__*/createElement("path", {
7089
7568
  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",
7090
7569
  fill: "#C54B38"
7091
- })), _path3$h || (_path3$h = /*#__PURE__*/createElement("path", {
7570
+ })), _path3$i || (_path3$i = /*#__PURE__*/createElement("path", {
7092
7571
  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",
7093
7572
  fill: "#C54B38"
7094
- })), _path4$8 || (_path4$8 = /*#__PURE__*/createElement("path", {
7573
+ })), _path4$9 || (_path4$9 = /*#__PURE__*/createElement("path", {
7095
7574
  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",
7096
7575
  fill: "#C54B38"
7097
- })), _path5$7 || (_path5$7 = /*#__PURE__*/createElement("path", {
7576
+ })), _path5$8 || (_path5$8 = /*#__PURE__*/createElement("path", {
7098
7577
  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",
7099
7578
  fill: "#C54B38"
7100
- })), _path6$1 || (_path6$1 = /*#__PURE__*/createElement("path", {
7579
+ })), _path6$2 || (_path6$2 = /*#__PURE__*/createElement("path", {
7101
7580
  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",
7102
7581
  fill: "#C54B38"
7103
- })), _path7$1 || (_path7$1 = /*#__PURE__*/createElement("path", {
7582
+ })), _path7$2 || (_path7$2 = /*#__PURE__*/createElement("path", {
7104
7583
  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",
7105
7584
  fill: "#010101"
7106
7585
  })));
7107
7586
  }
7108
7587
 
7109
- var _path$K, _path2$o, _path3$i, _path4$9, _path5$8;
7588
+ var _path$L, _path2$p, _path3$j, _path4$a, _path5$9;
7110
7589
 
7111
- var _excluded$R = ["title", "titleId"];
7590
+ var _excluded$X = ["title", "titleId"];
7112
7591
 
7113
- function _extends$R() { _extends$R = Object.assign || 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); }
7592
+ function _extends$X() { _extends$X = Object.assign || 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); }
7114
7593
 
7115
- 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; }
7594
+ 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; }
7116
7595
 
7117
- 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; }
7596
+ 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; }
7118
7597
 
7119
7598
  function SvgLogoSchomburgWhite(_ref) {
7120
7599
  var title = _ref.title,
7121
7600
  titleId = _ref.titleId,
7122
- props = _objectWithoutProperties$Q(_ref, _excluded$R);
7601
+ props = _objectWithoutProperties$W(_ref, _excluded$X);
7123
7602
 
7124
- return /*#__PURE__*/createElement("svg", _extends$R({
7603
+ return /*#__PURE__*/createElement("svg", _extends$X({
7125
7604
  viewBox: "0 0 185 79",
7126
7605
  fill: "#fff",
7127
7606
  xmlns: "http://www.w3.org/2000/svg",
7128
7607
  "aria-labelledby": titleId
7129
7608
  }, props), title ? /*#__PURE__*/createElement("title", {
7130
7609
  id: titleId
7131
- }, title) : null, _path$K || (_path$K = /*#__PURE__*/createElement("path", {
7610
+ }, title) : null, _path$L || (_path$L = /*#__PURE__*/createElement("path", {
7132
7611
  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"
7133
- })), _path2$o || (_path2$o = /*#__PURE__*/createElement("path", {
7612
+ })), _path2$p || (_path2$p = /*#__PURE__*/createElement("path", {
7134
7613
  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"
7135
- })), _path3$i || (_path3$i = /*#__PURE__*/createElement("path", {
7614
+ })), _path3$j || (_path3$j = /*#__PURE__*/createElement("path", {
7136
7615
  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"
7137
- })), _path4$9 || (_path4$9 = /*#__PURE__*/createElement("path", {
7616
+ })), _path4$a || (_path4$a = /*#__PURE__*/createElement("path", {
7138
7617
  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"
7139
- })), _path5$8 || (_path5$8 = /*#__PURE__*/createElement("path", {
7618
+ })), _path5$9 || (_path5$9 = /*#__PURE__*/createElement("path", {
7140
7619
  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"
7141
7620
  })));
7142
7621
  }
7143
7622
 
7144
- var _g$5, _defs$2;
7623
+ var _g$a, _defs$6;
7145
7624
 
7146
- var _excluded$S = ["title", "titleId"];
7625
+ var _excluded$Y = ["title", "titleId"];
7147
7626
 
7148
- function _extends$S() { _extends$S = Object.assign || 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); }
7627
+ function _extends$Y() { _extends$Y = Object.assign || 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); }
7149
7628
 
7150
- 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; }
7629
+ 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; }
7151
7630
 
7152
- 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; }
7631
+ 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; }
7153
7632
 
7154
7633
  function SvgLogoSimplyeBlack(_ref) {
7155
7634
  var title = _ref.title,
7156
7635
  titleId = _ref.titleId,
7157
- props = _objectWithoutProperties$R(_ref, _excluded$S);
7636
+ props = _objectWithoutProperties$X(_ref, _excluded$Y);
7158
7637
 
7159
- return /*#__PURE__*/createElement("svg", _extends$S({
7638
+ return /*#__PURE__*/createElement("svg", _extends$Y({
7160
7639
  viewBox: "0 0 512 148",
7161
7640
  xmlns: "http://www.w3.org/2000/svg",
7162
7641
  "aria-labelledby": titleId
7163
7642
  }, props), title ? /*#__PURE__*/createElement("title", {
7164
7643
  id: titleId
7165
- }, title) : null, _g$5 || (_g$5 = /*#__PURE__*/createElement("g", {
7644
+ }, title) : null, _g$a || (_g$a = /*#__PURE__*/createElement("g", {
7166
7645
  clipPath: "url(#logo_simplye_black_svg__clip0)"
7167
7646
  }, /*#__PURE__*/createElement("path", {
7168
7647
  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"
@@ -7170,7 +7649,7 @@ function SvgLogoSimplyeBlack(_ref) {
7170
7649
  d: "M6.382 25.48c-.529-.595-.54-1.44.216-1.69L58.999 6.462a.944.944 0 011.241.897.985.985 0 00.93.945c.415.059.835.075 1.254.05a.997.997 0 001.008-.94l-.002-5.403a1.172 1.172 0 00-.496-.989 1.077 1.077 0 00-.893-.152L3.346 20.342c-2.26.731-2.344 1.05-2.344 3.478l.006 100.104c.003.096.016.19.04.283.93 3.738 5.241 5.003 5.241 5.003 4.256 1.615 6.45 2.064 10.304.726 0 0 .086-99.525.035-99.962a.28.28 0 00-.229-.243c-.41-.077-6.585-.386-10.017-4.25"
7171
7650
  }), /*#__PURE__*/createElement("path", {
7172
7651
  d: "M112.969 28.139a.946.946 0 00-1.242-.897L65.072 42.744c-12.007 3.546-12.608 3.957-16.436 2.548a10.762 10.762 0 01-4.804-3.209c-.487-.63-.489-1.441.267-1.691l52.402-17.327a.946.946 0 011.24.897.984.984 0 00.93.946c.415.054.833.07 1.25.05a.99.99 0 001.013-.941l-.003-5.419a1.01 1.01 0 00-.557-1.008.99.99 0 00-.831-.117L40.848 36.944c-2.26.732-2.663 1.005-2.663 3.432l.02 97.48c0 .096.004 1.042.002 1.138-.059 3.155 3.655 4.911 5.418 5.699a14.107 14.107 0 0010.47.824l58.236-18.912a.945.945 0 00.638-.894v-18.715a.948.948 0 00-.783-.93.942.942 0 00-.435.027l-46.7 15.307a.986.986 0 01-1.265-.917v-16.534a.944.944 0 01.672-.904l47.793-15.656c.581-.213.718-.312.718-.808l-.037-19.111a.91.91 0 00-1.224-.756l-46.771 15.49c-.603.174-1.15-.439-1.15-1.067l.071-16.602a.945.945 0 01.656-.9l47.895-15.902c.391-.125.555-.68.555-1.091l.005-18.504zM193.94 91.63c.043 3.264-.609 6.5-1.911 9.494a19.556 19.556 0 01-5.499 7.236 25.79 25.79 0 01-8.742 4.574 38.338 38.338 0 01-11.52 1.621 41.503 41.503 0 01-8.569-.811 43.232 43.232 0 01-6.773-1.968 31.143 31.143 0 01-5.094-2.49 32.82 32.82 0 01-3.416-2.373l6.947-11.347c.463.31 1.158.792 2.084 1.447a20.297 20.297 0 003.473 1.911 33.661 33.661 0 004.864 1.679c2.003.521 4.066.774 6.136.752 3.937 0 6.967-.868 9.089-2.605a7.893 7.893 0 003.184-6.31 6.703 6.703 0 00-1.447-4.342 13.8 13.8 0 00-3.821-3.184 48.838 48.838 0 00-5.5-2.721 95.44 95.44 0 01-6.484-3.068 49.257 49.257 0 01-6.599-3.821 25.536 25.536 0 01-5.211-4.747 20.55 20.55 0 01-3.473-6.195 24.361 24.361 0 01-1.274-8.278 19.651 19.651 0 011.969-8.916 20.53 20.53 0 015.326-6.715 24.22 24.22 0 017.873-4.284 30.599 30.599 0 019.726-1.505c2.813-.03 5.624.202 8.394.694 2.181.398 4.329.96 6.426 1.68a26.533 26.533 0 014.631 2.083 41.813 41.813 0 013.126 2.027l-6.599 11.462a32.073 32.073 0 00-2.547-1.505 24.885 24.885 0 00-3.474-1.505 38.012 38.012 0 00-4.284-1.216 21.567 21.567 0 00-4.747-.521 12.53 12.53 0 00-7.526 2.026 6.912 6.912 0 00-2.779 5.963 6.563 6.563 0 001.101 3.88 11.19 11.19 0 003.01 2.836 30.206 30.206 0 004.515 2.431c1.737.773 3.609 1.622 5.616 2.547a110.48 110.48 0 017.41 3.706 26.855 26.855 0 016.31 4.747 21.065 21.065 0 016.079 15.63zM220.454 40.221a8.972 8.972 0 01-2.721 6.484 9.097 9.097 0 01-6.773 2.78 8.91 8.91 0 01-6.716-2.78 9.064 9.064 0 01-2.663-6.483 8.684 8.684 0 012.663-6.369 9.097 9.097 0 016.716-2.663 9.294 9.294 0 016.773 2.663 8.596 8.596 0 012.721 6.368zm-17.252 72.944V56.779h15.515v56.386h-15.515zM275.449 64.305a30.007 30.007 0 017.643-6.484 20.409 20.409 0 0110.42-2.432 18.358 18.358 0 017.584 1.39 13.05 13.05 0 014.978 3.82 14.903 14.903 0 012.721 5.79 31.09 31.09 0 01.81 7.294v39.482h-15.398V76.809a11.606 11.606 0 00-1.447-6.368c-.967-1.465-2.723-2.199-5.268-2.2a9.43 9.43 0 00-3.474.637c-1.037.4-2.012.946-2.895 1.62a20.225 20.225 0 00-2.315 2.085 74.01 74.01 0 00-1.853 2.026v38.556h-15.399V76.809c0-2.855-.521-4.997-1.564-6.426-1.041-1.427-2.72-2.141-5.036-2.142a8.78 8.78 0 00-3.878.868 14.06 14.06 0 00-3.127 2.026 15.322 15.322 0 00-2.2 2.316 73.736 73.736 0 01-1.331 1.737v37.977h-15.399V56.779h15.051v6.946a73.305 73.305 0 012.548-2.662 17.54 17.54 0 013.589-2.721 24.398 24.398 0 014.747-2.084 19.363 19.363 0 016.021-.869c4.013 0 7.159.81 9.437 2.432a14.285 14.285 0 015.035 6.484zM371.897 84.914a37.586 37.586 0 01-1.853 12.157 27.702 27.702 0 01-5.21 9.321 23.497 23.497 0 01-7.989 6.02 23.991 23.991 0 01-10.19 2.143 20.801 20.801 0 01-8.336-1.39 19.832 19.832 0 01-4.632-2.663v28.02h-15.398V56.779h15.052v5.904a21.67 21.67 0 016.078-5.094 18.72 18.72 0 019.553-2.2c7.178 0 12.794 2.547 16.846 7.642 4.052 5.094 6.078 12.389 6.079 21.883zm-16.326 0c0-5.326-.926-9.533-2.779-12.62a9.202 9.202 0 00-8.452-4.632 10.535 10.535 0 00-3.937.695c-1.095.43-2.142.974-3.126 1.62-.831.538-1.59 1.18-2.257 1.911a44.486 44.486 0 00-1.332 1.563v25.357a24.172 24.172 0 003.763 2.547 12.078 12.078 0 005.963 1.274 10.195 10.195 0 009.031-4.69c2.084-3.125 3.126-7.467 3.126-13.025zM380.929 113.165V29.801h15.399v83.364h-15.399zM402.811 56.779h16.441l12.505 37.166h.579l11.463-37.166h15.862l-23.272 62.407a64.516 64.516 0 01-4.053 8.916 25.026 25.026 0 01-5.21 6.599 21.354 21.354 0 01-7.121 4.111 29.982 29.982 0 01-9.9 1.447 31.243 31.243 0 01-5.673-.405c-1.389-.272-2.392-.484-3.01-.637l2.199-12.157a8.43 8.43 0 001.737.405c1.23.14 2.468.197 3.705.173 3.937 0 6.793-.888 8.568-2.663a19.126 19.126 0 004.284-7.178l2.084-5.79-21.188-55.228zM466.725 113.165V36.053h44.461v13.431h-28.368v17.368h25.009v12.736h-25.009v20.146h29.178v13.431h-45.271z"
7173
- }))), _defs$2 || (_defs$2 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("clipPath", {
7652
+ }))), _defs$6 || (_defs$6 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("clipPath", {
7174
7653
  id: "logo_simplye_black_svg__clip0"
7175
7654
  }, /*#__PURE__*/createElement("path", {
7176
7655
  fill: "#fff",
@@ -7179,29 +7658,29 @@ function SvgLogoSimplyeBlack(_ref) {
7179
7658
  })))));
7180
7659
  }
7181
7660
 
7182
- var _g$6, _defs$3;
7661
+ var _g$b, _defs$7;
7183
7662
 
7184
- var _excluded$T = ["title", "titleId"];
7663
+ var _excluded$Z = ["title", "titleId"];
7185
7664
 
7186
- function _extends$T() { _extends$T = Object.assign || 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); }
7665
+ function _extends$Z() { _extends$Z = Object.assign || 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); }
7187
7666
 
7188
- 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; }
7667
+ 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; }
7189
7668
 
7190
- 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; }
7669
+ 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; }
7191
7670
 
7192
7671
  function SvgLogoSimplyeWhite(_ref) {
7193
7672
  var title = _ref.title,
7194
7673
  titleId = _ref.titleId,
7195
- props = _objectWithoutProperties$S(_ref, _excluded$T);
7674
+ props = _objectWithoutProperties$Y(_ref, _excluded$Z);
7196
7675
 
7197
- return /*#__PURE__*/createElement("svg", _extends$T({
7676
+ return /*#__PURE__*/createElement("svg", _extends$Z({
7198
7677
  viewBox: "0 0 512 148",
7199
7678
  fill: "#fff",
7200
7679
  xmlns: "http://www.w3.org/2000/svg",
7201
7680
  "aria-labelledby": titleId
7202
7681
  }, props), title ? /*#__PURE__*/createElement("title", {
7203
7682
  id: titleId
7204
- }, title) : null, _g$6 || (_g$6 = /*#__PURE__*/createElement("g", {
7683
+ }, title) : null, _g$b || (_g$b = /*#__PURE__*/createElement("g", {
7205
7684
  clipPath: "url(#logo_simplye_white_svg__clip0)"
7206
7685
  }, /*#__PURE__*/createElement("path", {
7207
7686
  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"
@@ -7209,7 +7688,7 @@ function SvgLogoSimplyeWhite(_ref) {
7209
7688
  d: "M6.382 25.48c-.529-.595-.54-1.44.216-1.69L58.999 6.462a.944.944 0 011.241.897.985.985 0 00.93.945c.415.059.835.075 1.254.05a.997.997 0 001.008-.94l-.002-5.403a1.172 1.172 0 00-.496-.989 1.077 1.077 0 00-.893-.152L3.346 20.342c-2.26.731-2.344 1.05-2.344 3.478l.006 100.104c.003.096.016.19.04.283.93 3.738 5.241 5.003 5.241 5.003 4.256 1.615 6.45 2.064 10.304.726 0 0 .086-99.525.035-99.962a.28.28 0 00-.229-.243c-.41-.077-6.585-.386-10.017-4.25"
7210
7689
  }), /*#__PURE__*/createElement("path", {
7211
7690
  d: "M112.969 28.139a.946.946 0 00-1.242-.897L65.072 42.744c-12.007 3.546-12.608 3.957-16.436 2.548a10.762 10.762 0 01-4.804-3.209c-.487-.63-.489-1.441.267-1.691l52.402-17.327a.946.946 0 011.24.897.984.984 0 00.93.946c.415.054.833.07 1.25.05a.99.99 0 001.013-.941l-.003-5.419a1.01 1.01 0 00-.557-1.008.99.99 0 00-.831-.117L40.848 36.944c-2.26.732-2.663 1.005-2.663 3.432l.02 97.48c0 .096.004 1.042.002 1.138-.059 3.155 3.655 4.911 5.418 5.699a14.107 14.107 0 0010.47.824l58.236-18.912a.945.945 0 00.638-.894v-18.715a.948.948 0 00-.783-.93.942.942 0 00-.435.027l-46.7 15.307a.986.986 0 01-1.265-.917v-16.534a.944.944 0 01.672-.904l47.793-15.656c.581-.213.718-.312.718-.808l-.037-19.111a.91.91 0 00-1.224-.756l-46.771 15.49c-.603.174-1.15-.439-1.15-1.067l.071-16.602a.945.945 0 01.656-.9l47.895-15.902c.391-.125.555-.68.555-1.091l.005-18.504zM193.94 91.63c.043 3.264-.609 6.5-1.911 9.494a19.556 19.556 0 01-5.499 7.236 25.79 25.79 0 01-8.742 4.574 38.338 38.338 0 01-11.52 1.621 41.503 41.503 0 01-8.569-.811 43.232 43.232 0 01-6.773-1.968 31.143 31.143 0 01-5.094-2.49 32.82 32.82 0 01-3.416-2.373l6.947-11.347c.463.31 1.158.792 2.084 1.447a20.297 20.297 0 003.473 1.911 33.661 33.661 0 004.864 1.679c2.003.521 4.066.774 6.136.752 3.937 0 6.967-.868 9.089-2.605a7.893 7.893 0 003.184-6.31 6.703 6.703 0 00-1.447-4.342 13.8 13.8 0 00-3.821-3.184 48.838 48.838 0 00-5.5-2.721 95.44 95.44 0 01-6.484-3.068 49.257 49.257 0 01-6.599-3.821 25.536 25.536 0 01-5.211-4.747 20.55 20.55 0 01-3.473-6.195 24.361 24.361 0 01-1.274-8.278 19.651 19.651 0 011.969-8.916 20.53 20.53 0 015.326-6.715 24.22 24.22 0 017.873-4.284 30.599 30.599 0 019.726-1.505c2.813-.03 5.624.202 8.394.694 2.181.398 4.329.96 6.426 1.68a26.533 26.533 0 014.631 2.083 41.813 41.813 0 013.126 2.027l-6.599 11.462a32.073 32.073 0 00-2.547-1.505 24.885 24.885 0 00-3.474-1.505 38.012 38.012 0 00-4.284-1.216 21.567 21.567 0 00-4.747-.521 12.53 12.53 0 00-7.526 2.026 6.912 6.912 0 00-2.779 5.963 6.563 6.563 0 001.101 3.88 11.19 11.19 0 003.01 2.836 30.206 30.206 0 004.515 2.431c1.737.773 3.609 1.622 5.616 2.547a110.48 110.48 0 017.41 3.706 26.855 26.855 0 016.31 4.747 21.065 21.065 0 016.079 15.63zM220.454 40.221a8.972 8.972 0 01-2.721 6.484 9.097 9.097 0 01-6.773 2.78 8.91 8.91 0 01-6.716-2.78 9.064 9.064 0 01-2.663-6.483 8.684 8.684 0 012.663-6.369 9.097 9.097 0 016.716-2.663 9.294 9.294 0 016.773 2.663 8.596 8.596 0 012.721 6.368zm-17.252 72.944V56.779h15.515v56.386h-15.515zM275.449 64.305a30.007 30.007 0 017.643-6.484 20.409 20.409 0 0110.42-2.432 18.358 18.358 0 017.584 1.39 13.05 13.05 0 014.978 3.82 14.903 14.903 0 012.721 5.79 31.09 31.09 0 01.81 7.294v39.482h-15.398V76.809a11.606 11.606 0 00-1.447-6.368c-.967-1.465-2.723-2.199-5.268-2.2a9.43 9.43 0 00-3.474.637c-1.037.4-2.012.946-2.895 1.62a20.225 20.225 0 00-2.315 2.085 74.01 74.01 0 00-1.853 2.026v38.556h-15.399V76.809c0-2.855-.521-4.997-1.564-6.426-1.041-1.427-2.72-2.141-5.036-2.142a8.78 8.78 0 00-3.878.868 14.06 14.06 0 00-3.127 2.026 15.322 15.322 0 00-2.2 2.316 73.736 73.736 0 01-1.331 1.737v37.977h-15.399V56.779h15.051v6.946a73.305 73.305 0 012.548-2.662 17.54 17.54 0 013.589-2.721 24.398 24.398 0 014.747-2.084 19.363 19.363 0 016.021-.869c4.013 0 7.159.81 9.437 2.432a14.285 14.285 0 015.035 6.484zM371.897 84.914a37.586 37.586 0 01-1.853 12.157 27.702 27.702 0 01-5.21 9.321 23.497 23.497 0 01-7.989 6.02 23.991 23.991 0 01-10.19 2.143 20.801 20.801 0 01-8.336-1.39 19.832 19.832 0 01-4.632-2.663v28.02h-15.398V56.779h15.052v5.904a21.67 21.67 0 016.078-5.094 18.72 18.72 0 019.553-2.2c7.178 0 12.794 2.547 16.846 7.642 4.052 5.094 6.078 12.389 6.079 21.883zm-16.326 0c0-5.326-.926-9.533-2.779-12.62a9.202 9.202 0 00-8.452-4.632 10.535 10.535 0 00-3.937.695c-1.095.43-2.142.974-3.126 1.62-.831.538-1.59 1.18-2.257 1.911a44.486 44.486 0 00-1.332 1.563v25.357a24.172 24.172 0 003.763 2.547 12.078 12.078 0 005.963 1.274 10.195 10.195 0 009.031-4.69c2.084-3.125 3.126-7.467 3.126-13.025zM380.929 113.165V29.801h15.399v83.364h-15.399zM402.811 56.779h16.441l12.505 37.166h.579l11.463-37.166h15.862l-23.272 62.407a64.516 64.516 0 01-4.053 8.916 25.026 25.026 0 01-5.21 6.599 21.354 21.354 0 01-7.121 4.111 29.982 29.982 0 01-9.9 1.447 31.243 31.243 0 01-5.673-.405c-1.389-.272-2.392-.484-3.01-.637l2.199-12.157a8.43 8.43 0 001.737.405c1.23.14 2.468.197 3.705.173 3.937 0 6.793-.888 8.568-2.663a19.126 19.126 0 004.284-7.178l2.084-5.79-21.188-55.228zM466.725 113.165V36.053h44.461v13.431h-28.368v17.368h25.009v12.736h-25.009v20.146h29.178v13.431h-45.271z"
7212
- }))), _defs$3 || (_defs$3 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("clipPath", {
7691
+ }))), _defs$7 || (_defs$7 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("clipPath", {
7213
7692
  id: "logo_simplye_white_svg__clip0"
7214
7693
  }, /*#__PURE__*/createElement("path", {
7215
7694
  transform: "translate(0 .118)",
@@ -7217,29 +7696,29 @@ function SvgLogoSimplyeWhite(_ref) {
7217
7696
  })))));
7218
7697
  }
7219
7698
 
7220
- var _g$7, _defs$4;
7699
+ var _g$c, _defs$8;
7221
7700
 
7222
- var _excluded$U = ["title", "titleId"];
7701
+ var _excluded$_ = ["title", "titleId"];
7223
7702
 
7224
- function _extends$U() { _extends$U = Object.assign || 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); }
7703
+ function _extends$_() { _extends$_ = Object.assign || 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); }
7225
7704
 
7226
- 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; }
7705
+ 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; }
7227
7706
 
7228
- 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; }
7707
+ 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; }
7229
7708
 
7230
7709
  function SvgLogoSimplyeColor(_ref) {
7231
7710
  var title = _ref.title,
7232
7711
  titleId = _ref.titleId,
7233
- props = _objectWithoutProperties$T(_ref, _excluded$U);
7712
+ props = _objectWithoutProperties$Z(_ref, _excluded$_);
7234
7713
 
7235
- return /*#__PURE__*/createElement("svg", _extends$U({
7714
+ return /*#__PURE__*/createElement("svg", _extends$_({
7236
7715
  viewBox: "0 0 682 196",
7237
7716
  fill: "none",
7238
7717
  xmlns: "http://www.w3.org/2000/svg",
7239
7718
  "aria-labelledby": titleId
7240
7719
  }, props), title ? /*#__PURE__*/createElement("title", {
7241
7720
  id: titleId
7242
- }, title) : null, _g$7 || (_g$7 = /*#__PURE__*/createElement("g", {
7721
+ }, title) : null, _g$c || (_g$c = /*#__PURE__*/createElement("g", {
7243
7722
  clipPath: "url(#logo_simplye_color_svg__clip0)"
7244
7723
  }, /*#__PURE__*/createElement("path", {
7245
7724
  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",
@@ -7253,7 +7732,7 @@ function SvgLogoSimplyeColor(_ref) {
7253
7732
  }), /*#__PURE__*/createElement("path", {
7254
7733
  d: "M257.68 121.443c0 4.631-.848 8.852-2.547 12.658-1.698 3.81-4.144 7.024-7.333 9.65-3.19 2.624-7.077 4.657-11.654 6.096-4.581 1.44-9.703 2.162-15.361 2.162-4.221 0-8.028-.362-11.424-1.08-3.396-.721-6.406-1.594-9.03-2.625-2.626-1.027-4.891-2.134-6.793-3.319-1.906-1.181-3.423-2.238-4.554-3.165l9.261-15.128c.619.412 1.546 1.056 2.78 1.93 1.235.876 2.779 1.724 4.631 2.548 1.853.824 4.015 1.569 6.484 2.237 2.47.67 5.196 1.004 8.181 1.004 5.249 0 9.288-1.158 12.12-3.473 2.829-2.316 4.245-5.119 4.245-8.414 0-2.264-.645-4.193-1.929-5.79-1.29-1.593-2.987-3.009-5.096-4.245-2.11-1.235-4.554-2.443-7.332-3.627a127.762 127.762 0 01-8.645-4.092c-3.192-1.544-6.124-3.241-8.8-5.093-2.677-1.853-4.993-3.961-6.947-6.33-1.955-2.366-3.499-5.118-4.631-8.259-1.134-3.139-1.698-6.817-1.698-11.038 0-4.424.874-8.387 2.624-11.887 1.75-3.497 4.115-6.484 7.101-8.954 2.984-2.47 6.484-4.372 10.497-5.71 4.015-1.338 8.338-2.009 12.968-2.009 4.219 0 7.951.31 11.193.927 3.241.617 6.097 1.365 8.568 2.239 2.469.876 4.528 1.8 6.175 2.778 1.645.979 3.034 1.879 4.167 2.702l-8.799 15.283c-.926-.617-2.06-1.285-3.395-2.007-1.34-.718-2.884-1.389-4.632-2.008a50.57 50.57 0 00-5.712-1.62 28.702 28.702 0 00-6.329-.694c-4.221 0-7.565.901-10.034 2.701-2.471 1.803-3.706 4.452-3.706 7.95 0 2.06.487 3.782 1.467 5.172.976 1.39 2.315 2.65 4.013 3.782 1.699 1.134 3.706 2.214 6.022 3.242a601.234 601.234 0 017.486 3.396 147.494 147.494 0 019.88 4.94c3.189 1.75 5.994 3.86 8.414 6.329 2.416 2.471 4.373 5.379 5.865 8.723 1.491 3.345 2.239 7.385 2.239 12.118zm12.349 28.714v-75.18h20.686v75.18h-20.686zm23.002-97.256c0 3.294-1.211 6.174-3.628 8.645-2.418 2.47-5.429 3.705-9.03 3.705-3.604 0-6.588-1.236-8.955-3.705-2.368-2.47-3.55-5.35-3.55-8.645 0-3.293 1.182-6.123 3.55-8.49 2.367-2.367 5.351-3.551 8.955-3.551 3.601 0 6.612 1.184 9.03 3.55 2.417 2.368 3.628 5.198 3.628 8.49zm73.325 32.11c3.089-3.602 6.485-6.484 10.19-8.645 3.706-2.162 8.336-3.242 13.893-3.242 4.015 0 7.385.618 10.112 1.852 2.727 1.235 4.94 2.933 6.637 5.095 1.699 2.161 2.907 4.734 3.628 7.718.719 2.987 1.081 6.228 1.081 9.725v52.643h-20.531v-48.473c0-3.706-.643-6.535-1.929-8.49-1.29-1.956-3.628-2.934-7.024-2.934-1.648 0-3.192.284-4.632.848a15.621 15.621 0 00-3.86 2.161 26.835 26.835 0 00-3.086 2.78 92.35 92.35 0 00-2.471 2.701v51.407h-20.532v-48.473c0-3.807-.694-6.663-2.085-8.57-1.388-1.902-3.626-2.854-6.714-2.854-1.852 0-3.578.385-5.171 1.157-1.597.772-2.987 1.674-4.169 2.701-1.184 1.031-2.161 2.06-2.932 3.088a106.536 106.536 0 01-1.776 2.316v50.635h-20.532v-75.18h20.068v9.262a97.36 97.36 0 013.397-3.55c1.336-1.337 2.934-2.547 4.785-3.629 1.854-1.081 3.962-2.006 6.33-2.778 2.366-.772 5.041-1.158 8.027-1.158 5.351 0 9.545 1.08 12.583 3.242 3.034 2.16 5.272 5.043 6.713 8.645zm106.828 27.478c0-7.1-1.235-12.71-3.705-16.827-2.471-4.114-6.228-6.174-11.269-6.174-1.956 0-3.704.308-5.25.925-1.544.619-2.933 1.34-4.167 2.162-1.235.825-2.238 1.674-3.01 2.547a59.725 59.725 0 00-1.776 2.084v33.808c1.336 1.134 3.01 2.266 5.018 3.397 2.006 1.133 4.654 1.698 7.95 1.698 5.249 0 9.261-2.085 12.041-6.253 2.779-4.168 4.168-9.957 4.168-17.367zm21.767 0c0 5.97-.825 11.374-2.47 16.21-1.647 4.838-3.964 8.98-6.947 12.426a31.322 31.322 0 01-10.651 8.028c-4.118 1.904-8.647 2.856-13.587 2.856-4.629 0-8.336-.616-11.114-1.852-2.779-1.236-4.839-2.417-6.175-3.551v37.358h-20.531V74.976h20.069v7.873c2.057-2.57 4.758-4.836 8.103-6.791 3.344-1.955 7.588-2.934 12.737-2.934 9.571 0 17.059 3.396 22.461 10.188 5.403 6.793 8.105 16.518 8.105 29.177zm12.041 37.668V39.007h20.532v111.15h-20.532zm29.176-75.18h21.92l16.673 49.554h.772l15.284-49.555h21.149l-31.029 83.208c-1.649 4.425-3.449 8.387-5.404 11.887-1.956 3.497-4.272 6.43-6.946 8.8-2.679 2.365-5.843 4.192-9.495 5.48-3.654 1.285-8.054 1.93-13.198 1.93-3.192 0-5.713-.181-7.565-.541-1.852-.361-3.192-.644-4.013-.848l2.932-16.21c.514.205 1.286.385 2.316.541 1.028.154 2.674.23 4.941.23 5.248 0 9.054-1.183 11.422-3.551 2.367-2.368 4.269-5.557 5.712-9.569l2.779-7.72-28.25-73.637zm85.216 75.18V47.342h59.28v17.91h-37.823v23.156h33.344v16.981h-33.344v26.861h38.903v17.907h-60.36z",
7255
7734
  fill: "#1B385E"
7256
- }))), _defs$4 || (_defs$4 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("clipPath", {
7735
+ }))), _defs$8 || (_defs$8 = /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("clipPath", {
7257
7736
  id: "logo_simplye_color_svg__clip0"
7258
7737
  }, /*#__PURE__*/createElement("path", {
7259
7738
  fill: "#fff",
@@ -7262,118 +7741,118 @@ function SvgLogoSimplyeColor(_ref) {
7262
7741
  })))));
7263
7742
  }
7264
7743
 
7265
- var _path$L;
7744
+ var _path$M;
7266
7745
 
7267
- var _excluded$V = ["title", "titleId"];
7746
+ var _excluded$$ = ["title", "titleId"];
7268
7747
 
7269
- function _extends$V() { _extends$V = Object.assign || 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); }
7748
+ function _extends$$() { _extends$$ = Object.assign || 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); }
7270
7749
 
7271
- 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; }
7750
+ 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; }
7272
7751
 
7273
- 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; }
7752
+ 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; }
7274
7753
 
7275
7754
  function SvgLogoSnflBlack(_ref) {
7276
7755
  var title = _ref.title,
7277
7756
  titleId = _ref.titleId,
7278
- props = _objectWithoutProperties$U(_ref, _excluded$V);
7757
+ props = _objectWithoutProperties$_(_ref, _excluded$$);
7279
7758
 
7280
- return /*#__PURE__*/createElement("svg", _extends$V({
7759
+ return /*#__PURE__*/createElement("svg", _extends$$({
7281
7760
  viewBox: "0 0 84 111",
7282
7761
  xmlns: "http://www.w3.org/2000/svg",
7283
7762
  "aria-labelledby": titleId
7284
7763
  }, props), title ? /*#__PURE__*/createElement("title", {
7285
7764
  id: titleId
7286
- }, title) : null, _path$L || (_path$L = /*#__PURE__*/createElement("path", {
7765
+ }, title) : null, _path$M || (_path$M = /*#__PURE__*/createElement("path", {
7287
7766
  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"
7288
7767
  })));
7289
7768
  }
7290
7769
 
7291
- var _path$M;
7770
+ var _path$N;
7292
7771
 
7293
- var _excluded$W = ["title", "titleId"];
7772
+ var _excluded$10 = ["title", "titleId"];
7294
7773
 
7295
- function _extends$W() { _extends$W = Object.assign || 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); }
7774
+ function _extends$10() { _extends$10 = Object.assign || 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); }
7296
7775
 
7297
- 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; }
7776
+ 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; }
7298
7777
 
7299
- 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; }
7778
+ 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; }
7300
7779
 
7301
7780
  function SvgLogoSnflWhite(_ref) {
7302
7781
  var title = _ref.title,
7303
7782
  titleId = _ref.titleId,
7304
- props = _objectWithoutProperties$V(_ref, _excluded$W);
7783
+ props = _objectWithoutProperties$$(_ref, _excluded$10);
7305
7784
 
7306
- return /*#__PURE__*/createElement("svg", _extends$W({
7785
+ return /*#__PURE__*/createElement("svg", _extends$10({
7307
7786
  viewBox: "0 0 84 111",
7308
7787
  fill: "#fff",
7309
7788
  xmlns: "http://www.w3.org/2000/svg",
7310
7789
  "aria-labelledby": titleId
7311
7790
  }, props), title ? /*#__PURE__*/createElement("title", {
7312
7791
  id: titleId
7313
- }, title) : null, _path$M || (_path$M = /*#__PURE__*/createElement("path", {
7792
+ }, title) : null, _path$N || (_path$N = /*#__PURE__*/createElement("path", {
7314
7793
  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"
7315
7794
  })));
7316
7795
  }
7317
7796
 
7318
- var _path$N, _path2$p, _path3$j, _path4$a, _path5$9, _path6$2, _path7$2, _path8, _path9, _path10, _path11, _path12, _path13, _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;
7797
+ var _path$O, _path2$q, _path3$k, _path4$b, _path5$a, _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;
7319
7798
 
7320
- var _excluded$X = ["title", "titleId"];
7799
+ var _excluded$11 = ["title", "titleId"];
7321
7800
 
7322
- function _extends$X() { _extends$X = Object.assign || 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); }
7801
+ function _extends$11() { _extends$11 = Object.assign || 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); }
7323
7802
 
7324
- 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; }
7803
+ 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; }
7325
7804
 
7326
- 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; }
7805
+ 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; }
7327
7806
 
7328
7807
  function SvgLogoTreasuresColor(_ref) {
7329
7808
  var title = _ref.title,
7330
7809
  titleId = _ref.titleId,
7331
- props = _objectWithoutProperties$W(_ref, _excluded$X);
7810
+ props = _objectWithoutProperties$10(_ref, _excluded$11);
7332
7811
 
7333
- return /*#__PURE__*/createElement("svg", _extends$X({
7812
+ return /*#__PURE__*/createElement("svg", _extends$11({
7334
7813
  viewBox: "0 0 324 265",
7335
7814
  fill: "none",
7336
7815
  xmlns: "http://www.w3.org/2000/svg",
7337
7816
  "aria-labelledby": titleId
7338
7817
  }, props), title ? /*#__PURE__*/createElement("title", {
7339
7818
  id: titleId
7340
- }, title) : null, _path$N || (_path$N = /*#__PURE__*/createElement("path", {
7819
+ }, title) : null, _path$O || (_path$O = /*#__PURE__*/createElement("path", {
7341
7820
  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",
7342
7821
  fill: "#D3BA81"
7343
- })), _path2$p || (_path2$p = /*#__PURE__*/createElement("path", {
7822
+ })), _path2$q || (_path2$q = /*#__PURE__*/createElement("path", {
7344
7823
  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",
7345
7824
  fill: "#D3BA81"
7346
- })), _path3$j || (_path3$j = /*#__PURE__*/createElement("path", {
7825
+ })), _path3$k || (_path3$k = /*#__PURE__*/createElement("path", {
7347
7826
  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",
7348
7827
  fill: "#D3BA81"
7349
- })), _path4$a || (_path4$a = /*#__PURE__*/createElement("path", {
7828
+ })), _path4$b || (_path4$b = /*#__PURE__*/createElement("path", {
7350
7829
  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",
7351
7830
  fill: "#D3BA81"
7352
- })), _path5$9 || (_path5$9 = /*#__PURE__*/createElement("path", {
7831
+ })), _path5$a || (_path5$a = /*#__PURE__*/createElement("path", {
7353
7832
  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",
7354
7833
  fill: "#D3BA81"
7355
- })), _path6$2 || (_path6$2 = /*#__PURE__*/createElement("path", {
7834
+ })), _path6$3 || (_path6$3 = /*#__PURE__*/createElement("path", {
7356
7835
  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",
7357
7836
  fill: "#D3BA81"
7358
- })), _path7$2 || (_path7$2 = /*#__PURE__*/createElement("path", {
7837
+ })), _path7$3 || (_path7$3 = /*#__PURE__*/createElement("path", {
7359
7838
  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",
7360
7839
  fill: "#D3BA81"
7361
- })), _path8 || (_path8 = /*#__PURE__*/createElement("path", {
7840
+ })), _path8$1 || (_path8$1 = /*#__PURE__*/createElement("path", {
7362
7841
  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",
7363
7842
  fill: "#D3BA81"
7364
- })), _path9 || (_path9 = /*#__PURE__*/createElement("path", {
7843
+ })), _path9$1 || (_path9$1 = /*#__PURE__*/createElement("path", {
7365
7844
  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",
7366
7845
  fill: "#D3BA81"
7367
- })), _path10 || (_path10 = /*#__PURE__*/createElement("path", {
7846
+ })), _path10$1 || (_path10$1 = /*#__PURE__*/createElement("path", {
7368
7847
  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",
7369
7848
  fill: "#D3BA81"
7370
- })), _path11 || (_path11 = /*#__PURE__*/createElement("path", {
7849
+ })), _path11$1 || (_path11$1 = /*#__PURE__*/createElement("path", {
7371
7850
  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",
7372
7851
  fill: "#05002F"
7373
- })), _path12 || (_path12 = /*#__PURE__*/createElement("path", {
7852
+ })), _path12$1 || (_path12$1 = /*#__PURE__*/createElement("path", {
7374
7853
  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",
7375
7854
  fill: "#05002F"
7376
- })), _path13 || (_path13 = /*#__PURE__*/createElement("path", {
7855
+ })), _path13$1 || (_path13$1 = /*#__PURE__*/createElement("path", {
7377
7856
  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",
7378
7857
  fill: "#05002F"
7379
7858
  })), _path14 || (_path14 = /*#__PURE__*/createElement("path", {
@@ -7505,65 +7984,65 @@ function SvgLogoTreasuresColor(_ref) {
7505
7984
  })));
7506
7985
  }
7507
7986
 
7508
- var _path$O, _path2$q, _path3$k, _path4$b, _path5$a, _path6$3, _path7$3, _path8$1, _path9$1, _path10$1, _path11$1, _path12$1, _path13$1, _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;
7987
+ var _path$P, _path2$r, _path3$l, _path4$c, _path5$b, _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;
7509
7988
 
7510
- var _excluded$Y = ["title", "titleId"];
7989
+ var _excluded$12 = ["title", "titleId"];
7511
7990
 
7512
- function _extends$Y() { _extends$Y = Object.assign || 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); }
7991
+ function _extends$12() { _extends$12 = Object.assign || 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); }
7513
7992
 
7514
- 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; }
7993
+ 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; }
7515
7994
 
7516
- 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; }
7995
+ 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; }
7517
7996
 
7518
7997
  function SvgLogoTreasuresColorNegative(_ref) {
7519
7998
  var title = _ref.title,
7520
7999
  titleId = _ref.titleId,
7521
- props = _objectWithoutProperties$X(_ref, _excluded$Y);
8000
+ props = _objectWithoutProperties$11(_ref, _excluded$12);
7522
8001
 
7523
- return /*#__PURE__*/createElement("svg", _extends$Y({
8002
+ return /*#__PURE__*/createElement("svg", _extends$12({
7524
8003
  viewBox: "0 0 327 266",
7525
8004
  fill: "none",
7526
8005
  xmlns: "http://www.w3.org/2000/svg",
7527
8006
  "aria-labelledby": titleId
7528
8007
  }, props), title ? /*#__PURE__*/createElement("title", {
7529
8008
  id: titleId
7530
- }, title) : null, _path$O || (_path$O = /*#__PURE__*/createElement("path", {
8009
+ }, title) : null, _path$P || (_path$P = /*#__PURE__*/createElement("path", {
7531
8010
  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",
7532
8011
  fill: "#D3BA81"
7533
- })), _path2$q || (_path2$q = /*#__PURE__*/createElement("path", {
8012
+ })), _path2$r || (_path2$r = /*#__PURE__*/createElement("path", {
7534
8013
  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",
7535
8014
  fill: "#D3BA81"
7536
- })), _path3$k || (_path3$k = /*#__PURE__*/createElement("path", {
8015
+ })), _path3$l || (_path3$l = /*#__PURE__*/createElement("path", {
7537
8016
  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",
7538
8017
  fill: "#D3BA81"
7539
- })), _path4$b || (_path4$b = /*#__PURE__*/createElement("path", {
8018
+ })), _path4$c || (_path4$c = /*#__PURE__*/createElement("path", {
7540
8019
  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",
7541
8020
  fill: "#D3BA81"
7542
- })), _path5$a || (_path5$a = /*#__PURE__*/createElement("path", {
8021
+ })), _path5$b || (_path5$b = /*#__PURE__*/createElement("path", {
7543
8022
  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",
7544
8023
  fill: "#D3BA81"
7545
- })), _path6$3 || (_path6$3 = /*#__PURE__*/createElement("path", {
8024
+ })), _path6$4 || (_path6$4 = /*#__PURE__*/createElement("path", {
7546
8025
  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",
7547
8026
  fill: "#D3BA81"
7548
- })), _path7$3 || (_path7$3 = /*#__PURE__*/createElement("path", {
8027
+ })), _path7$4 || (_path7$4 = /*#__PURE__*/createElement("path", {
7549
8028
  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",
7550
8029
  fill: "#D3BA81"
7551
- })), _path8$1 || (_path8$1 = /*#__PURE__*/createElement("path", {
8030
+ })), _path8$2 || (_path8$2 = /*#__PURE__*/createElement("path", {
7552
8031
  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",
7553
8032
  fill: "#D3BA81"
7554
- })), _path9$1 || (_path9$1 = /*#__PURE__*/createElement("path", {
8033
+ })), _path9$2 || (_path9$2 = /*#__PURE__*/createElement("path", {
7555
8034
  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",
7556
8035
  fill: "#D3BA81"
7557
- })), _path10$1 || (_path10$1 = /*#__PURE__*/createElement("path", {
8036
+ })), _path10$2 || (_path10$2 = /*#__PURE__*/createElement("path", {
7558
8037
  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",
7559
8038
  fill: "#D3BA81"
7560
- })), _path11$1 || (_path11$1 = /*#__PURE__*/createElement("path", {
8039
+ })), _path11$2 || (_path11$2 = /*#__PURE__*/createElement("path", {
7561
8040
  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",
7562
8041
  fill: "#fff"
7563
- })), _path12$1 || (_path12$1 = /*#__PURE__*/createElement("path", {
8042
+ })), _path12$2 || (_path12$2 = /*#__PURE__*/createElement("path", {
7564
8043
  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",
7565
8044
  fill: "#fff"
7566
- })), _path13$1 || (_path13$1 = /*#__PURE__*/createElement("path", {
8045
+ })), _path13$2 || (_path13$2 = /*#__PURE__*/createElement("path", {
7567
8046
  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",
7568
8047
  fill: "#fff"
7569
8048
  })), _path14$1 || (_path14$1 = /*#__PURE__*/createElement("path", {
@@ -7701,6 +8180,8 @@ var logoSvgs = {
7701
8180
  logo_bpl_white: SvgLogoBplWhite,
7702
8181
  logo_clever_color: SvgLogoCleverColor,
7703
8182
  logo_clever_white: SvgLogoCleverWhite,
8183
+ logo_firstbook_color: SvgLogoFirstbookColor,
8184
+ logo_firstbook_color_negative: SvgLogoFirstbookColorNegative,
7704
8185
  logo_lpa_black: SvgLogoLpaBlack,
7705
8186
  logo_lpa_color: SvgLogoLpaColor,
7706
8187
  logo_lpa_white: SvgLogoLpaWhite,
@@ -7710,6 +8191,10 @@ var logoSvgs = {
7710
8191
  logo_nypl_full_white: SvgLogoNyplFullWhite,
7711
8192
  logo_nypl_lion_black: SvgLogoNyplLionBlack,
7712
8193
  logo_nypl_lion_white: SvgLogoNyplLionWhite,
8194
+ logo_openebooks_color: SvgLogoOpenebooksColor,
8195
+ logo_openebooks_negative: SvgLogoOpenebooksNegative,
8196
+ logo_openebooks_wtext_color: SvgLogoOpenebooksWtextColor,
8197
+ logo_openebooks_wtext_negative: SvgLogoOpenebooksWtextNegative,
7713
8198
  logo_qpl_alt_black: SvgLogoQplAltBlack,
7714
8199
  logo_qpl_alt_white: SvgLogoQplAltWhite,
7715
8200
  logo_qpl_black: SvgLogoQplBlack,
@@ -7916,7 +8401,6 @@ function Notification$1(props) {
7916
8401
 
7917
8402
  var baseIconProps = {
7918
8403
  additionalStyles: styles.icon,
7919
- decorative: false,
7920
8404
  size: IconSizes.Large
7921
8405
  }; // If the icon should not display, return null.
7922
8406
 
@@ -7947,12 +8431,15 @@ function Notification$1(props) {
7947
8431
  };
7948
8432
 
7949
8433
  var dismissibleButton = dismissible && React__default.createElement(Button, {
8434
+ additionalStyles: styles.dismissibleButton,
8435
+ attributes: {
8436
+ "aria-label": "Close the notification"
8437
+ },
7950
8438
  buttonType: ButtonTypes.Link,
7951
- onClick: handleClose,
7952
- additionalStyles: styles.dismissibleButton
8439
+ id: id + "-notification-dismissible-button",
8440
+ onClick: handleClose
7953
8441
  }, React__default.createElement(Icon, {
7954
- decorative: false,
7955
- id: id + "-notification-dismissible-icon",
8442
+ id: id + "-dismissible-notification-icon",
7956
8443
  name: IconNames.Close,
7957
8444
  size: IconSizes.Large,
7958
8445
  title: "Notification close icon"
@@ -7994,6 +8481,7 @@ function Notification$1(props) {
7994
8481
 
7995
8482
  var Pagination$1 = function Pagination(props) {
7996
8483
  var className = props.className,
8484
+ currentPage = props.currentPage,
7997
8485
  getPageHref = props.getPageHref,
7998
8486
  _props$id = props.id,
7999
8487
  id = _props$id === void 0 ? generateUUID() : _props$id,
@@ -8001,21 +8489,35 @@ var Pagination$1 = function Pagination(props) {
8001
8489
  initialPage = _props$initialPage === void 0 ? 1 : _props$initialPage,
8002
8490
  onPageChange = props.onPageChange,
8003
8491
  pageCount = props.pageCount;
8492
+ var refCurrentPage = useRef(currentPage);
8004
8493
 
8005
8494
  var _useState = useState(initialPage),
8006
- currentPage = _useState[0],
8007
- setCurrentPage = _useState[1];
8495
+ selectedPage = _useState[0],
8496
+ setSelectedPage = _useState[1];
8008
8497
 
8009
8498
  var styles = useMultiStyleConfig("Pagination", {});
8010
- var previousPageNumber = currentPage - 1;
8011
- var nextPageNumber = currentPage + 1; // If there are 0 or 1 page, the pagination should not show.
8499
+ var previousPageNumber = selectedPage - 1;
8500
+ var nextPageNumber = selectedPage + 1; // If the parent passes down a new currentPage, and an onPageChange
8501
+ // function exists, then set the internal state – selectedPage –
8502
+ // to the new currentPage and update the refCurrentPage with that value.
8503
+
8504
+ React__default.useEffect(function () {
8505
+ if (onPageChange && currentPage !== refCurrentPage.current) {
8506
+ setSelectedPage(currentPage);
8507
+ refCurrentPage.current = currentPage;
8508
+ }
8509
+ }, [currentPage, onPageChange]); // If there are 0 or 1 page, the pagination should not show.
8012
8510
 
8013
8511
  if (pageCount <= 1) {
8014
8512
  return null;
8015
8513
  }
8016
8514
 
8017
8515
  if (getPageHref && onPageChange) {
8018
- console.warn("Props for both `getPageHref` and `onPageChange` are passed. Will default to using `getPageHref`.");
8516
+ console.warn("NYPL Reservoir Pagination: Props for both `getPageHref` and `onPageChange` are passed. Will default to using `getPageHref`.");
8517
+ }
8518
+
8519
+ if (getPageHref && currentPage) {
8520
+ console.warn("NYPL Reservoir Pagination: The `currentPage` prop does not work with the `getPageHref` prop. Use `currentPage` with `onPageChange` instead.");
8019
8521
  } // If `getPageHref` was passed, then links should go to a new page.
8020
8522
 
8021
8523
 
@@ -8025,24 +8527,24 @@ var Pagination$1 = function Pagination(props) {
8025
8527
  * not update the URL or refresh the page.
8026
8528
  */
8027
8529
 
8028
- var selectPage = function selectPage(e, selectedPage) {
8530
+ var handlePageClick = function handlePageClick(e, clickedPage) {
8029
8531
  e.preventDefault && e.preventDefault();
8030
- if (currentPage === selectedPage) return;
8031
- setCurrentPage(selectedPage);
8032
- onPageChange && onPageChange(selectedPage);
8532
+ if (selectedPage === clickedPage) return;
8533
+ setSelectedPage(clickedPage);
8534
+ onPageChange && onPageChange(clickedPage);
8033
8535
  }; // Select the previous page.
8034
8536
 
8035
8537
 
8036
8538
  var previousPage = function previousPage(e) {
8037
- if (currentPage > 1) {
8038
- selectPage(e, previousPageNumber);
8539
+ if (selectedPage > 1) {
8540
+ handlePageClick(e, previousPageNumber);
8039
8541
  }
8040
8542
  }; // Select the next page.
8041
8543
 
8042
8544
 
8043
8545
  var nextPage = function nextPage(e) {
8044
- if (currentPage < pageCount) {
8045
- selectPage(e, nextPageNumber);
8546
+ if (selectedPage < pageCount) {
8547
+ handlePageClick(e, previousPageNumber);
8046
8548
  }
8047
8549
  };
8048
8550
  /**
@@ -8057,9 +8559,9 @@ var Pagination$1 = function Pagination(props) {
8057
8559
 
8058
8560
 
8059
8561
  var getLinkElement = function getLinkElement(type, item) {
8060
- var isCurrentPage = currentPage === item; // The current page link has different styles.
8562
+ var isSelectedPage = selectedPage === item; // The current page link has different styles.
8061
8563
 
8062
- var currentStyles = isCurrentPage ? {
8564
+ var currentStyles = isSelectedPage ? {
8063
8565
  color: "ui.black",
8064
8566
  pointerEvent: "none"
8065
8567
  } : {};
@@ -8068,9 +8570,9 @@ var Pagination$1 = function Pagination(props) {
8068
8570
  href: changeUrls ? getPageHref(item) : "#",
8069
8571
  attributes: {
8070
8572
  "aria-label": "Page " + item,
8071
- "aria-current": isCurrentPage ? "page" : null,
8573
+ "aria-current": isSelectedPage ? "page" : null,
8072
8574
  onClick: changeUrls ? undefined : function (e) {
8073
- return selectPage(e, item);
8575
+ return handlePageClick(e, item);
8074
8576
  }
8075
8577
  },
8076
8578
  text: item
@@ -8155,11 +8657,11 @@ var Pagination$1 = function Pagination(props) {
8155
8657
  }; // Don't display the previous link when you're on the first page.
8156
8658
 
8157
8659
 
8158
- var previousLiLink = currentPage !== 1 && React__default.createElement("li", {
8660
+ var previousLiLink = selectedPage !== 1 && React__default.createElement("li", {
8159
8661
  key: "previous"
8160
- }, getLinkElement("previous")); /// Don't display the next link when you're on the last page.
8662
+ }, getLinkElement("previous")); // Don't display the next link when you're on the last page.
8161
8663
 
8162
- var nextLiLink = currentPage !== pageCount && React__default.createElement("li", {
8664
+ var nextLiLink = selectedPage !== pageCount && React__default.createElement("li", {
8163
8665
  key: "next"
8164
8666
  }, getLinkElement("next"));
8165
8667
  return React__default.createElement(Box, {
@@ -8174,7 +8676,7 @@ var Pagination$1 = function Pagination(props) {
8174
8676
  inline: true,
8175
8677
  noStyling: true,
8176
8678
  id: id + "-list"
8177
- }, previousLiLink, getPaginationNumbers(currentPage), nextLiLink));
8679
+ }, previousLiLink, getPaginationNumbers(selectedPage), nextLiLink));
8178
8680
  };
8179
8681
 
8180
8682
  /**
@@ -8303,6 +8805,7 @@ var Radio$1 = /*#__PURE__*/forwardRef(function (props, ref) {
8303
8805
  onChange: onChange,
8304
8806
  value: value,
8305
8807
  ref: ref,
8808
+ alignItems: "flex-start",
8306
8809
  __css: styles
8307
8810
  }, attributes), showLabel && labelText), footnote && showHelperInvalidText && createElement(Box, {
8308
8811
  __css: styles.helper,
@@ -8633,7 +9136,8 @@ function SearchBar$1(props) {
8633
9136
  };
8634
9137
  var footnote = isInvalid ? invalidText : helperText;
8635
9138
  var finalAriaLabel = footnote ? labelText + " - " + footnote : labelText;
8636
- var textInputPlaceholder = (textInputProps == null ? void 0 : textInputProps.placeholder) + " " + (isRequired ? "(Required)" : "");
9139
+ var inputPlaceholder = (textInputProps == null ? void 0 : textInputProps.placeholder) || "Search terms";
9140
+ var textInputPlaceholder = inputPlaceholder + " " + (isRequired ? "(Required)" : "");
8637
9141
  var buttonType = noBrandButtonType ? ButtonTypes.NoBrand : ButtonTypes.Primary;
8638
9142
  var searchBarButtonStyles = {
8639
9143
  borderLeftRadius: "none",
@@ -8870,8 +9374,8 @@ function Slider(props) {
8870
9374
  var styles = useMultiStyleConfig("CustomSlider", {
8871
9375
  isDisabled: isDisabled,
8872
9376
  isInvalid: finalIsInvalid,
8873
- isRangeSlider: isRangeSlider,
8874
- showBoxes: showBoxes
9377
+ showBoxes: showBoxes,
9378
+ showValues: showValues
8875
9379
  }); // Props that the `Slider` and `RangeSlider` Chakra
8876
9380
  // components both use.
8877
9381
 
@@ -8891,7 +9395,10 @@ function Slider(props) {
8891
9395
  onChangeEnd: function onChangeEnd(val) {
8892
9396
  return _onChange && _onChange(val);
8893
9397
  },
8894
- step: step
9398
+ step: step,
9399
+ // Additional margins so slider thumbs don't overflow past the
9400
+ // edge when the value boxes or min/max values are hidden.
9401
+ sx: styles.sliderContainer
8895
9402
  }; // Props that the two `TextInput` components use.
8896
9403
 
8897
9404
  var textInputSharedProps = {
@@ -9469,14 +9976,13 @@ function Tabs(props) {
9469
9976
 
9470
9977
  /**
9471
9978
  * The main top-level parent component that wraps all template-related
9472
- * components. For backwards compatibility, this renders a `nypl-ds` CSS class.
9979
+ * components.
9473
9980
  */
9474
9981
 
9475
9982
  var Template$1 = function Template(props) {
9476
9983
  var styles = useStyleConfig("Template", {});
9477
9984
  return createElement(Box, {
9478
- __css: styles,
9479
- className: "nypl-ds"
9985
+ __css: styles
9480
9986
  }, props.children);
9481
9987
  };
9482
9988
  /**
@@ -9741,7 +10247,9 @@ var Toggle$2 = /*#__PURE__*/forwardRef(function (props, ref) {
9741
10247
  var footnote = isInvalid ? invalidText : helperText;
9742
10248
  var ariaAttributes = {};
9743
10249
  var styles = useMultiStyleConfig("Toggle", {});
9744
- var switchStyles = useStyleConfig("Switch");
10250
+ var switchStyles = useStyleConfig("Switch", {
10251
+ size: size
10252
+ });
9745
10253
  ariaAttributes["aria-label"] = labelText && footnote ? labelText + " - " + footnote : labelText;
9746
10254
  return createElement(Fragment, null, createElement(Box, {
9747
10255
  __css: _extends({}, styles, additionalStyles)
@@ -9752,7 +10260,8 @@ var Toggle$2 = /*#__PURE__*/forwardRef(function (props, ref) {
9752
10260
  isInvalid: isInvalid,
9753
10261
  isRequired: isRequired,
9754
10262
  ref: ref,
9755
- size: size === ToggleSizes.Large ? "lg" : "sm"
10263
+ size: size === ToggleSizes.Large ? "lg" : "sm",
10264
+ lineHeight: "1.5"
9756
10265
  }, isChecked !== undefined ? {
9757
10266
  isChecked: isChecked,
9758
10267
  onChange: onChange