@carbon/ibm-products 2.50.0 → 2.51.0-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (451) hide show
  1. package/README.md +1 -1
  2. package/css/index-full-carbon.css +56 -29
  3. package/css/index-full-carbon.css.map +1 -1
  4. package/css/index-full-carbon.min.css +1 -1
  5. package/css/index-full-carbon.min.css.map +1 -1
  6. package/css/index-without-carbon-released-only.css +3 -10
  7. package/css/index-without-carbon-released-only.css.map +1 -1
  8. package/css/index-without-carbon-released-only.min.css +1 -1
  9. package/css/index-without-carbon-released-only.min.css.map +1 -1
  10. package/css/index-without-carbon.css +3 -10
  11. package/css/index-without-carbon.css.map +1 -1
  12. package/css/index-without-carbon.min.css +1 -1
  13. package/css/index-without-carbon.min.css.map +1 -1
  14. package/css/index.css +34 -28
  15. package/css/index.css.map +1 -1
  16. package/css/index.min.css +1 -1
  17. package/css/index.min.css.map +1 -1
  18. package/es/components/ActionBar/ActionBarOverflowItems.js +5 -0
  19. package/es/components/AddSelect/AddSelectBody.js +1 -1
  20. package/es/components/BigNumbers/BigNumbers.js +1 -1
  21. package/es/components/Coachmark/utils/enums.js +1 -0
  22. package/es/components/ConditionBuilder/ConditionBuilder.js +26 -20
  23. package/es/components/ConditionBuilder/ConditionBuilder.types.d.ts +6 -2
  24. package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts +11 -8
  25. package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +44 -24
  26. package/es/components/CreateFullPage/CreateFullPage.d.ts +4 -2
  27. package/es/components/CreateFullPage/CreateFullPage.js +10 -3
  28. package/es/components/CreateFullPage/CreateFullPageStep.d.ts +3 -1
  29. package/es/components/CreateFullPage/CreateFullPageStep.js +5 -2
  30. package/es/components/Datagrid/Datagrid/Datagrid.d.ts +1 -1
  31. package/es/components/Datagrid/Datagrid/Datagrid.js +1 -1
  32. package/es/components/Datagrid/Datagrid/DatagridToolbar.js +12 -1
  33. package/es/components/Datagrid/Datagrid/DraggableElement.js +1 -0
  34. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +3 -8
  35. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +15 -13
  36. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +17 -2
  37. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +13 -2
  38. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +1 -12
  39. package/es/components/Datagrid/types/index.d.ts +4 -0
  40. package/es/components/Datagrid/useSelectRows.js +40 -19
  41. package/es/components/EditInPlace/EditInPlace.js +0 -3
  42. package/es/components/ExportModal/ExportModal.js +18 -5
  43. package/es/components/NotificationsPanel/NotificationsPanel.d.ts +5 -1
  44. package/es/components/NotificationsPanel/NotificationsPanel.js +14 -1
  45. package/es/components/OptionsTile/OptionsTile.d.ts +1 -1
  46. package/es/components/OptionsTile/OptionsTile.js +0 -1
  47. package/es/components/ProductiveCard/ProductiveCard.d.ts +4 -0
  48. package/es/components/ProductiveCard/ProductiveCard.js +4 -0
  49. package/es/components/ScrollGradient/ScrollGradient.js +1 -1
  50. package/es/components/SimpleHeader/SimpleHeader.d.ts +3 -1
  51. package/es/components/SimpleHeader/SimpleHeader.js +9 -2
  52. package/es/components/StringFormatter/StringFormatter.js +1 -1
  53. package/es/components/TagSet/TagSet.js +5 -0
  54. package/es/components/TagSet/TagSetOverflow.d.ts +4 -0
  55. package/es/components/TagSet/TagSetOverflow.js +13 -6
  56. package/es/components/Tearsheet/TearsheetShell.js +9 -2
  57. package/es/components/UserProfileImage/UserProfileImage.d.ts +1 -1
  58. package/es/components/UserProfileImage/UserProfileImage.js +1 -1
  59. package/es/global/js/utils/Wrap.d.ts +4 -0
  60. package/es/global/js/utils/Wrap.js +9 -3
  61. package/es/global/js/utils/devtools.js +1 -2
  62. package/es/node_modules/@carbon/icon-helpers/es/index.js +3 -3
  63. package/lib/_virtual/_commonjsHelpers.js +0 -2
  64. package/lib/_virtual/_rollupPluginBabelHelpers.js +2 -4
  65. package/lib/_virtual/index.js +0 -2
  66. package/lib/components/APIKeyModal/APIKeyDownloader.js +8 -14
  67. package/lib/components/APIKeyModal/APIKeyModal.js +70 -77
  68. package/lib/components/AboutModal/AboutModal.js +29 -36
  69. package/lib/components/ActionBar/ActionBar.js +26 -33
  70. package/lib/components/ActionBar/ActionBarItem.js +9 -16
  71. package/lib/components/ActionBar/ActionBarOverflowItems.js +23 -25
  72. package/lib/components/ActionSet/ActionSet.js +17 -24
  73. package/lib/components/AddSelect/AddSelect.js +62 -68
  74. package/lib/components/AddSelect/AddSelectBody.js +82 -89
  75. package/lib/components/AddSelect/AddSelectBreadcrumbs.js +6 -13
  76. package/lib/components/AddSelect/AddSelectColumn.js +29 -35
  77. package/lib/components/AddSelect/AddSelectFilter.js +30 -37
  78. package/lib/components/AddSelect/AddSelectFormControl.js +15 -21
  79. package/lib/components/AddSelect/AddSelectList.js +9 -16
  80. package/lib/components/AddSelect/AddSelectMetaPanel.js +16 -22
  81. package/lib/components/AddSelect/AddSelectRow.js +32 -39
  82. package/lib/components/AddSelect/AddSelectSidebar.js +29 -35
  83. package/lib/components/AddSelect/AddSelectSort.js +10 -16
  84. package/lib/components/AddSelect/add-select-utils.js +0 -2
  85. package/lib/components/AddSelect/hooks/useFocus.js +1 -1
  86. package/lib/components/AddSelect/hooks/useItemSort.js +0 -2
  87. package/lib/components/AddSelect/hooks/useParentSelect.js +1 -1
  88. package/lib/components/AddSelect/hooks/usePath.js +1 -1
  89. package/lib/components/BigNumbers/BigNumbers.js +39 -46
  90. package/lib/components/BigNumbers/constants.js +0 -2
  91. package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +35 -42
  92. package/lib/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +22 -29
  93. package/lib/components/Card/Card.js +73 -80
  94. package/lib/components/Card/CardFooter.js +28 -35
  95. package/lib/components/Card/CardHeader.js +37 -44
  96. package/lib/components/Carousel/Carousel.js +21 -28
  97. package/lib/components/Carousel/CarouselItem.js +5 -12
  98. package/lib/components/Cascade/Cascade.js +15 -22
  99. package/lib/components/Checklist/Checklist.js +50 -57
  100. package/lib/components/Checklist/Checklist.types.js +0 -2
  101. package/lib/components/Checklist/ChecklistChart.js +7 -15
  102. package/lib/components/Checklist/ChecklistIcon.js +7 -14
  103. package/lib/components/Coachmark/Coachmark.js +24 -31
  104. package/lib/components/Coachmark/CoachmarkDragbar.js +12 -19
  105. package/lib/components/Coachmark/CoachmarkHeader.js +9 -16
  106. package/lib/components/Coachmark/CoachmarkOverlay.js +14 -21
  107. package/lib/components/Coachmark/CoachmarkTagline.js +12 -19
  108. package/lib/components/Coachmark/utils/constants.js +0 -2
  109. package/lib/components/Coachmark/utils/context.js +0 -2
  110. package/lib/components/Coachmark/utils/enums.js +1 -2
  111. package/lib/components/Coachmark/utils/hooks.js +0 -2
  112. package/lib/components/CoachmarkBeacon/CoachmarkBeacon.js +10 -17
  113. package/lib/components/CoachmarkButton/CoachmarkButton.js +6 -13
  114. package/lib/components/CoachmarkFixed/CoachmarkFixed.js +13 -20
  115. package/lib/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +11 -18
  116. package/lib/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +25 -32
  117. package/lib/components/CoachmarkStack/CoachmarkStack.js +23 -30
  118. package/lib/components/CoachmarkStack/CoachmarkStackHome.js +29 -36
  119. package/lib/components/ComboButton/ComboButton.js +11 -18
  120. package/lib/components/ComboButton/ComboButtonItem/index.js +2 -8
  121. package/lib/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +34 -39
  122. package/lib/components/ConditionBuilder/ConditionBuilder.js +58 -59
  123. package/lib/components/ConditionBuilder/ConditionBuilder.types.d.ts +6 -2
  124. package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +18 -23
  125. package/lib/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +15 -20
  126. package/lib/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +20 -27
  127. package/lib/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +8 -12
  128. package/lib/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +4 -8
  129. package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts +11 -8
  130. package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +63 -47
  131. package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +25 -31
  132. package/lib/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +0 -2
  133. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +17 -23
  134. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +9 -15
  135. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +5 -11
  136. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +13 -19
  137. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.js +17 -23
  138. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +6 -12
  139. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +9 -15
  140. package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +27 -32
  141. package/lib/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +25 -30
  142. package/lib/components/ConditionBuilder/utils/handleKeyboardEvents.js +0 -2
  143. package/lib/components/ConditionBuilder/utils/useDataConfigs.js +0 -2
  144. package/lib/components/ConditionBuilder/utils/useTranslations.js +0 -2
  145. package/lib/components/ConditionBuilder/utils/util.js +0 -2
  146. package/lib/components/CreateFullPage/CreateFullPage.d.ts +4 -2
  147. package/lib/components/CreateFullPage/CreateFullPage.js +53 -53
  148. package/lib/components/CreateFullPage/CreateFullPageStep.d.ts +3 -1
  149. package/lib/components/CreateFullPage/CreateFullPageStep.js +27 -31
  150. package/lib/components/CreateInfluencer/CreateInfluencer.js +15 -22
  151. package/lib/components/CreateModal/CreateModal.js +22 -29
  152. package/lib/components/CreateSidePanel/CreateSidePanel.js +24 -31
  153. package/lib/components/CreateTearsheet/CreateTearsheet.js +26 -33
  154. package/lib/components/CreateTearsheet/CreateTearsheetDivider.js +3 -10
  155. package/lib/components/CreateTearsheet/CreateTearsheetStep.js +31 -38
  156. package/lib/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +24 -31
  157. package/lib/components/DataSpreadsheet/DataSpreadsheet.js +37 -44
  158. package/lib/components/DataSpreadsheet/DataSpreadsheetBody.js +54 -61
  159. package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.js +37 -44
  160. package/lib/components/DataSpreadsheet/hooks/useMoveActiveCell.js +0 -2
  161. package/lib/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +0 -2
  162. package/lib/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.js +0 -2
  163. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +0 -2
  164. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +0 -2
  165. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +0 -2
  166. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.js +0 -2
  167. package/lib/components/DataSpreadsheet/utils/checkActiveHeaderCell.js +0 -2
  168. package/lib/components/DataSpreadsheet/utils/checkForHoldingKey.js +0 -2
  169. package/lib/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +0 -2
  170. package/lib/components/DataSpreadsheet/utils/commonEventHandlers.js +1 -3
  171. package/lib/components/DataSpreadsheet/utils/createActiveCellFn.js +0 -2
  172. package/lib/components/DataSpreadsheet/utils/createCellSelectionArea.js +0 -2
  173. package/lib/components/DataSpreadsheet/utils/getCellSize.js +0 -2
  174. package/lib/components/DataSpreadsheet/utils/getSelectionAreaPoints.js +0 -2
  175. package/lib/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +0 -2
  176. package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.js +0 -2
  177. package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.js +0 -2
  178. package/lib/components/DataSpreadsheet/utils/handleCellDeletion.js +0 -2
  179. package/lib/components/DataSpreadsheet/utils/handleEditSubmit.js +1 -3
  180. package/lib/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +1 -3
  181. package/lib/components/DataSpreadsheet/utils/handleMultipleKeys.js +2 -4
  182. package/lib/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +0 -2
  183. package/lib/components/DataSpreadsheet/utils/removeCellSelections.js +0 -2
  184. package/lib/components/DataSpreadsheet/utils/selectAllCells.js +1 -3
  185. package/lib/components/Datagrid/Datagrid/Datagrid.d.ts +1 -1
  186. package/lib/components/Datagrid/Datagrid/Datagrid.js +10 -17
  187. package/lib/components/Datagrid/Datagrid/DatagridBody.js +5 -9
  188. package/lib/components/Datagrid/Datagrid/DatagridContent.js +43 -50
  189. package/lib/components/Datagrid/Datagrid/DatagridEmptyBody.js +4 -8
  190. package/lib/components/Datagrid/Datagrid/DatagridExpandedRow.js +6 -11
  191. package/lib/components/Datagrid/Datagrid/DatagridHead.js +2 -6
  192. package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +12 -17
  193. package/lib/components/Datagrid/Datagrid/DatagridRefBody.js +3 -8
  194. package/lib/components/Datagrid/Datagrid/DatagridRow.js +12 -17
  195. package/lib/components/Datagrid/Datagrid/DatagridSelectAll.js +4 -11
  196. package/lib/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +18 -23
  197. package/lib/components/Datagrid/Datagrid/DatagridSimpleBody.js +3 -8
  198. package/lib/components/Datagrid/Datagrid/DatagridToolbar.js +26 -20
  199. package/lib/components/Datagrid/Datagrid/DatagridVirtualBody.js +5 -9
  200. package/lib/components/Datagrid/Datagrid/DraggableElement.js +18 -22
  201. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +11 -12
  202. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +10 -11
  203. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +25 -31
  204. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +21 -30
  205. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +7 -13
  206. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +18 -20
  207. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +1 -7
  208. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +49 -39
  209. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +54 -48
  210. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +5 -11
  211. package/lib/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.js +11 -15
  212. package/lib/components/Datagrid/Datagrid/addons/Filtering/constants.js +0 -2
  213. package/lib/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +0 -2
  214. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +1 -1
  215. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +16 -31
  216. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +2 -6
  217. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +1 -1
  218. package/lib/components/Datagrid/Datagrid/addons/Filtering/motion/variants.js +0 -2
  219. package/lib/components/Datagrid/Datagrid/addons/Filtering/utils.js +0 -2
  220. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +18 -25
  221. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +32 -39
  222. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +2 -8
  223. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +0 -2
  224. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +0 -2
  225. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +0 -2
  226. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +0 -2
  227. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +0 -2
  228. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +12 -17
  229. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +11 -16
  230. package/lib/components/Datagrid/Datagrid/addons/Slug/DatagridSlug.js +2 -8
  231. package/lib/components/Datagrid/Datagrid/addons/stateReducer.js +0 -2
  232. package/lib/components/Datagrid/common-column-ids.js +0 -2
  233. package/lib/components/Datagrid/types/index.d.ts +4 -0
  234. package/lib/components/Datagrid/useActionsColumn.js +12 -17
  235. package/lib/components/Datagrid/useColumnCenterAlign.js +4 -9
  236. package/lib/components/Datagrid/useColumnRightAlign.js +4 -9
  237. package/lib/components/Datagrid/useCustomizeColumns.js +6 -7
  238. package/lib/components/Datagrid/useDatagrid.js +4 -8
  239. package/lib/components/Datagrid/useDefaultStringRenderer.js +5 -10
  240. package/lib/components/Datagrid/useDisableSelectRows.js +1 -1
  241. package/lib/components/Datagrid/useEditableCell.js +2 -2
  242. package/lib/components/Datagrid/useExpandedRow.js +3 -3
  243. package/lib/components/Datagrid/useFiltering.js +5 -5
  244. package/lib/components/Datagrid/useFlexResize.js +1 -1
  245. package/lib/components/Datagrid/useFloatingScroll.js +2 -6
  246. package/lib/components/Datagrid/useFocusRowExpander.js +0 -2
  247. package/lib/components/Datagrid/useInfiniteScroll.js +4 -8
  248. package/lib/components/Datagrid/useInitialColumnSort.js +0 -2
  249. package/lib/components/Datagrid/useInlineEdit.js +7 -12
  250. package/lib/components/Datagrid/useNestedRowExpander.js +5 -10
  251. package/lib/components/Datagrid/useNestedRows.js +3 -7
  252. package/lib/components/Datagrid/useOnRowClick.js +1 -1
  253. package/lib/components/Datagrid/useParentDimensions.js +1 -1
  254. package/lib/components/Datagrid/useResizeTable.js +1 -1
  255. package/lib/components/Datagrid/useRowExpander.js +5 -10
  256. package/lib/components/Datagrid/useRowIsMouseOver.js +2 -6
  257. package/lib/components/Datagrid/useRowRenderer.js +2 -2
  258. package/lib/components/Datagrid/useRowSize.js +2 -2
  259. package/lib/components/Datagrid/useSelectAllToggle.js +3 -8
  260. package/lib/components/Datagrid/useSelectRows.js +45 -29
  261. package/lib/components/Datagrid/useSkeletonRows.js +1 -1
  262. package/lib/components/Datagrid/useSortableColumns.js +8 -13
  263. package/lib/components/Datagrid/useStickyColumn.js +4 -9
  264. package/lib/components/Datagrid/utils/getAutoSizedColumnWidth.js +0 -2
  265. package/lib/components/Decorator/Decorator.js +16 -22
  266. package/lib/components/DecoratorBase/DecoratorBase.js +41 -48
  267. package/lib/components/DecoratorBase/DecoratorIcon.js +6 -13
  268. package/lib/components/DecoratorBase/utils.js +0 -2
  269. package/lib/components/DecoratorDualButton/DecoratorDualButton.js +21 -27
  270. package/lib/components/DecoratorLink/DecoratorLink.js +19 -25
  271. package/lib/components/DecoratorSingleButton/DecoratorSingleButton.js +19 -25
  272. package/lib/components/DelimitedList/DelimitedList.js +7 -14
  273. package/lib/components/DescriptionList/DescriptionList.js +8 -15
  274. package/lib/components/DescriptionList/DescriptionListBody.js +5 -12
  275. package/lib/components/DescriptionList/DescriptionListCell.js +5 -12
  276. package/lib/components/DescriptionList/DescriptionListRow.js +5 -12
  277. package/lib/components/DescriptionList/constants.js +0 -2
  278. package/lib/components/EditFullPage/EditFullPage.js +5 -12
  279. package/lib/components/EditInPlace/EditInPlace.js +35 -45
  280. package/lib/components/EditSidePanel/EditSidePanel.js +26 -33
  281. package/lib/components/EditTearsheet/EditTearsheet.js +24 -31
  282. package/lib/components/EditTearsheet/EditTearsheetForm.js +16 -23
  283. package/lib/components/EditTearsheetNarrow/EditTearsheetNarrow.js +5 -12
  284. package/lib/components/EditUpdateCards/EditUpdateCards.js +32 -39
  285. package/lib/components/EmptyStates/EmptyState.js +22 -29
  286. package/lib/components/EmptyStates/EmptyStateContent.js +18 -25
  287. package/lib/components/EmptyStates/EmptyStateIllustration.js +3 -7
  288. package/lib/components/EmptyStates/EmptyStateV2.js +25 -32
  289. package/lib/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +19 -26
  290. package/lib/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +19 -26
  291. package/lib/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +19 -26
  292. package/lib/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +19 -26
  293. package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +19 -26
  294. package/lib/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +19 -26
  295. package/lib/components/EmptyStates/assets/ErrorIllustration.js +53 -58
  296. package/lib/components/EmptyStates/assets/NoDataIllustration.js +43 -48
  297. package/lib/components/EmptyStates/assets/NoTagsIllustration.js +114 -119
  298. package/lib/components/EmptyStates/assets/NotFoundIllustration.js +84 -89
  299. package/lib/components/EmptyStates/assets/NotificationsIllustration.js +81 -86
  300. package/lib/components/EmptyStates/assets/UnauthorizedIllustration.js +74 -79
  301. package/lib/components/ExportModal/ExportModal.js +59 -53
  302. package/lib/components/ExpressiveCard/ExpressiveCard.js +28 -34
  303. package/lib/components/FeatureFlags/index.js +3 -9
  304. package/lib/components/FilterPanel/FilterPanel.js +7 -14
  305. package/lib/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.js +10 -17
  306. package/lib/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.js +13 -20
  307. package/lib/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.js +9 -16
  308. package/lib/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.js +17 -24
  309. package/lib/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.js +11 -18
  310. package/lib/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.js +9 -16
  311. package/lib/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.js +9 -16
  312. package/lib/components/FilterSummary/FilterSummary.js +22 -28
  313. package/lib/components/FullPageError/FullPageError.js +21 -28
  314. package/lib/components/FullPageError/assets/Error403SVG.js +129 -135
  315. package/lib/components/FullPageError/assets/Error404SVG.js +114 -120
  316. package/lib/components/FullPageError/assets/ErrorGenericSVG.js +128 -134
  317. package/lib/components/GetStartedCard/GetStartedCard.js +16 -22
  318. package/lib/components/Guidebanner/Guidebanner.js +32 -39
  319. package/lib/components/Guidebanner/GuidebannerElement.js +10 -17
  320. package/lib/components/Guidebanner/GuidebannerElementButton.js +9 -16
  321. package/lib/components/Guidebanner/GuidebannerElementLink.js +5 -12
  322. package/lib/components/HTTPErrors/HTTPError403/HTTPError403.js +5 -12
  323. package/lib/components/HTTPErrors/HTTPError404/HTTPError404.js +5 -12
  324. package/lib/components/HTTPErrors/HTTPErrorContent.js +5 -11
  325. package/lib/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +5 -12
  326. package/lib/components/HTTPErrors/assets/HTTPErrorSvg403.js +358 -364
  327. package/lib/components/HTTPErrors/assets/HTTPErrorSvg404.js +309 -315
  328. package/lib/components/HTTPErrors/assets/HTTPErrorSvgOther.js +321 -327
  329. package/lib/components/ImportModal/ImportModal.js +48 -55
  330. package/lib/components/InlineTip/InlineTip.js +38 -45
  331. package/lib/components/InlineTip/InlineTipButton.js +5 -12
  332. package/lib/components/InlineTip/InlineTipLink.js +6 -13
  333. package/lib/components/InlineTip/utils.js +2 -4
  334. package/lib/components/InterstitialScreen/InterstitialScreen.js +73 -80
  335. package/lib/components/InterstitialScreenView/InterstitialScreenView.js +6 -13
  336. package/lib/components/InterstitialScreenViewModule/InterstitialScreenViewModule.js +8 -15
  337. package/lib/components/MultiAddSelect/MultiAddSelect.js +45 -51
  338. package/lib/components/Nav/Nav.js +14 -21
  339. package/lib/components/Nav/NavItem.js +19 -24
  340. package/lib/components/Nav/NavItemLink.js +4 -8
  341. package/lib/components/Nav/NavList.js +12 -17
  342. package/lib/components/NonLinearReading/NonLinearReading.js +12 -19
  343. package/lib/components/NotificationsPanel/NotificationsPanel.d.ts +5 -1
  344. package/lib/components/NotificationsPanel/NotificationsPanel.js +104 -98
  345. package/lib/components/NotificationsPanel/utils.js +0 -2
  346. package/lib/components/OptionsTile/OptionsTile.d.ts +1 -1
  347. package/lib/components/OptionsTile/OptionsTile.js +40 -48
  348. package/lib/components/PageHeader/PageHeader.js +105 -112
  349. package/lib/components/PageHeader/PageHeaderTitle.js +23 -30
  350. package/lib/components/PageHeader/PageHeaderUtils.js +2 -9
  351. package/lib/components/ProductiveCard/ProductiveCard.d.ts +4 -0
  352. package/lib/components/ProductiveCard/ProductiveCard.js +39 -41
  353. package/lib/components/RemoveModal/RemoveModal.js +27 -34
  354. package/lib/components/Saving/Saving.js +27 -34
  355. package/lib/components/ScrollGradient/ScrollGradient.js +17 -24
  356. package/lib/components/ScrollGradient/constants.js +0 -2
  357. package/lib/components/SearchBar/SearchBar.js +22 -29
  358. package/lib/components/SidePanel/SidePanel.js +66 -73
  359. package/lib/components/SidePanel/constants.js +0 -2
  360. package/lib/components/SidePanel/motion/variants.js +0 -2
  361. package/lib/components/SimpleHeader/SimpleHeader.d.ts +3 -1
  362. package/lib/components/SimpleHeader/SimpleHeader.js +27 -27
  363. package/lib/components/SingleAddSelect/SingleAddSelect.js +21 -27
  364. package/lib/components/StatusIcon/StatusIcon.js +52 -59
  365. package/lib/components/StatusIndicator/StatusIndicator.js +13 -20
  366. package/lib/components/StatusIndicator/StatusIndicatorStep.js +14 -21
  367. package/lib/components/SteppedAnimatedMedia/SteppedAnimatedMedia.js +8 -17
  368. package/lib/components/StringFormatter/StringFormatter.js +12 -19
  369. package/lib/components/StringFormatter/utils/enums.js +0 -2
  370. package/lib/components/TagOverflow/TagOverflow.js +26 -33
  371. package/lib/components/TagOverflow/TagOverflowModal.js +17 -24
  372. package/lib/components/TagOverflow/TagOverflowPopover.js +22 -29
  373. package/lib/components/TagOverflow/constants.js +0 -2
  374. package/lib/components/TagSet/TagSet.js +39 -41
  375. package/lib/components/TagSet/TagSetModal.js +16 -23
  376. package/lib/components/TagSet/TagSetOverflow.d.ts +4 -0
  377. package/lib/components/TagSet/TagSetOverflow.js +32 -32
  378. package/lib/components/Tearsheet/Tearsheet.js +23 -29
  379. package/lib/components/Tearsheet/TearsheetNarrow.js +18 -24
  380. package/lib/components/Tearsheet/TearsheetShell.js +63 -63
  381. package/lib/components/Toolbar/Toolbar.js +3 -10
  382. package/lib/components/Toolbar/ToolbarButton.js +3 -10
  383. package/lib/components/Toolbar/ToolbarGroup.js +2 -9
  384. package/lib/components/TooltipTrigger/TooltipTrigger.js +4 -11
  385. package/lib/components/TruncatedList/TruncatedList.js +15 -22
  386. package/lib/components/UserAvatar/UserAvatar.js +18 -25
  387. package/lib/components/UserProfileImage/UserProfileImage.d.ts +1 -1
  388. package/lib/components/UserProfileImage/UserProfileImage.js +25 -32
  389. package/lib/components/WebTerminal/WebTerminal.js +26 -33
  390. package/lib/components/WebTerminal/WebTerminalContentWrapper.js +4 -11
  391. package/lib/components/WebTerminal/hooks/index.js +2 -8
  392. package/lib/components/_Canary/Canary.js +7 -14
  393. package/lib/feature-flags.js +3 -4
  394. package/lib/global/js/hooks/useActiveElement.js +0 -2
  395. package/lib/global/js/hooks/useClickOutside.js +0 -2
  396. package/lib/global/js/hooks/useControllableState.js +2 -4
  397. package/lib/global/js/hooks/useCreateComponentFocus.js +1 -3
  398. package/lib/global/js/hooks/useCreateComponentStepChange.js +0 -2
  399. package/lib/global/js/hooks/useFocus.js +1 -3
  400. package/lib/global/js/hooks/useIsomorphicEffect.js +0 -2
  401. package/lib/global/js/hooks/usePortalTarget.js +0 -2
  402. package/lib/global/js/hooks/usePrefersReducedMotion.js +1 -1
  403. package/lib/global/js/hooks/usePrefix.js +1 -3
  404. package/lib/global/js/hooks/usePreviousValue.js +0 -2
  405. package/lib/global/js/hooks/useResetCreateComponent.js +0 -2
  406. package/lib/global/js/hooks/useResizeObserver.js +0 -2
  407. package/lib/global/js/hooks/useRetrieveFormTitles.js +0 -2
  408. package/lib/global/js/hooks/useRetrieveStepData.js +0 -2
  409. package/lib/global/js/hooks/useValidCreateStepCount.js +0 -2
  410. package/lib/global/js/hooks/useWindowResize.js +1 -3
  411. package/lib/global/js/hooks/useWindowScroll.js +1 -3
  412. package/lib/global/js/package-settings.js +1 -1
  413. package/lib/global/js/utils/Wrap.d.ts +4 -0
  414. package/lib/global/js/utils/Wrap.js +16 -16
  415. package/lib/global/js/utils/deepCloneObject.js +1 -3
  416. package/lib/global/js/utils/devtools.js +0 -2
  417. package/lib/global/js/utils/getBezierValues.js +0 -2
  418. package/lib/global/js/utils/getFocusableElements.js +0 -2
  419. package/lib/global/js/utils/getNodeTextContent.js +1 -3
  420. package/lib/global/js/utils/getNumberOfHiddenSteps.js +0 -2
  421. package/lib/global/js/utils/getScrollbarWidth.js +0 -2
  422. package/lib/global/js/utils/keyboardNavigation.js +0 -2
  423. package/lib/global/js/utils/lastIndexInArray.js +0 -2
  424. package/lib/global/js/utils/motionConstants.js +0 -2
  425. package/lib/global/js/utils/pconsole.js +1 -1
  426. package/lib/global/js/utils/props-helper.js +10 -12
  427. package/lib/global/js/utils/rangeWithCallback.js +0 -2
  428. package/lib/global/js/utils/scrollableAncestor.js +1 -3
  429. package/lib/global/js/utils/uuidv4.js +1 -1
  430. package/lib/global/js/utils/wait.js +1 -1
  431. package/lib/global/js/utils/wrapFocus.js +1 -1
  432. package/lib/index.js +19 -21
  433. package/lib/node_modules/@carbon/colors/es/index.js +0 -2
  434. package/lib/node_modules/@carbon/icon-helpers/es/index.js +6 -8
  435. package/lib/node_modules/@carbon/icons-react/es/Icon.js +14 -18
  436. package/lib/node_modules/@carbon/icons-react/es/generated/bucket-2.js +525 -531
  437. package/lib/node_modules/@carbon/icons-react/es/generated/bucket-9.js +500 -506
  438. package/lib/node_modules/@carbon/icons-react/es/iconPropTypes-4cbeb95d.js +1 -3
  439. package/lib/node_modules/object-assign/index.js +0 -2
  440. package/lib/node_modules/prop-types/checkPropTypes.js +2 -4
  441. package/lib/node_modules/prop-types/factoryWithThrowingShims.js +0 -2
  442. package/lib/node_modules/prop-types/factoryWithTypeCheckers.js +4 -10
  443. package/lib/node_modules/prop-types/index.js +2 -6
  444. package/lib/node_modules/prop-types/lib/ReactPropTypesSecret.js +0 -2
  445. package/lib/node_modules/prop-types/lib/has.js +0 -2
  446. package/lib/settings.js +9 -15
  447. package/package.json +11 -11
  448. package/scss/components/EditInPlace/_edit-in-place.scss +0 -11
  449. package/scss/components/SidePanel/_side-panel.scss +1 -0
  450. package/scss/components/TagSet/_tag-set.scss +2 -0
  451. package/telemetry.yml +3 -3
@@ -7,707 +7,701 @@
7
7
 
8
8
  'use strict';
9
9
 
10
- Object.defineProperty(exports, '__esModule', { value: true });
11
-
12
10
  var React = require('react');
13
11
  var index = require('../../../node_modules/prop-types/index.js');
14
12
 
15
- function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
16
-
17
- var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
18
-
19
13
  var _g, _defs;
20
14
  var Error403SVG = function Error403SVG(_ref) {
21
15
  var className = _ref.className,
22
16
  title = _ref.title;
23
- return /*#__PURE__*/React__default["default"].createElement("svg", {
17
+ return /*#__PURE__*/React.createElement("svg", {
24
18
  viewBox: "0 0 750 570",
25
19
  fill: "none",
26
20
  className: className,
27
21
  xmlns: "http://www.w3.org/2000/svg",
28
22
  "aria-label": title
29
- }, _g || (_g = /*#__PURE__*/React__default["default"].createElement("g", {
23
+ }, _g || (_g = /*#__PURE__*/React.createElement("g", {
30
24
  clipPath: "url(#clip0_0_2401)"
31
- }, /*#__PURE__*/React__default["default"].createElement("path", {
25
+ }, /*#__PURE__*/React.createElement("path", {
32
26
  d: "M555.347 83.237H485.983V152.601H555.347V83.237Z",
33
27
  fill: "#F3F3F3",
34
28
  stroke: "black",
35
29
  strokeWidth: "0.894136",
36
30
  strokeMiterlimit: "10"
37
- }), /*#__PURE__*/React__default["default"].createElement("path", {
31
+ }), /*#__PURE__*/React.createElement("path", {
38
32
  d: "M512.922 117.919H528.408",
39
33
  stroke: "black",
40
34
  strokeWidth: "0.894136",
41
35
  strokeMiterlimit: "10"
42
- }), /*#__PURE__*/React__default["default"].createElement("path", {
36
+ }), /*#__PURE__*/React.createElement("path", {
43
37
  d: "M520.665 110.176V125.662",
44
38
  stroke: "black",
45
39
  strokeWidth: "0.894136",
46
40
  strokeMiterlimit: "10"
47
- }), /*#__PURE__*/React__default["default"].createElement("path", {
41
+ }), /*#__PURE__*/React.createElement("path", {
48
42
  d: "M541.474 138.29L549.525 165.13L554.896 157.079L564.29 166.474L569.658 161.107L560.263 151.712L568.314 146.341L541.474 138.29Z",
49
43
  fill: "#F3F3F3",
50
44
  stroke: "black",
51
45
  strokeWidth: "0.894136",
52
46
  strokeMiterlimit: "10"
53
- }), /*#__PURE__*/React__default["default"].createElement("path", {
47
+ }), /*#__PURE__*/React.createElement("path", {
54
48
  d: "M488.445 101.883C498.022 101.883 505.786 94.1191 505.786 84.5419C505.786 74.9647 498.022 67.2009 488.445 67.2009C478.868 67.2009 471.104 74.9647 471.104 84.5419C471.104 94.1191 478.868 101.883 488.445 101.883Z",
55
49
  fill: "#F3F3F3",
56
50
  stroke: "black",
57
51
  strokeWidth: "0.894136",
58
52
  strokeMiterlimit: "10"
59
- }), /*#__PURE__*/React__default["default"].createElement("path", {
53
+ }), /*#__PURE__*/React.createElement("path", {
60
54
  d: "M482.662 78.763L494.224 90.3208",
61
55
  stroke: "black",
62
56
  strokeWidth: "0.894136",
63
57
  strokeMiterlimit: "10"
64
- }), /*#__PURE__*/React__default["default"].createElement("path", {
58
+ }), /*#__PURE__*/React.createElement("path", {
65
59
  d: "M494.224 78.763L482.662 90.3208",
66
60
  stroke: "black",
67
61
  strokeWidth: "0.894136",
68
62
  strokeMiterlimit: "10"
69
- }), /*#__PURE__*/React__default["default"].createElement("path", {
63
+ }), /*#__PURE__*/React.createElement("path", {
70
64
  d: "M236.272 208.092H749.566V520.231H555.347",
71
65
  fill: "#F3F3F3"
72
- }), /*#__PURE__*/React__default["default"].createElement("path", {
66
+ }), /*#__PURE__*/React.createElement("path", {
73
67
  d: "M236.272 208.092H749.566V520.231H555.347",
74
68
  stroke: "black",
75
69
  strokeWidth: "0.894136",
76
70
  strokeMiterlimit: "10"
77
- }), /*#__PURE__*/React__default["default"].createElement("path", {
71
+ }), /*#__PURE__*/React.createElement("path", {
78
72
  d: "M145.053 328.006V319.318",
79
73
  stroke: "black",
80
74
  strokeWidth: "0.894136",
81
75
  strokeMiterlimit: "10"
82
- }), /*#__PURE__*/React__default["default"].createElement("path", {
76
+ }), /*#__PURE__*/React.createElement("path", {
83
77
  d: "M127.63 313.509L121.821 319.318",
84
78
  stroke: "black",
85
79
  strokeWidth: "0.894136",
86
80
  strokeMiterlimit: "10"
87
- }), /*#__PURE__*/React__default["default"].createElement("path", {
81
+ }), /*#__PURE__*/React.createElement("path", {
88
82
  d: "M162.477 313.509L168.286 319.318",
89
83
  stroke: "black",
90
84
  strokeWidth: "0.894136",
91
85
  strokeMiterlimit: "10"
92
- }), /*#__PURE__*/React__default["default"].createElement("path", {
86
+ }), /*#__PURE__*/React.createElement("path", {
93
87
  d: "M145.053 121.387V278.662",
94
88
  stroke: "black",
95
89
  strokeWidth: "0.894136",
96
90
  strokeMiterlimit: "10"
97
- }), /*#__PURE__*/React__default["default"].createElement("path", {
91
+ }), /*#__PURE__*/React.createElement("path", {
98
92
  d: "M167.553 307.699C168.03 305.844 168.286 303.897 168.286 301.89C168.286 289.058 157.886 278.658 145.053 278.658C132.221 278.658 121.821 289.058 121.821 301.89C121.821 303.897 122.077 305.844 122.553 307.699H167.553Z",
99
93
  fill: "#F3F3F3",
100
94
  stroke: "black",
101
95
  strokeWidth: "0.894136",
102
96
  strokeMiterlimit: "10"
103
- }), /*#__PURE__*/React__default["default"].createElement("path", {
97
+ }), /*#__PURE__*/React.createElement("path", {
104
98
  d: "M150.863 307.699C150.863 310.908 148.262 313.509 145.053 313.509C141.845 313.509 139.244 310.908 139.244 307.699H150.858H150.863Z",
105
99
  fill: "#F3F3F3",
106
100
  stroke: "black",
107
101
  strokeWidth: "0.894136",
108
102
  strokeMiterlimit: "10"
109
- }), /*#__PURE__*/React__default["default"].createElement("path", {
103
+ }), /*#__PURE__*/React.createElement("path", {
110
104
  d: "M87.1387 492.486H83.6705V554.913H87.1387V492.486Z",
111
105
  fill: "#F3F3F3",
112
106
  stroke: "black",
113
107
  strokeWidth: "0.894136",
114
108
  strokeMiterlimit: "10"
115
- }), /*#__PURE__*/React__default["default"].createElement("path", {
109
+ }), /*#__PURE__*/React.createElement("path", {
116
110
  d: "M121.821 551.445H48.9884V554.913H121.821V551.445Z",
117
111
  fill: "#F3F3F3",
118
112
  stroke: "black",
119
113
  strokeWidth: "0.894136",
120
114
  strokeMiterlimit: "10"
121
- }), /*#__PURE__*/React__default["default"].createElement("path", {
115
+ }), /*#__PURE__*/React.createElement("path", {
122
116
  d: "M57.6546 568.786C60.5301 568.786 62.8612 566.457 62.8612 563.584C62.8612 560.711 60.5301 558.382 57.6546 558.382C54.779 558.382 52.4479 560.711 52.4479 563.584C52.4479 566.457 54.779 568.786 57.6546 568.786Z",
123
117
  fill: "#F3F3F3",
124
118
  stroke: "black",
125
119
  strokeWidth: "0.894136",
126
120
  strokeMiterlimit: "10"
127
- }), /*#__PURE__*/React__default["default"].createElement("path", {
121
+ }), /*#__PURE__*/React.createElement("path", {
128
122
  d: "M75.0043 568.786C77.8799 568.786 80.211 566.457 80.211 563.584C80.211 560.711 77.8799 558.382 75.0043 558.382C72.1288 558.382 69.7977 560.711 69.7977 563.584C69.7977 566.457 72.1288 568.786 75.0043 568.786Z",
129
123
  fill: "#F3F3F3",
130
124
  stroke: "black",
131
125
  strokeWidth: "0.894136",
132
126
  strokeMiterlimit: "10"
133
- }), /*#__PURE__*/React__default["default"].createElement("path", {
127
+ }), /*#__PURE__*/React.createElement("path", {
134
128
  d: "M116.614 568.786C119.49 568.786 121.821 566.457 121.821 563.584C121.821 560.711 119.49 558.382 116.614 558.382C113.739 558.382 111.407 560.711 111.407 563.584C111.407 566.457 113.739 568.786 116.614 568.786Z",
135
129
  fill: "#F3F3F3",
136
130
  stroke: "black",
137
131
  strokeWidth: "0.894136",
138
132
  strokeMiterlimit: "10"
139
- }), /*#__PURE__*/React__default["default"].createElement("path", {
133
+ }), /*#__PURE__*/React.createElement("path", {
140
134
  d: "M40.3179 492.486H130.491C131.449 492.486 132.225 491.709 132.225 490.751V480.347C132.225 479.389 131.449 478.613 130.491 478.613H40.3179C39.3602 478.613 38.5838 479.389 38.5838 480.347V490.751C38.5838 491.709 39.3602 492.486 40.3179 492.486Z",
141
135
  fill: "#F3F3F3",
142
136
  stroke: "black",
143
137
  strokeWidth: "0.894136",
144
138
  strokeMiterlimit: "10"
145
- }), /*#__PURE__*/React__default["default"].createElement("path", {
139
+ }), /*#__PURE__*/React.createElement("path", {
146
140
  d: "M132.36 549.98C132.36 549.811 132.308 549.642 132.212 549.503L128.887 544.517L127.118 537.585C127.118 534.711 124.79 532.383 121.916 532.383C119.042 532.383 116.714 534.711 116.714 537.585L115.014 547.986V550.587C115.014 551.064 115.405 551.454 115.881 551.454H131.493C131.974 551.454 132.36 551.064 132.36 550.587V549.984V549.98Z",
147
141
  fill: "#F3F3F3",
148
142
  stroke: "black",
149
143
  strokeWidth: "0.894136",
150
144
  strokeMiterlimit: "10"
151
- }), /*#__PURE__*/React__default["default"].createElement("path", {
145
+ }), /*#__PURE__*/React.createElement("path", {
152
146
  d: "M114.113 551.454H142.725V549.72H114.113V551.454Z",
153
147
  fill: "#F3F3F3",
154
148
  stroke: "black",
155
149
  strokeWidth: "0.894136",
156
150
  strokeMiterlimit: "10"
157
- }), /*#__PURE__*/React__default["default"].createElement("path", {
151
+ }), /*#__PURE__*/React.createElement("path", {
158
152
  d: "M116.15 541.053C116.15 541.053 117.863 542.051 120.186 542.276C121.578 542.41 123.494 541.036 123.494 541.036C123.494 541.036 125.384 539.315 127.118 539.315C127.647 539.315 128.957 540.082 129.889 541.235C130.114 541.513 130.617 542.202 131.272 542.887C131.415 543.035 131.562 543.178 131.705 543.316C132.264 543.841 135.685 544.179 137.003 544.517C140.055 545.302 141.863 546.824 141.863 549.72H114.984L114.997 547.986H114.984C114.984 544.517 116.15 541.053 116.15 541.053Z",
159
153
  fill: "#F3F3F3",
160
154
  stroke: "black",
161
155
  strokeWidth: "0.894136",
162
156
  strokeMiterlimit: "10"
163
- }), /*#__PURE__*/React__default["default"].createElement("path", {
157
+ }), /*#__PURE__*/React.createElement("path", {
164
158
  d: "M123.494 541.036L128.757 544.509L136.999 544.517C132.36 543.871 130.331 541.786 129.884 541.235C128.952 540.082 127.647 539.315 127.114 539.315C125.38 539.315 123.49 541.036 123.49 541.036H123.494Z",
165
159
  fill: "#F3F3F3",
166
160
  stroke: "black",
167
161
  strokeWidth: "0.894136",
168
162
  strokeMiterlimit: "10"
169
- }), /*#__PURE__*/React__default["default"].createElement("path", {
163
+ }), /*#__PURE__*/React.createElement("path", {
170
164
  d: "M108.85 567.312C108.85 567.143 108.798 566.974 108.702 566.835L105.377 561.85L103.608 554.918C103.608 552.043 101.28 549.715 98.4061 549.715C95.5318 549.715 93.2038 552.043 93.2038 554.918L91.5043 565.318V567.919C91.5043 568.396 91.8945 568.786 92.3714 568.786H107.983C108.464 568.786 108.85 568.396 108.85 567.919V567.316V567.312Z",
171
165
  fill: "#F3F3F3",
172
166
  stroke: "black",
173
167
  strokeWidth: "0.894136",
174
168
  strokeMiterlimit: "10"
175
- }), /*#__PURE__*/React__default["default"].createElement("path", {
169
+ }), /*#__PURE__*/React.createElement("path", {
176
170
  d: "M90.6069 568.786H119.22V567.052H90.6069V568.786Z",
177
171
  fill: "#F3F3F3",
178
172
  stroke: "black",
179
173
  strokeWidth: "0.894136",
180
174
  strokeMiterlimit: "10"
181
- }), /*#__PURE__*/React__default["default"].createElement("path", {
175
+ }), /*#__PURE__*/React.createElement("path", {
182
176
  d: "M92.6402 558.386C92.6402 558.386 94.3526 559.383 96.6763 559.608C98.0679 559.743 99.9841 558.368 99.9841 558.368C99.9841 558.368 101.874 556.647 103.608 556.647C104.137 556.647 105.447 557.415 106.379 558.568C106.604 558.845 107.107 559.535 107.762 560.22C107.905 560.367 108.052 560.51 108.195 560.649C108.754 561.173 112.175 561.512 113.493 561.85C116.545 562.634 118.353 564.156 118.353 567.052H91.474L91.487 565.318H91.474C91.474 561.85 92.6402 558.386 92.6402 558.386Z",
183
177
  fill: "#F3F3F3",
184
178
  stroke: "black",
185
179
  strokeWidth: "0.894136",
186
180
  strokeMiterlimit: "10"
187
- }), /*#__PURE__*/React__default["default"].createElement("path", {
181
+ }), /*#__PURE__*/React.createElement("path", {
188
182
  d: "M99.9841 558.368L105.247 561.841L113.488 561.85C108.85 561.204 106.821 559.119 106.374 558.568C105.442 557.415 104.137 556.647 103.604 556.647C101.87 556.647 99.9797 558.368 99.9797 558.368H99.9841Z",
189
183
  fill: "#F3F3F3",
190
184
  stroke: "black",
191
185
  strokeWidth: "0.894136",
192
186
  strokeMiterlimit: "10"
193
- }), /*#__PURE__*/React__default["default"].createElement("path", {
187
+ }), /*#__PURE__*/React.createElement("path", {
194
188
  d: "M56.8699 447.373H93.2861L125.718 449.436C128.931 450.212 136.136 451.201 135.694 461.267L132.225 537.568H111.416V478.608H55.9248L56.8699 447.369V447.373Z",
195
189
  fill: "#F3F3F3",
196
190
  stroke: "black",
197
191
  strokeWidth: "0.894136",
198
192
  strokeMiterlimit: "10"
199
- }), /*#__PURE__*/React__default["default"].createElement("path", {
193
+ }), /*#__PURE__*/React.createElement("path", {
200
194
  d: "M35.1156 443.931C35.1156 443.931 35.1416 450.867 35.1416 457.405C35.1416 460.509 35.9436 463.171 37.0448 466.474C37.3049 467.259 38.5708 469.405 38.5708 469.405C40.1445 471.763 43.7254 475.201 49.565 477.039C59.8483 480.282 81.1517 483.815 81.1517 483.815L88.8772 554.913H107.952L105.529 474.694C105.225 470.948 103.097 467.593 99.8324 465.724L69.802 443.805L35.1199 443.926L35.1156 443.931Z",
201
195
  fill: "#F3F3F3",
202
196
  stroke: "black",
203
197
  strokeWidth: "0.894136",
204
198
  strokeMiterlimit: "10"
205
- }), /*#__PURE__*/React__default["default"].createElement("path", {
199
+ }), /*#__PURE__*/React.createElement("path", {
206
200
  d: "M61.1271 376.275H76.3396C79.8078 376.275 91.2919 380.614 94.4263 382.097C97.0101 383.319 99.0607 385.73 99.6286 388.821C101.146 397.032 103.387 412.344 103.387 412.344L108.017 431.467C108.017 431.467 103.582 445.639 96.7587 445.639C93.2904 445.639 37.63 440.844 29.9349 440.462C27.88 440.358 23.8005 437.588 23.9913 433.227C24.5375 420.637 27.737 405.299 30.1517 390.633C30.906 386.042 34.6777 383.324 37.2615 382.643C42.9537 381.143 57.6676 376.279 61.1358 376.279L61.1271 376.275Z",
207
201
  fill: "#F3F3F3",
208
202
  stroke: "black",
209
203
  strokeWidth: "0.894136",
210
204
  strokeMiterlimit: "10"
211
- }), /*#__PURE__*/React__default["default"].createElement("path", {
205
+ }), /*#__PURE__*/React.createElement("path", {
212
206
  d: "M139.912 431.749H133.21V438.685H139.912C139.912 438.685 143.38 440.419 145.114 440.419H153.386L153.451 430.014H148.582C148.582 430.014 150.802 428.731 151.227 428.636C151.652 428.545 155.519 429.304 155.519 426.546L151.283 426.438L146.077 427.045L140.146 431.749H139.912Z",
213
207
  fill: "#F3F3F3",
214
208
  stroke: "black",
215
209
  strokeWidth: "0.894136",
216
210
  strokeMiterlimit: "10"
217
- }), /*#__PURE__*/React__default["default"].createElement("path", {
211
+ }), /*#__PURE__*/React.createElement("path", {
218
212
  d: "M154.613 424.812V428.714H150.277V438.251H154.613V440.419H166.751V424.812H154.613ZM154.613 436.951H151.578V430.014H154.613V436.951Z",
219
213
  fill: "#F3F3F3",
220
214
  stroke: "black",
221
215
  strokeWidth: "0.894136",
222
216
  strokeMiterlimit: "10"
223
- }), /*#__PURE__*/React__default["default"].createElement("path", {
217
+ }), /*#__PURE__*/React.createElement("path", {
224
218
  d: "M154.552 439.517C154.379 440.068 153.867 440.419 153.316 440.419C153.316 440.419 153.299 440.419 153.269 440.419C153.156 440.419 153.035 440.397 152.918 440.358L152.658 440.237L149.84 438.915C149.384 438.767 149.133 438.282 149.28 437.822C149.428 437.367 149.913 437.116 150.368 437.263L151.682 437.506L153.316 437.809L153.403 437.827L153.711 437.883C153.936 437.957 154.131 438.082 154.279 438.251C154.582 438.581 154.699 439.062 154.552 439.517Z",
225
219
  fill: "#F3F3F3",
226
220
  stroke: "black",
227
221
  strokeWidth: "0.894136",
228
222
  strokeMiterlimit: "10"
229
- }), /*#__PURE__*/React__default["default"].createElement("path", {
223
+ }), /*#__PURE__*/React.createElement("path", {
230
224
  d: "M153.711 437.883L153.403 437.827C153.507 437.831 153.611 437.848 153.711 437.883Z",
231
225
  fill: "#F3F3F3",
232
226
  stroke: "black",
233
227
  strokeWidth: "0.894136",
234
228
  strokeMiterlimit: "10"
235
- }), /*#__PURE__*/React__default["default"].createElement("path", {
229
+ }), /*#__PURE__*/React.createElement("path", {
236
230
  d: "M154.179 435.65C154.179 436.37 153.594 436.951 152.879 436.951L147.676 436.517C147.195 436.517 146.809 436.132 146.809 435.65C146.809 435.169 147.195 434.783 147.676 434.783C147.676 434.783 146.376 434.77 146.376 433.738C146.376 432.975 146.762 432.616 147.243 432.616H148.27C148.171 432.173 148.457 431.688 148.886 431.527C149.51 431.293 151.244 430.578 151.244 430.578L152.285 430.162C152.285 430.162 152.766 430.014 152.874 430.014H152.879C153.451 430.014 153.971 430.392 154.132 430.968C154.283 431.527 154.053 432.1 153.594 432.399C153.945 432.633 154.179 433.032 154.179 433.483C154.179 433.934 153.945 434.337 153.594 434.566C153.945 434.801 154.179 435.199 154.179 435.65Z",
237
231
  fill: "#F3F3F3",
238
232
  stroke: "black",
239
233
  strokeWidth: "0.894136",
240
234
  strokeMiterlimit: "10"
241
- }), /*#__PURE__*/React__default["default"].createElement("path", {
235
+ }), /*#__PURE__*/React.createElement("path", {
242
236
  d: "M208.526 440.462V568.786H194.653V450.867H14.3063V568.786H0.433502V440.462H208.526Z",
243
237
  fill: "#F3F3F3",
244
238
  stroke: "black",
245
239
  strokeWidth: "0.894136",
246
240
  strokeMiterlimit: "10"
247
- }), /*#__PURE__*/React__default["default"].createElement("path", {
241
+ }), /*#__PURE__*/React.createElement("path", {
248
242
  d: "M208.526 440.436H194.653V440.462H208.526V440.436Z",
249
243
  fill: "#F3F3F3",
250
244
  stroke: "black",
251
245
  strokeWidth: "0.894136",
252
246
  strokeMiterlimit: "10"
253
- }), /*#__PURE__*/React__default["default"].createElement("path", {
247
+ }), /*#__PURE__*/React.createElement("path", {
254
248
  d: "M91.539 413.566L93.8974 413.064L90.6113 397.903L91.539 413.566Z",
255
249
  fill: "#F3F3F3",
256
250
  stroke: "black",
257
251
  strokeWidth: "0.894136",
258
252
  strokeMiterlimit: "10"
259
- }), /*#__PURE__*/React__default["default"].createElement("path", {
253
+ }), /*#__PURE__*/React.createElement("path", {
260
254
  d: "M76.0058 436.994H31.6474V440.462H76.0058V436.994Z",
261
255
  fill: "#F3F3F3",
262
256
  stroke: "black",
263
257
  strokeWidth: "0.894136",
264
258
  strokeMiterlimit: "10"
265
- }), /*#__PURE__*/React__default["default"].createElement("path", {
259
+ }), /*#__PURE__*/React.createElement("path", {
266
260
  d: "M134.965 440.462H69.0693L87.1387 395.337H153.035L134.965 440.462Z",
267
261
  fill: "#F3F3F3",
268
262
  stroke: "black",
269
263
  strokeWidth: "0.894136",
270
264
  strokeMiterlimit: "10"
271
- }), /*#__PURE__*/React__default["default"].createElement("path", {
265
+ }), /*#__PURE__*/React.createElement("path", {
272
266
  d: "M111.416 424.816C113.332 424.816 114.884 423.264 114.884 421.348C114.884 419.433 113.332 417.88 111.416 417.88C109.501 417.88 107.948 419.433 107.948 421.348C107.948 423.264 109.501 424.816 111.416 424.816Z",
273
267
  fill: "#F3F3F3",
274
268
  stroke: "black",
275
269
  strokeWidth: "0.894136",
276
270
  strokeMiterlimit: "10"
277
- }), /*#__PURE__*/React__default["default"].createElement("path", {
271
+ }), /*#__PURE__*/React.createElement("path", {
278
272
  d: "M55.4219 363.546L59.2586 378.672C60.4378 383.315 65.1546 386.12 69.7933 384.945C74.4321 383.77 77.2413 379.049 76.0665 374.41L72.2297 359.285L55.4219 363.551V363.546Z",
279
273
  fill: "#F3F3F3",
280
274
  stroke: "black",
281
275
  strokeWidth: "0.894136",
282
276
  strokeMiterlimit: "10"
283
- }), /*#__PURE__*/React__default["default"].createElement("path", {
277
+ }), /*#__PURE__*/React.createElement("path", {
284
278
  d: "M76.4783 346.777C74.8049 339.126 67.3309 334.162 59.5968 335.649C51.7413 337.158 46.5954 344.753 48.1084 352.608C48.4118 354.182 48.9624 355.643 49.7037 356.97H49.6951C49.6951 356.97 49.7297 357.03 49.7948 357.13C49.9725 357.438 50.1589 357.737 50.354 358.023C52.0361 360.698 56.4494 367.608 57.5549 368.358C59.2803 369.529 68.5751 372.503 70.9032 372.811C73.2312 373.119 74.7919 372.438 75.7933 371.471C77.1589 370.149 77.7312 367.014 77.8309 361.647C77.9046 357.798 77.1893 351.897 76.7731 348.815C76.7297 348.26 76.6604 347.701 76.552 347.142C76.539 347.068 76.5173 346.994 76.5043 346.916C76.4913 346.825 76.4826 346.777 76.4826 346.777H76.474H76.4783Z",
285
279
  fill: "#F3F3F3",
286
280
  stroke: "black",
287
281
  strokeWidth: "0.894136",
288
282
  strokeMiterlimit: "10"
289
- }), /*#__PURE__*/React__default["default"].createElement("path", {
283
+ }), /*#__PURE__*/React.createElement("path", {
290
284
  d: "M75.7456 343.079C75.7196 343.019 75.7109 342.949 75.7196 342.884C75.7326 342.746 75.7283 342.607 75.7023 342.464C75.6372 342.134 75.4682 341.857 75.2341 341.649C75.1387 341.562 75.0953 341.432 75.1127 341.306C75.1344 341.15 75.1344 340.99 75.104 340.825C75.026 340.418 74.7832 340.088 74.4624 339.88C74.354 339.811 74.2846 339.689 74.2933 339.559C74.2976 339.447 74.2933 339.334 74.2716 339.221C74.1416 338.536 73.5477 338.059 72.8757 338.046C72.8757 338.038 72.8757 338.025 72.8757 338.016C72.75 337.353 72.182 336.884 71.5361 336.85C71.445 336.845 71.3583 336.876 71.2846 336.828C71.2586 336.811 71.2413 336.772 71.2326 336.733C71.0419 336.065 70.4046 335.623 69.7153 335.684C69.6676 335.684 69.5982 335.727 69.5029 335.671C69.4378 335.631 69.4378 335.527 69.3988 335.441C69.143 334.816 68.4754 334.435 67.7861 334.569C67.6777 334.591 67.5737 334.626 67.474 334.669C67.3092 334.747 67.1011 334.686 67.0101 334.53C66.7066 334.023 66.1127 333.733 65.5014 333.85C65.3193 333.884 65.1502 333.954 64.9985 334.049C64.8424 334.149 64.6387 334.088 64.5216 333.941C64.1965 333.533 63.6633 333.312 63.1127 333.421C62.8526 333.473 62.6271 333.59 62.4407 333.75C62.2673 333.902 62.0159 333.88 61.8685 333.707C61.5433 333.325 61.0274 333.126 60.5029 333.23C60.1864 333.29 59.9133 333.455 59.7138 333.676C59.5881 333.815 59.3714 333.828 59.224 333.72C58.9118 333.486 58.5086 333.377 58.0925 333.46C57.6633 333.542 57.3164 333.806 57.117 334.162C57.0086 334.353 56.7485 334.4 56.5708 334.27C56.2586 334.032 55.8468 333.923 55.4306 334.006C54.906 334.105 54.5029 334.478 54.3381 334.947C54.2644 335.15 54.0433 335.241 53.8396 335.163C53.5925 335.064 53.315 335.029 53.0332 335.085C52.487 335.189 52.0751 335.588 51.9234 336.082C51.867 336.269 51.6676 336.377 51.4768 336.342C51.3078 336.312 51.13 336.308 50.9523 336.342C50.3453 336.46 49.9031 336.941 49.8034 337.517C49.7731 337.699 49.604 337.838 49.4176 337.821C49.2919 337.812 49.1661 337.816 49.0361 337.842C48.3381 337.977 47.8526 338.592 47.8612 339.282C47.8612 339.368 47.8916 339.46 47.8309 339.577C47.8005 339.637 47.7355 339.65 47.6445 339.668C46.8598 339.819 46.3439 340.578 46.4956 341.363C46.5216 341.506 46.6127 341.579 46.578 341.723C46.5303 341.926 46.2789 341.948 46.1185 342.061C45.7153 342.347 45.5809 342.897 45.6763 343.392C45.6979 343.513 45.815 343.617 45.7933 343.734C45.763 343.921 45.5115 343.916 45.3468 344.055C44.9653 344.38 44.8786 344.788 44.9783 345.316C45.0043 345.447 45.104 345.555 45.1083 345.681C45.1083 345.863 44.9566 345.919 44.8872 345.984C44.6358 346.218 44.4754 346.556 44.6315 347.012C44.6488 347.055 44.6358 347.107 44.6228 347.155C44.1242 348.997 44.8612 354.815 46.5477 357.672C48.6156 361.171 52.2745 366.017 55.0274 369.03C55.7601 369.832 57.9884 373.647 57.9884 373.647L56.7095 368.605L55.4306 363.564C53.7485 363.988 52.0664 354.564 53.4364 355.04C53.6098 355.101 53.8872 355.509 54.2124 356.09C54.6633 356.9 55.8988 356.527 55.8338 355.604C55.604 352.353 52.4219 344.653 65.8656 341.241C71.7572 339.746 75.5505 344.15 76.6647 347.705C76.6647 347.705 76.5953 345.074 75.7543 343.101L75.7456 343.079Z",
291
285
  fill: "#F3F3F3",
292
286
  stroke: "black",
293
287
  strokeWidth: "0.894136",
294
288
  strokeMiterlimit: "10"
295
- }), /*#__PURE__*/React__default["default"].createElement("path", {
289
+ }), /*#__PURE__*/React.createElement("path", {
296
290
  d: "M54.4205 356.688C53.7789 355.019 53.0332 354.256 51.9537 354.369C50.6878 354.503 50.1806 355.973 50.5491 357.16L51.8063 361.63C52.2095 362.931 53.6358 363.737 55.4219 363.542L54.4205 356.684V356.688Z",
297
291
  fill: "#F3F3F3",
298
292
  stroke: "black",
299
293
  strokeWidth: "0.894136",
300
294
  strokeMiterlimit: "10"
301
- }), /*#__PURE__*/React__default["default"].createElement("path", {
295
+ }), /*#__PURE__*/React.createElement("path", {
302
296
  d: "M77.6228 365.749C77.3194 366.525 76.7211 367.188 75.9364 367.509L74.7009 368.012L72.8887 368.753L70.3786 369.78C69.013 370.34 67.617 369.642 67.2572 368.228C66.8974 366.815 67.7124 365.215 69.078 364.656L74.6358 362.384C76.0014 361.825 77.3974 362.523 77.7572 363.936C77.7962 363.221 77.8222 362.458 77.8396 361.639C77.8396 361.613 77.8396 361.587 77.8396 361.561C76.9118 360.793 75.6026 360.572 74.3107 361.101L68.7529 363.373C66.7066 364.21 65.1156 366.538 65.6532 368.658L66.3858 371.493C68.4928 372.746 71.5925 373.179 73.1835 372.776C73.4957 372.702 73.8121 372.611 74.1329 372.481C74.6662 372.264 75.1517 371.974 75.5939 371.653C75.6676 371.592 75.737 371.527 75.802 371.462C76.7731 370.526 77.341 368.662 77.6272 365.74L77.6228 365.749Z",
303
297
  fill: "#F3F3F3",
304
298
  stroke: "black",
305
299
  strokeWidth: "0.894136",
306
300
  strokeMiterlimit: "10"
307
- }), /*#__PURE__*/React__default["default"].createElement("path", {
301
+ }), /*#__PURE__*/React.createElement("path", {
308
302
  d: "M73.3613 366.481C72.6503 366.772 72.1777 367.556 72.2428 368.332L72.3034 369.035L73.578 368.514L75.3902 367.773L75.117 367.157C74.8136 366.477 74.0722 366.191 73.3569 366.481H73.3613Z",
309
303
  fill: "#F3F3F3",
310
304
  stroke: "black",
311
305
  strokeWidth: "0.894136",
312
306
  strokeMiterlimit: "10"
313
- }), /*#__PURE__*/React__default["default"].createElement("path", {
307
+ }), /*#__PURE__*/React.createElement("path", {
314
308
  d: "M62.4234 358.938C62.0636 358.47 61.3916 358.383 60.9234 358.747L56.2023 362.059C56.0159 362.207 55.8815 362.393 55.7948 362.597L54.5766 364.032C54.1777 364.843 54.2124 364.253 54.3295 363.858L55.5433 360.434L61.5347 357C62.0549 356.727 62.2587 356.077 61.9812 355.556C61.7081 355.032 61.0578 354.832 60.5376 355.11L55.0144 357.772C52.63 359.029 54.6676 357.776 54.9104 357.611L59.948 354.117C60.4422 353.796 60.5852 353.133 60.2644 352.639C59.9436 352.145 59.2803 352.001 58.7861 352.322L54.2948 355.014C49.8208 358.114 53.9393 355.049 54.1951 354.828L56.7052 352.669C57.1647 352.301 57.2428 351.629 56.8743 351.165C56.5058 350.705 55.8338 350.627 55.3699 350.996L49.3569 355.457C49.2095 355.578 49.0925 355.721 49.0101 355.882L45.3121 362.276L45.1691 362.488L48.091 357.464L41.2977 364.548C41.1069 364.838 40.9855 365.168 40.9509 365.514L40.0665 374.129C38.7659 376.101 39.3165 378.754 41.289 380.051C43.2615 381.351 45.9147 380.801 47.211 378.828C47.211 378.828 51.3468 376.431 52.526 374.645C53.7009 372.858 56.0506 369.286 56.0506 369.286C56.0982 369.208 56.1459 369.134 56.185 369.048L58.1532 363.91L62.2326 360.447C62.7009 360.087 62.7876 359.415 62.4234 358.947V358.938Z",
315
309
  fill: "#F3F3F3",
316
310
  stroke: "black",
317
311
  strokeWidth: "0.894136",
318
312
  strokeMiterlimit: "10"
319
- }), /*#__PURE__*/React__default["default"].createElement("path", {
313
+ }), /*#__PURE__*/React.createElement("path", {
320
314
  d: "M23.7746 429.806C23.7746 429.806 36.5462 383.536 38.2413 375.811C38.4884 374.679 39.6546 374.012 40.7601 374.367L51.2601 377.09C52.1055 377.337 52.6084 378.204 52.4133 379.058L38.198 435.876C38.1633 436.019 38.1156 436.158 38.0506 436.283C36.0694 440.029 31.4523 441.533 27.6329 439.643C23.9696 437.831 22.3483 433.543 23.7832 429.802L23.7746 429.806Z",
321
315
  fill: "#F3F3F3",
322
316
  stroke: "black",
323
317
  strokeWidth: "0.894136",
324
318
  strokeMiterlimit: "10"
325
- }), /*#__PURE__*/React__default["default"].createElement("path", {
319
+ }), /*#__PURE__*/React.createElement("path", {
326
320
  d: "M319.509 445.665V258.382H666.329V319.075",
327
321
  fill: "#F3F3F3"
328
- }), /*#__PURE__*/React__default["default"].createElement("path", {
322
+ }), /*#__PURE__*/React.createElement("path", {
329
323
  d: "M319.509 445.665V258.382H666.329V319.075",
330
324
  stroke: "black",
331
325
  strokeWidth: "0.894136",
332
326
  strokeMiterlimit: "10"
333
- }), /*#__PURE__*/React__default["default"].createElement("path", {
327
+ }), /*#__PURE__*/React.createElement("path", {
334
328
  d: "M491.202 445.665H319.509V480.347H491.202V445.665Z",
335
329
  fill: "#F3F3F3",
336
330
  stroke: "black",
337
331
  strokeWidth: "0.894136",
338
332
  strokeMiterlimit: "10"
339
- }), /*#__PURE__*/React__default["default"].createElement("path", {
333
+ }), /*#__PURE__*/React.createElement("path", {
340
334
  d: "M648.988 480.347H491.202V445.665H669.798",
341
335
  fill: "#F3F3F3"
342
- }), /*#__PURE__*/React__default["default"].createElement("path", {
336
+ }), /*#__PURE__*/React.createElement("path", {
343
337
  d: "M648.988 480.347H491.202V445.665H669.798",
344
338
  stroke: "black",
345
339
  strokeWidth: "0.894136",
346
340
  strokeMiterlimit: "10"
347
- }), /*#__PURE__*/React__default["default"].createElement("path", {
341
+ }), /*#__PURE__*/React.createElement("path", {
348
342
  d: "M239.74 180.347H746.098C748.014 180.347 749.566 181.899 749.566 183.815V194.22H236.272V183.815C236.272 181.899 237.824 180.347 239.74 180.347Z",
349
343
  fill: "#F3F3F3",
350
344
  stroke: "black",
351
345
  strokeWidth: "0.894136",
352
346
  strokeMiterlimit: "10"
353
- }), /*#__PURE__*/React__default["default"].createElement("path", {
347
+ }), /*#__PURE__*/React.createElement("path", {
354
348
  d: "M246.676 190.717C248.592 190.717 250.144 189.172 250.144 187.266C250.144 185.36 248.592 183.815 246.676 183.815C244.761 183.815 243.208 185.36 243.208 187.266C243.208 189.172 244.761 190.717 246.676 190.717Z",
355
349
  fill: "#F3F3F3",
356
350
  stroke: "black",
357
351
  strokeWidth: "0.894136",
358
352
  strokeMiterlimit: "10"
359
- }), /*#__PURE__*/React__default["default"].createElement("path", {
353
+ }), /*#__PURE__*/React.createElement("path", {
360
354
  d: "M257.081 190.751C258.996 190.751 260.549 189.199 260.549 187.283C260.549 185.368 258.996 183.815 257.081 183.815C255.165 183.815 253.613 185.368 253.613 187.283C253.613 189.199 255.165 190.751 257.081 190.751Z",
361
355
  fill: "#F3F3F3",
362
356
  stroke: "black",
363
357
  strokeWidth: "0.894136",
364
358
  strokeMiterlimit: "10"
365
- }), /*#__PURE__*/React__default["default"].createElement("path", {
359
+ }), /*#__PURE__*/React.createElement("path", {
366
360
  d: "M267.486 190.751C269.401 190.751 270.954 189.199 270.954 187.283C270.954 185.368 269.401 183.815 267.486 183.815C265.57 183.815 264.017 185.368 264.017 187.283C264.017 189.199 265.57 190.751 267.486 190.751Z",
367
361
  fill: "#F3F3F3",
368
362
  stroke: "black",
369
363
  strokeWidth: "0.894136",
370
364
  strokeMiterlimit: "10"
371
- }), /*#__PURE__*/React__default["default"].createElement("path", {
365
+ }), /*#__PURE__*/React.createElement("path", {
372
366
  d: "M749.566 194.22H236.272V208.092H749.566V194.22Z",
373
367
  fill: "#F3F3F3",
374
368
  stroke: "black",
375
369
  strokeWidth: "0.894136",
376
370
  strokeMiterlimit: "10"
377
- }), /*#__PURE__*/React__default["default"].createElement("path", {
371
+ }), /*#__PURE__*/React.createElement("path", {
378
372
  d: "M250.145 201.156H277.89",
379
373
  stroke: "black",
380
374
  strokeWidth: "0.894136",
381
375
  strokeMiterlimit: "10"
382
- }), /*#__PURE__*/React__default["default"].createElement("path", {
376
+ }), /*#__PURE__*/React.createElement("path", {
383
377
  d: "M291.763 201.156H319.509",
384
378
  stroke: "black",
385
379
  strokeWidth: "0.894136",
386
380
  strokeMiterlimit: "10"
387
- }), /*#__PURE__*/React__default["default"].createElement("path", {
381
+ }), /*#__PURE__*/React.createElement("path", {
388
382
  d: "M333.381 201.156H361.127",
389
383
  stroke: "black",
390
384
  strokeWidth: "0.894136",
391
385
  strokeMiterlimit: "10"
392
- }), /*#__PURE__*/React__default["default"].createElement("path", {
386
+ }), /*#__PURE__*/React.createElement("path", {
393
387
  d: "M388.873 402.316C417.603 402.316 440.896 379.019 440.896 350.293C440.896 321.568 417.603 298.266 388.873 298.266C360.143 298.266 336.85 321.564 336.85 350.293C336.85 379.023 360.143 402.316 388.873 402.316Z",
394
388
  fill: "#F3F3F3",
395
389
  stroke: "black",
396
390
  strokeWidth: "0.894136",
397
391
  strokeMiterlimit: "10"
398
- }), /*#__PURE__*/React__default["default"].createElement("path", {
392
+ }), /*#__PURE__*/React.createElement("path", {
399
393
  d: "M388.873 378.035C400.365 378.035 409.682 368.718 409.682 357.225C409.682 345.733 400.365 336.416 388.873 336.416C377.38 336.416 368.064 345.733 368.064 357.225C368.064 368.718 377.38 378.035 388.873 378.035Z",
400
394
  fill: "#F3F3F3",
401
395
  stroke: "black",
402
396
  strokeWidth: "0.894136",
403
397
  strokeMiterlimit: "10"
404
- }), /*#__PURE__*/React__default["default"].createElement("path", {
398
+ }), /*#__PURE__*/React.createElement("path", {
405
399
  d: "M378.468 339.204V328.799C378.468 323.055 383.129 318.395 388.873 318.395C394.617 318.395 399.277 323.055 399.277 328.799V339.204",
406
400
  stroke: "black",
407
401
  strokeWidth: "0.894136",
408
402
  strokeMiterlimit: "10"
409
- }), /*#__PURE__*/React__default["default"].createElement("path", {
403
+ }), /*#__PURE__*/React.createElement("path", {
410
404
  d: "M392.341 353.757C392.341 355.04 391.643 356.163 390.607 356.757V362.428C390.607 363.386 389.831 364.162 388.873 364.162C387.915 364.162 387.139 363.386 387.139 362.428V356.757C386.103 356.163 385.405 355.04 385.405 353.757C385.405 351.841 386.957 350.289 388.873 350.289C390.789 350.289 392.341 351.841 392.341 353.757Z",
411
405
  stroke: "black",
412
406
  strokeWidth: "0.894136",
413
407
  strokeMiterlimit: "10"
414
- }), /*#__PURE__*/React__default["default"].createElement("path", {
408
+ }), /*#__PURE__*/React.createElement("path", {
415
409
  d: "M690.607 367.63H510.26V391.908H690.607V367.63Z",
416
410
  fill: "#F3F3F3",
417
411
  stroke: "black",
418
412
  strokeWidth: "0.894136",
419
413
  strokeMiterlimit: "10"
420
- }), /*#__PURE__*/React__default["default"].createElement("path", {
414
+ }), /*#__PURE__*/React.createElement("path", {
421
415
  d: "M541.474 379.171H643.188",
422
416
  stroke: "black",
423
417
  strokeWidth: "0.894136",
424
418
  strokeMiterlimit: "10"
425
- }), /*#__PURE__*/React__default["default"].createElement("path", {
419
+ }), /*#__PURE__*/React.createElement("path", {
426
420
  d: "M669.078 382.145L665.25 378.186L665.783 377.632L669.078 381.035L672.373 377.632L672.91 378.186L669.078 382.145Z",
427
421
  fill: "black"
428
- }), /*#__PURE__*/React__default["default"].createElement("path", {
422
+ }), /*#__PURE__*/React.createElement("path", {
429
423
  d: "M690.607 312.139H510.26V336.416H690.607V312.139Z",
430
424
  fill: "#F3F3F3",
431
425
  stroke: "black",
432
426
  strokeWidth: "0.894136",
433
427
  strokeMiterlimit: "10"
434
- }), /*#__PURE__*/React__default["default"].createElement("path", {
428
+ }), /*#__PURE__*/React.createElement("path", {
435
429
  d: "M522 323.679H643.188",
436
430
  stroke: "black",
437
431
  strokeWidth: "0.894136",
438
432
  strokeMiterlimit: "10"
439
- }), /*#__PURE__*/React__default["default"].createElement("path", {
433
+ }), /*#__PURE__*/React.createElement("path", {
440
434
  d: "M669.078 326.653L665.25 322.695L665.783 322.14L669.078 325.543L672.373 322.14L672.91 322.695L669.078 326.653Z",
441
435
  fill: "black"
442
- }), /*#__PURE__*/React__default["default"].createElement("path", {
436
+ }), /*#__PURE__*/React.createElement("path", {
443
437
  d: "M722.861 339.884H527.601V364.162H722.861V339.884Z",
444
438
  fill: "#F3F3F3",
445
439
  stroke: "black",
446
440
  strokeWidth: "0.894136",
447
441
  strokeMiterlimit: "10"
448
- }), /*#__PURE__*/React__default["default"].createElement("path", {
442
+ }), /*#__PURE__*/React.createElement("path", {
449
443
  d: "M530.072 339.884H527.601V364.162H530.072V339.884Z",
450
444
  fill: "#F3F3F3",
451
445
  stroke: "black",
452
446
  strokeWidth: "0.894136",
453
447
  strokeMiterlimit: "10"
454
- }), /*#__PURE__*/React__default["default"].createElement("path", {
448
+ }), /*#__PURE__*/React.createElement("path", {
455
449
  d: "M538.006 352.023H663.551",
456
450
  stroke: "black",
457
451
  strokeWidth: "0.894136",
458
452
  strokeMiterlimit: "10"
459
- }), /*#__PURE__*/React__default["default"].createElement("path", {
453
+ }), /*#__PURE__*/React.createElement("path", {
460
454
  d: "M704.467 352.578L700.634 348.616L701.172 348.061L704.467 351.468L707.761 348.061L708.295 348.616L704.467 352.578Z",
461
455
  fill: "black"
462
- }), /*#__PURE__*/React__default["default"].createElement("path", {
456
+ }), /*#__PURE__*/React.createElement("path", {
463
457
  d: "M704.467 351.468L708.295 355.431L707.761 355.986L704.467 352.578L701.172 355.986L700.634 355.431L704.467 351.468Z",
464
458
  fill: "black"
465
- }), /*#__PURE__*/React__default["default"].createElement("path", {
459
+ }), /*#__PURE__*/React.createElement("path", {
466
460
  d: "M479.046 463.006H465.173",
467
461
  stroke: "black",
468
462
  strokeWidth: "0.894136",
469
463
  strokeMiterlimit: "10"
470
- }), /*#__PURE__*/React__default["default"].createElement("path", {
464
+ }), /*#__PURE__*/React.createElement("path", {
471
465
  d: "M470.827 468.754L465.173 463.101L471.017 457.257",
472
466
  stroke: "black",
473
467
  strokeWidth: "0.894136",
474
468
  strokeMiterlimit: "10"
475
- }), /*#__PURE__*/React__default["default"].createElement("path", {
469
+ }), /*#__PURE__*/React.createElement("path", {
476
470
  d: "M443.675 463.006H336.85",
477
471
  stroke: "black",
478
472
  strokeWidth: "0.894136",
479
473
  strokeMiterlimit: "10"
480
- }), /*#__PURE__*/React__default["default"].createElement("path", {
474
+ }), /*#__PURE__*/React.createElement("path", {
481
475
  d: "M501.295 553.179C501.169 554.289 501.1 554.913 501.1 554.913V560.116H494.163V554.913C494.163 554.913 494.09 554.289 493.96 553.179H501.299H501.295Z",
482
476
  fill: "#F3F3F3",
483
477
  stroke: "black",
484
478
  strokeWidth: "0.894136",
485
479
  strokeMiterlimit: "10"
486
- }), /*#__PURE__*/React__default["default"].createElement("path", {
480
+ }), /*#__PURE__*/React.createElement("path", {
487
481
  d: "M503.697 564.919V568.786H491.558V564.902C491.558 564.03 491.723 563.168 492.043 562.357L493.292 559.21C493.314 556.834 495.247 554.913 497.627 554.913C500.007 554.913 501.962 556.856 501.962 559.249L503.202 562.344C503.527 563.163 503.697 564.039 503.697 564.919Z",
488
482
  fill: "#F3F3F3",
489
483
  stroke: "black",
490
484
  strokeWidth: "0.894136",
491
485
  strokeMiterlimit: "10"
492
- }), /*#__PURE__*/React__default["default"].createElement("path", {
486
+ }), /*#__PURE__*/React.createElement("path", {
493
487
  d: "M494.163 568.786H501.1V565.847H494.163V568.786Z",
494
488
  fill: "#F3F3F3",
495
489
  stroke: "black",
496
490
  strokeWidth: "0.894136",
497
491
  strokeMiterlimit: "10"
498
- }), /*#__PURE__*/React__default["default"].createElement("path", {
492
+ }), /*#__PURE__*/React.createElement("path", {
499
493
  d: "M557.454 553.179L559.101 558.382L550.517 559.249L549.65 553.179H557.454Z",
500
494
  fill: "#F3F3F3",
501
495
  stroke: "black",
502
496
  strokeWidth: "0.894136",
503
497
  strokeMiterlimit: "10"
504
- }), /*#__PURE__*/React__default["default"].createElement("path", {
498
+ }), /*#__PURE__*/React.createElement("path", {
505
499
  d: "M548.402 562.357L549.65 558.382V556.647C549.65 555.689 550.426 554.913 551.384 554.913H553.119C554.51 554.913 555.165 555.468 555.72 556.647C556.725 558.165 559.101 558.382 559.101 558.382C562.569 561.85 568.725 561.85 568.725 567.052V568.786H560.055H558.321H547.916V564.902C547.916 564.03 548.081 563.168 548.402 562.357Z",
506
500
  fill: "#F3F3F3",
507
501
  stroke: "black",
508
502
  strokeWidth: "0.894136",
509
503
  strokeMiterlimit: "10"
510
- }), /*#__PURE__*/React__default["default"].createElement("path", {
504
+ }), /*#__PURE__*/React.createElement("path", {
511
505
  d: "M547.921 568.786H554.857V565.847H547.921V568.786Z",
512
506
  fill: "#F3F3F3",
513
507
  stroke: "black",
514
508
  strokeWidth: "0.894136",
515
509
  strokeMiterlimit: "10"
516
- }), /*#__PURE__*/React__default["default"].createElement("path", {
510
+ }), /*#__PURE__*/React.createElement("path", {
517
511
  d: "M546.945 438.854L547.747 443.163L548.506 447.173C551.302 447.039 550.383 443.107 550.305 442.678C549.984 440.978 550.513 439.11 550.513 439.11L553.158 443.857L552.824 449.545L552.759 456.277C552.698 456.754 553.032 457.188 553.509 457.253C553.981 457.314 554.419 456.98 554.48 456.503L554.532 456.186C554.614 456.225 554.705 456.256 554.805 456.269C555.282 456.316 555.707 455.974 555.759 455.497L556.608 449.484L557.462 443.471C557.536 442.756 555.715 429.299 555.715 429.299L548.9 430.591L547.027 437.02C546.837 437.61 546.806 438.247 546.945 438.854Z",
518
512
  fill: "#F3F3F3",
519
513
  stroke: "black",
520
514
  strokeWidth: "0.894136",
521
515
  strokeMiterlimit: "10"
522
- }), /*#__PURE__*/React__default["default"].createElement("path", {
516
+ }), /*#__PURE__*/React.createElement("path", {
523
517
  d: "M551.046 437.224C553.435 439.101 555.013 442.353 554.046 445.608L551.198 450.564C550.938 450.967 551.055 451.504 551.458 451.76C551.861 452.02 552.399 451.903 552.655 451.5L555.282 447.798L555.364 447.685L557.874 444.147C557.965 444.074 558.043 443.983 558.108 443.879C558.295 443.588 558.356 443.25 558.295 442.934C558.295 442.934 558.29 442.908 558.277 442.856C558.16 442.214 557.306 437.701 557.003 436.118C556.682 434.415 555.715 429.299 555.715 429.299C555.36 427.418 553.543 426.182 551.662 426.538C549.78 426.893 548.545 428.71 548.9 430.591C548.168 433.11 547.396 434.358 551.046 437.224Z",
524
518
  fill: "#F3F3F3",
525
519
  stroke: "black",
526
520
  strokeWidth: "0.894136",
527
521
  strokeMiterlimit: "10"
528
- }), /*#__PURE__*/React__default["default"].createElement("path", {
522
+ }), /*#__PURE__*/React.createElement("path", {
529
523
  d: "M554.532 456.186L554.54 450.607",
530
524
  stroke: "black",
531
525
  strokeWidth: "0.894136",
532
526
  strokeMiterlimit: "10"
533
- }), /*#__PURE__*/React__default["default"].createElement("path", {
527
+ }), /*#__PURE__*/React.createElement("path", {
534
528
  d: "M461.71 325.552C461.671 325.535 461.636 325.509 461.601 325.487C461.567 325.465 461.527 325.444 461.497 325.418C461.467 325.392 461.436 325.366 461.406 325.335C461.376 325.305 461.341 325.279 461.315 325.249C461.289 325.218 461.263 325.184 461.237 325.149C461.215 325.114 461.189 325.084 461.168 325.049C461.146 325.014 461.129 324.975 461.111 324.936C461.094 324.897 461.072 324.858 461.059 324.819C461.046 324.785 461.038 324.746 461.029 324.707C461.016 324.659 461.003 324.616 460.999 324.564C460.999 324.551 460.994 324.542 460.99 324.533C460.99 324.503 460.99 324.477 460.99 324.451C460.99 324.403 460.986 324.36 460.99 324.312C460.99 324.264 460.999 324.221 461.007 324.173C461.012 324.147 461.012 324.117 461.02 324.091C461.02 324.082 461.029 324.069 461.029 324.061C461.042 324.013 461.059 323.97 461.077 323.922C461.09 323.887 461.103 323.848 461.12 323.814C461.137 323.775 461.163 323.74 461.185 323.705C461.207 323.67 461.228 323.631 461.254 323.601C461.28 323.571 461.306 323.54 461.337 323.51C461.367 323.48 461.393 323.445 461.423 323.419C461.454 323.393 461.488 323.367 461.523 323.341C461.558 323.319 461.588 323.293 461.623 323.272C461.658 323.25 461.697 323.233 461.736 323.215C461.775 323.198 461.814 323.176 461.853 323.163C461.887 323.15 461.926 323.142 461.965 323.133C462.013 323.12 462.056 323.107 462.108 323.103C462.121 323.103 462.13 323.098 462.139 323.094L468.195 322.63C468.785 322.565 469.318 322.986 469.392 323.575V323.584C469.392 323.584 469.392 323.584 469.392 323.588L469.925 329.618C469.986 330.095 469.647 330.529 469.171 330.585C468.724 330.642 468.317 330.342 468.221 329.909L467.697 331.899C467.592 332.367 467.129 332.658 466.66 332.553C466.192 332.449 465.902 331.986 466.006 331.517L466.925 326.64L461.983 325.652C461.983 325.652 461.961 325.643 461.952 325.643C461.905 325.63 461.861 325.613 461.814 325.595C461.779 325.582 461.74 325.569 461.705 325.552H461.71Z",
535
529
  fill: "#F3F3F3",
536
530
  stroke: "black",
537
531
  strokeWidth: "0.894136",
538
532
  strokeMiterlimit: "10"
539
- }), /*#__PURE__*/React__default["default"].createElement("path", {
533
+ }), /*#__PURE__*/React.createElement("path", {
540
534
  d: "M462.013 322.795C461.987 322.075 462.551 321.473 463.266 321.451L469.773 321.438C470.371 321.416 470.874 321.884 470.896 322.483C470.896 322.513 470.896 322.539 470.892 322.565H470.896L470.402 329.055C470.38 329.532 469.977 329.905 469.5 329.883C469.023 329.861 468.65 329.458 468.672 328.981L468.72 323.684L463.361 324.052C462.642 324.078 462.039 323.514 462.017 322.799L462.013 322.795Z",
541
535
  fill: "#F3F3F3",
542
536
  stroke: "black",
543
537
  strokeWidth: "0.894136",
544
538
  strokeMiterlimit: "10"
545
- }), /*#__PURE__*/React__default["default"].createElement("path", {
539
+ }), /*#__PURE__*/React.createElement("path", {
546
540
  d: "M465.043 339.884C466.964 339.884 468.52 338.328 468.52 336.407C468.52 334.487 466.964 332.931 465.043 332.931C463.123 332.931 461.567 334.487 461.567 336.407C461.567 338.328 463.123 339.884 465.043 339.884Z",
547
541
  fill: "#F3F3F3",
548
542
  stroke: "black",
549
543
  strokeWidth: "0.894136",
550
544
  strokeMiterlimit: "10"
551
- }), /*#__PURE__*/React__default["default"].createElement("path", {
545
+ }), /*#__PURE__*/React.createElement("path", {
552
546
  d: "M461.228 330.819C460.886 327.334 460.864 325.539 460.994 324.208C461.09 323.224 462 322.908 462.017 322.652C462.052 322.079 462.455 321.594 463.123 321.46C463.465 321.39 463.747 321.386 464.111 320.97L465.23 316.322L466.413 311.974C466.509 311.506 466.968 311.202 467.436 311.298C467.905 311.393 468.208 311.853 468.113 312.321L467.354 316.756L466.374 322.656C466.283 323.419 467.168 325.669 467.71 326.952C467.857 327.303 468.355 327.308 468.507 326.952C469.24 325.262 470.749 321.78 470.939 321.39C471.251 320.753 471.893 319.656 473.619 319.821C473.619 319.821 472.379 324.052 472.023 325.478C471.581 327.243 471.221 330.208 470.74 331.73C470.332 333.013 468.507 336.624 468.507 336.624L461.627 335.961C461.627 335.961 461.397 332.536 461.233 330.828L461.228 330.819Z",
553
547
  fill: "#F3F3F3",
554
548
  stroke: "black",
555
549
  strokeWidth: "0.894136",
556
550
  strokeMiterlimit: "10"
557
- }), /*#__PURE__*/React__default["default"].createElement("path", {
551
+ }), /*#__PURE__*/React.createElement("path", {
558
552
  d: "M469.881 334.682H459.477L447.863 375.46L461.397 378.494L469.881 334.682Z",
559
553
  fill: "#F3F3F3",
560
554
  stroke: "black",
561
555
  strokeWidth: "0.894136",
562
556
  strokeMiterlimit: "10"
563
- }), /*#__PURE__*/React__default["default"].createElement("path", {
557
+ }), /*#__PURE__*/React.createElement("path", {
564
558
  d: "M530.575 381.503C530.575 381.503 540.104 422.298 541.704 430.132C545.085 446.731 552.069 489.685 553.855 498.447C555.819 508.075 563.523 553.184 563.523 553.184H540.98L526.604 486.303C526.604 486.303 516.85 451.348 513.017 437.406C512.753 436.448 511.348 436.613 511.314 437.605C510.867 451.513 509.766 485.549 509.766 485.549V553.179H485.488V485.549C485.449 483.178 482.02 447.399 480.286 417.919C479.371 402.338 488.957 381.503 488.957 381.503H530.575Z",
565
559
  fill: "#F3F3F3",
566
560
  stroke: "black",
567
561
  strokeWidth: "0.894136",
568
562
  strokeMiterlimit: "10"
569
- }), /*#__PURE__*/React__default["default"].createElement("path", {
563
+ }), /*#__PURE__*/React.createElement("path", {
570
564
  d: "M498.412 315.594V315.585C498.633 316.981 498.941 318.225 499.361 319.071C500.332 321.017 501.763 322.673 502.829 323.753V336.412C502.829 340.244 505.933 343.348 509.766 343.348C513.598 343.348 516.702 340.244 516.702 336.412V323.853C517.734 322.773 519.165 321.078 520.17 319.066C520.591 318.23 520.899 316.986 521.129 315.581V315.59C524.024 315.59 523.652 306.069 523.652 306.069C523.652 305.588 523.262 305.194 522.776 305.194H521.779C521.861 304.626 521.905 304.049 521.905 303.46C521.905 296.757 516.468 291.321 509.766 291.321C503.064 291.321 497.627 296.757 497.627 303.46C497.627 304.049 497.67 304.626 497.753 305.194H496.769C496.288 305.194 495.893 305.584 495.893 306.069C495.893 306.069 495.512 315.59 498.412 315.59V315.594Z",
571
565
  fill: "#F3F3F3",
572
566
  stroke: "black",
573
567
  strokeWidth: "0.894136",
574
568
  strokeMiterlimit: "10"
575
- }), /*#__PURE__*/React__default["default"].createElement("path", {
569
+ }), /*#__PURE__*/React.createElement("path", {
576
570
  d: "M538.999 341.493C538.812 340.816 538.53 340.192 538.171 339.633C538.526 340.197 538.808 340.821 538.999 341.493Z",
577
571
  fill: "#F3F3F3",
578
572
  stroke: "black",
579
573
  strokeWidth: "0.894136",
580
574
  strokeMiterlimit: "10"
581
- }), /*#__PURE__*/React__default["default"].createElement("path", {
575
+ }), /*#__PURE__*/React.createElement("path", {
582
576
  d: "M495.026 304.335C495.026 296.194 501.624 289.595 509.766 289.595C517.908 289.595 524.506 296.194 524.506 304.335C524.506 304.569 524.488 326.012 524.488 326.012C524.488 327.928 522.936 329.48 521.02 329.48H498.512C496.595 329.48 495.043 327.928 495.043 326.012C495.043 326.012 495.026 304.569 495.026 304.335Z",
583
577
  fill: "#F3F3F3",
584
578
  stroke: "black",
585
579
  strokeWidth: "0.894136",
586
580
  strokeMiterlimit: "10"
587
- }), /*#__PURE__*/React__default["default"].createElement("path", {
581
+ }), /*#__PURE__*/React.createElement("path", {
588
582
  d: "M453.113 383.744C455.558 384.29 457.986 383.471 459.611 381.793V381.802C459.611 381.802 474.022 366.932 478.864 361.942C479.861 360.915 481.305 359.428 482.874 357.806C485.428 368.805 488.957 381.503 488.957 381.503C488.957 381.503 487.426 384.889 486.902 386.241C486.364 387.633 484.916 391.908 484.916 391.908H532.986L530.575 381.503C530.575 381.503 531.342 378.746 532.418 374.684C534.186 382.379 536.064 390.538 536.064 390.538C536.064 390.538 536.064 390.564 536.081 390.616C536.09 390.646 536.098 390.676 536.103 390.707C536.35 391.773 537.694 397.613 538.396 400.673C539.957 407.436 546.182 430.058 546.182 430.058H558.321C558.321 430.058 555.03 411.082 551.918 397.561C551.185 394.396 549.772 388.257 549.598 387.503C549.585 387.451 549.581 387.425 549.581 387.425C549.581 387.425 544.934 367.249 543.373 360.473C542.263 355.656 539.454 343.457 539.107 341.948C539.085 341.848 539.072 341.796 539.072 341.796C539.051 341.697 539.025 341.592 538.999 341.493C538.808 340.821 538.526 340.197 538.171 339.633C538.162 339.624 538.153 339.611 538.149 339.603C538.053 339.455 537.949 339.308 537.845 339.169C537.659 338.922 537.46 338.692 537.243 338.475C537.173 338.406 537.108 338.341 537.035 338.276C536.965 338.211 536.896 338.146 536.822 338.085C536.606 337.899 536.376 337.725 536.137 337.569C536.077 337.526 536.012 337.487 535.951 337.448C535.851 337.387 535.747 337.327 535.647 337.275C535.153 336.997 534.629 336.785 534.095 336.646C529.136 335.358 519.78 332.948 516.702 332.948H502.829C499.756 332.948 490.396 335.358 485.436 336.646C485.415 336.65 485.393 336.659 485.371 336.668C485.207 336.711 485.042 336.763 484.881 336.819C484.777 336.858 484.669 336.902 484.561 336.945C484.457 336.988 484.353 337.036 484.249 337.084C484.153 337.127 484.062 337.175 483.971 337.223C483.893 337.262 483.815 337.305 483.737 337.357C483.668 337.396 483.603 337.435 483.538 337.478C483.299 337.621 483.065 337.79 482.844 337.973C482.783 338.02 482.727 338.072 482.666 338.124C482.519 338.246 482.38 338.38 482.241 338.523C482.241 338.523 482.22 338.545 482.176 338.592C481.314 339.481 472.292 348.802 468.945 352.253C464.068 357.282 449.653 372.143 449.653 372.143H449.662C448.795 373.036 448.153 374.163 447.863 375.46C447.026 379.197 449.376 382.907 453.113 383.744Z",
589
583
  fill: "#F3F3F3",
590
584
  stroke: "black",
591
585
  strokeWidth: "0.894136",
592
586
  strokeMiterlimit: "10"
593
- }), /*#__PURE__*/React__default["default"].createElement("path", {
587
+ }), /*#__PURE__*/React.createElement("path", {
594
588
  d: "M236.272 208.092V520.231H264.017",
595
589
  stroke: "black",
596
590
  strokeWidth: "0.894136",
597
591
  strokeMiterlimit: "10"
598
- }), /*#__PURE__*/React__default["default"].createElement("path", {
592
+ }), /*#__PURE__*/React.createElement("path", {
599
593
  d: "M268.543 527.168L270.806 568.786H307.01L309.273 527.168",
600
594
  fill: "#F3F3F3"
601
- }), /*#__PURE__*/React__default["default"].createElement("path", {
595
+ }), /*#__PURE__*/React.createElement("path", {
602
596
  d: "M268.543 527.168L270.806 568.786H307.01L309.273 527.168",
603
597
  stroke: "black",
604
598
  strokeWidth: "0.894136",
605
599
  strokeMiterlimit: "10"
606
- }), /*#__PURE__*/React__default["default"].createElement("path", {
600
+ }), /*#__PURE__*/React.createElement("path", {
607
601
  d: "M259.491 561.997L264.017 564.26V568.786H254.965L259.491 561.997Z",
608
602
  fill: "#F3F3F3",
609
603
  stroke: "black",
610
604
  strokeWidth: "0.894136",
611
605
  strokeMiterlimit: "10"
612
- }), /*#__PURE__*/React__default["default"].createElement("path", {
606
+ }), /*#__PURE__*/React.createElement("path", {
613
607
  d: "M266.28 520.231L270.806 508.916L284.384 513.442L291.173 520.231",
614
608
  fill: "#F3F3F3"
615
- }), /*#__PURE__*/React__default["default"].createElement("path", {
609
+ }), /*#__PURE__*/React.createElement("path", {
616
610
  d: "M266.28 520.231L270.806 508.916L284.384 513.442L291.173 520.231",
617
611
  stroke: "black",
618
612
  strokeWidth: "0.894136",
619
613
  strokeMiterlimit: "10"
620
- }), /*#__PURE__*/React__default["default"].createElement("path", {
614
+ }), /*#__PURE__*/React.createElement("path", {
621
615
  d: "M309.273 520.231V508.916H293.436L291.173 515.705",
622
616
  fill: "#F3F3F3"
623
- }), /*#__PURE__*/React__default["default"].createElement("path", {
617
+ }), /*#__PURE__*/React.createElement("path", {
624
618
  d: "M309.273 520.231V508.916H293.436L291.173 515.705",
625
619
  stroke: "black",
626
620
  strokeWidth: "0.894136",
627
621
  strokeMiterlimit: "10"
628
- }), /*#__PURE__*/React__default["default"].createElement("path", {
622
+ }), /*#__PURE__*/React.createElement("path", {
629
623
  d: "M273.069 520.231L282.121 515.705L284.384 517.968L291.173 515.705L301.244 524.176",
630
624
  fill: "#F3F3F3"
631
- }), /*#__PURE__*/React__default["default"].createElement("path", {
625
+ }), /*#__PURE__*/React.createElement("path", {
632
626
  d: "M273.069 520.231L282.121 515.705L284.384 517.968L291.173 515.705L301.244 524.176",
633
627
  stroke: "black",
634
628
  strokeWidth: "0.894136",
635
629
  strokeMiterlimit: "10"
636
- }), /*#__PURE__*/React__default["default"].createElement("path", {
630
+ }), /*#__PURE__*/React.createElement("path", {
637
631
  d: "M313.799 520.231H264.017V527.168H313.799V520.231Z",
638
632
  fill: "#F3F3F3",
639
633
  stroke: "black",
640
634
  strokeWidth: "0.894136",
641
635
  strokeMiterlimit: "10"
642
- }), /*#__PURE__*/React__default["default"].createElement("path", {
636
+ }), /*#__PURE__*/React.createElement("path", {
643
637
  d: "M749.566 83.237H610.838V152.601H749.566V83.237Z",
644
638
  fill: "#F3F3F3",
645
639
  stroke: "black",
646
640
  strokeWidth: "0.894136",
647
641
  strokeMiterlimit: "10"
648
- }), /*#__PURE__*/React__default["default"].createElement("path", {
642
+ }), /*#__PURE__*/React.createElement("path", {
649
643
  d: "M749.567 138.728H680.202V152.601H749.567V138.728Z",
650
644
  fill: "#F3F3F3",
651
645
  stroke: "black",
652
646
  strokeWidth: "0.894136",
653
647
  strokeMiterlimit: "10"
654
- }), /*#__PURE__*/React__default["default"].createElement("path", {
648
+ }), /*#__PURE__*/React.createElement("path", {
655
649
  d: "M683.671 145.665H711.416",
656
650
  stroke: "black",
657
651
  strokeWidth: "0.894136",
658
652
  strokeMiterlimit: "10"
659
- }), /*#__PURE__*/React__default["default"].createElement("path", {
653
+ }), /*#__PURE__*/React.createElement("path", {
660
654
  d: "M742.582 90.8584L742.266 90.5376L740.757 92.0462L739.253 90.5376L738.932 90.8584L740.441 92.3627L738.932 93.8714L739.253 94.1879L740.757 92.6835L742.266 94.1879L742.582 93.8714L741.078 92.3627L742.582 90.8584Z",
661
655
  fill: "black"
662
- }), /*#__PURE__*/React__default["default"].createElement("path", {
656
+ }), /*#__PURE__*/React.createElement("path", {
663
657
  d: "M621.243 93.6416H690.607",
664
658
  stroke: "black",
665
659
  strokeWidth: "0.894136",
666
660
  strokeMiterlimit: "10"
667
- }), /*#__PURE__*/React__default["default"].createElement("path", {
661
+ }), /*#__PURE__*/React.createElement("path", {
668
662
  d: "M621.243 100.578H701.012",
669
663
  stroke: "black",
670
664
  strokeWidth: "0.894136",
671
665
  strokeMiterlimit: "10"
672
- }), /*#__PURE__*/React__default["default"].createElement("path", {
666
+ }), /*#__PURE__*/React.createElement("path", {
673
667
  d: "M621.243 107.514H676.734",
674
668
  stroke: "black",
675
669
  strokeWidth: "0.894136",
676
670
  strokeMiterlimit: "10"
677
- }), /*#__PURE__*/React__default["default"].createElement("path", {
671
+ }), /*#__PURE__*/React.createElement("path", {
678
672
  d: "M613.301 101.883C622.878 101.883 630.642 94.1191 630.642 84.5419C630.642 74.9647 622.878 67.2009 613.301 67.2009C603.723 67.2009 595.96 74.9647 595.96 84.5419C595.96 94.1191 603.723 101.883 613.301 101.883Z",
679
673
  fill: "#F3F3F3",
680
674
  stroke: "black",
681
675
  strokeWidth: "0.894136",
682
676
  strokeMiterlimit: "10"
683
- }), /*#__PURE__*/React__default["default"].createElement("path", {
677
+ }), /*#__PURE__*/React.createElement("path", {
684
678
  d: "M607.517 78.763L619.079 90.3208",
685
679
  stroke: "black",
686
680
  strokeWidth: "0.894136",
687
681
  strokeMiterlimit: "10"
688
- }), /*#__PURE__*/React__default["default"].createElement("path", {
682
+ }), /*#__PURE__*/React.createElement("path", {
689
683
  d: "M619.079 78.763L607.517 90.3208",
690
684
  stroke: "black",
691
685
  strokeWidth: "0.894136",
692
686
  strokeMiterlimit: "10"
693
- }), /*#__PURE__*/React__default["default"].createElement("path", {
687
+ }), /*#__PURE__*/React.createElement("path", {
694
688
  d: "M555.347 117.919H610.838",
695
689
  stroke: "black",
696
690
  strokeWidth: "0.894136",
697
691
  strokeMiterlimit: "10"
698
- }), /*#__PURE__*/React__default["default"].createElement("path", {
692
+ }), /*#__PURE__*/React.createElement("path", {
699
693
  d: "M704.48 152.601V339.884",
700
694
  stroke: "black",
701
695
  strokeWidth: "0.894136",
702
696
  strokeMiterlimit: "10"
703
- }), /*#__PURE__*/React__default["default"].createElement("path", {
697
+ }), /*#__PURE__*/React.createElement("path", {
704
698
  d: "M520.665 83.237V0",
705
699
  stroke: "black",
706
700
  strokeWidth: "0.894136",
707
701
  strokeMiterlimit: "10"
708
- }))), _defs || (_defs = /*#__PURE__*/React__default["default"].createElement("defs", null, /*#__PURE__*/React__default["default"].createElement("clipPath", {
702
+ }))), _defs || (_defs = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
709
703
  id: "clip0_0_2401"
710
- }, /*#__PURE__*/React__default["default"].createElement("rect", {
704
+ }, /*#__PURE__*/React.createElement("rect", {
711
705
  width: "750",
712
706
  height: "569.22",
713
707
  fill: "white"