`, so it can be styled via any CSS solution you prefer.\n * @see https://floating-ui.com/docs/FloatingOverlay\n */\nconst FloatingOverlay = /*#__PURE__*/React.forwardRef(function FloatingOverlay(props, ref) {\n const {\n lockScroll = false,\n ...rest\n } = props;\n const lockId = useId();\n index(() => {\n if (!lockScroll) return;\n activeLocks.add(lockId);\n const isIOS = /iP(hone|ad|od)|iOS/.test(getPlatform());\n const bodyStyle = document.body.style;\n // RTL scrollbar\n const scrollbarX = Math.round(document.documentElement.getBoundingClientRect().left) + document.documentElement.scrollLeft;\n const paddingProp = scrollbarX ? 'paddingLeft' : 'paddingRight';\n const scrollbarWidth = window.innerWidth - document.documentElement.clientWidth;\n const scrollX = bodyStyle.left ? parseFloat(bodyStyle.left) : window.pageXOffset;\n const scrollY = bodyStyle.top ? parseFloat(bodyStyle.top) : window.pageYOffset;\n bodyStyle.overflow = 'hidden';\n if (scrollbarWidth) {\n bodyStyle[paddingProp] = scrollbarWidth + \"px\";\n }\n\n // Only iOS doesn't respect `overflow: hidden` on document.body, and this\n // technique has fewer side effects.\n if (isIOS) {\n var _window$visualViewpor, _window$visualViewpor2;\n // iOS 12 does not support `visualViewport`.\n const offsetLeft = ((_window$visualViewpor = window.visualViewport) == null ? void 0 : _window$visualViewpor.offsetLeft) || 0;\n const offsetTop = ((_window$visualViewpor2 = window.visualViewport) == null ? void 0 : _window$visualViewpor2.offsetTop) || 0;\n Object.assign(bodyStyle, {\n position: 'fixed',\n top: -(scrollY - Math.floor(offsetTop)) + \"px\",\n left: -(scrollX - Math.floor(offsetLeft)) + \"px\",\n right: '0'\n });\n }\n return () => {\n activeLocks.delete(lockId);\n if (activeLocks.size === 0) {\n Object.assign(bodyStyle, {\n overflow: '',\n [paddingProp]: ''\n });\n if (isIOS) {\n Object.assign(bodyStyle, {\n position: '',\n top: '',\n left: '',\n right: ''\n });\n window.scrollTo(scrollX, scrollY);\n }\n }\n };\n }, [lockId, lockScroll]);\n return /*#__PURE__*/React.createElement(\"div\", _extends({\n ref: ref\n }, rest, {\n style: {\n position: 'fixed',\n overflow: 'auto',\n top: 0,\n right: 0,\n bottom: 0,\n left: 0,\n ...rest.style\n }\n }));\n});\n\nfunction isButtonTarget(event) {\n return isHTMLElement(event.target) && event.target.tagName === 'BUTTON';\n}\nfunction isSpaceIgnored(element) {\n return isTypeableElement(element);\n}\n/**\n * Opens or closes the floating element when clicking the reference element.\n * @see https://floating-ui.com/docs/useClick\n */\nfunction useClick(context, props) {\n if (props === void 0) {\n props = {};\n }\n const {\n open,\n onOpenChange,\n dataRef,\n elements: {\n domReference\n }\n } = context;\n const {\n enabled = true,\n event: eventOption = 'click',\n toggle = true,\n ignoreMouse = false,\n keyboardHandlers = true\n } = props;\n const pointerTypeRef = React.useRef();\n const didKeyDownRef = React.useRef(false);\n return React.useMemo(() => {\n if (!enabled) return {};\n return {\n reference: {\n onPointerDown(event) {\n pointerTypeRef.current = event.pointerType;\n },\n onMouseDown(event) {\n // Ignore all buttons except for the \"main\" button.\n // https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button\n if (event.button !== 0) {\n return;\n }\n if (isMouseLikePointerType(pointerTypeRef.current, true) && ignoreMouse) {\n return;\n }\n if (eventOption === 'click') {\n return;\n }\n if (open && toggle && (dataRef.current.openEvent ? dataRef.current.openEvent.type === 'mousedown' : true)) {\n onOpenChange(false, event.nativeEvent, 'click');\n } else {\n // Prevent stealing focus from the floating element\n event.preventDefault();\n onOpenChange(true, event.nativeEvent, 'click');\n }\n },\n onClick(event) {\n if (eventOption === 'mousedown' && pointerTypeRef.current) {\n pointerTypeRef.current = undefined;\n return;\n }\n if (isMouseLikePointerType(pointerTypeRef.current, true) && ignoreMouse) {\n return;\n }\n if (open && toggle && (dataRef.current.openEvent ? dataRef.current.openEvent.type === 'click' : true)) {\n onOpenChange(false, event.nativeEvent, 'click');\n } else {\n onOpenChange(true, event.nativeEvent, 'click');\n }\n },\n onKeyDown(event) {\n pointerTypeRef.current = undefined;\n if (event.defaultPrevented || !keyboardHandlers || isButtonTarget(event)) {\n return;\n }\n if (event.key === ' ' && !isSpaceIgnored(domReference)) {\n // Prevent scrolling\n event.preventDefault();\n didKeyDownRef.current = true;\n }\n if (event.key === 'Enter') {\n if (open && toggle) {\n onOpenChange(false, event.nativeEvent, 'click');\n } else {\n onOpenChange(true, event.nativeEvent, 'click');\n }\n }\n },\n onKeyUp(event) {\n if (event.defaultPrevented || !keyboardHandlers || isButtonTarget(event) || isSpaceIgnored(domReference)) {\n return;\n }\n if (event.key === ' ' && didKeyDownRef.current) {\n didKeyDownRef.current = false;\n if (open && toggle) {\n onOpenChange(false, event.nativeEvent, 'click');\n } else {\n onOpenChange(true, event.nativeEvent, 'click');\n }\n }\n }\n }\n };\n }, [enabled, dataRef, eventOption, ignoreMouse, keyboardHandlers, domReference, toggle, open, onOpenChange]);\n}\n\nfunction createVirtualElement(domElement, data) {\n let offsetX = null;\n let offsetY = null;\n let isAutoUpdateEvent = false;\n return {\n contextElement: domElement || undefined,\n getBoundingClientRect() {\n var _data$dataRef$current;\n const domRect = (domElement == null ? void 0 : domElement.getBoundingClientRect()) || {\n width: 0,\n height: 0,\n x: 0,\n y: 0\n };\n const isXAxis = data.axis === 'x' || data.axis === 'both';\n const isYAxis = data.axis === 'y' || data.axis === 'both';\n const canTrackCursorOnAutoUpdate = ['mouseenter', 'mousemove'].includes(((_data$dataRef$current = data.dataRef.current.openEvent) == null ? void 0 : _data$dataRef$current.type) || '') && data.pointerType !== 'touch';\n let width = domRect.width;\n let height = domRect.height;\n let x = domRect.x;\n let y = domRect.y;\n if (offsetX == null && data.x && isXAxis) {\n offsetX = domRect.x - data.x;\n }\n if (offsetY == null && data.y && isYAxis) {\n offsetY = domRect.y - data.y;\n }\n x -= offsetX || 0;\n y -= offsetY || 0;\n width = 0;\n height = 0;\n if (!isAutoUpdateEvent || canTrackCursorOnAutoUpdate) {\n width = data.axis === 'y' ? domRect.width : 0;\n height = data.axis === 'x' ? domRect.height : 0;\n x = isXAxis && data.x != null ? data.x : x;\n y = isYAxis && data.y != null ? data.y : y;\n } else if (isAutoUpdateEvent && !canTrackCursorOnAutoUpdate) {\n height = data.axis === 'x' ? domRect.height : height;\n width = data.axis === 'y' ? domRect.width : width;\n }\n isAutoUpdateEvent = true;\n return {\n width,\n height,\n x,\n y,\n top: y,\n right: x + width,\n bottom: y + height,\n left: x\n };\n }\n };\n}\nfunction isMouseBasedEvent(event) {\n return event != null && event.clientX != null;\n}\n/**\n * Positions the floating element relative to a client point (in the viewport),\n * such as the mouse position. By default, it follows the mouse cursor.\n * @see https://floating-ui.com/docs/useClientPoint\n */\nfunction useClientPoint(context, props) {\n if (props === void 0) {\n props = {};\n }\n const {\n open,\n dataRef,\n elements: {\n floating,\n domReference\n },\n refs\n } = context;\n const {\n enabled = true,\n axis = 'both',\n x = null,\n y = null\n } = props;\n const initialRef = React.useRef(false);\n const cleanupListenerRef = React.useRef(null);\n const [pointerType, setPointerType] = React.useState();\n const [reactive, setReactive] = React.useState([]);\n const setReference = useEffectEvent((x, y) => {\n if (initialRef.current) return;\n\n // Prevent setting if the open event was not a mouse-like one\n // (e.g. focus to open, then hover over the reference element).\n // Only apply if the event exists.\n if (dataRef.current.openEvent && !isMouseBasedEvent(dataRef.current.openEvent)) {\n return;\n }\n refs.setPositionReference(createVirtualElement(domReference, {\n x,\n y,\n axis,\n dataRef,\n pointerType\n }));\n });\n const handleReferenceEnterOrMove = useEffectEvent(event => {\n if (x != null || y != null) return;\n if (!open) {\n setReference(event.clientX, event.clientY);\n } else if (!cleanupListenerRef.current) {\n // If there's no cleanup, there's no listener, but we want to ensure\n // we add the listener if the cursor landed on the floating element and\n // then back on the reference (i.e. it's interactive).\n setReactive([]);\n }\n });\n\n // If the pointer is a mouse-like pointer, we want to continue following the\n // mouse even if the floating element is transitioning out. On touch\n // devices, this is undesirable because the floating element will move to\n // the dismissal touch point.\n const openCheck = isMouseLikePointerType(pointerType) ? floating : open;\n const addListener = React.useCallback(() => {\n // Explicitly specified `x`/`y` coordinates shouldn't add a listener.\n if (!openCheck || !enabled || x != null || y != null) return;\n const win = getWindow(floating);\n function handleMouseMove(event) {\n const target = getTarget(event);\n if (!contains(floating, target)) {\n setReference(event.clientX, event.clientY);\n } else {\n win.removeEventListener('mousemove', handleMouseMove);\n cleanupListenerRef.current = null;\n }\n }\n if (!dataRef.current.openEvent || isMouseBasedEvent(dataRef.current.openEvent)) {\n win.addEventListener('mousemove', handleMouseMove);\n const cleanup = () => {\n win.removeEventListener('mousemove', handleMouseMove);\n cleanupListenerRef.current = null;\n };\n cleanupListenerRef.current = cleanup;\n return cleanup;\n }\n refs.setPositionReference(domReference);\n }, [openCheck, enabled, x, y, floating, dataRef, refs, domReference, setReference]);\n React.useEffect(() => {\n return addListener();\n }, [addListener, reactive]);\n React.useEffect(() => {\n if (enabled && !floating) {\n initialRef.current = false;\n }\n }, [enabled, floating]);\n React.useEffect(() => {\n if (!enabled && open) {\n initialRef.current = true;\n }\n }, [enabled, open]);\n index(() => {\n if (enabled && (x != null || y != null)) {\n initialRef.current = false;\n setReference(x, y);\n }\n }, [enabled, x, y, setReference]);\n return React.useMemo(() => {\n if (!enabled) return {};\n function setPointerTypeRef(_ref) {\n let {\n pointerType\n } = _ref;\n setPointerType(pointerType);\n }\n return {\n reference: {\n onPointerDown: setPointerTypeRef,\n onPointerEnter: setPointerTypeRef,\n onMouseMove: handleReferenceEnterOrMove,\n onMouseEnter: handleReferenceEnterOrMove\n }\n };\n }, [enabled, handleReferenceEnterOrMove]);\n}\n\nconst bubbleHandlerKeys = {\n pointerdown: 'onPointerDown',\n mousedown: 'onMouseDown',\n click: 'onClick'\n};\nconst captureHandlerKeys = {\n pointerdown: 'onPointerDownCapture',\n mousedown: 'onMouseDownCapture',\n click: 'onClickCapture'\n};\nconst normalizeProp = normalizable => {\n var _normalizable$escapeK, _normalizable$outside;\n return {\n escapeKey: typeof normalizable === 'boolean' ? normalizable : (_normalizable$escapeK = normalizable == null ? void 0 : normalizable.escapeKey) != null ? _normalizable$escapeK : false,\n outsidePress: typeof normalizable === 'boolean' ? normalizable : (_normalizable$outside = normalizable == null ? void 0 : normalizable.outsidePress) != null ? _normalizable$outside : true\n };\n};\n/**\n * Closes the floating element when a dismissal is requested — by default, when\n * the user presses the `escape` key or outside of the floating element.\n * @see https://floating-ui.com/docs/useDismiss\n */\nfunction useDismiss(context, props) {\n if (props === void 0) {\n props = {};\n }\n const {\n open,\n onOpenChange,\n elements: {\n reference,\n domReference,\n floating\n },\n dataRef\n } = context;\n const {\n enabled = true,\n escapeKey = true,\n outsidePress: unstable_outsidePress = true,\n outsidePressEvent = 'pointerdown',\n referencePress = false,\n referencePressEvent = 'pointerdown',\n ancestorScroll = false,\n bubbles,\n capture\n } = props;\n const tree = useFloatingTree();\n const outsidePressFn = useEffectEvent(typeof unstable_outsidePress === 'function' ? unstable_outsidePress : () => false);\n const outsidePress = typeof unstable_outsidePress === 'function' ? outsidePressFn : unstable_outsidePress;\n const insideReactTreeRef = React.useRef(false);\n const endedOrStartedInsideRef = React.useRef(false);\n const {\n escapeKey: escapeKeyBubbles,\n outsidePress: outsidePressBubbles\n } = normalizeProp(bubbles);\n const {\n escapeKey: escapeKeyCapture,\n outsidePress: outsidePressCapture\n } = normalizeProp(capture);\n const closeOnEscapeKeyDown = useEffectEvent(event => {\n var _dataRef$current$floa;\n if (!open || !enabled || !escapeKey || event.key !== 'Escape') {\n return;\n }\n const nodeId = (_dataRef$current$floa = dataRef.current.floatingContext) == null ? void 0 : _dataRef$current$floa.nodeId;\n const children = tree ? getChildren(tree.nodesRef.current, nodeId) : [];\n if (!escapeKeyBubbles) {\n event.stopPropagation();\n if (children.length > 0) {\n let shouldDismiss = true;\n children.forEach(child => {\n var _child$context;\n if ((_child$context = child.context) != null && _child$context.open && !child.context.dataRef.current.__escapeKeyBubbles) {\n shouldDismiss = false;\n return;\n }\n });\n if (!shouldDismiss) {\n return;\n }\n }\n }\n onOpenChange(false, isReactEvent(event) ? event.nativeEvent : event, 'escape-key');\n });\n const closeOnEscapeKeyDownCapture = useEffectEvent(event => {\n var _getTarget2;\n const callback = () => {\n var _getTarget;\n closeOnEscapeKeyDown(event);\n (_getTarget = getTarget(event)) == null || _getTarget.removeEventListener('keydown', callback);\n };\n (_getTarget2 = getTarget(event)) == null || _getTarget2.addEventListener('keydown', callback);\n });\n const closeOnPressOutside = useEffectEvent(event => {\n var _dataRef$current$floa2;\n // Given developers can stop the propagation of the synthetic event,\n // we can only be confident with a positive value.\n const insideReactTree = insideReactTreeRef.current;\n insideReactTreeRef.current = false;\n\n // When click outside is lazy (`click` event), handle dragging.\n // Don't close if:\n // - The click started inside the floating element.\n // - The click ended inside the floating element.\n const endedOrStartedInside = endedOrStartedInsideRef.current;\n endedOrStartedInsideRef.current = false;\n if (outsidePressEvent === 'click' && endedOrStartedInside) {\n return;\n }\n if (insideReactTree) {\n return;\n }\n if (typeof outsidePress === 'function' && !outsidePress(event)) {\n return;\n }\n const target = getTarget(event);\n const inertSelector = \"[\" + createAttribute('inert') + \"]\";\n const markers = getDocument(floating).querySelectorAll(inertSelector);\n let targetRootAncestor = isElement(target) ? target : null;\n while (targetRootAncestor && !isLastTraversableNode(targetRootAncestor)) {\n const nextParent = getParentNode(targetRootAncestor);\n if (isLastTraversableNode(nextParent) || !isElement(nextParent)) {\n break;\n }\n targetRootAncestor = nextParent;\n }\n\n // Check if the click occurred on a third-party element injected after the\n // floating element rendered.\n if (markers.length && isElement(target) && !isRootElement(target) &&\n // Clicked on a direct ancestor (e.g. FloatingOverlay).\n !contains(target, floating) &&\n // If the target root element contains none of the markers, then the\n // element was injected after the floating element rendered.\n Array.from(markers).every(marker => !contains(targetRootAncestor, marker))) {\n return;\n }\n\n // Check if the click occurred on the scrollbar\n if (isHTMLElement(target) && floating) {\n // In Firefox, `target.scrollWidth > target.clientWidth` for inline\n // elements.\n const canScrollX = target.clientWidth > 0 && target.scrollWidth > target.clientWidth;\n const canScrollY = target.clientHeight > 0 && target.scrollHeight > target.clientHeight;\n let xCond = canScrollY && event.offsetX > target.clientWidth;\n\n // In some browsers it is possible to change the (or window)\n // scrollbar to the left side, but is very rare and is difficult to\n // check for. Plus, for modal dialogs with backdrops, it is more\n // important that the backdrop is checked but not so much the window.\n if (canScrollY) {\n const isRTL = getComputedStyle(target).direction === 'rtl';\n if (isRTL) {\n xCond = event.offsetX <= target.offsetWidth - target.clientWidth;\n }\n }\n if (xCond || canScrollX && event.offsetY > target.clientHeight) {\n return;\n }\n }\n const nodeId = (_dataRef$current$floa2 = dataRef.current.floatingContext) == null ? void 0 : _dataRef$current$floa2.nodeId;\n const targetIsInsideChildren = tree && getChildren(tree.nodesRef.current, nodeId).some(node => {\n var _node$context;\n return isEventTargetWithin(event, (_node$context = node.context) == null ? void 0 : _node$context.elements.floating);\n });\n if (isEventTargetWithin(event, floating) || isEventTargetWithin(event, domReference) || targetIsInsideChildren) {\n return;\n }\n const children = tree ? getChildren(tree.nodesRef.current, nodeId) : [];\n if (children.length > 0) {\n let shouldDismiss = true;\n children.forEach(child => {\n var _child$context2;\n if ((_child$context2 = child.context) != null && _child$context2.open && !child.context.dataRef.current.__outsidePressBubbles) {\n shouldDismiss = false;\n return;\n }\n });\n if (!shouldDismiss) {\n return;\n }\n }\n onOpenChange(false, event, 'outside-press');\n });\n const closeOnPressOutsideCapture = useEffectEvent(event => {\n var _getTarget4;\n const callback = () => {\n var _getTarget3;\n closeOnPressOutside(event);\n (_getTarget3 = getTarget(event)) == null || _getTarget3.removeEventListener(outsidePressEvent, callback);\n };\n (_getTarget4 = getTarget(event)) == null || _getTarget4.addEventListener(outsidePressEvent, callback);\n });\n React.useEffect(() => {\n if (!open || !enabled) {\n return;\n }\n dataRef.current.__escapeKeyBubbles = escapeKeyBubbles;\n dataRef.current.__outsidePressBubbles = outsidePressBubbles;\n function onScroll(event) {\n onOpenChange(false, event, 'ancestor-scroll');\n }\n const doc = getDocument(floating);\n escapeKey && doc.addEventListener('keydown', escapeKeyCapture ? closeOnEscapeKeyDownCapture : closeOnEscapeKeyDown, escapeKeyCapture);\n outsidePress && doc.addEventListener(outsidePressEvent, outsidePressCapture ? closeOnPressOutsideCapture : closeOnPressOutside, outsidePressCapture);\n let ancestors = [];\n if (ancestorScroll) {\n if (isElement(domReference)) {\n ancestors = getOverflowAncestors(domReference);\n }\n if (isElement(floating)) {\n ancestors = ancestors.concat(getOverflowAncestors(floating));\n }\n if (!isElement(reference) && reference && reference.contextElement) {\n ancestors = ancestors.concat(getOverflowAncestors(reference.contextElement));\n }\n }\n\n // Ignore the visual viewport for scrolling dismissal (allow pinch-zoom)\n ancestors = ancestors.filter(ancestor => {\n var _doc$defaultView;\n return ancestor !== ((_doc$defaultView = doc.defaultView) == null ? void 0 : _doc$defaultView.visualViewport);\n });\n ancestors.forEach(ancestor => {\n ancestor.addEventListener('scroll', onScroll, {\n passive: true\n });\n });\n return () => {\n escapeKey && doc.removeEventListener('keydown', escapeKeyCapture ? closeOnEscapeKeyDownCapture : closeOnEscapeKeyDown, escapeKeyCapture);\n outsidePress && doc.removeEventListener(outsidePressEvent, outsidePressCapture ? closeOnPressOutsideCapture : closeOnPressOutside, outsidePressCapture);\n ancestors.forEach(ancestor => {\n ancestor.removeEventListener('scroll', onScroll);\n });\n };\n }, [dataRef, floating, domReference, reference, escapeKey, outsidePress, outsidePressEvent, open, onOpenChange, ancestorScroll, enabled, escapeKeyBubbles, outsidePressBubbles, closeOnEscapeKeyDown, escapeKeyCapture, closeOnEscapeKeyDownCapture, closeOnPressOutside, outsidePressCapture, closeOnPressOutsideCapture]);\n React.useEffect(() => {\n insideReactTreeRef.current = false;\n }, [outsidePress, outsidePressEvent]);\n return React.useMemo(() => {\n if (!enabled) {\n return {};\n }\n return {\n reference: {\n onKeyDown: closeOnEscapeKeyDown,\n [bubbleHandlerKeys[referencePressEvent]]: event => {\n if (referencePress) {\n onOpenChange(false, event.nativeEvent, 'reference-press');\n }\n }\n },\n floating: {\n onKeyDown: closeOnEscapeKeyDown,\n onMouseDown() {\n endedOrStartedInsideRef.current = true;\n },\n onMouseUp() {\n endedOrStartedInsideRef.current = true;\n },\n [captureHandlerKeys[outsidePressEvent]]: () => {\n insideReactTreeRef.current = true;\n }\n }\n };\n }, [enabled, referencePress, outsidePressEvent, referencePressEvent, onOpenChange, closeOnEscapeKeyDown]);\n}\n\nfunction useFloatingRootContext(options) {\n const {\n open = false,\n onOpenChange: onOpenChangeProp,\n elements: elementsProp\n } = options;\n const floatingId = useId();\n const dataRef = React.useRef({});\n const [events] = React.useState(() => createPubSub());\n const nested = useFloatingParentNodeId() != null;\n if (process.env.NODE_ENV !== \"production\") {\n const optionDomReference = elementsProp.reference;\n if (optionDomReference && !isElement(optionDomReference)) {\n error('Cannot pass a virtual element to the `elements.reference` option,', 'as it must be a real DOM element. Use `refs.setPositionReference()`', 'instead.');\n }\n }\n const [positionReference, setPositionReference] = React.useState(elementsProp.reference);\n const onOpenChange = useEffectEvent((open, event, reason) => {\n dataRef.current.openEvent = open ? event : undefined;\n events.emit('openchange', {\n open,\n event,\n reason,\n nested\n });\n onOpenChangeProp == null || onOpenChangeProp(open, event, reason);\n });\n const refs = React.useMemo(() => ({\n setPositionReference\n }), []);\n const elements = React.useMemo(() => ({\n reference: positionReference || elementsProp.reference || null,\n floating: elementsProp.floating || null,\n domReference: elementsProp.reference\n }), [positionReference, elementsProp.reference, elementsProp.floating]);\n return React.useMemo(() => ({\n dataRef,\n open,\n onOpenChange,\n elements,\n events,\n floatingId,\n refs\n }), [open, onOpenChange, elements, events, floatingId, refs]);\n}\n\n/**\n * Provides data to position a floating element and context to add interactions.\n * @see https://floating-ui.com/docs/useFloating\n */\nfunction useFloating(options) {\n if (options === void 0) {\n options = {};\n }\n const {\n nodeId\n } = options;\n const internalRootContext = useFloatingRootContext({\n ...options,\n elements: {\n reference: null,\n floating: null,\n ...options.elements\n }\n });\n const rootContext = options.rootContext || internalRootContext;\n const computedElements = rootContext.elements;\n const [_domReference, setDomReference] = React.useState(null);\n const [positionReference, _setPositionReference] = React.useState(null);\n const optionDomReference = computedElements == null ? void 0 : computedElements.reference;\n const domReference = optionDomReference || _domReference;\n const domReferenceRef = React.useRef(null);\n const tree = useFloatingTree();\n index(() => {\n if (domReference) {\n domReferenceRef.current = domReference;\n }\n }, [domReference]);\n const position = useFloating$1({\n ...options,\n elements: {\n ...computedElements,\n ...(positionReference && {\n reference: positionReference\n })\n }\n });\n const setPositionReference = React.useCallback(node => {\n const computedPositionReference = isElement(node) ? {\n getBoundingClientRect: () => node.getBoundingClientRect(),\n contextElement: node\n } : node;\n // Store the positionReference in state if the DOM reference is specified externally via the\n // `elements.reference` option. This ensures that it won't be overridden on future renders.\n _setPositionReference(computedPositionReference);\n position.refs.setReference(computedPositionReference);\n }, [position.refs]);\n const setReference = React.useCallback(node => {\n if (isElement(node) || node === null) {\n domReferenceRef.current = node;\n setDomReference(node);\n }\n\n // Backwards-compatibility for passing a virtual element to `reference`\n // after it has set the DOM reference.\n if (isElement(position.refs.reference.current) || position.refs.reference.current === null ||\n // Don't allow setting virtual elements using the old technique back to\n // `null` to support `positionReference` + an unstable `reference`\n // callback ref.\n node !== null && !isElement(node)) {\n position.refs.setReference(node);\n }\n }, [position.refs]);\n const refs = React.useMemo(() => ({\n ...position.refs,\n setReference,\n setPositionReference,\n domReference: domReferenceRef\n }), [position.refs, setReference, setPositionReference]);\n const elements = React.useMemo(() => ({\n ...position.elements,\n domReference: domReference\n }), [position.elements, domReference]);\n const context = React.useMemo(() => ({\n ...position,\n ...rootContext,\n refs,\n elements,\n nodeId\n }), [position, refs, elements, nodeId, rootContext]);\n index(() => {\n rootContext.dataRef.current.floatingContext = context;\n const node = tree == null ? void 0 : tree.nodesRef.current.find(node => node.id === nodeId);\n if (node) {\n node.context = context;\n }\n });\n return React.useMemo(() => ({\n ...position,\n context,\n refs,\n elements\n }), [position, refs, elements, context]);\n}\n\n/**\n * Opens the floating element while the reference element has focus, like CSS\n * `:focus`.\n * @see https://floating-ui.com/docs/useFocus\n */\nfunction useFocus(context, props) {\n if (props === void 0) {\n props = {};\n }\n const {\n open,\n onOpenChange,\n events,\n dataRef,\n elements: {\n domReference\n }\n } = context;\n const {\n enabled = true,\n visibleOnly = true\n } = props;\n const blockFocusRef = React.useRef(false);\n const timeoutRef = React.useRef();\n const keyboardModalityRef = React.useRef(true);\n React.useEffect(() => {\n if (!enabled) {\n return;\n }\n const win = getWindow(domReference);\n\n // If the reference was focused and the user left the tab/window, and the\n // floating element was not open, the focus should be blocked when they\n // return to the tab/window.\n function onBlur() {\n if (!open && isHTMLElement(domReference) && domReference === activeElement(getDocument(domReference))) {\n blockFocusRef.current = true;\n }\n }\n function onKeyDown() {\n keyboardModalityRef.current = true;\n }\n win.addEventListener('blur', onBlur);\n win.addEventListener('keydown', onKeyDown, true);\n return () => {\n win.removeEventListener('blur', onBlur);\n win.removeEventListener('keydown', onKeyDown, true);\n };\n }, [domReference, open, enabled]);\n React.useEffect(() => {\n if (!enabled) {\n return;\n }\n function onOpenChange(_ref) {\n let {\n reason\n } = _ref;\n if (reason === 'reference-press' || reason === 'escape-key') {\n blockFocusRef.current = true;\n }\n }\n events.on('openchange', onOpenChange);\n return () => {\n events.off('openchange', onOpenChange);\n };\n }, [events, enabled]);\n React.useEffect(() => {\n return () => {\n clearTimeout(timeoutRef.current);\n };\n }, []);\n return React.useMemo(() => {\n if (!enabled) {\n return {};\n }\n return {\n reference: {\n onPointerDown(event) {\n if (isVirtualPointerEvent(event.nativeEvent)) return;\n keyboardModalityRef.current = false;\n },\n onMouseLeave() {\n blockFocusRef.current = false;\n },\n onFocus(event) {\n if (blockFocusRef.current) return;\n const target = getTarget(event.nativeEvent);\n if (visibleOnly && isElement(target)) {\n try {\n // Mac Safari unreliably matches `:focus-visible` on the reference\n // if focus was outside the page initially - use the fallback\n // instead.\n if (isSafari() && isMac()) throw Error();\n if (!target.matches(':focus-visible')) return;\n } catch (e) {\n // Old browsers will throw an error when using `:focus-visible`.\n if (!keyboardModalityRef.current && !isTypeableElement(target)) {\n return;\n }\n }\n }\n onOpenChange(true, event.nativeEvent, 'focus');\n },\n onBlur(event) {\n blockFocusRef.current = false;\n const relatedTarget = event.relatedTarget;\n\n // Hit the non-modal focus management portal guard. Focus will be\n // moved into the floating element immediately after.\n const movedToFocusGuard = isElement(relatedTarget) && relatedTarget.hasAttribute(createAttribute('focus-guard')) && relatedTarget.getAttribute('data-type') === 'outside';\n\n // Wait for the window blur listener to fire.\n timeoutRef.current = window.setTimeout(() => {\n var _dataRef$current$floa;\n const activeEl = activeElement(domReference ? domReference.ownerDocument : document);\n\n // Focus left the page, keep it open.\n if (!relatedTarget && activeEl === domReference) return;\n\n // When focusing the reference element (e.g. regular click), then\n // clicking into the floating element, prevent it from hiding.\n // Note: it must be focusable, e.g. `tabindex=\"-1\"`.\n // We can not rely on relatedTarget to point to the correct element\n // as it will only point to the shadow host of the newly focused element\n // and not the element that actually has received focus if it is located\n // inside a shadow root.\n if (contains((_dataRef$current$floa = dataRef.current.floatingContext) == null ? void 0 : _dataRef$current$floa.refs.floating.current, activeEl) || contains(domReference, activeEl) || movedToFocusGuard) {\n return;\n }\n onOpenChange(false, event.nativeEvent, 'focus');\n });\n }\n }\n };\n }, [enabled, visibleOnly, dataRef, domReference, onOpenChange]);\n}\n\nconst ACTIVE_KEY = 'active';\nconst SELECTED_KEY = 'selected';\nfunction mergeProps(userProps, propsList, elementKey) {\n const map = new Map();\n const isItem = elementKey === 'item';\n let domUserProps = userProps;\n if (isItem && userProps) {\n const {\n [ACTIVE_KEY]: _,\n [SELECTED_KEY]: __,\n ...validProps\n } = userProps;\n domUserProps = validProps;\n }\n return {\n ...(elementKey === 'floating' && {\n tabIndex: -1\n }),\n ...domUserProps,\n ...propsList.map(value => {\n const propsOrGetProps = value ? value[elementKey] : null;\n if (typeof propsOrGetProps === 'function') {\n return userProps ? propsOrGetProps(userProps) : null;\n }\n return propsOrGetProps;\n }).concat(userProps).reduce((acc, props) => {\n if (!props) {\n return acc;\n }\n Object.entries(props).forEach(_ref => {\n let [key, value] = _ref;\n if (isItem && [ACTIVE_KEY, SELECTED_KEY].includes(key)) {\n return;\n }\n if (key.indexOf('on') === 0) {\n if (!map.has(key)) {\n map.set(key, []);\n }\n if (typeof value === 'function') {\n var _map$get;\n (_map$get = map.get(key)) == null || _map$get.push(value);\n acc[key] = function () {\n var _map$get2;\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n return (_map$get2 = map.get(key)) == null ? void 0 : _map$get2.map(fn => fn(...args)).find(val => val !== undefined);\n };\n }\n } else {\n acc[key] = value;\n }\n });\n return acc;\n }, {})\n };\n}\n/**\n * Merges an array of interaction hooks' props into prop getters, allowing\n * event handler functions to be composed together without overwriting one\n * another.\n * @see https://floating-ui.com/docs/useInteractions\n */\nfunction useInteractions(propsList) {\n if (propsList === void 0) {\n propsList = [];\n }\n // The dependencies are a dynamic array, so we can't use the linter's\n // suggestion to add it to the deps array.\n const deps = propsList;\n const getReferenceProps = React.useCallback(userProps => mergeProps(userProps, propsList, 'reference'),\n // eslint-disable-next-line react-hooks/exhaustive-deps\n deps);\n const getFloatingProps = React.useCallback(userProps => mergeProps(userProps, propsList, 'floating'),\n // eslint-disable-next-line react-hooks/exhaustive-deps\n deps);\n const getItemProps = React.useCallback(userProps => mergeProps(userProps, propsList, 'item'),\n // Granularly check for `item` changes, because the `getItemProps` getter\n // should be as referentially stable as possible since it may be passed as\n // a prop to many components. All `item` key values must therefore be\n // memoized.\n // eslint-disable-next-line react-hooks/exhaustive-deps\n propsList.map(key => key == null ? void 0 : key.item));\n return React.useMemo(() => ({\n getReferenceProps,\n getFloatingProps,\n getItemProps\n }), [getReferenceProps, getFloatingProps, getItemProps]);\n}\n\nlet isPreventScrollSupported = false;\nfunction doSwitch(orientation, vertical, horizontal) {\n switch (orientation) {\n case 'vertical':\n return vertical;\n case 'horizontal':\n return horizontal;\n default:\n return vertical || horizontal;\n }\n}\nfunction isMainOrientationKey(key, orientation) {\n const vertical = key === ARROW_UP || key === ARROW_DOWN;\n const horizontal = key === ARROW_LEFT || key === ARROW_RIGHT;\n return doSwitch(orientation, vertical, horizontal);\n}\nfunction isMainOrientationToEndKey(key, orientation, rtl) {\n const vertical = key === ARROW_DOWN;\n const horizontal = rtl ? key === ARROW_LEFT : key === ARROW_RIGHT;\n return doSwitch(orientation, vertical, horizontal) || key === 'Enter' || key === ' ' || key === '';\n}\nfunction isCrossOrientationOpenKey(key, orientation, rtl) {\n const vertical = rtl ? key === ARROW_LEFT : key === ARROW_RIGHT;\n const horizontal = key === ARROW_DOWN;\n return doSwitch(orientation, vertical, horizontal);\n}\nfunction isCrossOrientationCloseKey(key, orientation, rtl) {\n const vertical = rtl ? key === ARROW_RIGHT : key === ARROW_LEFT;\n const horizontal = key === ARROW_UP;\n return doSwitch(orientation, vertical, horizontal);\n}\n/**\n * Adds arrow key-based navigation of a list of items, either using real DOM\n * focus or virtual focus.\n * @see https://floating-ui.com/docs/useListNavigation\n */\nfunction useListNavigation(context, props) {\n const {\n open,\n onOpenChange,\n elements: {\n domReference,\n floating\n }\n } = context;\n const {\n listRef,\n activeIndex,\n onNavigate: unstable_onNavigate = () => {},\n enabled = true,\n selectedIndex = null,\n allowEscape = false,\n loop = false,\n nested = false,\n rtl = false,\n virtual = false,\n focusItemOnOpen = 'auto',\n focusItemOnHover = true,\n openOnArrowKeyDown = true,\n disabledIndices = undefined,\n orientation = 'vertical',\n cols = 1,\n scrollItemIntoView = true,\n virtualItemRef,\n itemSizes,\n dense = false\n } = props;\n if (process.env.NODE_ENV !== \"production\") {\n if (allowEscape) {\n if (!loop) {\n warn('`useListNavigation` looping must be enabled to allow escaping.');\n }\n if (!virtual) {\n warn('`useListNavigation` must be virtual to allow escaping.');\n }\n }\n if (orientation === 'vertical' && cols > 1) {\n warn('In grid list navigation mode (`cols` > 1), the `orientation` should', 'be either \"horizontal\" or \"both\".');\n }\n }\n const parentId = useFloatingParentNodeId();\n const tree = useFloatingTree();\n const onNavigate = useEffectEvent(unstable_onNavigate);\n const focusItemOnOpenRef = React.useRef(focusItemOnOpen);\n const indexRef = React.useRef(selectedIndex != null ? selectedIndex : -1);\n const keyRef = React.useRef(null);\n const isPointerModalityRef = React.useRef(true);\n const previousOnNavigateRef = React.useRef(onNavigate);\n const previousMountedRef = React.useRef(!!floating);\n const forceSyncFocus = React.useRef(false);\n const forceScrollIntoViewRef = React.useRef(false);\n const disabledIndicesRef = useLatestRef(disabledIndices);\n const latestOpenRef = useLatestRef(open);\n const scrollItemIntoViewRef = useLatestRef(scrollItemIntoView);\n const floatingRef = useLatestRef(floating);\n const selectedIndexRef = useLatestRef(selectedIndex);\n const [activeId, setActiveId] = React.useState();\n const [virtualId, setVirtualId] = React.useState();\n const focusItem = useEffectEvent(function (listRef, indexRef, forceScrollIntoView) {\n if (forceScrollIntoView === void 0) {\n forceScrollIntoView = false;\n }\n function runFocus(item) {\n if (virtual) {\n setActiveId(item.id);\n tree == null || tree.events.emit('virtualfocus', item);\n if (virtualItemRef) {\n virtualItemRef.current = item;\n }\n } else {\n enqueueFocus(item, {\n preventScroll: true,\n // Mac Safari does not move the virtual cursor unless the focus call\n // is sync. However, for the very first focus call, we need to wait\n // for the position to be ready in order to prevent unwanted\n // scrolling. This means the virtual cursor will not move to the first\n // item when first opening the floating element, but will on\n // subsequent calls. `preventScroll` is supported in modern Safari,\n // so we can use that instead.\n // iOS Safari must be async or the first item will not be focused.\n sync: isMac() && isSafari() ? isPreventScrollSupported || forceSyncFocus.current : false\n });\n }\n }\n const initialItem = listRef.current[indexRef.current];\n if (initialItem) {\n runFocus(initialItem);\n }\n requestAnimationFrame(() => {\n const waitedItem = listRef.current[indexRef.current] || initialItem;\n if (!waitedItem) return;\n if (!initialItem) {\n runFocus(waitedItem);\n }\n const scrollIntoViewOptions = scrollItemIntoViewRef.current;\n const shouldScrollIntoView = scrollIntoViewOptions && item && (forceScrollIntoView || !isPointerModalityRef.current);\n if (shouldScrollIntoView) {\n // JSDOM doesn't support `.scrollIntoView()` but it's widely supported\n // by all browsers.\n waitedItem.scrollIntoView == null || waitedItem.scrollIntoView(typeof scrollIntoViewOptions === 'boolean' ? {\n block: 'nearest',\n inline: 'nearest'\n } : scrollIntoViewOptions);\n }\n });\n });\n index(() => {\n document.createElement('div').focus({\n get preventScroll() {\n isPreventScrollSupported = true;\n return false;\n }\n });\n }, []);\n\n // Sync `selectedIndex` to be the `activeIndex` upon opening the floating\n // element. Also, reset `activeIndex` upon closing the floating element.\n index(() => {\n if (!enabled) {\n return;\n }\n if (open && floating) {\n if (focusItemOnOpenRef.current && selectedIndex != null) {\n // Regardless of the pointer modality, we want to ensure the selected\n // item comes into view when the floating element is opened.\n forceScrollIntoViewRef.current = true;\n indexRef.current = selectedIndex;\n onNavigate(selectedIndex);\n }\n } else if (previousMountedRef.current) {\n // Since the user can specify `onNavigate` conditionally\n // (onNavigate: open ? setActiveIndex : setSelectedIndex),\n // we store and call the previous function.\n indexRef.current = -1;\n previousOnNavigateRef.current(null);\n }\n }, [enabled, open, floating, selectedIndex, onNavigate]);\n\n // Sync `activeIndex` to be the focused item while the floating element is\n // open.\n index(() => {\n if (!enabled) {\n return;\n }\n if (open && floating) {\n if (activeIndex == null) {\n forceSyncFocus.current = false;\n if (selectedIndexRef.current != null) {\n return;\n }\n\n // Reset while the floating element was open (e.g. the list changed).\n if (previousMountedRef.current) {\n indexRef.current = -1;\n focusItem(listRef, indexRef);\n }\n\n // Initial sync.\n if (!previousMountedRef.current && focusItemOnOpenRef.current && (keyRef.current != null || focusItemOnOpenRef.current === true && keyRef.current == null)) {\n let runs = 0;\n const waitForListPopulated = () => {\n if (listRef.current[0] == null) {\n // Avoid letting the browser paint if possible on the first try,\n // otherwise use rAF. Don't try more than twice, since something\n // is wrong otherwise.\n if (runs < 2) {\n const scheduler = runs ? requestAnimationFrame : queueMicrotask;\n scheduler(waitForListPopulated);\n }\n runs++;\n } else {\n indexRef.current = keyRef.current == null || isMainOrientationToEndKey(keyRef.current, orientation, rtl) || nested ? getMinIndex(listRef, disabledIndicesRef.current) : getMaxIndex(listRef, disabledIndicesRef.current);\n keyRef.current = null;\n onNavigate(indexRef.current);\n }\n };\n waitForListPopulated();\n }\n } else if (!isIndexOutOfBounds(listRef, activeIndex)) {\n indexRef.current = activeIndex;\n focusItem(listRef, indexRef, forceScrollIntoViewRef.current);\n forceScrollIntoViewRef.current = false;\n }\n }\n }, [enabled, open, floating, activeIndex, selectedIndexRef, nested, listRef, orientation, rtl, onNavigate, focusItem, disabledIndicesRef]);\n\n // Ensure the parent floating element has focus when a nested child closes\n // to allow arrow key navigation to work after the pointer leaves the child.\n index(() => {\n var _nodes$find;\n if (!enabled || floating || !tree || virtual || !previousMountedRef.current) {\n return;\n }\n const nodes = tree.nodesRef.current;\n const parent = (_nodes$find = nodes.find(node => node.id === parentId)) == null || (_nodes$find = _nodes$find.context) == null ? void 0 : _nodes$find.elements.floating;\n const activeEl = activeElement(getDocument(floating));\n const treeContainsActiveEl = nodes.some(node => node.context && contains(node.context.elements.floating, activeEl));\n if (parent && !treeContainsActiveEl && isPointerModalityRef.current) {\n parent.focus({\n preventScroll: true\n });\n }\n }, [enabled, floating, tree, parentId, virtual]);\n index(() => {\n if (!enabled || !tree || !virtual || parentId) return;\n function handleVirtualFocus(item) {\n setVirtualId(item.id);\n if (virtualItemRef) {\n virtualItemRef.current = item;\n }\n }\n tree.events.on('virtualfocus', handleVirtualFocus);\n return () => {\n tree.events.off('virtualfocus', handleVirtualFocus);\n };\n }, [enabled, tree, virtual, parentId, virtualItemRef]);\n index(() => {\n previousOnNavigateRef.current = onNavigate;\n previousMountedRef.current = !!floating;\n });\n index(() => {\n if (!open) {\n keyRef.current = null;\n }\n }, [open]);\n const hasActiveIndex = activeIndex != null;\n const item = React.useMemo(() => {\n function syncCurrentTarget(currentTarget) {\n if (!open) return;\n const index = listRef.current.indexOf(currentTarget);\n if (index !== -1) {\n onNavigate(index);\n }\n }\n const props = {\n onFocus(_ref) {\n let {\n currentTarget\n } = _ref;\n syncCurrentTarget(currentTarget);\n },\n onClick: _ref2 => {\n let {\n currentTarget\n } = _ref2;\n return currentTarget.focus({\n preventScroll: true\n });\n },\n // Safari\n ...(focusItemOnHover && {\n onMouseMove(_ref3) {\n let {\n currentTarget\n } = _ref3;\n syncCurrentTarget(currentTarget);\n },\n onPointerLeave(_ref4) {\n let {\n pointerType\n } = _ref4;\n if (!isPointerModalityRef.current || pointerType === 'touch') {\n return;\n }\n indexRef.current = -1;\n focusItem(listRef, indexRef);\n onNavigate(null);\n if (!virtual) {\n enqueueFocus(floatingRef.current, {\n preventScroll: true\n });\n }\n }\n })\n };\n return props;\n }, [open, floatingRef, focusItem, focusItemOnHover, listRef, onNavigate, virtual]);\n return React.useMemo(() => {\n if (!enabled) {\n return {};\n }\n const disabledIndices = disabledIndicesRef.current;\n function onKeyDown(event) {\n isPointerModalityRef.current = false;\n forceSyncFocus.current = true;\n\n // If the floating element is animating out, ignore navigation. Otherwise,\n // the `activeIndex` gets set to 0 despite not being open so the next time\n // the user ArrowDowns, the first item won't be focused.\n if (!latestOpenRef.current && event.currentTarget === floatingRef.current) {\n return;\n }\n if (nested && isCrossOrientationCloseKey(event.key, orientation, rtl)) {\n stopEvent(event);\n onOpenChange(false, event.nativeEvent, 'list-navigation');\n if (isHTMLElement(domReference) && !virtual) {\n domReference.focus();\n }\n return;\n }\n const currentIndex = indexRef.current;\n const minIndex = getMinIndex(listRef, disabledIndices);\n const maxIndex = getMaxIndex(listRef, disabledIndices);\n if (event.key === 'Home') {\n stopEvent(event);\n indexRef.current = minIndex;\n onNavigate(indexRef.current);\n }\n if (event.key === 'End') {\n stopEvent(event);\n indexRef.current = maxIndex;\n onNavigate(indexRef.current);\n }\n\n // Grid navigation.\n if (cols > 1) {\n const sizes = itemSizes || Array.from({\n length: listRef.current.length\n }, () => ({\n width: 1,\n height: 1\n }));\n // To calculate movements on the grid, we use hypothetical cell indices\n // as if every item was 1x1, then convert back to real indices.\n const cellMap = buildCellMap(sizes, cols, dense);\n const minGridIndex = cellMap.findIndex(index => index != null && !isDisabled(listRef.current, index, disabledIndices));\n // last enabled index\n const maxGridIndex = cellMap.reduce((foundIndex, index, cellIndex) => index != null && !isDisabled(listRef.current, index, disabledIndices) ? cellIndex : foundIndex, -1);\n indexRef.current = cellMap[getGridNavigatedIndex({\n current: cellMap.map(itemIndex => itemIndex != null ? listRef.current[itemIndex] : null)\n }, {\n event,\n orientation,\n loop,\n cols,\n // treat undefined (empty grid spaces) as disabled indices so we\n // don't end up in them\n disabledIndices: getCellIndices([...(disabledIndices || listRef.current.map((_, index) => isDisabled(listRef.current, index) ? index : undefined)), undefined], cellMap),\n minIndex: minGridIndex,\n maxIndex: maxGridIndex,\n prevIndex: getCellIndexOfCorner(indexRef.current > maxIndex ? minIndex : indexRef.current, sizes, cellMap, cols,\n // use a corner matching the edge closest to the direction\n // we're moving in so we don't end up in the same item. Prefer\n // top/left over bottom/right.\n event.key === ARROW_DOWN ? 'bl' : event.key === ARROW_RIGHT ? 'tr' : 'tl'),\n stopEvent: true\n })]; // navigated cell will never be nullish\n\n onNavigate(indexRef.current);\n if (orientation === 'both') {\n return;\n }\n }\n if (isMainOrientationKey(event.key, orientation)) {\n stopEvent(event);\n\n // Reset the index if no item is focused.\n if (open && !virtual && activeElement(event.currentTarget.ownerDocument) === event.currentTarget) {\n indexRef.current = isMainOrientationToEndKey(event.key, orientation, rtl) ? minIndex : maxIndex;\n onNavigate(indexRef.current);\n return;\n }\n if (isMainOrientationToEndKey(event.key, orientation, rtl)) {\n if (loop) {\n indexRef.current = currentIndex >= maxIndex ? allowEscape && currentIndex !== listRef.current.length ? -1 : minIndex : findNonDisabledIndex(listRef, {\n startingIndex: currentIndex,\n disabledIndices\n });\n } else {\n indexRef.current = Math.min(maxIndex, findNonDisabledIndex(listRef, {\n startingIndex: currentIndex,\n disabledIndices\n }));\n }\n } else {\n if (loop) {\n indexRef.current = currentIndex <= minIndex ? allowEscape && currentIndex !== -1 ? listRef.current.length : maxIndex : findNonDisabledIndex(listRef, {\n startingIndex: currentIndex,\n decrement: true,\n disabledIndices\n });\n } else {\n indexRef.current = Math.max(minIndex, findNonDisabledIndex(listRef, {\n startingIndex: currentIndex,\n decrement: true,\n disabledIndices\n }));\n }\n }\n if (isIndexOutOfBounds(listRef, indexRef.current)) {\n onNavigate(null);\n } else {\n onNavigate(indexRef.current);\n }\n }\n }\n function checkVirtualMouse(event) {\n if (focusItemOnOpen === 'auto' && isVirtualClick(event.nativeEvent)) {\n focusItemOnOpenRef.current = true;\n }\n }\n function checkVirtualPointer(event) {\n // `pointerdown` fires first, reset the state then perform the checks.\n focusItemOnOpenRef.current = focusItemOnOpen;\n if (focusItemOnOpen === 'auto' && isVirtualPointerEvent(event.nativeEvent)) {\n focusItemOnOpenRef.current = true;\n }\n }\n const ariaActiveDescendantProp = virtual && open && hasActiveIndex && {\n 'aria-activedescendant': virtualId || activeId\n };\n const activeItem = listRef.current.find(item => (item == null ? void 0 : item.id) === activeId);\n return {\n reference: {\n ...ariaActiveDescendantProp,\n onKeyDown(event) {\n isPointerModalityRef.current = false;\n const isArrowKey = event.key.indexOf('Arrow') === 0;\n const isCrossOpenKey = isCrossOrientationOpenKey(event.key, orientation, rtl);\n const isCrossCloseKey = isCrossOrientationCloseKey(event.key, orientation, rtl);\n const isMainKey = isMainOrientationKey(event.key, orientation);\n const isNavigationKey = (nested ? isCrossOpenKey : isMainKey) || event.key === 'Enter' || event.key.trim() === '';\n if (virtual && open) {\n const rootNode = tree == null ? void 0 : tree.nodesRef.current.find(node => node.parentId == null);\n const deepestNode = tree && rootNode ? getDeepestNode(tree.nodesRef.current, rootNode.id) : null;\n if (isArrowKey && deepestNode && virtualItemRef) {\n const eventObject = new KeyboardEvent('keydown', {\n key: event.key,\n bubbles: true\n });\n if (isCrossOpenKey || isCrossCloseKey) {\n var _deepestNode$context, _deepestNode$context2;\n const isCurrentTarget = ((_deepestNode$context = deepestNode.context) == null ? void 0 : _deepestNode$context.elements.domReference) === event.currentTarget;\n const dispatchItem = isCrossCloseKey && !isCurrentTarget ? (_deepestNode$context2 = deepestNode.context) == null ? void 0 : _deepestNode$context2.elements.domReference : isCrossOpenKey ? activeItem : null;\n if (dispatchItem) {\n stopEvent(event);\n dispatchItem.dispatchEvent(eventObject);\n setVirtualId(undefined);\n }\n }\n if (isMainKey && deepestNode.context) {\n if (deepestNode.context.open && deepestNode.parentId && event.currentTarget !== deepestNode.context.elements.domReference) {\n var _deepestNode$context$;\n stopEvent(event);\n (_deepestNode$context$ = deepestNode.context.elements.domReference) == null || _deepestNode$context$.dispatchEvent(eventObject);\n return;\n }\n }\n }\n return onKeyDown(event);\n }\n\n // If a floating element should not open on arrow key down, avoid\n // setting `activeIndex` while it's closed.\n if (!open && !openOnArrowKeyDown && isArrowKey) {\n return;\n }\n if (isNavigationKey) {\n keyRef.current = nested && isMainKey ? null : event.key;\n }\n if (nested) {\n if (isCrossOpenKey) {\n stopEvent(event);\n if (open) {\n indexRef.current = getMinIndex(listRef, disabledIndices);\n onNavigate(indexRef.current);\n } else {\n onOpenChange(true, event.nativeEvent, 'list-navigation');\n }\n }\n return;\n }\n if (isMainKey) {\n if (selectedIndex != null) {\n indexRef.current = selectedIndex;\n }\n stopEvent(event);\n if (!open && openOnArrowKeyDown) {\n onOpenChange(true, event.nativeEvent, 'list-navigation');\n } else {\n onKeyDown(event);\n }\n if (open) {\n onNavigate(indexRef.current);\n }\n }\n },\n onFocus() {\n if (open && !virtual) {\n onNavigate(null);\n }\n },\n onPointerDown: checkVirtualPointer,\n onMouseDown: checkVirtualMouse,\n onClick: checkVirtualMouse\n },\n floating: {\n 'aria-orientation': orientation === 'both' ? undefined : orientation,\n ...(!isTypeableCombobox(domReference) && ariaActiveDescendantProp),\n onKeyDown,\n onPointerMove() {\n isPointerModalityRef.current = true;\n }\n },\n item\n };\n }, [domReference, floatingRef, activeId, virtualId, disabledIndicesRef, latestOpenRef, listRef, enabled, orientation, rtl, virtual, open, hasActiveIndex, nested, selectedIndex, openOnArrowKeyDown, allowEscape, cols, loop, focusItemOnOpen, onNavigate, onOpenChange, item, tree, virtualItemRef, itemSizes, dense]);\n}\n\nconst componentRoleToAriaRoleMap = /*#__PURE__*/new Map([['select', 'listbox'], ['combobox', 'listbox'], ['label', false]]);\n\n/**\n * Adds base screen reader props to the reference and floating elements for a\n * given floating element `role`.\n * @see https://floating-ui.com/docs/useRole\n */\nfunction useRole(context, props) {\n var _componentRoleToAriaR;\n if (props === void 0) {\n props = {};\n }\n const {\n open,\n floatingId\n } = context;\n const {\n enabled = true,\n role = 'dialog'\n } = props;\n const ariaRole = (_componentRoleToAriaR = componentRoleToAriaRoleMap.get(role)) != null ? _componentRoleToAriaR : role;\n const referenceId = useId();\n const parentId = useFloatingParentNodeId();\n const isNested = parentId != null;\n return React.useMemo(() => {\n if (!enabled) return {};\n const floatingProps = {\n id: floatingId,\n ...(ariaRole && {\n role: ariaRole\n })\n };\n if (ariaRole === 'tooltip' || role === 'label') {\n return {\n reference: {\n [\"aria-\" + (role === 'label' ? 'labelledby' : 'describedby')]: open ? floatingId : undefined\n },\n floating: floatingProps\n };\n }\n return {\n reference: {\n 'aria-expanded': open ? 'true' : 'false',\n 'aria-haspopup': ariaRole === 'alertdialog' ? 'dialog' : ariaRole,\n 'aria-controls': open ? floatingId : undefined,\n ...(ariaRole === 'listbox' && {\n role: 'combobox'\n }),\n ...(ariaRole === 'menu' && {\n id: referenceId\n }),\n ...(ariaRole === 'menu' && isNested && {\n role: 'menuitem'\n }),\n ...(role === 'select' && {\n 'aria-autocomplete': 'none'\n }),\n ...(role === 'combobox' && {\n 'aria-autocomplete': 'list'\n })\n },\n floating: {\n ...floatingProps,\n ...(ariaRole === 'menu' && {\n 'aria-labelledby': referenceId\n })\n },\n item(_ref) {\n let {\n active,\n selected\n } = _ref;\n const commonProps = {\n role: 'option',\n ...(active && {\n id: floatingId + \"-option\"\n })\n };\n\n // For `menu`, we are unable to tell if the item is a `menuitemradio`\n // or `menuitemcheckbox`. For backwards-compatibility reasons, also\n // avoid defaulting to `menuitem` as it may overwrite custom role props.\n switch (role) {\n case 'select':\n return {\n ...commonProps,\n 'aria-selected': active && selected\n };\n case 'combobox':\n {\n return {\n ...commonProps,\n ...(active && {\n 'aria-selected': true\n })\n };\n }\n }\n return {};\n }\n };\n }, [enabled, role, ariaRole, open, floatingId, referenceId, isNested]);\n}\n\n// Converts a JS style key like `backgroundColor` to a CSS transition-property\n// like `background-color`.\nconst camelCaseToKebabCase = str => str.replace(/[A-Z]+(?![a-z])|[A-Z]/g, ($, ofs) => (ofs ? '-' : '') + $.toLowerCase());\nfunction execWithArgsOrReturn(valueOrFn, args) {\n return typeof valueOrFn === 'function' ? valueOrFn(args) : valueOrFn;\n}\nfunction useDelayUnmount(open, durationMs) {\n const [isMounted, setIsMounted] = React.useState(open);\n if (open && !isMounted) {\n setIsMounted(true);\n }\n React.useEffect(() => {\n if (!open && isMounted) {\n const timeout = setTimeout(() => setIsMounted(false), durationMs);\n return () => clearTimeout(timeout);\n }\n }, [open, isMounted, durationMs]);\n return isMounted;\n}\n/**\n * Provides a status string to apply CSS transitions to a floating element,\n * correctly handling placement-aware transitions.\n * @see https://floating-ui.com/docs/useTransition#usetransitionstatus\n */\nfunction useTransitionStatus(context, props) {\n if (props === void 0) {\n props = {};\n }\n const {\n open,\n elements: {\n floating\n }\n } = context;\n const {\n duration = 250\n } = props;\n const isNumberDuration = typeof duration === 'number';\n const closeDuration = (isNumberDuration ? duration : duration.close) || 0;\n const [status, setStatus] = React.useState('unmounted');\n const isMounted = useDelayUnmount(open, closeDuration);\n if (!isMounted && status === 'close') {\n setStatus('unmounted');\n }\n index(() => {\n if (!floating) return;\n if (open) {\n setStatus('initial');\n const frame = requestAnimationFrame(() => {\n setStatus('open');\n });\n return () => {\n cancelAnimationFrame(frame);\n };\n }\n setStatus('close');\n }, [open, floating]);\n return {\n isMounted,\n status\n };\n}\n/**\n * Provides styles to apply CSS transitions to a floating element, correctly\n * handling placement-aware transitions. Wrapper around `useTransitionStatus`.\n * @see https://floating-ui.com/docs/useTransition#usetransitionstyles\n */\nfunction useTransitionStyles(context, props) {\n if (props === void 0) {\n props = {};\n }\n const {\n initial: unstable_initial = {\n opacity: 0\n },\n open: unstable_open,\n close: unstable_close,\n common: unstable_common,\n duration = 250\n } = props;\n const placement = context.placement;\n const side = placement.split('-')[0];\n const fnArgs = React.useMemo(() => ({\n side,\n placement\n }), [side, placement]);\n const isNumberDuration = typeof duration === 'number';\n const openDuration = (isNumberDuration ? duration : duration.open) || 0;\n const closeDuration = (isNumberDuration ? duration : duration.close) || 0;\n const [styles, setStyles] = React.useState(() => ({\n ...execWithArgsOrReturn(unstable_common, fnArgs),\n ...execWithArgsOrReturn(unstable_initial, fnArgs)\n }));\n const {\n isMounted,\n status\n } = useTransitionStatus(context, {\n duration\n });\n const initialRef = useLatestRef(unstable_initial);\n const openRef = useLatestRef(unstable_open);\n const closeRef = useLatestRef(unstable_close);\n const commonRef = useLatestRef(unstable_common);\n index(() => {\n const initialStyles = execWithArgsOrReturn(initialRef.current, fnArgs);\n const closeStyles = execWithArgsOrReturn(closeRef.current, fnArgs);\n const commonStyles = execWithArgsOrReturn(commonRef.current, fnArgs);\n const openStyles = execWithArgsOrReturn(openRef.current, fnArgs) || Object.keys(initialStyles).reduce((acc, key) => {\n acc[key] = '';\n return acc;\n }, {});\n if (status === 'initial') {\n setStyles(styles => ({\n transitionProperty: styles.transitionProperty,\n ...commonStyles,\n ...initialStyles\n }));\n }\n if (status === 'open') {\n setStyles({\n transitionProperty: Object.keys(openStyles).map(camelCaseToKebabCase).join(','),\n transitionDuration: openDuration + \"ms\",\n ...commonStyles,\n ...openStyles\n });\n }\n if (status === 'close') {\n const styles = closeStyles || initialStyles;\n setStyles({\n transitionProperty: Object.keys(styles).map(camelCaseToKebabCase).join(','),\n transitionDuration: closeDuration + \"ms\",\n ...commonStyles,\n ...styles\n });\n }\n }, [closeDuration, closeRef, initialRef, openRef, commonRef, openDuration, status, fnArgs]);\n return {\n isMounted,\n styles\n };\n}\n\n/**\n * Provides a matching callback that can be used to focus an item as the user\n * types, often used in tandem with `useListNavigation()`.\n * @see https://floating-ui.com/docs/useTypeahead\n */\nfunction useTypeahead(context, props) {\n var _ref;\n const {\n open,\n dataRef\n } = context;\n const {\n listRef,\n activeIndex,\n onMatch: unstable_onMatch,\n onTypingChange: unstable_onTypingChange,\n enabled = true,\n findMatch = null,\n resetMs = 750,\n ignoreKeys = [],\n selectedIndex = null\n } = props;\n const timeoutIdRef = React.useRef();\n const stringRef = React.useRef('');\n const prevIndexRef = React.useRef((_ref = selectedIndex != null ? selectedIndex : activeIndex) != null ? _ref : -1);\n const matchIndexRef = React.useRef(null);\n const onMatch = useEffectEvent(unstable_onMatch);\n const onTypingChange = useEffectEvent(unstable_onTypingChange);\n const findMatchRef = useLatestRef(findMatch);\n const ignoreKeysRef = useLatestRef(ignoreKeys);\n index(() => {\n if (open) {\n clearTimeout(timeoutIdRef.current);\n matchIndexRef.current = null;\n stringRef.current = '';\n }\n }, [open]);\n index(() => {\n // Sync arrow key navigation but not typeahead navigation.\n if (open && stringRef.current === '') {\n var _ref2;\n prevIndexRef.current = (_ref2 = selectedIndex != null ? selectedIndex : activeIndex) != null ? _ref2 : -1;\n }\n }, [open, selectedIndex, activeIndex]);\n return React.useMemo(() => {\n if (!enabled) {\n return {};\n }\n function setTypingChange(value) {\n if (value) {\n if (!dataRef.current.typing) {\n dataRef.current.typing = value;\n onTypingChange(value);\n }\n } else {\n if (dataRef.current.typing) {\n dataRef.current.typing = value;\n onTypingChange(value);\n }\n }\n }\n function getMatchingIndex(list, orderedList, string) {\n const str = findMatchRef.current ? findMatchRef.current(orderedList, string) : orderedList.find(text => (text == null ? void 0 : text.toLocaleLowerCase().indexOf(string.toLocaleLowerCase())) === 0);\n return str ? list.indexOf(str) : -1;\n }\n function onKeyDown(event) {\n const listContent = listRef.current;\n if (stringRef.current.length > 0 && stringRef.current[0] !== ' ') {\n if (getMatchingIndex(listContent, listContent, stringRef.current) === -1) {\n setTypingChange(false);\n } else if (event.key === ' ') {\n stopEvent(event);\n }\n }\n if (listContent == null || ignoreKeysRef.current.includes(event.key) ||\n // Character key.\n event.key.length !== 1 ||\n // Modifier key.\n event.ctrlKey || event.metaKey || event.altKey) {\n return;\n }\n if (open && event.key !== ' ') {\n stopEvent(event);\n setTypingChange(true);\n }\n\n // Bail out if the list contains a word like \"llama\" or \"aaron\". TODO:\n // allow it in this case, too.\n const allowRapidSuccessionOfFirstLetter = listContent.every(text => {\n var _text$, _text$2;\n return text ? ((_text$ = text[0]) == null ? void 0 : _text$.toLocaleLowerCase()) !== ((_text$2 = text[1]) == null ? void 0 : _text$2.toLocaleLowerCase()) : true;\n });\n\n // Allows the user to cycle through items that start with the same letter\n // in rapid succession.\n if (allowRapidSuccessionOfFirstLetter && stringRef.current === event.key) {\n stringRef.current = '';\n prevIndexRef.current = matchIndexRef.current;\n }\n stringRef.current += event.key;\n clearTimeout(timeoutIdRef.current);\n timeoutIdRef.current = setTimeout(() => {\n stringRef.current = '';\n prevIndexRef.current = matchIndexRef.current;\n setTypingChange(false);\n }, resetMs);\n const prevIndex = prevIndexRef.current;\n const index = getMatchingIndex(listContent, [...listContent.slice((prevIndex || 0) + 1), ...listContent.slice(0, (prevIndex || 0) + 1)], stringRef.current);\n if (index !== -1) {\n onMatch(index);\n matchIndexRef.current = index;\n } else if (event.key !== ' ') {\n stringRef.current = '';\n setTypingChange(false);\n }\n }\n return {\n reference: {\n onKeyDown\n },\n floating: {\n onKeyDown,\n onKeyUp(event) {\n if (event.key === ' ') {\n setTypingChange(false);\n }\n }\n }\n };\n }, [enabled, open, dataRef, listRef, resetMs, ignoreKeysRef, findMatchRef, onMatch, onTypingChange]);\n}\n\nfunction getArgsWithCustomFloatingHeight(state, height) {\n return {\n ...state,\n rects: {\n ...state.rects,\n floating: {\n ...state.rects.floating,\n height\n }\n }\n };\n}\n/**\n * Positions the floating element such that an inner element inside\n * of it is anchored to the reference element.\n * @see https://floating-ui.com/docs/inner\n */\nconst inner = props => ({\n name: 'inner',\n options: props,\n async fn(state) {\n const {\n listRef,\n overflowRef,\n onFallbackChange,\n offset: innerOffset = 0,\n index = 0,\n minItemsVisible = 4,\n referenceOverflowThreshold = 0,\n scrollRef,\n ...detectOverflowOptions\n } = props;\n const {\n rects,\n elements: {\n floating\n }\n } = state;\n const item = listRef.current[index];\n if (process.env.NODE_ENV !== \"production\") {\n if (!state.placement.startsWith('bottom')) {\n warn('`placement` side must be \"bottom\" when using the `inner`', 'middleware.');\n }\n }\n if (!item) {\n return {};\n }\n const nextArgs = {\n ...state,\n ...(await offset(-item.offsetTop - floating.clientTop - rects.reference.height / 2 - item.offsetHeight / 2 - innerOffset).fn(state))\n };\n const el = (scrollRef == null ? void 0 : scrollRef.current) || floating;\n const overflow = await detectOverflow(getArgsWithCustomFloatingHeight(nextArgs, el.scrollHeight), detectOverflowOptions);\n const refOverflow = await detectOverflow(nextArgs, {\n ...detectOverflowOptions,\n elementContext: 'reference'\n });\n const diffY = Math.max(0, overflow.top);\n const nextY = nextArgs.y + diffY;\n const maxHeight = Math.max(0, el.scrollHeight - diffY - Math.max(0, overflow.bottom));\n el.style.maxHeight = maxHeight + \"px\";\n el.scrollTop = diffY;\n\n // There is not enough space, fallback to standard anchored positioning\n if (onFallbackChange) {\n if (el.offsetHeight < item.offsetHeight * Math.min(minItemsVisible, listRef.current.length - 1) - 1 || refOverflow.top >= -referenceOverflowThreshold || refOverflow.bottom >= -referenceOverflowThreshold) {\n flushSync(() => onFallbackChange(true));\n } else {\n flushSync(() => onFallbackChange(false));\n }\n }\n if (overflowRef) {\n overflowRef.current = await detectOverflow(getArgsWithCustomFloatingHeight({\n ...nextArgs,\n y: nextY\n }, el.offsetHeight), detectOverflowOptions);\n }\n return {\n y: nextY\n };\n }\n});\n/**\n * Changes the `inner` middleware's `offset` upon a `wheel` event to\n * expand the floating element's height, revealing more list items.\n * @see https://floating-ui.com/docs/inner\n */\nfunction useInnerOffset(context, props) {\n const {\n open,\n elements\n } = context;\n const {\n enabled = true,\n overflowRef,\n scrollRef,\n onChange: unstable_onChange\n } = props;\n const onChange = useEffectEvent(unstable_onChange);\n const controlledScrollingRef = React.useRef(false);\n const prevScrollTopRef = React.useRef(null);\n const initialOverflowRef = React.useRef(null);\n React.useEffect(() => {\n if (!enabled) {\n return;\n }\n function onWheel(e) {\n if (e.ctrlKey || !el || overflowRef.current == null) {\n return;\n }\n const dY = e.deltaY;\n const isAtTop = overflowRef.current.top >= -0.5;\n const isAtBottom = overflowRef.current.bottom >= -0.5;\n const remainingScroll = el.scrollHeight - el.clientHeight;\n const sign = dY < 0 ? -1 : 1;\n const method = dY < 0 ? 'max' : 'min';\n if (el.scrollHeight <= el.clientHeight) {\n return;\n }\n if (!isAtTop && dY > 0 || !isAtBottom && dY < 0) {\n e.preventDefault();\n flushSync(() => {\n onChange(d => d + Math[method](dY, remainingScroll * sign));\n });\n } else if (/firefox/i.test(getUserAgent())) {\n // Needed to propagate scrolling during momentum scrolling phase once\n // it gets limited by the boundary. UX improvement, not critical.\n el.scrollTop += dY;\n }\n }\n const el = (scrollRef == null ? void 0 : scrollRef.current) || elements.floating;\n if (open && el) {\n el.addEventListener('wheel', onWheel);\n\n // Wait for the position to be ready.\n requestAnimationFrame(() => {\n prevScrollTopRef.current = el.scrollTop;\n if (overflowRef.current != null) {\n initialOverflowRef.current = {\n ...overflowRef.current\n };\n }\n });\n return () => {\n prevScrollTopRef.current = null;\n initialOverflowRef.current = null;\n el.removeEventListener('wheel', onWheel);\n };\n }\n }, [enabled, open, elements.floating, overflowRef, scrollRef, onChange]);\n return React.useMemo(() => {\n if (!enabled) {\n return {};\n }\n return {\n floating: {\n onKeyDown() {\n controlledScrollingRef.current = true;\n },\n onWheel() {\n controlledScrollingRef.current = false;\n },\n onPointerMove() {\n controlledScrollingRef.current = false;\n },\n onScroll() {\n const el = (scrollRef == null ? void 0 : scrollRef.current) || elements.floating;\n if (!overflowRef.current || !el || !controlledScrollingRef.current) {\n return;\n }\n if (prevScrollTopRef.current !== null) {\n const scrollDiff = el.scrollTop - prevScrollTopRef.current;\n if (overflowRef.current.bottom < -0.5 && scrollDiff < -1 || overflowRef.current.top < -0.5 && scrollDiff > 1) {\n flushSync(() => onChange(d => d + scrollDiff));\n }\n }\n\n // [Firefox] Wait for the height change to have been applied.\n requestAnimationFrame(() => {\n prevScrollTopRef.current = el.scrollTop;\n });\n }\n }\n };\n }, [enabled, overflowRef, elements.floating, scrollRef, onChange]);\n}\n\nfunction isPointInPolygon(point, polygon) {\n const [x, y] = point;\n let isInside = false;\n const length = polygon.length;\n for (let i = 0, j = length - 1; i < length; j = i++) {\n const [xi, yi] = polygon[i] || [0, 0];\n const [xj, yj] = polygon[j] || [0, 0];\n const intersect = yi >= y !== yj >= y && x <= (xj - xi) * (y - yi) / (yj - yi) + xi;\n if (intersect) {\n isInside = !isInside;\n }\n }\n return isInside;\n}\nfunction isInside(point, rect) {\n return point[0] >= rect.x && point[0] <= rect.x + rect.width && point[1] >= rect.y && point[1] <= rect.y + rect.height;\n}\n/**\n * Generates a safe polygon area that the user can traverse without closing the\n * floating element once leaving the reference element.\n * @see https://floating-ui.com/docs/useHover#safepolygon\n */\nfunction safePolygon(options) {\n if (options === void 0) {\n options = {};\n }\n const {\n buffer = 0.5,\n blockPointerEvents = false,\n requireIntent = true\n } = options;\n let timeoutId;\n let hasLanded = false;\n let lastX = null;\n let lastY = null;\n let lastCursorTime = performance.now();\n function getCursorSpeed(x, y) {\n const currentTime = performance.now();\n const elapsedTime = currentTime - lastCursorTime;\n if (lastX === null || lastY === null || elapsedTime === 0) {\n lastX = x;\n lastY = y;\n lastCursorTime = currentTime;\n return null;\n }\n const deltaX = x - lastX;\n const deltaY = y - lastY;\n const distance = Math.sqrt(deltaX * deltaX + deltaY * deltaY);\n const speed = distance / elapsedTime; // px / ms\n\n lastX = x;\n lastY = y;\n lastCursorTime = currentTime;\n return speed;\n }\n const fn = _ref => {\n let {\n x,\n y,\n placement,\n elements,\n onClose,\n nodeId,\n tree\n } = _ref;\n return function onMouseMove(event) {\n function close() {\n clearTimeout(timeoutId);\n onClose();\n }\n clearTimeout(timeoutId);\n if (!elements.domReference || !elements.floating || placement == null || x == null || y == null) {\n return;\n }\n const {\n clientX,\n clientY\n } = event;\n const clientPoint = [clientX, clientY];\n const target = getTarget(event);\n const isLeave = event.type === 'mouseleave';\n const isOverFloatingEl = contains(elements.floating, target);\n const isOverReferenceEl = contains(elements.domReference, target);\n const refRect = elements.domReference.getBoundingClientRect();\n const rect = elements.floating.getBoundingClientRect();\n const side = placement.split('-')[0];\n const cursorLeaveFromRight = x > rect.right - rect.width / 2;\n const cursorLeaveFromBottom = y > rect.bottom - rect.height / 2;\n const isOverReferenceRect = isInside(clientPoint, refRect);\n const isFloatingWider = rect.width > refRect.width;\n const isFloatingTaller = rect.height > refRect.height;\n const left = (isFloatingWider ? refRect : rect).left;\n const right = (isFloatingWider ? refRect : rect).right;\n const top = (isFloatingTaller ? refRect : rect).top;\n const bottom = (isFloatingTaller ? refRect : rect).bottom;\n if (isOverFloatingEl) {\n hasLanded = true;\n if (!isLeave) {\n return;\n }\n }\n if (isOverReferenceEl) {\n hasLanded = false;\n }\n if (isOverReferenceEl && !isLeave) {\n hasLanded = true;\n return;\n }\n\n // Prevent overlapping floating element from being stuck in an open-close\n // loop: https://github.com/floating-ui/floating-ui/issues/1910\n if (isLeave && isElement(event.relatedTarget) && contains(elements.floating, event.relatedTarget)) {\n return;\n }\n\n // If any nested child is open, abort.\n if (tree && getChildren(tree.nodesRef.current, nodeId).some(_ref2 => {\n let {\n context\n } = _ref2;\n return context == null ? void 0 : context.open;\n })) {\n return;\n }\n\n // If the pointer is leaving from the opposite side, the \"buffer\" logic\n // creates a point where the floating element remains open, but should be\n // ignored.\n // A constant of 1 handles floating point rounding errors.\n if (side === 'top' && y >= refRect.bottom - 1 || side === 'bottom' && y <= refRect.top + 1 || side === 'left' && x >= refRect.right - 1 || side === 'right' && x <= refRect.left + 1) {\n return close();\n }\n\n // Ignore when the cursor is within the rectangular trough between the\n // two elements. Since the triangle is created from the cursor point,\n // which can start beyond the ref element's edge, traversing back and\n // forth from the ref to the floating element can cause it to close. This\n // ensures it always remains open in that case.\n let rectPoly = [];\n switch (side) {\n case 'top':\n rectPoly = [[left, refRect.top + 1], [left, rect.bottom - 1], [right, rect.bottom - 1], [right, refRect.top + 1]];\n break;\n case 'bottom':\n rectPoly = [[left, rect.top + 1], [left, refRect.bottom - 1], [right, refRect.bottom - 1], [right, rect.top + 1]];\n break;\n case 'left':\n rectPoly = [[rect.right - 1, bottom], [rect.right - 1, top], [refRect.left + 1, top], [refRect.left + 1, bottom]];\n break;\n case 'right':\n rectPoly = [[refRect.right - 1, bottom], [refRect.right - 1, top], [rect.left + 1, top], [rect.left + 1, bottom]];\n break;\n }\n function getPolygon(_ref3) {\n let [x, y] = _ref3;\n switch (side) {\n case 'top':\n {\n const cursorPointOne = [isFloatingWider ? x + buffer / 2 : cursorLeaveFromRight ? x + buffer * 4 : x - buffer * 4, y + buffer + 1];\n const cursorPointTwo = [isFloatingWider ? x - buffer / 2 : cursorLeaveFromRight ? x + buffer * 4 : x - buffer * 4, y + buffer + 1];\n const commonPoints = [[rect.left, cursorLeaveFromRight ? rect.bottom - buffer : isFloatingWider ? rect.bottom - buffer : rect.top], [rect.right, cursorLeaveFromRight ? isFloatingWider ? rect.bottom - buffer : rect.top : rect.bottom - buffer]];\n return [cursorPointOne, cursorPointTwo, ...commonPoints];\n }\n case 'bottom':\n {\n const cursorPointOne = [isFloatingWider ? x + buffer / 2 : cursorLeaveFromRight ? x + buffer * 4 : x - buffer * 4, y - buffer];\n const cursorPointTwo = [isFloatingWider ? x - buffer / 2 : cursorLeaveFromRight ? x + buffer * 4 : x - buffer * 4, y - buffer];\n const commonPoints = [[rect.left, cursorLeaveFromRight ? rect.top + buffer : isFloatingWider ? rect.top + buffer : rect.bottom], [rect.right, cursorLeaveFromRight ? isFloatingWider ? rect.top + buffer : rect.bottom : rect.top + buffer]];\n return [cursorPointOne, cursorPointTwo, ...commonPoints];\n }\n case 'left':\n {\n const cursorPointOne = [x + buffer + 1, isFloatingTaller ? y + buffer / 2 : cursorLeaveFromBottom ? y + buffer * 4 : y - buffer * 4];\n const cursorPointTwo = [x + buffer + 1, isFloatingTaller ? y - buffer / 2 : cursorLeaveFromBottom ? y + buffer * 4 : y - buffer * 4];\n const commonPoints = [[cursorLeaveFromBottom ? rect.right - buffer : isFloatingTaller ? rect.right - buffer : rect.left, rect.top], [cursorLeaveFromBottom ? isFloatingTaller ? rect.right - buffer : rect.left : rect.right - buffer, rect.bottom]];\n return [...commonPoints, cursorPointOne, cursorPointTwo];\n }\n case 'right':\n {\n const cursorPointOne = [x - buffer, isFloatingTaller ? y + buffer / 2 : cursorLeaveFromBottom ? y + buffer * 4 : y - buffer * 4];\n const cursorPointTwo = [x - buffer, isFloatingTaller ? y - buffer / 2 : cursorLeaveFromBottom ? y + buffer * 4 : y - buffer * 4];\n const commonPoints = [[cursorLeaveFromBottom ? rect.left + buffer : isFloatingTaller ? rect.left + buffer : rect.right, rect.top], [cursorLeaveFromBottom ? isFloatingTaller ? rect.left + buffer : rect.right : rect.left + buffer, rect.bottom]];\n return [cursorPointOne, cursorPointTwo, ...commonPoints];\n }\n }\n }\n if (isPointInPolygon([clientX, clientY], rectPoly)) {\n return;\n }\n if (hasLanded && !isOverReferenceRect) {\n return close();\n }\n if (!isLeave && requireIntent) {\n const cursorSpeed = getCursorSpeed(event.clientX, event.clientY);\n const cursorSpeedThreshold = 0.1;\n if (cursorSpeed !== null && cursorSpeed < cursorSpeedThreshold) {\n return close();\n }\n }\n if (!isPointInPolygon([clientX, clientY], getPolygon([x, y]))) {\n close();\n } else if (!hasLanded && requireIntent) {\n timeoutId = window.setTimeout(close, 40);\n }\n };\n };\n fn.__options = {\n blockPointerEvents\n };\n return fn;\n}\n\nexport { Composite, CompositeItem, FloatingArrow, FloatingDelayGroup, FloatingFocusManager, FloatingList, FloatingNode, FloatingOverlay, FloatingPortal, FloatingTree, inner, safePolygon, useClick, useClientPoint, useDelayGroup, useDelayGroupContext, useDismiss, useFloating, useFloatingNodeId, useFloatingParentNodeId, useFloatingPortalNode, useFloatingRootContext, useFloatingTree, useFocus, useHover, useId, useInnerOffset, useInteractions, useListItem, useListNavigation, useMergeRefs, useRole, useTransitionStatus, useTransitionStyles, useTypeahead };\n","import{autoUpdate as Z,flip as ee,inner as te,offset as ne,shift as le,size as re,useFloating as oe,useInnerOffset as ie,useInteractions as se}from\"@floating-ui/react\";import*as j from\"react\";import{createContext as _,useCallback as ae,useContext as R,useMemo as v,useRef as ue,useState as E}from\"react\";import{useDisposables as fe}from'../hooks/use-disposables.js';import{useEvent as z}from'../hooks/use-event.js';import{useIsoMorphicEffect as A}from'../hooks/use-iso-morphic-effect.js';let y=_({styles:void 0,setReference:()=>{},setFloating:()=>{},getReferenceProps:()=>({}),getFloatingProps:()=>({}),slot:{}});y.displayName=\"FloatingContext\";let S=_(null);S.displayName=\"PlacementContext\";function xe(e){return v(()=>e?typeof e==\"string\"?{to:e}:e:null,[e])}function ye(){return R(y).setReference}function Fe(){return R(y).getReferenceProps}function be(){let{getFloatingProps:e,slot:t}=R(y);return ae((...n)=>Object.assign({},e(...n),{\"data-anchor\":t.anchor}),[e,t])}function Re(e=null){e===!1&&(e=null),typeof e==\"string\"&&(e={to:e});let t=R(S),n=v(()=>e,[JSON.stringify(e,typeof HTMLElement!=\"undefined\"?(a,r)=>r instanceof HTMLElement?r.outerHTML:r:void 0)]);A(()=>{t==null||t(n!=null?n:null)},[t,n]);let l=R(y);return v(()=>[l.setFloating,e?l.styles:{}],[l.setFloating,e,l.styles])}let q=4;function ve({children:e,enabled:t=!0}){let[n,l]=E(null),[a,r]=E(0),c=ue(null),[u,i]=E(null);pe(u);let o=t&&n!==null&&u!==null,{to:F=\"bottom\",gap:C=0,offset:M=0,padding:p=0,inner:P}=ce(n,u),[s,f=\"center\"]=F.split(\" \");A(()=>{o&&r(0)},[o]);let{refs:b,floatingStyles:$,context:g}=oe({open:o,placement:s===\"selection\"?f===\"center\"?\"bottom\":`bottom-${f}`:f===\"center\"?`${s}`:`${s}-${f}`,strategy:\"absolute\",transform:!1,middleware:[ne({mainAxis:s===\"selection\"?0:C,crossAxis:M}),le({padding:p}),s!==\"selection\"&&ee({padding:p}),s===\"selection\"&&P?te({...P,padding:p,overflowRef:c,offset:a,minItemsVisible:q,referenceOverflowThreshold:p,onFallbackChange(h){var W,k;if(!h)return;let d=g.elements.floating;if(!d)return;let T=parseFloat(getComputedStyle(d).scrollPaddingBottom)||0,w=Math.min(q,d.childElementCount),B=0,O=0;for(let m of(k=(W=g.elements.floating)==null?void 0:W.childNodes)!=null?k:[])if(m instanceof HTMLElement){let x=m.offsetTop,N=x+m.clientHeight+T,H=d.scrollTop,U=H+d.clientHeight;if(x>=H&&N<=U)w--;else{O=Math.max(0,Math.min(N,U)-Math.max(x,H)),B=m.clientHeight;break}}w>=1&&r(m=>{let x=B*w-O+T;return m>=x?m:x})}}):null,re({padding:p,apply({availableWidth:h,availableHeight:d,elements:T}){Object.assign(T.floating.style,{overflow:\"auto\",maxWidth:`${h}px`,maxHeight:`min(var(--anchor-max-height, 100vh), ${d}px)`})}})].filter(Boolean),whileElementsMounted:Z}),[I=s,V=f]=g.placement.split(\"-\");s===\"selection\"&&(I=\"selection\");let G=v(()=>({anchor:[I,V].filter(Boolean).join(\" \")}),[I,V]),K=ie(g,{overflowRef:c,onChange:r}),{getReferenceProps:Q,getFloatingProps:X}=se([K]),Y=z(h=>{i(h),b.setFloating(h)});return j.createElement(S.Provider,{value:l},j.createElement(y.Provider,{value:{setFloating:Y,setReference:b.setReference,styles:$,getReferenceProps:Q,getFloatingProps:X,slot:G}},e))}function pe(e){A(()=>{if(!e)return;let t=new MutationObserver(()=>{let n=e.style.maxHeight;parseFloat(n)!==parseInt(n)&&(e.style.maxHeight=`${Math.ceil(parseFloat(n))}px`)});return t.observe(e,{attributes:!0,attributeFilter:[\"style\"]}),()=>{t.disconnect()}},[e])}function ce(e,t){var r,c,u;let n=L((r=e==null?void 0:e.gap)!=null?r:\"var(--anchor-gap, 0)\",t),l=L((c=e==null?void 0:e.offset)!=null?c:\"var(--anchor-offset, 0)\",t),a=L((u=e==null?void 0:e.padding)!=null?u:\"var(--anchor-padding, 0)\",t);return{...e,gap:n,offset:l,padding:a}}function L(e,t,n=void 0){let l=fe(),a=z((i,o)=>{if(i==null)return[n,null];if(typeof i==\"number\")return[i,null];if(typeof i==\"string\"){if(!o)return[n,null];let F=J(i,o);return[F,C=>{let M=D(i);{let p=M.map(P=>window.getComputedStyle(o).getPropertyValue(P));l.requestAnimationFrame(function P(){l.nextFrame(P);let s=!1;for(let[b,$]of M.entries()){let g=window.getComputedStyle(o).getPropertyValue($);if(p[b]!==g){p[b]=g,s=!0;break}}if(!s)return;let f=J(i,o);F!==f&&(C(f),F=f)})}return l.dispose}]}return[n,null]}),r=v(()=>a(e,t)[0],[e,t]),[c=r,u]=E();return A(()=>{let[i,o]=a(e,t);if(u(i),!!o)return o(u)},[e,t]),c}function D(e){let t=/var\\((.*)\\)/.exec(e);if(t){let n=t[1].indexOf(\",\");if(n===-1)return[t[1]];let l=t[1].slice(0,n).trim(),a=t[1].slice(n+1).trim();return a?[l,...D(a)]:[l]}return[]}function J(e,t){let n=document.createElement(\"div\");t.appendChild(n),n.style.setProperty(\"margin-top\",\"0px\",\"important\"),n.style.setProperty(\"margin-top\",e,\"important\");let l=parseFloat(window.getComputedStyle(n).marginTop)||0;return t.removeChild(n),l}export{ve as FloatingProvider,Re as useFloatingPanel,be as useFloatingPanelProps,ye as useFloatingReference,Fe as useFloatingReferenceProps,xe as useResolvedAnchor};\n","import t,{createContext as l,useContext as p}from\"react\";let n=l(null);n.displayName=\"OpenClosedContext\";var d=(e=>(e[e.Open=1]=\"Open\",e[e.Closed=2]=\"Closed\",e[e.Closing=4]=\"Closing\",e[e.Opening=8]=\"Opening\",e))(d||{});function u(){return p(n)}function s({value:o,children:r}){return t.createElement(n.Provider,{value:o},r)}export{s as OpenClosedProvider,d as State,u as useOpenClosed};\n","function r(n){let e=n.parentElement,l=null;for(;e&&!(e instanceof HTMLFieldSetElement);)e instanceof HTMLLegendElement&&(l=e),e=e.parentElement;let t=(e==null?void 0:e.getAttribute(\"disabled\"))===\"\";return t&&i(l)?!1:t}function i(n){if(!n)return!1;let e=n.previousElementSibling;for(;e!==null;){if(e instanceof HTMLLegendElement)return!1;e=e.previousElementSibling}return!0}export{r as isDisabledReactIssue7711};\n","var o=(r=>(r.Space=\" \",r.Enter=\"Enter\",r.Escape=\"Escape\",r.Backspace=\"Backspace\",r.Delete=\"Delete\",r.ArrowLeft=\"ArrowLeft\",r.ArrowUp=\"ArrowUp\",r.ArrowRight=\"ArrowRight\",r.ArrowDown=\"ArrowDown\",r.Home=\"Home\",r.End=\"End\",r.PageUp=\"PageUp\",r.PageDown=\"PageDown\",r.Tab=\"Tab\",r))(o||{});export{o as Keys};\n","import{useEffect as u,useRef as n}from\"react\";import{microTask as o}from'../utils/micro-task.js';import{useEvent as f}from'./use-event.js';function c(t){let r=f(t),e=n(!1);u(()=>(e.current=!1,()=>{e.current=!0,o(()=>{e.current&&r()})}),[r])}export{c as useOnUnmount};\n","import*as t from\"react\";import{env as f}from'../utils/env.js';function s(){let r=typeof document==\"undefined\";return\"useSyncExternalStore\"in t?(o=>o.useSyncExternalStore)(t)(()=>()=>{},()=>!1,()=>!r):!1}function l(){let r=s(),[e,n]=t.useState(f.isHandoffComplete);return e&&f.isHandoffComplete===!1&&n(!1),t.useEffect(()=>{e!==!0&&n(!0)},[e]),t.useEffect(()=>f.handoff(),[]),r?!1:e}export{l as useServerHandoffComplete};\n","import t,{createContext as r,useContext as c}from\"react\";let e=r(!1);function a(){return c(e)}function l(o){return t.createElement(e.Provider,{value:o.force},o.children)}export{l as ForcePortalRoot,a as usePortalRoot};\n","\"use client\";import f,{Fragment as g,createContext as E,useContext as T,useEffect as R,useMemo as c,useRef as A,useState as G}from\"react\";import{createPortal as H}from\"react-dom\";import{useEvent as L}from'../../hooks/use-event.js';import{useIsoMorphicEffect as x}from'../../hooks/use-iso-morphic-effect.js';import{useOnUnmount as O}from'../../hooks/use-on-unmount.js';import{useOwnerDocument as _}from'../../hooks/use-owner.js';import{useServerHandoffComplete as h}from'../../hooks/use-server-handoff-complete.js';import{optionalRef as F,useSyncRefs as P}from'../../hooks/use-sync-refs.js';import{usePortalRoot as U}from'../../internal/portal-force-root.js';import{env as C}from'../../utils/env.js';import{forwardRefWithAs as m,render as d}from'../../utils/render.js';function D(p){let r=U(),l=T(v),e=_(p),[o,n]=G(()=>{var t;if(!r&&l!==null)return(t=l.current)!=null?t:null;if(C.isServer)return null;let u=e==null?void 0:e.getElementById(\"headlessui-portal-root\");if(u)return u;if(e===null)return null;let a=e.createElement(\"div\");return a.setAttribute(\"id\",\"headlessui-portal-root\"),e.body.appendChild(a)});return R(()=>{o!==null&&(e!=null&&e.body.contains(o)||e==null||e.body.appendChild(o))},[o,e]),R(()=>{r||l!==null&&n(l.current)},[l,n,r]),o}let M=g,N=m(function(r,l){let e=r,o=A(null),n=P(F(i=>{o.current=i}),l),u=_(o),a=D(o),[t]=G(()=>{var i;return C.isServer?null:(i=u==null?void 0:u.createElement(\"div\"))!=null?i:null}),s=T(y),b=h();return x(()=>{!a||!t||a.contains(t)||(t.setAttribute(\"data-headlessui-portal\",\"\"),a.appendChild(t))},[a,t]),x(()=>{if(t&&s)return s.register(t)},[s,t]),O(()=>{var i;!a||!t||(t instanceof Node&&a.contains(t)&&a.removeChild(t),a.childNodes.length<=0&&((i=a.parentElement)==null||i.removeChild(a)))}),b?!a||!t?null:H(d({ourProps:{ref:n},theirProps:e,slot:{},defaultTag:M,name:\"Portal\"}),t):null});function S(p,r){let l=P(r),{enabled:e=!0,...o}=p;return e?f.createElement(N,{...o,ref:l}):d({ourProps:{ref:l},theirProps:o,slot:{},defaultTag:M,name:\"Portal\"})}let j=g,v=E(null);function W(p,r){let{target:l,...e}=p,n={ref:P(r)};return f.createElement(v.Provider,{value:l},d({ourProps:n,theirProps:e,defaultTag:j,name:\"Popover.Group\"}))}let y=E(null);function ee(){let p=T(y),r=A([]),l=L(n=>(r.current.push(n),p&&p.register(n),()=>e(n))),e=L(n=>{let u=r.current.indexOf(n);u!==-1&&r.current.splice(u,1),p&&p.unregister(n)}),o=c(()=>({register:l,unregister:e,portals:r}),[l,e,r]);return[r,c(()=>function({children:u}){return f.createElement(y.Provider,{value:o},u)},[o])]}let I=m(S),J=m(W),te=Object.assign(I,{Group:J});export{te as Portal,J as PortalGroup,ee as useNestedPortals};\n","\"use client\";import{useFocusRing as Re}from\"@react-aria/focus\";import{useHover as Oe}from\"@react-aria/interactions\";import g,{createContext as Z,createRef as pe,useContext as ee,useEffect as te,useMemo as G,useReducer as Ce,useRef as q,useState as ye}from\"react\";import{useActivePress as Fe}from'../../hooks/use-active-press.js';import{useElementSize as Me}from'../../hooks/use-element-size.js';import{useEvent as R}from'../../hooks/use-event.js';import{useEventListener as _e}from'../../hooks/use-event-listener.js';import{useId as oe}from'../../hooks/use-id.js';import{useIsoMorphicEffect as xe}from'../../hooks/use-iso-morphic-effect.js';import{useLatestValue as Ee}from'../../hooks/use-latest-value.js';import{useOnDisappear as Le}from'../../hooks/use-on-disappear.js';import{useOutsideClick as Ie}from'../../hooks/use-outside-click.js';import{useOwnerDocument as se}from'../../hooks/use-owner.js';import{useResolveButtonType as Be}from'../../hooks/use-resolve-button-type.js';import{useMainTreeNode as he,useRootContainers as De}from'../../hooks/use-root-containers.js';import{useScrollLock as Ge}from'../../hooks/use-scroll-lock.js';import{optionalRef as He,useSyncRefs as X}from'../../hooks/use-sync-refs.js';import{Direction as U,useTabDirection as be}from'../../hooks/use-tab-direction.js';import{CloseProvider as Ne}from'../../internal/close-provider.js';import{FloatingProvider as Ue,useFloatingPanel as ke,useFloatingPanelProps as we,useFloatingReference as We,useResolvedAnchor as Ve}from'../../internal/floating.js';import{Hidden as ue,HiddenFeatures as ie}from'../../internal/hidden.js';import{OpenClosedProvider as je,State as Y,useOpenClosed as ge}from'../../internal/open-closed.js';import{isDisabledReactIssue7711 as Se}from'../../utils/bugs.js';import{Focus as k,FocusResult as fe,FocusableMode as Ke,focusIn as w,getFocusableElements as Pe,isFocusableElement as $e}from'../../utils/focus-management.js';import{match as W}from'../../utils/match.js';import'../../utils/micro-task.js';import{getOwnerDocument as Je}from'../../utils/owner.js';import{RenderFeatures as re,forwardRefWithAs as z,mergeProps as de,render as Q,useMergeRefsFn as Xe}from'../../utils/render.js';import{Keys as V}from'../keyboard.js';import{Portal as Ye,useNestedPortals as qe}from'../portal/portal.js';var ze=(u=>(u[u.Open=0]=\"Open\",u[u.Closed=1]=\"Closed\",u))(ze||{}),Qe=(i=>(i[i.TogglePopover=0]=\"TogglePopover\",i[i.ClosePopover=1]=\"ClosePopover\",i[i.SetButton=2]=\"SetButton\",i[i.SetButtonId=3]=\"SetButtonId\",i[i.SetPanel=4]=\"SetPanel\",i[i.SetPanelId=5]=\"SetPanelId\",i))(Qe||{});let Ze={[0]:t=>({...t,popoverState:W(t.popoverState,{[0]:1,[1]:0}),__demoMode:!1}),[1](t){return t.popoverState===1?t:{...t,popoverState:1,__demoMode:!1}},[2](t,a){return t.button===a.button?t:{...t,button:a.button}},[3](t,a){return t.buttonId===a.buttonId?t:{...t,buttonId:a.buttonId}},[4](t,a){return t.panel===a.panel?t:{...t,panel:a.panel}},[5](t,a){return t.panelId===a.panelId?t:{...t,panelId:a.panelId}}},ce=Z(null);ce.displayName=\"PopoverContext\";function ne(t){let a=ee(ce);if(a===null){let u=new Error(`<${t} /> is missing a parent
component.`);throw Error.captureStackTrace&&Error.captureStackTrace(u,ne),u}return a}let le=Z(null);le.displayName=\"PopoverAPIContext\";function ve(t){let a=ee(le);if(a===null){let u=new Error(`<${t} /> is missing a parent
component.`);throw Error.captureStackTrace&&Error.captureStackTrace(u,ve),u}return a}let Te=Z(null);Te.displayName=\"PopoverGroupContext\";function Ae(){return ee(Te)}let ae=Z(null);ae.displayName=\"PopoverPanelContext\";function et(){return ee(ae)}function tt(t,a){return W(a.type,Ze,t,a)}let ot=\"div\";function rt(t,a){var E;let{__demoMode:u=!1,...C}=t,T=q(null),S=X(a,He(o=>{T.current=o})),i=q([]),l=Ce(tt,{__demoMode:u,popoverState:u?0:1,buttons:i,button:null,buttonId:null,panel:null,panelId:null,beforePanelSentinel:pe(),afterPanelSentinel:pe(),afterButtonSentinel:pe()}),[{popoverState:f,button:e,buttonId:P,panel:v,panelId:M,beforePanelSentinel:m,afterPanelSentinel:j,afterButtonSentinel:n},s]=l,y=se((E=T.current)!=null?E:e),_=G(()=>{if(!e||!v)return!1;for(let b of document.querySelectorAll(\"body > *\"))if(Number(b==null?void 0:b.contains(e))^Number(b==null?void 0:b.contains(v)))return!0;let o=Pe(),p=o.indexOf(e),B=(p+o.length-1)%o.length,r=(p+1)%o.length,d=o[B],A=o[r];return!v.contains(d)&&!v.contains(A)},[e,v]),x=Ee(P),h=Ee(M),F=G(()=>({buttonId:x,panelId:h,close:()=>s({type:1})}),[x,h,s]),O=Ae(),D=O==null?void 0:O.registerPopover,L=R(()=>{var o;return(o=O==null?void 0:O.isFocusWithinPopoverGroup())!=null?o:(y==null?void 0:y.activeElement)&&((e==null?void 0:e.contains(y.activeElement))||(v==null?void 0:v.contains(y.activeElement)))});te(()=>D==null?void 0:D(F),[D,F]);let[K,$]=qe(),H=De({mainTreeNodeRef:O==null?void 0:O.mainTreeNodeRef,portals:K,defaultContainers:[e,v]});_e(y==null?void 0:y.defaultView,\"focus\",o=>{var p,B,r,d,A,b;o.target!==window&&o.target instanceof HTMLElement&&f===0&&(L()||e&&v&&(H.contains(o.target)||(B=(p=m.current)==null?void 0:p.contains)!=null&&B.call(p,o.target)||(d=(r=j.current)==null?void 0:r.contains)!=null&&d.call(r,o.target)||(b=(A=n.current)==null?void 0:A.contains)!=null&&b.call(A,o.target)||s({type:1})))},!0),Ie(H.resolveContainers,(o,p)=>{s({type:1}),$e(p,Ke.Loose)||(o.preventDefault(),e==null||e.focus())},f===0);let I=R(o=>{s({type:1});let p=(()=>o?o instanceof HTMLElement?o:\"current\"in o&&o.current instanceof HTMLElement?o.current:e:e)();p==null||p.focus()}),J=G(()=>({close:I,isPortalled:_}),[I,_]),N=G(()=>({open:f===0,close:I}),[f,I]),c={ref:S};return g.createElement(Ue,null,g.createElement(ae.Provider,{value:null},g.createElement(ce.Provider,{value:l},g.createElement(le.Provider,{value:J},g.createElement(Ne,{value:I},g.createElement(je,{value:W(f,{[0]:Y.Open,[1]:Y.Closed})},g.createElement($,null,Q({ourProps:c,theirProps:C,slot:N,defaultTag:ot,name:\"Popover\"}),g.createElement(H.MainTreeNode,null))))))))}let nt=\"button\";function lt(t,a){let u=oe(),{id:C=`headlessui-popover-button-${u}`,disabled:T=!1,autoFocus:S=!1,...i}=t,[l,f]=ne(\"Popover.Button\"),{isPortalled:e}=ve(\"Popover.Button\"),P=q(null),v=`headlessui-focus-sentinel-${oe()}`,M=Ae(),m=M==null?void 0:M.closeOthers,n=et()!==null;te(()=>{if(!n)return f({type:3,buttonId:C}),()=>{f({type:3,buttonId:null})}},[n,C,f]);let[s]=ye(()=>Symbol()),y=X(P,a,We(),n?null:r=>{if(r)l.buttons.current.push(s);else{let d=l.buttons.current.indexOf(s);d!==-1&&l.buttons.current.splice(d,1)}l.buttons.current.length>1&&console.warn(\"You are already using a
but only 1
is supported.\"),r&&f({type:2,button:r})}),_=X(P,a),x=se(P),h=R(r=>{var d,A,b;if(n){if(l.popoverState===1)return;switch(r.key){case V.Space:case V.Enter:r.preventDefault(),(A=(d=r.target).click)==null||A.call(d),f({type:1}),(b=l.button)==null||b.focus();break}}else switch(r.key){case V.Space:case V.Enter:r.preventDefault(),r.stopPropagation(),l.popoverState===1&&(m==null||m(l.buttonId)),f({type:0});break;case V.Escape:if(l.popoverState!==0)return m==null?void 0:m(l.buttonId);if(!P.current||x!=null&&x.activeElement&&!P.current.contains(x.activeElement))return;r.preventDefault(),r.stopPropagation(),f({type:1});break}}),F=R(r=>{n||r.key===V.Space&&r.preventDefault()}),O=R(r=>{var d,A;Se(r.currentTarget)||T||(n?(f({type:1}),(d=l.button)==null||d.focus()):(r.preventDefault(),r.stopPropagation(),l.popoverState===1&&(m==null||m(l.buttonId)),f({type:0}),(A=l.button)==null||A.focus()))}),D=R(r=>{r.preventDefault(),r.stopPropagation()}),{isFocusVisible:L,focusProps:K}=Re({autoFocus:S}),{isHovered:$,hoverProps:H}=Oe({isDisabled:T}),{pressed:I,pressProps:J}=Fe({disabled:T}),N=l.popoverState===0,c=G(()=>({open:N,active:I||N,disabled:T,hover:$,focus:L,autofocus:S}),[N,$,L,I,T,S]),E=Be(t,P),o=n?de({ref:_,type:E,onKeyDown:h,onClick:O,disabled:T||void 0,autoFocus:S},K,H,J):de({ref:y,id:l.buttonId,type:E,\"aria-expanded\":l.popoverState===0,\"aria-controls\":l.panel?l.panelId:void 0,disabled:T||void 0,autoFocus:S,onKeyDown:h,onKeyUp:F,onClick:O,onMouseDown:D},K,H,J),p=be(),B=R(()=>{let r=l.panel;if(!r)return;function d(){W(p.current,{[U.Forwards]:()=>w(r,k.First),[U.Backwards]:()=>w(r,k.Last)})===fe.Error&&w(Pe().filter(b=>b.dataset.headlessuiFocusGuard!==\"true\"),W(p.current,{[U.Forwards]:k.Next,[U.Backwards]:k.Previous}),{relativeTo:l.button})}d()});return g.createElement(g.Fragment,null,Q({ourProps:o,theirProps:i,slot:c,defaultTag:nt,name:\"Popover.Button\"}),N&&!n&&e&&g.createElement(ue,{id:v,ref:l.afterButtonSentinel,features:ie.Focusable,\"data-headlessui-focus-guard\":!0,as:\"button\",type:\"button\",onFocus:B}))}let at=\"div\",pt=re.RenderStrategy|re.Static;function st(t,a){let u=oe(),{id:C=`headlessui-popover-overlay-${u}`,...T}=t,[{popoverState:S},i]=ne(\"Popover.Overlay\"),l=X(a),f=ge(),e=(()=>f!==null?(f&Y.Open)===Y.Open:S===0)(),P=R(m=>{if(Se(m.currentTarget))return m.preventDefault();i({type:1})}),v=G(()=>({open:S===0}),[S]);return Q({ourProps:{ref:l,id:C,\"aria-hidden\":!0,onClick:P},theirProps:T,slot:v,defaultTag:at,features:pt,visible:e,name:\"Popover.Overlay\"})}let ut=\"div\",it=re.RenderStrategy|re.Static;function ft(t,a){let u=oe(),{id:C=`headlessui-popover-panel-${u}`,focus:T=!1,anchor:S,portal:i=!1,modal:l=!1,...f}=t,[e,P]=ne(\"Popover.Panel\"),{close:v,isPortalled:M}=ve(\"Popover.Panel\"),m=`headlessui-focus-sentinel-before-${u}`,j=`headlessui-focus-sentinel-after-${u}`,n=q(null),s=Ve(S),[y,_]=ke(s),x=we();s&&(i=!0);let h=X(n,a,s?y:null,c=>{P({type:4,panel:c})}),F=se(n),O=Xe();xe(()=>(P({type:5,panelId:C}),()=>{P({type:5,panelId:null})}),[C,P]);let D=ge(),L=(()=>D!==null?(D&Y.Open)===Y.Open:e.popoverState===0)();Le(e.button,()=>P({type:1}),L),Ge(F,e.__demoMode?!1:l&&L);let K=R(c=>{var E;switch(c.key){case V.Escape:if(e.popoverState!==0||!n.current||F!=null&&F.activeElement&&!n.current.contains(F.activeElement))return;c.preventDefault(),c.stopPropagation(),P({type:1}),(E=e.button)==null||E.focus();break}});te(()=>{var c;t.static||e.popoverState===1&&((c=t.unmount)==null||c)&&P({type:4,panel:null})},[e.popoverState,t.unmount,t.static,P]),te(()=>{if(e.__demoMode||!T||e.popoverState!==0||!n.current)return;let c=F==null?void 0:F.activeElement;n.current.contains(c)||w(n.current,k.First)},[e.__demoMode,T,n,e.popoverState]);let $=G(()=>({open:e.popoverState===0,close:v}),[e,v]),H=de(s?x():{},{ref:h,id:C,onKeyDown:K,onBlur:T&&e.popoverState===0?c=>{var o,p,B,r,d;let E=c.relatedTarget;E&&n.current&&((o=n.current)!=null&&o.contains(E)||(P({type:1}),((B=(p=e.beforePanelSentinel.current)==null?void 0:p.contains)!=null&&B.call(p,E)||(d=(r=e.afterPanelSentinel.current)==null?void 0:r.contains)!=null&&d.call(r,E))&&E.focus({preventScroll:!0})))}:void 0,tabIndex:-1,style:{..._,\"--button-width\":Me(e.button,!0).width}}),I=be(),J=R(()=>{let c=n.current;if(!c)return;function E(){W(I.current,{[U.Forwards]:()=>{var p;w(c,k.First)===fe.Error&&((p=e.afterPanelSentinel.current)==null||p.focus())},[U.Backwards]:()=>{var o;(o=e.button)==null||o.focus({preventScroll:!0})}})}E()}),N=R(()=>{let c=n.current;if(!c)return;function E(){W(I.current,{[U.Forwards]:()=>{var A;if(!e.button)return;let o=Pe(),p=o.indexOf(e.button),B=o.slice(0,p+1),d=[...o.slice(p+1),...B];for(let b of d.slice())if(b.dataset.headlessuiFocusGuard===\"true\"||(A=e.panel)!=null&&A.contains(b)){let me=d.indexOf(b);me!==-1&&d.splice(me,1)}w(d,k.First,{sorted:!1})},[U.Backwards]:()=>{var p;w(c,k.Previous)===fe.Error&&((p=e.button)==null||p.focus())}})}E()});return g.createElement(ae.Provider,{value:C},g.createElement(le.Provider,{value:{close:v,isPortalled:M}},g.createElement(Ye,{enabled:i?t.static||L:!1},L&&M&&g.createElement(ue,{id:m,ref:e.beforePanelSentinel,features:ie.Focusable,\"data-headlessui-focus-guard\":!0,as:\"button\",type:\"button\",onFocus:J}),Q({mergeRefs:O,ourProps:H,theirProps:f,slot:$,defaultTag:ut,features:it,visible:L,name:\"Popover.Panel\"}),L&&M&&g.createElement(ue,{id:j,ref:e.afterPanelSentinel,features:ie.Focusable,\"data-headlessui-focus-guard\":!0,as:\"button\",type:\"button\",onFocus:N}))))}let Pt=\"div\";function dt(t,a){let u=q(null),C=X(u,a),[T,S]=ye([]),i=he(),l=R(n=>{S(s=>{let y=s.indexOf(n);if(y!==-1){let _=s.slice();return _.splice(y,1),_}return s})}),f=R(n=>(S(s=>[...s,n]),()=>l(n))),e=R(()=>{var y;let n=Je(u);if(!n)return!1;let s=n.activeElement;return(y=u.current)!=null&&y.contains(s)?!0:T.some(_=>{var x,h;return((x=n.getElementById(_.buttonId.current))==null?void 0:x.contains(s))||((h=n.getElementById(_.panelId.current))==null?void 0:h.contains(s))})}),P=R(n=>{for(let s of T)s.buttonId.current!==n&&s.close()}),v=G(()=>({registerPopover:f,unregisterPopover:l,isFocusWithinPopoverGroup:e,closeOthers:P,mainTreeNodeRef:i.mainTreeNodeRef}),[f,l,e,P,i.mainTreeNodeRef]),M=G(()=>({}),[]),m=t,j={ref:C};return g.createElement(Te.Provider,{value:v},Q({ourProps:j,theirProps:m,slot:M,defaultTag:Pt,name:\"Popover.Group\"}),g.createElement(i.MainTreeNode,null))}let ct=z(rt),vt=z(lt),Tt=z(st),mt=z(ft),yt=z(dt),qt=Object.assign(ct,{Button:vt,Overlay:Tt,Panel:mt,Group:yt});export{qt as Popover,vt as PopoverButton,yt as PopoverGroup,Tt as PopoverOverlay,mt as PopoverPanel};\n","import{useRef as r}from\"react\";import{useIsoMorphicEffect as t}from'./use-iso-morphic-effect.js';function f(){let e=r(!1);return t(()=>(e.current=!0,()=>{e.current=!1}),[]),e}export{f as useIsMounted};\n","function l(r){let e={called:!1};return(...t)=>{if(!e.called)return e.called=!0,r(...t)}}export{l as once};\n","import{disposables as g}from'../../../utils/disposables.js';import{match as d}from'../../../utils/match.js';import{once as E}from'../../../utils/once.js';function v(t,...r){t&&r.length>0&&t.classList.add(...r)}function T(t,...r){t&&r.length>0&&t.classList.remove(...r)}function L(t,r){let n=E(r),e=g();if(!t)return e.dispose;let{transitionDuration:o,transitionDelay:m}=getComputedStyle(t),[s,u]=[o,m].map(a=>{let[i=0]=a.split(\",\").filter(Boolean).map(l=>l.includes(\"ms\")?parseFloat(l):parseFloat(l)*1e3).sort((l,f)=>f-l);return i}),p=s+u;if(p!==0){let a=e.group(i=>{let l=i.setTimeout(()=>{n(),i.dispose()},p);i.addEventListener(t,\"transitionrun\",f=>{f.target===f.currentTarget&&(l(),i.addEventListener(t,\"transitioncancel\",b=>{b.target===b.currentTarget&&(n(),a())}))})});e.addEventListener(t,\"transitionend\",i=>{i.target===i.currentTarget&&(n(),e.dispose())})}else n();return e.dispose}function F(t,{direction:r,done:n,classes:e,inFlight:o}){let m=g(),s=n!==void 0?E(n):()=>{};r===\"enter\"&&(t.removeAttribute(\"hidden\"),t.style.display=\"\");let u=d(r,{enter:()=>e.enter,leave:()=>e.leave}),p=d(r,{enter:()=>e.enterTo,leave:()=>e.leaveTo}),a=d(r,{enter:()=>e.enterFrom,leave:()=>e.leaveFrom});return M(t,{prepare(){T(t,...e.base,...e.enter,...e.enterTo,...e.enterFrom,...e.leave,...e.leaveFrom,...e.leaveTo,...e.entered),v(t,...e.base,...u,...a)},inFlight:o}),o&&(o.current=!0),m.nextFrame(()=>{m.add(L(t,()=>(T(t,...e.base,...u),v(t,...e.base,...e.entered,...p),o&&(o.current=!1),s()))),T(t,...e.base,...u,...a),v(t,...e.base,...u,...p)}),m.dispose}function M(t,{inFlight:r,prepare:n}){if(r!=null&&r.current){n();return}let e=t.style.transition;t.style.transition=\"none\",n(),t.offsetHeight,t.style.transition=e}export{F as transition};\n","import{useRef as u}from\"react\";import{transition as f}from'../components/transition/utils/transition.js';import{useDisposables as c}from'./use-disposables.js';import{useIsMounted as m}from'./use-is-mounted.js';import{useIsoMorphicEffect as d}from'./use-iso-morphic-effect.js';function v({container:i,direction:e,classes:s,onStart:o,onStop:t}){let a=m(),r=c(),l=u(!1);d(()=>{if(e===\"idle\"||!a.current)return;o.current(e);let n=i.current;return n?r.add(f(n,{direction:e,classes:s.current,inFlight:l,done(){t.current(e)}})):t.current(e),r.dispose},[e])}export{v as useTransition};\n","\"use client\";import T,{Fragment as B,createContext as oe,useContext as z,useMemo as se,useRef as E,useState as K}from\"react\";import{useDisposables as be}from'../../hooks/use-disposables.js';import{useEvent as S}from'../../hooks/use-event.js';import{useFlags as Ee}from'../../hooks/use-flags.js';import{useIsMounted as Se}from'../../hooks/use-is-mounted.js';import{useIsoMorphicEffect as I}from'../../hooks/use-iso-morphic-effect.js';import{useLatestValue as O}from'../../hooks/use-latest-value.js';import{useOnDisappear as Ne}from'../../hooks/use-on-disappear.js';import{useServerHandoffComplete as ae}from'../../hooks/use-server-handoff-complete.js';import{useSyncRefs as le}from'../../hooks/use-sync-refs.js';import{useTransition as ye}from'../../hooks/use-transition.js';import{OpenClosedProvider as Re,State as N,useOpenClosed as ue}from'../../internal/open-closed.js';import{classNames as Q}from'../../utils/class-names.js';import{match as D}from'../../utils/match.js';import{RenderFeatures as Pe,RenderStrategy as x,forwardRefWithAs as Y,render as Te}from'../../utils/render.js';function y(t=\"\"){return t.split(/\\s+/).filter(n=>n.length>1)}function de(t){var n;return!!(t.enter||t.enterFrom||t.enterTo||t.leave||t.leaveFrom||t.leaveTo)||((n=t.as)!=null?n:me)!==B||T.Children.count(t.children)===1}let W=oe(null);W.displayName=\"TransitionContext\";var xe=(r=>(r.Visible=\"visible\",r.Hidden=\"hidden\",r))(xe||{});function Fe(){let t=z(W);if(t===null)throw new Error(\"A
is used but it is missing a parent
or
.\");return t}function _e(){let t=z(k);if(t===null)throw new Error(\"A
is used but it is missing a parent
or
.\");return t}let k=oe(null);k.displayName=\"NestingContext\";function q(t){return\"children\"in t?q(t.children):t.current.filter(({el:n})=>n.current!==null).filter(({state:n})=>n===\"visible\").length>0}function fe(t,n){let r=O(t),a=E([]),H=Se(),L=be(),d=S((i,e=x.Hidden)=>{let o=a.current.findIndex(({el:s})=>s===i);o!==-1&&(D(e,{[x.Unmount](){a.current.splice(o,1)},[x.Hidden](){a.current[o].state=\"hidden\"}}),L.microTask(()=>{var s;!q(a)&&H.current&&((s=r.current)==null||s.call(r))}))}),F=S(i=>{let e=a.current.find(({el:o})=>o===i);return e?e.state!==\"visible\"&&(e.state=\"visible\"):a.current.push({el:i,state:\"visible\"}),()=>d(i,x.Unmount)}),R=E([]),f=E(Promise.resolve()),C=E({enter:[],leave:[],idle:[]}),m=S((i,e,o)=>{R.current.splice(0),n&&(n.chains.current[e]=n.chains.current[e].filter(([s])=>s!==i)),n==null||n.chains.current[e].push([i,new Promise(s=>{R.current.push(s)})]),n==null||n.chains.current[e].push([i,new Promise(s=>{Promise.all(C.current[e].map(([g,c])=>c)).then(()=>s())})]),e===\"enter\"?f.current=f.current.then(()=>n==null?void 0:n.wait.current).then(()=>o(e)):o(e)}),h=S((i,e,o)=>{Promise.all(C.current[e].splice(0).map(([s,g])=>g)).then(()=>{var s;(s=R.current.shift())==null||s()}).then(()=>o(e))});return se(()=>({children:a,register:F,unregister:d,onStart:m,onStop:h,wait:f,chains:C}),[F,d,a,m,h,C,f])}let me=B,ce=Pe.RenderStrategy;function De(t,n){var ne,re,ie;let{beforeEnter:r,afterEnter:a,beforeLeave:H,afterLeave:L,enter:d,enterFrom:F,enterTo:R,entered:f,leave:C,leaveFrom:m,leaveTo:h,...i}=t,e=E(null),o=de(t),s=le(...o?[e,n]:n===null?[]:[n]),g=(ne=i.unmount)==null||ne?x.Unmount:x.Hidden,{show:c,appear:V,initial:v}=Fe(),[P,J]=K(c?\"visible\":\"hidden\"),$=_e(),{register:w,unregister:M}=$;I(()=>w(e),[w,e]),I(()=>{if(g===x.Hidden&&e.current){if(c&&P!==\"visible\"){J(\"visible\");return}return D(P,{[\"hidden\"]:()=>M(e),[\"visible\"]:()=>w(e)})}},[P,e,w,M,c,g]);let _=O({base:y(i.className),enter:y(d),enterFrom:y(F),enterTo:y(R),entered:y(f),leave:y(C),leaveFrom:y(m),leaveTo:y(h)}),U=O({beforeEnter:r,afterEnter:a,beforeLeave:H,afterLeave:L}),X=ae();I(()=>{if(o&&X&&P===\"visible\"&&e.current===null)throw new Error(\"Did you forget to passthrough the `ref` to the actual DOM node?\")},[e,P,X,o]);let Ce=v&&!V,ee=V&&c&&v,te=(()=>ee?\"enter\":!X||Ce?\"idle\":c?\"enter\":\"leave\")(),A=Ee(0),he=S(b=>D(b,{enter:()=>{var l,u;A.addFlag(N.Opening),(u=(l=U.current).beforeEnter)==null||u.call(l)},leave:()=>{var l,u;A.addFlag(N.Closing),(u=(l=U.current).beforeLeave)==null||u.call(l)},idle:()=>{}})),ge=S(b=>D(b,{enter:()=>{var l,u;A.removeFlag(N.Opening),(u=(l=U.current).afterEnter)==null||u.call(l)},leave:()=>{var l,u;A.removeFlag(N.Closing),(u=(l=U.current).afterLeave)==null||u.call(l)},idle:()=>{}})),j=E(!1),G=fe(()=>{j.current||(J(\"hidden\"),M(e))},$);ye({container:e,classes:_,direction:te,onStart:O(b=>{j.current=!0,G.onStart(e,b,he)}),onStop:O(b=>{j.current=!1,G.onStop(e,b,ge),b===\"leave\"&&!q(G)&&(J(\"hidden\"),M(e))})});let p=i,ve={ref:s};return ee?p={...p,className:Q(i.className,..._.current.enter,..._.current.enterFrom)}:j.current?(p.className=Q(i.className,(re=e.current)==null?void 0:re.className),p.className===\"\"&&delete p.className):(p.className=Q(i.className,(ie=e.current)==null?void 0:ie.className,...D(te,{enter:[..._.current.enterTo,..._.current.entered],leave:_.current.leaveTo,idle:[]})),p.className===\"\"&&delete p.className),T.createElement(k.Provider,{value:G},T.createElement(Re,{value:D(P,{[\"visible\"]:N.Open,[\"hidden\"]:N.Closed})|A.flags},Te({ourProps:ve,theirProps:p,defaultTag:me,features:ce,visible:P===\"visible\",name:\"Transition.Child\"})))}function He(t,n){let{show:r,appear:a=!1,unmount:H=!0,...L}=t,d=E(null),F=de(t),R=le(...F?[d,n]:n===null?[]:[n]);ae();let f=ue();if(r===void 0&&f!==null&&(r=(f&N.Open)===N.Open),r===void 0)throw new Error(\"A
is used but it is missing a `show={true | false}` prop.\");let[C,m]=K(r?\"visible\":\"hidden\"),h=fe(()=>{r||m(\"hidden\")}),[i,e]=K(!0),o=E([r]);I(()=>{i!==!1&&o.current[o.current.length-1]!==r&&(o.current.push(r),e(!1))},[o,r]);let s=se(()=>({show:r,appear:a,initial:i}),[r,a,i]);Ne(d,()=>m(\"hidden\")),I(()=>{r?m(\"visible\"):!q(h)&&d.current!==null&&m(\"hidden\")},[r,h]);let g={unmount:H},c=S(()=>{var v;i&&e(!1),(v=t.beforeEnter)==null||v.call(t)}),V=S(()=>{var v;i&&e(!1),(v=t.beforeLeave)==null||v.call(t)});return T.createElement(k.Provider,{value:h},T.createElement(W.Provider,{value:s},Te({ourProps:{...g,as:B,children:T.createElement(pe,{ref:R,...g,...L,beforeEnter:c,beforeLeave:V})},theirProps:{},defaultTag:B,features:ce,visible:C===\"visible\",name:\"Transition\"})))}function Le(t,n){let r=z(W)!==null,a=ue()!==null;return T.createElement(T.Fragment,null,!r&&a?T.createElement(Z,{ref:n,...t}):T.createElement(pe,{ref:n,...t}))}let Z=Y(He),pe=Y(De),Ae=Y(Le),Ke=Object.assign(Z,{Child:Ae,Root:Z});export{Ke as Transition,Ae as TransitionChild};\n","import{useCallback as n,useState as f}from\"react\";import{useIsMounted as i}from'./use-is-mounted.js';function c(a=0){let[l,r]=f(a),t=i(),o=n(e=>{t.current&&r(u=>u|e)},[l,t]),m=n(e=>!!(l&e),[l]),s=n(e=>{t.current&&r(u=>u&~e)},[r,t]),g=n(e=>{t.current&&r(u=>u^e)},[r]);return{flags:l,addFlag:o,hasFlag:m,removeFlag:s,toggleFlag:g}}export{c as useFlags};\n","import{disposables as m}from'../utils/disposables.js';import{getOwnerDocument as M}from'../utils/owner.js';import{useIsoMorphicEffect as g}from'./use-iso-morphic-effect.js';let f=new Map,u=new Map;function l(t){var r;let e=(r=u.get(t))!=null?r:0;return u.set(t,e+1),e!==0?()=>p(t):(f.set(t,{\"aria-hidden\":t.getAttribute(\"aria-hidden\"),inert:t.inert}),t.setAttribute(\"aria-hidden\",\"true\"),t.inert=!0,()=>p(t))}function p(t){var n;let e=(n=u.get(t))!=null?n:1;if(e===1?u.delete(t):u.set(t,e-1),e!==1)return;let r=f.get(t);r&&(r[\"aria-hidden\"]===null?t.removeAttribute(\"aria-hidden\"):t.setAttribute(\"aria-hidden\",r[\"aria-hidden\"]),t.inert=r.inert,f.delete(t))}function T({allowed:t,disallowed:e}={},r=!0){g(()=>{var s,c;if(!r)return;let n=m();for(let i of(s=e==null?void 0:e())!=null?s:[])i&&n.add(l(i));let a=(c=t==null?void 0:t())!=null?c:[];for(let i of a){if(!i)continue;let d=M(i);if(!d)continue;let o=i.parentElement;for(;o&&o!==d.body;){for(let h of o.children)a.some(E=>h.contains(E))||n.add(l(h));o=o.parentElement}}return n.dispose},[r,t,e])}export{T as useInertOthers};\n","import o,{createContext as H,useContext as E,useEffect as m,useState as u}from\"react\";import{createPortal as g}from\"react-dom\";import{useDisposables as h}from'../hooks/use-disposables.js';import{objectToFormEntries as x}from'../utils/form.js';import{compact as y}from'../utils/render.js';import{Hidden as l,HiddenFeatures as d}from'./hidden.js';let f=H(null);function W(t){let[e,r]=u(null);return o.createElement(f.Provider,{value:{target:e}},t.children,o.createElement(l,{features:d.Hidden,ref:r}))}function c({children:t}){let e=E(f);if(!e)return o.createElement(o.Fragment,null,t);let{target:r}=e;return r?g(o.createElement(o.Fragment,null,t),r):null}function j({data:t,form:e,disabled:r,onReset:n,overrides:F}){let[i,a]=u(null),p=h();return m(()=>{if(n&&i)return p.addEventListener(i,\"reset\",n)},[i,e,n]),o.createElement(c,null,o.createElement(C,{setForm:a,formId:e}),x(t).map(([s,v])=>o.createElement(l,{features:d.Hidden,...y({key:s,as:\"input\",type:\"hidden\",hidden:!0,readOnly:!0,form:e,disabled:r,name:s,value:v,...F})})))}function C({setForm:t,formId:e}){return m(()=>{if(e){let r=document.getElementById(e);r&&t(r)}},[t,e]),e?null:o.createElement(l,{features:d.Hidden,as:\"input\",type:\"hidden\",hidden:!0,readOnly:!0,ref:r=>{if(!r)return;let n=r.closest(\"form\");n&&t(n)}})}export{j as FormFields,W as FormFieldsProvider,c as HoistFormFields};\n","import d,{createContext as c,useContext as m}from\"react\";import{useEvent as p}from'../hooks/use-event.js';import{useIsoMorphicEffect as f}from'../hooks/use-iso-morphic-effect.js';let a=c(()=>{});a.displayName=\"StackContext\";var s=(e=>(e[e.Add=0]=\"Add\",e[e.Remove=1]=\"Remove\",e))(s||{});function x(){return m(a)}function b({children:i,onUpdate:r,type:e,element:n,enabled:u}){let l=x(),o=p((...t)=>{r==null||r(...t),l(...t)});return f(()=>{let t=u===void 0||u===!0;return t&&o(0,e,n),()=>{t&&o(1,e,n)}},[o,e,n,u]),d.createElement(a.Provider,{value:o},i)}export{s as StackMessage,b as StackProvider,x as useStackContext};\n","import n,{createContext as r,useContext as i}from\"react\";let e=r(void 0);function a(){return i(e)}function l({value:t,children:o}){return n.createElement(e.Provider,{value:t},o)}export{l as DisabledProvider,a as useDisabled};\n","\"use client\";import m,{createContext as T,useContext as u,useMemo as c,useState as P}from\"react\";import{useEvent as g}from'../../hooks/use-event.js';import{useId as x}from'../../hooks/use-id.js';import{useIsoMorphicEffect as y}from'../../hooks/use-iso-morphic-effect.js';import{useSyncRefs as E}from'../../hooks/use-sync-refs.js';import{useDisabled as v}from'../../internal/disabled.js';import{forwardRefWithAs as R,render as I}from'../../utils/render.js';let a=T(null);a.displayName=\"DescriptionContext\";function f(){let r=u(a);if(r===null){let e=new Error(\"You used a
component, but it is not inside a relevant parent.\");throw Error.captureStackTrace&&Error.captureStackTrace(e,f),e}return r}function G(){var r,e;return(e=(r=u(a))==null?void 0:r.value)!=null?e:void 0}function U(){let[r,e]=P([]);return[r.length>0?r.join(\" \"):void 0,c(()=>function(t){let i=g(n=>(e(s=>[...s,n]),()=>e(s=>{let o=s.slice(),p=o.indexOf(n);return p!==-1&&o.splice(p,1),o}))),l=c(()=>({register:i,slot:t.slot,name:t.name,props:t.props,value:t.value}),[i,t.slot,t.name,t.props,t.value]);return m.createElement(a.Provider,{value:l},t.children)},[e])]}let S=\"p\";function C(r,e){let d=x(),t=v(),{id:i=`headlessui-description-${d}`,...l}=r,n=f(),s=E(e);y(()=>n.register(i),[i,n.register]);let o=t||!1,p=c(()=>({...n.slot,disabled:o}),[n.slot,o]),D={ref:s,...n.props,id:i};return I({ourProps:D,theirProps:l,slot:p,defaultTag:S,name:n.name||\"Description\"})}let _=R(C),w=Object.assign(_,{});export{w as Description,G as useDescribedBy,U as useDescriptions};\n","import{useEffect as f,useRef as s}from\"react\";import{useEvent as i}from'./use-event.js';function m(u,t){let e=s([]),r=i(u);f(()=>{let o=[...e.current];for(let[a,l]of t.entries())if(e.current[a]!==l){let n=r(t,o);return e.current=t,n}},[r,...t])}export{m as useWatch};\n","import{onDocumentReady as d}from'./document-ready.js';let t=[];d(()=>{function e(n){n.target instanceof HTMLElement&&n.target!==document.body&&t[0]!==n.target&&(t.unshift(n.target),t=t.filter(r=>r!=null&&r.isConnected),t.splice(10))}window.addEventListener(\"click\",e,{capture:!0}),window.addEventListener(\"mousedown\",e,{capture:!0}),window.addEventListener(\"focus\",e,{capture:!0}),document.body.addEventListener(\"click\",e,{capture:!0}),document.body.addEventListener(\"mousedown\",e,{capture:!0}),document.body.addEventListener(\"focus\",e,{capture:!0})});export{t as history};\n","\"use client\";import d,{useRef as L}from\"react\";import{useDisposables as I}from'../../hooks/use-disposables.js';import{useEvent as g}from'../../hooks/use-event.js';import{useEventListener as G}from'../../hooks/use-event-listener.js';import{useIsMounted as v}from'../../hooks/use-is-mounted.js';import{useOnUnmount as W}from'../../hooks/use-on-unmount.js';import{useOwnerDocument as k}from'../../hooks/use-owner.js';import{useServerHandoffComplete as K}from'../../hooks/use-server-handoff-complete.js';import{useSyncRefs as V}from'../../hooks/use-sync-refs.js';import{Direction as M,useTabDirection as q}from'../../hooks/use-tab-direction.js';import{useWatch as y}from'../../hooks/use-watch.js';import{Hidden as F,HiddenFeatures as P}from'../../internal/hidden.js';import{history as R}from'../../utils/active-element-history.js';import{Focus as T,FocusResult as O,focusElement as f,focusIn as i}from'../../utils/focus-management.js';import{match as C}from'../../utils/match.js';import{microTask as _}from'../../utils/micro-task.js';import{forwardRefWithAs as J,render as X}from'../../utils/render.js';function S(t){if(!t)return new Set;if(typeof t==\"function\")return new Set(t());let o=new Set;for(let e of t.current)e.current instanceof HTMLElement&&o.add(e.current);return o}let z=\"div\";var h=(r=>(r[r.None=1]=\"None\",r[r.InitialFocus=2]=\"InitialFocus\",r[r.TabLock=4]=\"TabLock\",r[r.FocusLock=8]=\"FocusLock\",r[r.RestoreFocus=16]=\"RestoreFocus\",r[r.AutoFocus=32]=\"AutoFocus\",r[r.All=30]=\"All\",r))(h||{});function Q(t,o){let e=L(null),n=V(e,o),{initialFocus:c,initialFocusFallback:p,containers:u,features:r=30,...l}=t;K()||(r=1);let s=k(e);$({ownerDocument:s},!!(r&16));let U=D({ownerDocument:s,container:e,initialFocus:c,initialFocusFallback:p},r);w({ownerDocument:s,container:e,containers:u,previousActiveElement:U},!!(r&8));let b=q(),A=g(a=>{let m=e.current;if(!m)return;(N=>N())(()=>{C(b.current,{[M.Forwards]:()=>{i(m,T.First,{skipElements:[a.relatedTarget,p]})},[M.Backwards]:()=>{i(m,T.Last,{skipElements:[a.relatedTarget,p]})}})})}),B=I(),H=L(!1),x={ref:n,onKeyDown(a){a.key==\"Tab\"&&(H.current=!0,B.requestAnimationFrame(()=>{H.current=!1}))},onBlur(a){if(!(r&8))return;let m=S(u);e.current instanceof HTMLElement&&m.add(e.current);let E=a.relatedTarget;E instanceof HTMLElement&&E.dataset.headlessuiFocusGuard!==\"true\"&&(j(m,E)||(H.current?i(e.current,C(b.current,{[M.Forwards]:()=>T.Next,[M.Backwards]:()=>T.Previous})|T.WrapAround,{relativeTo:a.target}):a.target instanceof HTMLElement&&f(a.target)))}};return d.createElement(d.Fragment,null,!!(r&4)&&d.createElement(F,{as:\"button\",type:\"button\",\"data-headlessui-focus-guard\":!0,onFocus:A,features:P.Focusable}),X({ourProps:x,theirProps:l,defaultTag:z,name:\"FocusTrap\"}),!!(r&4)&&d.createElement(F,{as:\"button\",type:\"button\",\"data-headlessui-focus-guard\":!0,onFocus:A,features:P.Focusable}))}let Y=J(Q),Le=Object.assign(Y,{features:h});function Z(t=!0){let o=L(R.slice());return y(([e],[n])=>{n===!0&&e===!1&&_(()=>{o.current.splice(0)}),n===!1&&e===!0&&(o.current=R.slice())},[t,R,o]),g(()=>{var e;return(e=o.current.find(n=>n!=null&&n.isConnected))!=null?e:null})}function $({ownerDocument:t},o){let e=Z(o);y(()=>{o||(t==null?void 0:t.activeElement)===(t==null?void 0:t.body)&&f(e())},[o]),W(()=>{o&&f(e())})}function D({ownerDocument:t,container:o,initialFocus:e,initialFocusFallback:n},c){let p=!!(c&2),u=L(null),r=v();return y(()=>{if(!p){n!=null&&n.current&&f(n.current);return}let l=o.current;l&&_(()=>{if(!r.current)return;let s=t==null?void 0:t.activeElement;if(e!=null&&e.current){if((e==null?void 0:e.current)===s){u.current=s;return}}else if(l.contains(s)){u.current=s;return}if(e!=null&&e.current)f(e.current);else{if(c&32){if(i(l,T.First|T.AutoFocus)!==O.Error)return}else if(i(l,T.First)!==O.Error)return;if(n!=null&&n.current&&(f(n.current),(t==null?void 0:t.activeElement)===n.current))return;console.warn(\"There are no focusable elements inside the
\")}u.current=t==null?void 0:t.activeElement})},[n,p,c]),u}function w({ownerDocument:t,container:o,containers:e,previousActiveElement:n},c){let p=v();G(t==null?void 0:t.defaultView,\"focus\",u=>{if(!c||!p.current)return;let r=S(e);o.current instanceof HTMLElement&&r.add(o.current);let l=n.current;if(!l)return;let s=u.target;s&&s instanceof HTMLElement?j(r,s)?(n.current=s,f(s)):(u.preventDefault(),u.stopPropagation(),f(l)):f(n.current)},!0)}function j(t,o){for(let e of t)if(e.contains(o))return!0;return!1}export{Le as FocusTrap,h as FocusTrapFeatures};\n","function t(n){function e(){document.readyState!==\"loading\"&&(n(),document.removeEventListener(\"DOMContentLoaded\",e))}typeof window!=\"undefined\"&&typeof document!=\"undefined\"&&(document.addEventListener(\"DOMContentLoaded\",e),e())}export{t as onDocumentReady};\n","\"use client\";import l,{createContext as me,createRef as ce,useContext as Y,useEffect as De,useMemo as _,useReducer as Pe,useRef as J,useState as ye}from\"react\";import{useEvent as c}from'../../hooks/use-event.js';import{useEventListener as Ee}from'../../hooks/use-event-listener.js';import{useId as L}from'../../hooks/use-id.js';import{useInertOthers as Ce}from'../../hooks/use-inert-others.js';import{useIsTouchDevice as Ae}from'../../hooks/use-is-touch-device.js';import{useOnDisappear as _e}from'../../hooks/use-on-disappear.js';import{useOutsideClick as Fe}from'../../hooks/use-outside-click.js';import{useOwnerDocument as be}from'../../hooks/use-owner.js';import{useRootContainers as Re}from'../../hooks/use-root-containers.js';import{useScrollLock as ve}from'../../hooks/use-scroll-lock.js';import{useServerHandoffComplete as Se}from'../../hooks/use-server-handoff-complete.js';import{useSyncRefs as h}from'../../hooks/use-sync-refs.js';import{CloseProvider as xe}from'../../internal/close-provider.js';import{HoistFormFields as Le}from'../../internal/form-fields.js';import{State as F,useOpenClosed as he}from'../../internal/open-closed.js';import{ForcePortalRoot as X}from'../../internal/portal-force-root.js';import{StackMessage as B,StackProvider as Oe}from'../../internal/stack-context.js';import{match as O}from'../../utils/match.js';import{RenderFeatures as K,forwardRefWithAs as I,render as w}from'../../utils/render.js';import{Description as V,useDescriptions as Ie}from'../description/description.js';import{FocusTrap as we,FocusTrapFeatures as T}from'../focus-trap/focus-trap.js';import{Keys as Me}from'../keyboard.js';import{Portal as q,useNestedPortals as Ge}from'../portal/portal.js';var He=(r=>(r[r.Open=0]=\"Open\",r[r.Closed=1]=\"Closed\",r))(He||{}),Ne=(t=>(t[t.SetTitleId=0]=\"SetTitleId\",t))(Ne||{});let ke={[0](o,t){return o.titleId===t.id?o:{...o,titleId:t.id}}},b=me(null);b.displayName=\"DialogContext\";function M(o){let t=Y(b);if(t===null){let r=new Error(`<${o} /> is missing a parent
component.`);throw Error.captureStackTrace&&Error.captureStackTrace(r,M),r}return t}function Ue(o,t){return O(t.type,ke,o,t)}let $e=\"div\",je=K.RenderStrategy|K.Static;function We(o,t){let r=L(),{id:d=`headlessui-dialog-${r}`,open:i,onClose:s,initialFocus:f,role:a=\"dialog\",autoFocus:D=!0,__demoMode:p=!1,...G}=o,[R,H]=ye(0),N=J(!1);a=function(){return a===\"dialog\"||a===\"alertdialog\"?a:(N.current||(N.current=!0,console.warn(`Invalid role [${a}] passed to
. Only \\`dialog\\` and and \\`alertdialog\\` are supported. Using \\`dialog\\` instead.`)),\"dialog\")}();let P=he();i===void 0&&P!==null&&(i=(P&F.Open)===F.Open);let u=J(null),z=h(u,t),y=be(u),k=o.hasOwnProperty(\"open\")||P!==null,U=o.hasOwnProperty(\"onClose\");if(!k&&!U)throw new Error(\"You have to provide an `open` and an `onClose` prop to the `Dialog` component.\");if(!k)throw new Error(\"You provided an `onClose` prop to the `Dialog`, but forgot an `open` prop.\");if(!U)throw new Error(\"You provided an `open` prop to the `Dialog`, but forgot an `onClose` prop.\");if(typeof i!=\"boolean\")throw new Error(`You provided an \\`open\\` prop to the \\`Dialog\\`, but the value is not a boolean. Received: ${i}`);if(typeof s!=\"function\")throw new Error(`You provided an \\`onClose\\` prop to the \\`Dialog\\`, but the value is not a function. Received: ${s}`);let n=i?0:1,[E,Q]=Pe(Ue,{titleId:null,descriptionId:null,panelRef:ce()}),m=c(()=>s(!1)),$=c(e=>Q({type:0,id:e})),v=Se()?n===0:!1,C=R>1,Z=Y(b)!==null,[ee,te]=Ge(),oe={get current(){var e;return(e=E.panelRef.current)!=null?e:u.current}},{resolveContainers:S,mainTreeNodeRef:re,MainTreeNode:le}=Re({portals:ee,defaultContainers:[oe]}),ne=C?\"parent\":\"leaf\",j=P!==null?(P&F.Closing)===F.Closing:!1,ae=(()=>C||j?!1:v)();Ce({allowed:c(()=>{var e,g;return[(g=(e=u.current)==null?void 0:e.closest(\"[data-headlessui-portal]\"))!=null?g:null]}),disallowed:c(()=>{var e,g;return[(g=(e=re.current)==null?void 0:e.closest(\"body > *:not(#headlessui-portal-root)\"))!=null?g:null]})},p?!1:ae);let ie=(()=>!(!v||C))();Fe(S,e=>{e.preventDefault(),m()},ie);let se=(()=>!(C||n!==0))();Ee(y==null?void 0:y.defaultView,\"keydown\",e=>{se&&(e.defaultPrevented||e.key===Me.Escape&&(e.preventDefault(),e.stopPropagation(),document.activeElement&&\"blur\"in document.activeElement&&typeof document.activeElement.blur==\"function\"&&document.activeElement.blur(),m()))});let pe=(()=>!(j||n!==0||Z))();ve(y,p?!1:pe,S),_e(u,m,n===0);let[ue,de]=Ie(),fe=_(()=>[{dialogState:n,close:m,setTitleId:$},E],[n,E,m,$]),W=_(()=>({open:n===0}),[n]),ge={ref:z,id:d,role:a,tabIndex:-1,\"aria-modal\":p?void 0:n===0?!0:void 0,\"aria-labelledby\":E.titleId,\"aria-describedby\":ue},Te=!Ae(),A=v?O(ne,{parent:T.RestoreFocus,leaf:T.All&~T.FocusLock}):T.None;return D&&(A|=T.AutoFocus),Te||(A&=~T.InitialFocus),p&&(A=T.None),l.createElement(Oe,{type:\"Dialog\",enabled:n===0,element:u,onUpdate:c((e,g)=>{g===\"Dialog\"&&O(e,{[B.Add]:()=>H(x=>x+1),[B.Remove]:()=>H(x=>x-1)})})},l.createElement(X,{force:!0},l.createElement(q,null,l.createElement(b.Provider,{value:fe},l.createElement(q.Group,{target:u},l.createElement(X,{force:!1},l.createElement(de,{slot:W,name:\"Dialog.Description\"},l.createElement(te,null,l.createElement(we,{initialFocus:f,initialFocusFallback:p?void 0:u,containers:S,features:A},l.createElement(xe,{value:m},w({ourProps:ge,theirProps:G,slot:W,defaultTag:$e,features:je,visible:n===0,name:\"Dialog\"})))))))))),l.createElement(Le,null,l.createElement(le,null)))}let Ye=\"div\";function Je(o,t){let r=L(),{id:d=`headlessui-dialog-panel-${r}`,...i}=o,[{dialogState:s},f]=M(\"Dialog.Panel\"),a=h(t,f.panelRef),D=_(()=>({open:s===0}),[s]),p=c(R=>{R.stopPropagation()});return w({ourProps:{ref:a,id:d,onClick:p},theirProps:i,slot:D,defaultTag:Ye,name:\"Dialog.Panel\"})}let Xe=\"h2\";function Be(o,t){let r=L(),{id:d=`headlessui-dialog-title-${r}`,...i}=o,[{dialogState:s,setTitleId:f}]=M(\"Dialog.Title\"),a=h(t);De(()=>(f(d),()=>f(null)),[d,f]);let D=_(()=>({open:s===0}),[s]);return w({ourProps:{ref:a,id:d},theirProps:i,slot:D,defaultTag:Xe,name:\"Dialog.Title\"})}let Ke=I(We),Ve=I(Je),qe=I(Be),At=V,_t=Object.assign(Ke,{Panel:Ve,Title:qe,Description:V});export{_t as Dialog,At as DialogDescription,Ve as DialogPanel,qe as DialogTitle};\n","import{useState as i}from\"react\";import{useIsoMorphicEffect as s}from'./use-iso-morphic-effect.js';function f(){var t;let[e]=i(()=>typeof window!=\"undefined\"&&typeof window.matchMedia==\"function\"?window.matchMedia(\"(pointer: coarse)\"):null),[o,c]=i((t=e==null?void 0:e.matches)!=null?t:!1);return s(()=>{if(!e)return;function n(r){c(r.matches)}return e.addEventListener(\"change\",n),()=>e.removeEventListener(\"change\",n)},[e]),o}export{f as useIsTouchDevice};\n","var t;import r from\"react\";let a=(t=r.startTransition)!=null?t:function(i){i()};export{a as startTransition};\n","\"use client\";import{useFocusRing as Q}from\"@react-aria/focus\";import{useHover as Y}from\"@react-aria/interactions\";import g,{Fragment as K,createContext as x,useContext as L,useEffect as j,useMemo as b,useReducer as Z,useRef as R}from\"react\";import{useActivePress as ee}from'../../hooks/use-active-press.js';import{useEvent as A}from'../../hooks/use-event.js';import{useId as W}from'../../hooks/use-id.js';import{useResolveButtonType as te}from'../../hooks/use-resolve-button-type.js';import{optionalRef as ne,useSyncRefs as v}from'../../hooks/use-sync-refs.js';import{CloseProvider as oe}from'../../internal/close-provider.js';import{OpenClosedProvider as le,State as C,useOpenClosed as re}from'../../internal/open-closed.js';import{isDisabledReactIssue7711 as se}from'../../utils/bugs.js';import{match as O}from'../../utils/match.js';import{getOwnerDocument as ue}from'../../utils/owner.js';import{RenderFeatures as $,forwardRefWithAs as _,mergeProps as J,render as B,useMergeRefsFn as X}from'../../utils/render.js';import{startTransition as ie}from'../../utils/start-transition.js';import{Keys as S}from'../keyboard.js';var ae=(o=>(o[o.Open=0]=\"Open\",o[o.Closed=1]=\"Closed\",o))(ae||{}),pe=(t=>(t[t.ToggleDisclosure=0]=\"ToggleDisclosure\",t[t.CloseDisclosure=1]=\"CloseDisclosure\",t[t.SetButtonId=2]=\"SetButtonId\",t[t.SetPanelId=3]=\"SetPanelId\",t[t.LinkPanel=4]=\"LinkPanel\",t[t.UnlinkPanel=5]=\"UnlinkPanel\",t))(pe||{});let ce={[0]:e=>({...e,disclosureState:O(e.disclosureState,{[0]:1,[1]:0})}),[1]:e=>e.disclosureState===1?e:{...e,disclosureState:1},[4](e){return e.linkedPanel===!0?e:{...e,linkedPanel:!0}},[5](e){return e.linkedPanel===!1?e:{...e,linkedPanel:!1}},[2](e,n){return e.buttonId===n.buttonId?e:{...e,buttonId:n.buttonId}},[3](e,n){return e.panelId===n.panelId?e:{...e,panelId:n.panelId}}},M=x(null);M.displayName=\"DisclosureContext\";function F(e){let n=L(M);if(n===null){let o=new Error(`<${e} /> is missing a parent
component.`);throw Error.captureStackTrace&&Error.captureStackTrace(o,F),o}return n}let k=x(null);k.displayName=\"DisclosureAPIContext\";function V(e){let n=L(k);if(n===null){let o=new Error(`<${e} /> is missing a parent
component.`);throw Error.captureStackTrace&&Error.captureStackTrace(o,V),o}return n}let H=x(null);H.displayName=\"DisclosurePanelContext\";function de(){return L(H)}function fe(e,n){return O(n.type,ce,e,n)}let Te=K;function De(e,n){let{defaultOpen:o=!1,...d}=e,u=R(null),r=v(n,ne(c=>{u.current=c},e.as===void 0||e.as===K)),t=R(null),l=R(null),i=Z(fe,{disclosureState:o?0:1,linkedPanel:!1,buttonRef:l,panelRef:t,buttonId:null,panelId:null}),[{disclosureState:f,buttonId:s},T]=i,p=A(c=>{T({type:1});let P=ue(u);if(!P||!s)return;let y=(()=>c?c instanceof HTMLElement?c:c.current instanceof HTMLElement?c.current:P.getElementById(s):P.getElementById(s))();y==null||y.focus()}),m=b(()=>({close:p}),[p]),D=b(()=>({open:f===0,close:p}),[f,p]),I={ref:r};return g.createElement(M.Provider,{value:i},g.createElement(k.Provider,{value:m},g.createElement(oe,{value:p},g.createElement(le,{value:O(f,{[0]:C.Open,[1]:C.Closed})},B({ourProps:I,theirProps:d,slot:D,defaultTag:Te,name:\"Disclosure\"})))))}let Pe=\"button\";function ye(e,n){let o=W(),{id:d=`headlessui-disclosure-button-${o}`,disabled:u=!1,autoFocus:r=!1,...t}=e,[l,i]=F(\"Disclosure.Button\"),f=de(),s=f===null?!1:f===l.panelId,T=R(null),p=v(T,n,s?null:l.buttonRef),m=X();j(()=>{if(!s)return i({type:2,buttonId:d}),()=>{i({type:2,buttonId:null})}},[d,i,s]);let D=A(a=>{var E;if(s){if(l.disclosureState===1)return;switch(a.key){case S.Space:case S.Enter:a.preventDefault(),a.stopPropagation(),i({type:0}),(E=l.buttonRef.current)==null||E.focus();break}}else switch(a.key){case S.Space:case S.Enter:a.preventDefault(),a.stopPropagation(),i({type:0});break}}),I=A(a=>{switch(a.key){case S.Space:a.preventDefault();break}}),c=A(a=>{var E;se(a.currentTarget)||u||(s?(i({type:0}),(E=l.buttonRef.current)==null||E.focus()):i({type:0}))}),{isFocusVisible:P,focusProps:y}=Q({autoFocus:r}),{isHovered:U,hoverProps:h}=Y({isDisabled:u}),{pressed:N,pressProps:w}=ee({disabled:u}),q=b(()=>({open:l.disclosureState===0,hover:U,active:N,disabled:u,focus:P,autofocus:r}),[l,U,N,P,u,r]),G=te(e,T),z=s?J({ref:p,type:G,disabled:u||void 0,autoFocus:r,onKeyDown:D,onClick:c},y,h,w):J({ref:p,id:d,type:G,\"aria-expanded\":l.disclosureState===0,\"aria-controls\":l.linkedPanel?l.panelId:void 0,disabled:u||void 0,autoFocus:r,onKeyDown:D,onKeyUp:I,onClick:c},y,h,w);return B({mergeRefs:m,ourProps:z,theirProps:t,slot:q,defaultTag:Pe,name:\"Disclosure.Button\"})}let me=\"div\",Ee=$.RenderStrategy|$.Static;function ge(e,n){let o=W(),{id:d=`headlessui-disclosure-panel-${o}`,...u}=e,[r,t]=F(\"Disclosure.Panel\"),{close:l}=V(\"Disclosure.Panel\"),i=X(),f=v(n,r.panelRef,D=>{ie(()=>t({type:D?4:5}))});j(()=>(t({type:3,panelId:d}),()=>{t({type:3,panelId:null})}),[d,t]);let s=re(),T=(()=>s!==null?(s&C.Open)===C.Open:r.disclosureState===0)(),p=b(()=>({open:r.disclosureState===0,close:l}),[r,l]),m={ref:f,id:d};return g.createElement(H.Provider,{value:r.panelId},B({mergeRefs:i,ourProps:m,theirProps:u,slot:p,defaultTag:me,features:Ee,visible:T,name:\"Disclosure.Panel\"}))}let Se=_(De),be=_(ye),Re=_(ge),we=Object.assign(Se,{Button:be,Panel:Re});export{we as Disclosure,be as DisclosureButton,Re as DisclosurePanel};\n","import * as React from \"react\";\nfunction Bars3Icon({\n title,\n titleId,\n ...props\n}, svgRef) {\n return /*#__PURE__*/React.createElement(\"svg\", Object.assign({\n xmlns: \"http://www.w3.org/2000/svg\",\n fill: \"none\",\n viewBox: \"0 0 24 24\",\n strokeWidth: 1.5,\n stroke: \"currentColor\",\n \"aria-hidden\": \"true\",\n \"data-slot\": \"icon\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, /*#__PURE__*/React.createElement(\"path\", {\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n d: \"M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5\"\n }));\n}\nconst ForwardRef = React.forwardRef(Bars3Icon);\nexport default ForwardRef;","import * as React from \"react\";\nfunction XMarkIcon({\n title,\n titleId,\n ...props\n}, svgRef) {\n return /*#__PURE__*/React.createElement(\"svg\", Object.assign({\n xmlns: \"http://www.w3.org/2000/svg\",\n fill: \"none\",\n viewBox: \"0 0 24 24\",\n strokeWidth: 1.5,\n stroke: \"currentColor\",\n \"aria-hidden\": \"true\",\n \"data-slot\": \"icon\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, /*#__PURE__*/React.createElement(\"path\", {\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\",\n d: \"M6 18 18 6M6 6l12 12\"\n }));\n}\nconst ForwardRef = React.forwardRef(XMarkIcon);\nexport default ForwardRef;","import * as React from \"react\";\nfunction ChevronDownIcon({\n title,\n titleId,\n ...props\n}, svgRef) {\n return /*#__PURE__*/React.createElement(\"svg\", Object.assign({\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 20 20\",\n fill: \"currentColor\",\n \"aria-hidden\": \"true\",\n \"data-slot\": \"icon\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n d: \"M5.22 8.22a.75.75 0 0 1 1.06 0L10 11.94l3.72-3.72a.75.75 0 1 1 1.06 1.06l-4.25 4.25a.75.75 0 0 1-1.06 0L5.22 9.28a.75.75 0 0 1 0-1.06Z\",\n clipRule: \"evenodd\"\n }));\n}\nconst ForwardRef = React.forwardRef(ChevronDownIcon);\nexport default ForwardRef;","import React, { useCallback } from \"react\";\r\nimport \"../../index.css\";\r\n\r\nconst Button = React.memo(({ label, onClick }) => {\r\n const handleClick = useCallback(() => {\r\n if (onClick) {\r\n onClick();\r\n }\r\n }, [onClick]);\r\n\r\n return (\r\n
\r\n );\r\n});\r\n\r\nexport default Button;\r\n","import { Fragment, useState, useEffect, useMemo } from \"react\";\r\nimport classNames from \"classnames\";\r\nimport { Link } from \"react-scroll\";\r\nimport {\r\n Dialog,\r\n DialogPanel,\r\n Disclosure,\r\n DisclosureButton,\r\n DisclosurePanel,\r\n Popover,\r\n PopoverButton,\r\n PopoverGroup,\r\n PopoverPanel,\r\n Transition,\r\n} from \"@headlessui/react\";\r\nimport { Bars3Icon, XMarkIcon } from \"@heroicons/react/24/outline\";\r\nimport Logo from \"../../Images/logo.png\";\r\nimport easyOfficeIcon from \"../../Images/New/Products/easyOffice.webp\";\r\nimport easyGstIcon from \"../../Images/New/Products/easyGst.webp\";\r\nimport easyAccIcon from \"../../Images/New/Products/easyAcc.webp\";\r\nimport easyTaxIcon from \"../../Images/New/Products/easyTax.webp\";\r\nimport easyAuditIcon from \"../../Images/New/Products/easyAudit.webp\";\r\nimport easyTdsIcon from \"../../Images/New/Products/easyTds.webp\";\r\nimport easyCmaIcon from \"../../Images/New/Products/EasyCma.webp\";\r\n\r\nimport {\r\n ChevronDownIcon,\r\n // PhoneIcon,\r\n // PlayCircleIcon,\r\n} from \"@heroicons/react/20/solid\";\r\nimport Button from \"../../Components/ui/button\";\r\n\r\nconst Header = () => {\r\n const [mobileMenuOpen, setMobileMenuOpen] = useState(false);\r\n const [prevScrollPos, setPrevScrollPos] = useState(0);\r\n const [visible, setVisible] = useState(true);\r\n\r\n useEffect(() => {\r\n const handleScroll = () => {\r\n const currentScrollPos = window.pageYOffset;\r\n setVisible(\r\n (prevScrollPos > currentScrollPos &&\r\n prevScrollPos - currentScrollPos > 70) ||\r\n currentScrollPos < 10\r\n );\r\n setPrevScrollPos(currentScrollPos);\r\n };\r\n\r\n window.addEventListener(\"scroll\", handleScroll);\r\n\r\n return () => {\r\n window.removeEventListener(\"scroll\", handleScroll);\r\n };\r\n }, [prevScrollPos, visible]);\r\n\r\n const help = useMemo(\r\n () => [\r\n {\r\n name: \"EasyOFFICE\",\r\n description: \"A Complete Taxation Software\",\r\n href: \"https://www.easyofficesoftware.com/easyofficesoftware\",\r\n icon: easyOfficeIcon,\r\n },\r\n {\r\n name: \"EasyTAX\",\r\n description: \"Income Tax Software\",\r\n href: \"https://www.easyofficesoftware.com/incometaxsoftware\",\r\n icon: easyTaxIcon,\r\n },\r\n {\r\n name: \"EasyGST\",\r\n description: \"Goods & Services Tax Software\",\r\n href: \"https://www.easyofficesoftware.com/easygst\",\r\n icon: easyGstIcon,\r\n },\r\n {\r\n name: \"EasyAUDIT\",\r\n description: \"Audit & Balance sheet Software\",\r\n href: \"https://www.easyofficesoftware.com/auditsoftware\",\r\n icon: easyAuditIcon,\r\n },\r\n {\r\n name: \"EasyACC\",\r\n description: \"Financial Accounting Software\",\r\n href: \"https://www.easyofficesoftware.com/easyacc\",\r\n icon: easyAccIcon,\r\n },\r\n {\r\n name: \"EasyTDS\",\r\n description: \"TDS & TCS Return Software\",\r\n href: \"https://www.easyofficesoftware.com/tdssoftware\",\r\n icon: easyTdsIcon,\r\n },\r\n {\r\n name: \"EasyCMA\",\r\n description: \"CMA Data Software\",\r\n href: \"https://www.easyofficesoftware.com/cmasoftware\",\r\n icon: easyCmaIcon,\r\n class: \"col-start-2\",\r\n },\r\n ],\r\n []\r\n );\r\n\r\n const navigationItems = useMemo(\r\n () => [\r\n {\r\n name: \"Download Updates\",\r\n href: \"https://www.easyofficesoftware.com/downloads\",\r\n },\r\n { name: \"Blog\", href: \"https://www.easyofficesoftware.com/blog\" },\r\n {\r\n name: \"Tutorial Video\",\r\n href: \"https://www.easyofficesoftware.com/video\",\r\n },\r\n {\r\n name: \"Our Products\",\r\n items: help,\r\n },\r\n ],\r\n [help]\r\n );\r\n\r\n return (\r\n <>\r\n
\r\n >\r\n );\r\n};\r\n\r\nexport default Header;\r\n","import React, { useState } from \"react\";\r\nimport './style.css'\r\nimport Button from \"../../Components/ui/button\";\r\nimport Logo from \"../../Images/New/Products/easyAcc.webp\"\r\nimport h1 from \"../../Images/New/Hero/1.gif\"\r\nimport h2 from \"../../Images/New/Hero/2.gif\"\r\nimport h3 from \"../../Images/New/Hero/3.gif\"\r\nimport h4 from \"../../Images/New/Hero/4.gif\"\r\nimport h5 from \"../../Images/New/Hero/5.gif\"\r\nimport h6 from \"../../Images/New/Hero/6.gif\"\r\nimport h7 from \"../../Images/New/Hero/7.gif\"\r\nimport h8 from \"../../Images/New/Hero/8.gif\"\r\n\r\nconst Hero = () => {\r\n const [isExpanded, setIsExpanded] = useState(false);\r\n\r\n const toggleExpand = () => {\r\n setIsExpanded(!isExpanded);\r\n };\r\n return (\r\n <>\r\n
\r\n
\r\n
\r\n
\r\n {/*
\r\n EasyACC\r\n
*/}\r\n

\r\n
\r\n Accounting Inventory Invoicing Management Software\r\n
\r\n
\r\n Accounting Software for Growing Businesses\r\n
\r\n
\r\n EasyACC is a Complete Accounting, Inventory & Invoicing\r\n Management software. This financial accounting software is\r\n widely used by small and medium businesses, traders, retailers,\r\n dealers, distributors and manufacturing units.With its\r\n user-friendly advanced features, EasyACC Software is an ideal\r\n solution for businesses looking to simplify their Billings, Cash\r\n / Cheque management, payment reminders, Orders and other\r\n financial operations.\r\n
\r\n {isExpanded && (\r\n
\r\n
{' '}\r\n EasyACC is the Best Accounting software for growing\r\n Businesses. EasyACC Software is available with special modules\r\n for the Textile industry, Garment industry, Engineering units,\r\n Job works, Agency business and Travel agents. The software's\r\n invoicing & inventory management capabilities provide a simple\r\n and efficient way to manage sales & stock, while its annual\r\n financial statement feature provides a comprehensive view of a\r\n business's financial performance. EasyACC Software demo can be\r\n downloaded free of cost.\r\n
\r\n {\" \"}\r\n
\r\n EasyACC software's account book, bank / cash / JV / voucher\r\n and debit note / credit note features provide a complete view\r\n of all financial transactions, enabling businesses to\r\n effectively manage their financial operations. Additionally,\r\n the software's e-way bill generation, GST reports & analysis,\r\n purchase management, inventory management, bank management and\r\n cash management capabilities provide a comprehensive solution\r\n for businesses looking to optimize their financial operations\r\n and stay compliant with the latest regulations. To Keep our\r\n customers up-dated with current market needs we regularly\r\n update & add new features to the software. EasyACC is the best\r\n Billing Software for Small Businesses in India.\r\n
\r\n )}\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n

\r\n
\r\n Accounting Management\r\n
\r\n
\r\n
\r\n

\r\n
\r\n Billing Management\r\n
\r\n
\r\n
\r\n

\r\n
\r\n Inventory Management\r\n
\r\n
\r\n
\r\n

\r\n
\r\n GST Returns & Reports\r\n
\r\n
\r\n\r\n
\r\n

\r\n
\r\n E- Invoice / E-way Bill\r\n
\r\n
\r\n
\r\n

\r\n
\r\n Data Import & Export\r\n
\r\n
\r\n
\r\n

\r\n
\r\n Final Account Statements\r\n
\r\n
\r\n
\r\n

\r\n
\r\n Special Modules for Various Businesses\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n >\r\n );\r\n};\r\n\r\nexport default Hero;\r\n","import React from \"react\";\r\n\r\nconst AboutCard = ({ icon, title, disc }) => {\r\n return (\r\n
\r\n {/*
*/}\r\n
\r\n
\r\n
\r\n

\r\n
\r\n
\r\n
\r\n
\r\n
\r\n {disc}\r\n
\r\n
\r\n
\r\n
\r\n );\r\n};\r\n\r\nexport default AboutCard;\r\n","var _path, _path2;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nfunction SvgWork(_ref, svgRef) {\n let {\n title,\n titleId,\n ...props\n } = _ref;\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 16,\n height: 16,\n className: \"bi bi-person-workspace\",\n viewBox: \"0 0 16 16\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M4 16s-1 0-1-1 1-4 5-4 5 3 5 4-1 1-1 1zm4-5.95a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5\"\n })), _path2 || (_path2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2 1a2 2 0 0 0-2 2v9.5A1.5 1.5 0 0 0 1.5 14h.653a5.4 5.4 0 0 1 1.066-2H1V3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v9h-2.219c.554.654.89 1.373 1.066 2h.653a1.5 1.5 0 0 0 1.5-1.5V3a2 2 0 0 0-2-2z\"\n })));\n}\nconst ForwardRef = /*#__PURE__*/React.forwardRef(SvgWork);\nexport default __webpack_public_path__ + \"static/media/Work.4f6fd7013a1da64006dc4a2b7248151a.svg\";\nexport { ForwardRef as ReactComponent };","var _path;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nfunction SvgWallet(_ref, svgRef) {\n let {\n title,\n titleId,\n ...props\n } = _ref;\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 16,\n height: 16,\n fill: \"currentColor\",\n className: \"bi bi-wallet2\",\n viewBox: \"0 0 16 16\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M12.136.326A1.5 1.5 0 0 1 14 1.78V3h.5A1.5 1.5 0 0 1 16 4.5v9a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 13.5v-9a1.5 1.5 0 0 1 1.432-1.499zM5.562 3H13V1.78a.5.5 0 0 0-.621-.484zM1.5 4a.5.5 0 0 0-.5.5v9a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5z\"\n })));\n}\nconst ForwardRef = /*#__PURE__*/React.forwardRef(SvgWallet);\nexport default __webpack_public_path__ + \"static/media/Wallet.50043e0a687d02c68e8bcb580767e75b.svg\";\nexport { ForwardRef as ReactComponent };","var _path, _path2;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nfunction SvgPersonCheck(_ref, svgRef) {\n let {\n title,\n titleId,\n ...props\n } = _ref;\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 16,\n height: 16,\n fill: \"currentColor\",\n className: \"bi bi-person-check-fill\",\n viewBox: \"0 0 16 16\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n fillRule: \"evenodd\",\n d: \"M15.854 5.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 0 1 .708-.708L12.5 7.793l2.646-2.647a.5.5 0 0 1 .708 0\"\n })), _path2 || (_path2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6\"\n })));\n}\nconst ForwardRef = /*#__PURE__*/React.forwardRef(SvgPersonCheck);\nexport default __webpack_public_path__ + \"static/media/person_check.5f56237e5d1daecd9a1d89a64944fbed.svg\";\nexport { ForwardRef as ReactComponent };","var _path, _path2;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nfunction SvgPersonBounding(_ref, svgRef) {\n let {\n title,\n titleId,\n ...props\n } = _ref;\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 16,\n height: 16,\n fill: \"currentColor\",\n className: \"bi bi-person-bounding-box\",\n viewBox: \"0 0 16 16\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M1.5 1a.5.5 0 0 0-.5.5v3a.5.5 0 0 1-1 0v-3A1.5 1.5 0 0 1 1.5 0h3a.5.5 0 0 1 0 1zM11 .5a.5.5 0 0 1 .5-.5h3A1.5 1.5 0 0 1 16 1.5v3a.5.5 0 0 1-1 0v-3a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 1-.5-.5M.5 11a.5.5 0 0 1 .5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 1 0 1h-3A1.5 1.5 0 0 1 0 14.5v-3a.5.5 0 0 1 .5-.5m15 0a.5.5 0 0 1 .5.5v3a1.5 1.5 0 0 1-1.5 1.5h-3a.5.5 0 0 1 0-1h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 1 .5-.5\"\n })), _path2 || (_path2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1zm8-9a3 3 0 1 1-6 0 3 3 0 0 1 6 0\"\n })));\n}\nconst ForwardRef = /*#__PURE__*/React.forwardRef(SvgPersonBounding);\nexport default __webpack_public_path__ + \"static/media/person_bounding.a4bc5a393dc2742ff44fe4cc6899126e.svg\";\nexport { ForwardRef as ReactComponent };","var _path;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nfunction SvgTime(_ref, svgRef) {\n let {\n title,\n titleId,\n ...props\n } = _ref;\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 16,\n height: 16,\n fill: \"currentColor\",\n className: \"bi bi-clock-fill\",\n viewBox: \"0 0 16 16\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M8 3.5a.5.5 0 0 0-1 0V9a.5.5 0 0 0 .252.434l3.5 2a.5.5 0 0 0 .496-.868L8 8.71z\"\n })));\n}\nconst ForwardRef = /*#__PURE__*/React.forwardRef(SvgTime);\nexport default __webpack_public_path__ + \"static/media/time.9675346e1eee5dd338840d55cf725539.svg\";\nexport { ForwardRef as ReactComponent };","var _path, _path2;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nfunction SvgVideo1(_ref, svgRef) {\n let {\n title,\n titleId,\n ...props\n } = _ref;\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 16,\n height: 16,\n fill: \"currentColor\",\n className: \"bi bi-person-video3\",\n viewBox: \"0 0 16 16\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M14 9.5a2 2 0 1 1-4 0 2 2 0 0 1 4 0m-6 5.7c0 .8.8.8.8.8h6.4s.8 0 .8-.8-.8-3.2-4-3.2-4 2.4-4 3.2\"\n })), _path2 || (_path2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h5.243c.122-.326.295-.668.526-1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v7.81c.353.23.656.496.91.783Q16 12.312 16 12V4a2 2 0 0 0-2-2z\"\n })));\n}\nconst ForwardRef = /*#__PURE__*/React.forwardRef(SvgVideo1);\nexport default __webpack_public_path__ + \"static/media/video_1.6d9ac59d5550d75e9c81d411a1e9cd8e.svg\";\nexport { ForwardRef as ReactComponent };","import React from \"react\";\r\nimport AboutCard from \"./aboutCard\";\r\nimport Work from '../../Images/New/Whay_us/Work.svg'\r\nimport Wallet from '../../Images/New/Whay_us/Wallet.svg'\r\nimport Check from '../../Images/New/Whay_us/person_check.svg'\r\nimport Bounding from '../../Images/New/Whay_us/person_bounding.svg'\r\nimport Time from '../../Images/New/Whay_us/time.svg'\r\nimport Video from '../../Images/New/Whay_us/video_1.svg'\r\n\r\nconst About = () => {\r\n const data = [\r\n {\r\n title: \"Easy to operate\",\r\n disc: \"EasyACC offers a Comprehensive Dashboard for an all-in-one view, user-friendly interface simplifies complex tasks.\",\r\n icon: Work,\r\n },\r\n {\r\n title: \"Competitive Pricing\",\r\n disc: \"EasyACC unmatched efficiency at a competitive price point, delivering value without compromise.\",\r\n icon: Wallet,\r\n },\r\n {\r\n title: \"GST Compliant\",\r\n disc: \"EasyACC ensures seamless compliance with GST regulations.\",\r\n icon: Check,\r\n },\r\n {\r\n title: \"Customizable Software\",\r\n disc: \"Empower your operations with EasyAcc customizable software.\",\r\n icon: Bounding,\r\n },\r\n {\r\n title: \"Trusted by Accountants\",\r\n disc: \"EasyACC trusted by professional Accountants globally for its accuracy and eddiciency.\",\r\n icon: Time,\r\n },\r\n {\r\n title: \"Expert Team\",\r\n disc: \"Expert Tech support for EasyACC, ensuring smooth operation at every step by step.\",\r\n icon: Video,\r\n },\r\n ];\r\n\r\n return (\r\n
\r\n
\r\n
\r\n
\r\n Why Choose{\" \"}\r\n \r\n Us?\r\n \r\n
\r\n
\r\n Accounting Inventory Invoicing Management Software\r\n
\r\n
\r\n
\r\n {data.map((item, index) => (\r\n
\r\n ))}\r\n
\r\n
\r\n
\r\n );\r\n};\r\n\r\nexport default About;\r\n","var _path;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nfunction SvgYoutube(_ref, svgRef) {\n let {\n title,\n titleId,\n ...props\n } = _ref;\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 26,\n height: 26,\n fill: \"white\",\n className: \"bi bi-youtube\",\n viewBox: \"0 0 16 16\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M8.051 1.999h.089c.822.003 4.987.033 6.11.335a2.01 2.01 0 0 1 1.415 1.42c.101.38.172.883.22 1.402l.01.104.022.26.008.104c.065.914.073 1.77.074 1.957v.075c-.001.194-.01 1.108-.082 2.06l-.008.105-.009.104c-.05.572-.124 1.14-.235 1.558a2.01 2.01 0 0 1-1.415 1.42c-1.16.312-5.569.334-6.18.335h-.142c-.309 0-1.587-.006-2.927-.052l-.17-.006-.087-.004-.171-.007-.171-.007c-1.11-.049-2.167-.128-2.654-.26a2.01 2.01 0 0 1-1.415-1.419c-.111-.417-.185-.986-.235-1.558L.09 9.82l-.008-.104A31 31 0 0 1 0 7.68v-.123c.002-.215.01-.958.064-1.778l.007-.103.003-.052.008-.104.022-.26.01-.104c.048-.519.119-1.023.22-1.402a2.01 2.01 0 0 1 1.415-1.42c.487-.13 1.544-.21 2.654-.26l.17-.007.172-.006.086-.003.171-.007A100 100 0 0 1 7.858 2zM6.4 5.209v4.818l4.157-2.408z\"\n })));\n}\nconst ForwardRef = /*#__PURE__*/React.forwardRef(SvgYoutube);\nexport default __webpack_public_path__ + \"static/media/youtube.e657ceb414ac69ba53e3f1a581b8d528.svg\";\nexport { ForwardRef as ReactComponent };","import React from \"react\";\r\nimport facebookIcon from \"../../Images/New/Social/facebook.svg\";\r\nimport twitterIcon from \"../../Images/New/Social/twitter.svg\";\r\nimport instagramIcon from \"../../Images/New/Social/instagram.svg\";\r\nimport linkedinIcon from \"../../Images/New/Social/linkedin.svg\";\r\nimport youtubeIcon from \"../../Images/New/Social/youtube.svg\";\r\n\r\nconst socialLinks = [\r\n {\r\n name: \"Facebook\",\r\n icon: facebookIcon,\r\n url: \"https://www.facebook.com/electrocomsoftwareprivatelimited\",\r\n },\r\n {\r\n name: \"Twitter\",\r\n icon: twitterIcon,\r\n url: \"https://twitter.com/electrocom11\",\r\n },\r\n {\r\n name: \"Instagram\",\r\n icon: instagramIcon,\r\n url: \"https://www.instagram.com/easyofficesoftware/\",\r\n },\r\n {\r\n name: \"Linkedin\",\r\n icon: linkedinIcon,\r\n url: \"https://www.linkedin.com/company/electrocomsoftware-easyoffice\",\r\n },\r\n {\r\n name: \"YouTube\",\r\n icon: youtubeIcon,\r\n url: \"https://www.youtube.com/c/EASYOFFICESOFTWARE\",\r\n },\r\n];\r\n\r\nconst SocialNavBar = React.memo(({Color}) => {\r\n return (\r\n
\r\n {socialLinks.map((link, index) => (\r\n
\r\n
\r\n \r\n ))}\r\n
\r\n );\r\n});\r\n\r\nexport default SocialNavBar;\r\n","var _path;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nfunction SvgFacebook(_ref, svgRef) {\n let {\n title,\n titleId,\n ...props\n } = _ref;\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 26,\n height: 26,\n fill: \"white\",\n className: \"bi bi-facebook\",\n viewBox: \"0 0 16 16\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M16 8.049c0-4.446-3.582-8.05-8-8.05C3.58 0-.002 3.603-.002 8.05c0 4.017 2.926 7.347 6.75 7.951v-5.625h-2.03V8.05H6.75V6.275c0-2.017 1.195-3.131 3.022-3.131.876 0 1.791.157 1.791.157v1.98h-1.009c-.993 0-1.303.621-1.303 1.258v1.51h2.218l-.354 2.326H9.25V16c3.824-.604 6.75-3.934 6.75-7.951\"\n })));\n}\nconst ForwardRef = /*#__PURE__*/React.forwardRef(SvgFacebook);\nexport default __webpack_public_path__ + \"static/media/facebook.fdcb0c0355d2907ab8baee6762a132bc.svg\";\nexport { ForwardRef as ReactComponent };","var _path;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nfunction SvgTwitter(_ref, svgRef) {\n let {\n title,\n titleId,\n ...props\n } = _ref;\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 26,\n height: 26,\n fill: \"white\",\n className: \"bi bi-twitter\",\n viewBox: \"0 0 16 16\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M5.026 15c6.038 0 9.341-5.003 9.341-9.334q.002-.211-.006-.422A6.7 6.7 0 0 0 16 3.542a6.7 6.7 0 0 1-1.889.518 3.3 3.3 0 0 0 1.447-1.817 6.5 6.5 0 0 1-2.087.793A3.286 3.286 0 0 0 7.875 6.03a9.32 9.32 0 0 1-6.767-3.429 3.29 3.29 0 0 0 1.018 4.382A3.3 3.3 0 0 1 .64 6.575v.045a3.29 3.29 0 0 0 2.632 3.218 3.2 3.2 0 0 1-.865.115 3 3 0 0 1-.614-.057 3.28 3.28 0 0 0 3.067 2.277A6.6 6.6 0 0 1 .78 13.58a6 6 0 0 1-.78-.045A9.34 9.34 0 0 0 5.026 15\"\n })));\n}\nconst ForwardRef = /*#__PURE__*/React.forwardRef(SvgTwitter);\nexport default __webpack_public_path__ + \"static/media/twitter.3d247f7632e9c1f8b5afd41b653d6d96.svg\";\nexport { ForwardRef as ReactComponent };","var _path;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nfunction SvgInstagram(_ref, svgRef) {\n let {\n title,\n titleId,\n ...props\n } = _ref;\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 26,\n height: 26,\n fill: \"white\",\n className: \"bi bi-instagram\",\n viewBox: \"0 0 16 16\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.9 3.9 0 0 0-1.417.923A3.9 3.9 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.9 3.9 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.9 3.9 0 0 0-.923-1.417A3.9 3.9 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599s.453.546.598.92c.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.5 2.5 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.5 2.5 0 0 1-.92-.598 2.5 2.5 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233s.008-2.388.046-3.231c.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92s.546-.453.92-.598c.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92m-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217m0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334\"\n })));\n}\nconst ForwardRef = /*#__PURE__*/React.forwardRef(SvgInstagram);\nexport default __webpack_public_path__ + \"static/media/instagram.87ecf200edb3451cdf82be227b3c64f8.svg\";\nexport { ForwardRef as ReactComponent };","var _path;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nfunction SvgLinkedin(_ref, svgRef) {\n let {\n title,\n titleId,\n ...props\n } = _ref;\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 26,\n height: 26,\n fill: \"white\",\n className: \"bi bi-linkedin\",\n viewBox: \"0 0 16 16\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854zm4.943 12.248V6.169H2.542v7.225zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248S2.4 3.226 2.4 3.934c0 .694.521 1.248 1.327 1.248zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016l.016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225z\"\n })));\n}\nconst ForwardRef = /*#__PURE__*/React.forwardRef(SvgLinkedin);\nexport default __webpack_public_path__ + \"static/media/linkedin.e4643b737377f794fa7860beaf8318cb.svg\";\nexport { ForwardRef as ReactComponent };","import React from \"react\";\r\nimport { Link } from \"react-scroll\";\r\nimport SocialNavBar from \"../../Components/ui/SocialNavBar\";\r\nimport Button from \"../../Components/ui/button\";\r\n\r\nconst footerData = {\r\n \"Usefull link\": [\r\n { name: \"About\", url: \"https://www.easyofficesoftware.com/about\" },\r\n { name: \"Blog\", url: \"https://www.easyofficesoftware.com/blog\" },\r\n {\r\n name: \"Product Catalogue\",\r\n url: \"https://www.easyofficesoftware.com/product_catalogue\",\r\n },\r\n {\r\n name: \"Bank Details\",\r\n url: \"https://www.easyofficesoftware.com/bank_details\",\r\n },\r\n ],\r\n \"Our Software\": [\r\n {\r\n name: \"EasyOFFICE\",\r\n url: \"https://www.easyofficesoftware.com/easyofficesoftware\",\r\n },\r\n { name: \"EasyGST\", url: \"https://www.easyofficesoftware.com/easygst\" },\r\n { name: \"EasyACC\", url: \"https://www.easyofficesoftware.com/easyacc\" },\r\n {\r\n name: \"EasyTAX\",\r\n url: \"https://www.easyofficesoftware.com/incometaxsoftware\",\r\n },\r\n {\r\n name: \"EasyAUDIT\",\r\n url: \"https://www.easyofficesoftware.com/auditsoftware\",\r\n },\r\n { name: \"EasyTDS\", url: \"https://www.easyofficesoftware.com/tdssoftware\" },\r\n { name: \"EasyCMA\", url: \"https://www.easyofficesoftware.com/cmasoftware\" },\r\n ],\r\n EASYACC: [\r\n {\r\n name: \"Billing Software\",\r\n url: \"https://www.easyofficesoftware.com/easyacc\",\r\n },\r\n {\r\n name: \"Inventory Management\",\r\n url: \"https://www.easyofficesoftware.com/easyacc\",\r\n },\r\n {\r\n name: \"e-Invoicing Software\",\r\n url: \"https://www.easyofficesoftware.com/easyacc\",\r\n },\r\n {\r\n name: \"e-way Bill Software\",\r\n url: \"https://www.easyofficesoftware.com/easyacc\",\r\n },\r\n {\r\n name: \"Business Reports\",\r\n url: \"https://www.easyofficesoftware.com/easyacc\",\r\n },\r\n {\r\n name: \"Profit & Loss, Balance Sheet\",\r\n url: \"https://www.easyofficesoftware.com/easyacc\",\r\n },\r\n {\r\n name: \"Accounting Software for SMEs\",\r\n url: \"https://www.easyofficesoftware.com/easyacc\",\r\n },\r\n ],\r\n};\r\n\r\nconst Footer = () => {\r\n return (\r\n <>\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n Electrocom Software Private Limited\r\n
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n
\r\n Contact Us\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n Address\r\n
\r\n
\r\n
\r\n 505, Sukhsagar Complex,
\r\n Nr. Fortune Landmark
\r\n Usmanpura Cross Road,
\r\n Ashram Road,
\r\n Ahmedabad - 380013
\r\n
\r\n
\r\n\r\n
\r\n
\r\n Office Time\r\n
\r\n
\r\n
\r\n 10:15AM - 7PM (Mon - Fri)
10:30AM - 5PM (Sat)\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n Support{\" \"}\r\n
\r\n
\r\n
\r\n
\r\n
\r\n {\" \"}\r\n
\r\n - \r\n \r\n
\r\n FAQ's\r\n
\r\n \r\n \r\n
\r\n
\r\n
\r\n
\r\n
\r\n {Object.entries(footerData).map(([category, items]) => (\r\n
\r\n
\r\n {category}\r\n
\r\n
\r\n {items.map((item) => (\r\n
\r\n ))}\r\n
\r\n
\r\n ))}\r\n
\r\n
\r\n
\r\n
\r\n © 2024 Electrocom Software Private Limited, Inc. All rights\r\n reserved.\r\n
\r\n
\r\n
\r\n
\r\n
\r\n >\r\n );\r\n};\r\n\r\nexport default Footer;\r\n","import React, { useState } from \"react\";\r\nimport SocialNavBar from \"../../Components/ui/SocialNavBar\";\r\n\r\nconst ContactForm = () => {\r\n // For Captcha code\r\n const randomString = Math.random().toString(36).slice(8);\r\n const [captcha, setCaptcha] = useState(randomString);\r\n const [text, setText] = useState(\"\");\r\n const [valid] = useState(false);\r\n\r\n const [EASYACC, setEASYACC] = useState({\r\n name: \"\",\r\n mobile: \"\",\r\n mobile2: \"\",\r\n email: \"\",\r\n address1: \"\",\r\n address2: \"\",\r\n area: \"\",\r\n city: \"\",\r\n state: \"\",\r\n pin_code: \"\",\r\n description: \"\",\r\n profession: \"\",\r\n product: \"EASYACC\",\r\n });\r\n\r\n const handleChange = (e) => {\r\n const { name, value } = e.target;\r\n setEASYACC({\r\n ...EASYACC,\r\n [name]: value,\r\n });\r\n };\r\n\r\n const handleSubmit = (e) => {\r\n e.preventDefault();\r\n\r\n const Authanantication = btoa(\"electrocom:electrocom\");\r\n\r\n const requestOptions = {\r\n method: \"POST\",\r\n headers: {\r\n \"Content-Type\": \"application/json\",\r\n Authorization: `Basic ${Authanantication}`,\r\n },\r\n body: JSON.stringify(EASYACC),\r\n };\r\n\r\n fetch(\"http://espl.local:8080/espl/api/send-inquiry\", requestOptions)\r\n .then((response) => {\r\n if (!response.ok) {\r\n throw new Error(\"Network response was not ok\");\r\n }\r\n return response.json();\r\n })\r\n .then((EASYACC) => {\r\n console.log(\"Form submitted successfully:\", EASYACC);\r\n alert(\"Thank you For Messageing\");\r\n setCaptcha(Math.random().toString(36).slice(8));\r\n setText(\"\");\r\n setEASYACC({\r\n name: \"\",\r\n mobile: \"\",\r\n mobile2: \"\",\r\n email: \"\",\r\n address1: \"\",\r\n address2: \"\",\r\n area: \"\",\r\n city: \"\",\r\n state: \"\",\r\n pin_code: \"\",\r\n description: \"\",\r\n profession: \"\",\r\n product: \"EASYACC\",\r\n });\r\n })\r\n .catch((error) => {\r\n console.error(\"Error submitting form:\", error);\r\n });\r\n };\r\n\r\n const fields = [\r\n {\r\n id: \"name\",\r\n name: \"name\",\r\n placeholder: \"Full Name\",\r\n type: \"text\",\r\n },\r\n {\r\n id: \"profession\",\r\n name: \"profession\",\r\n placeholder: \"Profession\",\r\n type: \"text\",\r\n },\r\n {\r\n id: \"mobile\",\r\n name: \"mobile\",\r\n placeholder: \"Mobile Number\",\r\n type: \"text\",\r\n },\r\n { id: \"email\", name: \"email\", placeholder: \"Email\", type: \"email\" },\r\n {\r\n id: \"city\",\r\n name: \"city\",\r\n placeholder: \"City\",\r\n type: \"text\",\r\n },\r\n \r\n ];\r\n\r\n const refreshString = () => {\r\n setCaptcha(Math.random().toString(36).slice(8));\r\n };\r\n\r\n return (\r\n <>\r\n
\r\n >\r\n );\r\n};\r\n\r\nexport default ContactForm;\r\n","import React, { useState } from \"react\";\r\n\r\nfunction FaqComponent() {\r\n const [openIndex, setOpenIndex] = useState(-1);\r\n\r\n const toggleItem = (index) => {\r\n if (openIndex === index) {\r\n setOpenIndex(-1);\r\n } else {\r\n setOpenIndex(index);\r\n }\r\n };\r\n\r\n const faqData = [\r\n {\r\n question: \"Is EasyACC a billing software?\",\r\n answer:\r\n \"Yes, EasyACC is a billing software that allows businesses to create GST invoices, manage their inventory and generate multiple reports.\",\r\n },\r\n {\r\n question:\r\n \"Which is the best software for billing?\",\r\n answer:\r\n \"EasyACC is also a billing software that is widely used by small and medium businesses in India. Multiple formats for Invoice printing are available. It simplifies financial operations by offering advanced features such as invoicing, inventory management, e-way bill generation, GST reports and analysis, purchase management, bank management, and cash management capabilities.\",\r\n },\r\n {\r\n question: \"What is EasyACC Software?\",\r\n answer:\r\n \"EasyACC is a comprehensive accounting, inventory and invoicing management software; specially designed for small and medium businesses, traders, retailers, dealers, distributors, and manufacturing units.\",\r\n },\r\n {\r\n question:\r\n \"What are the features of EasyACC?\",\r\n answer:\r\n \"EasyACC offers advanced features such as Accounting, invoicing, inventory management with e-way bill generation, GST reports & analysis, Sales & Purchase management, Bank & cash management. All these capabilities make EasyACC a complete financial management software solution.\",\r\n },\r\n {\r\n question: \"How can EasyACC help my business?\",\r\n answer:\r\n \"EasyACC can simplify financial operations, save time and effort, optimize financial performance and help businesses stay compliant with regulations such as GST. It provides users with a range of useful features that can help them manage their finances efficiently.\",\r\n },\r\n ];\r\n\r\n return (\r\n <>\r\n
\r\n
\r\n
\r\n
\r\n
\r\n FA\r\n \r\n Q\r\n \r\n
\r\n
\r\n Frequently asked questions\r\n
\r\n
\r\n
\r\n {faqData.map((faq, index) => (\r\n
\r\n
\r\n toggleItem(index)}\r\n >\r\n {faq.question}\r\n \r\n \r\n \r\n
\r\n \r\n {faq.answer}\r\n
\r\n \r\n
\r\n ))}\r\n
\r\n
\r\n
\r\n {/*
\r\n
\r\n
\r\n A Word from our Customers\r\n
\r\n
\r\n Lorem ipsum dolor sit amet consectetur adipisicing elit.\r\n Necessitatibus, iusto?\r\n
\r\n
\r\n
\r\n
*/}\r\n
\r\n >\r\n );\r\n}\r\n\r\nexport default FaqComponent;\r\n","import React from 'react'\r\n\r\nconst ExtraComp = () => {\r\n return (\r\n <>\r\n
\r\n
\r\n EasyACC - the Preferred Accounting, Billing Software for Small &\r\n Medium Enterprises!\r\n
\r\n
\r\n Join with Thousands of our happy customers\r\n
\r\n
\r\n
\r\n >\r\n );\r\n}\r\n\r\nexport default ExtraComp;","import React from \"react\";\r\n\r\nconst FeatureItem = ({ children }) => (\r\n
\r\n
\r\n {children}\r\n
\r\n
\r\n);\r\n\r\nconst AllFeatures = () => {\r\n return (\r\n
\r\n
\r\n
\r\n Accounting Software to{\" \"}\r\n \r\n Simplify Businesses\r\n \r\n
\r\n
\r\n GST compliant Fully Accounting Software\r\n
\r\n
\r\n
\r\n
\r\n Sales Management\r\n Purchase Management\r\n TDS Management\r\n Inventory Management\r\n Bank Management\r\n Cash Management\r\n Job Work Management\r\n Goods Consumption Management \r\n Tour/ Agency Management\r\n
\r\n
\r\n E-Invoice\r\n Annual Financial Statements\r\n Online data collection (AIS/TIS/26AS)\r\n Comprehensive Dashboard\r\n Commission & Interest calculation\r\n Special Modules for Businesses\r\n Depreciation Tool\r\n Secure Data Entry\r\n Technical Support\r\n
\r\n
\r\n E-way Bill\r\n GSTR-1 /3B /4 /ITC-04/ 9 /CMP-08\r\n GSTR 2A Excel import\r\n Data Import/Export\r\n Quotation /Order form Generation\r\n Cheque /Envelop print\r\n Email / SMS Facility\r\n Analysis Reports\r\n Suggestion & Query system\r\n
\r\n
\r\n
\r\n
\r\n );\r\n};\r\n\r\nexport default AllFeatures;\r\n","var _path;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nfunction SvgRightSvg(_ref, svgRef) {\n let {\n title,\n titleId,\n ...props\n } = _ref;\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 16,\n height: 16,\n fill: \"#090979\",\n className: \"bi bi-caret-right-fill\",\n viewBox: \"0 0 16 16\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"m12.14 8.753-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z\"\n })));\n}\nconst ForwardRef = /*#__PURE__*/React.forwardRef(SvgRightSvg);\nexport default __webpack_public_path__ + \"static/media/RightSvg.b3af7c3799e5f50d135cbbba9ea95cb9.svg\";\nexport { ForwardRef as ReactComponent };","import React from \"react\";\r\nimport I1 from \"../../Images/New/RightSoft/1.png\";\r\nimport I2 from \"../../Images/New/RightSoft/2.png\";\r\nimport I3 from \"../../Images/New/RightSoft/3.png\";\r\nimport I4 from \"../../Images/New/RightSoft/4.png\";\r\nimport I5 from \"../../Images/New/RightSoft/5.png\";\r\nimport I6 from \"../../Images/New/RightSoft/6.png\";\r\nimport I7 from \"../../Images/New/RightSoft/7.png\";\r\nimport I8 from \"../../Images/New/RightSoft/8.png\";\r\nimport I9 from \"../../Images/New/RightSoft/9.png\";\r\nimport I10 from \"../../Images/New/RightSoft/10.png\";\r\nimport Right from \"../../Images/RightSvg.svg\";\r\n\r\nfunction RightSoft() {\r\n const [expandedIndex, setExpandedIndex] = React.useState(-1);\r\n\r\n const handleClick = (index) => {\r\n if (expandedIndex === index) {\r\n setExpandedIndex(-1);\r\n } else {\r\n setExpandedIndex(index); \r\n }\r\n };\r\n\r\n let ListItem = React.memo(({ text }) => (\r\n
\r\n
\r\n \r\n {text} \r\n \r\n \r\n ));\r\n\r\n const faqDataLeft = [\r\n {\r\n question: \"Invoicing and Accounting\",\r\n answer: [\r\n \"Create GST compliant Invoice\",\r\n \"Multiple Template for Invoice as per user requirement\",\r\n \"Preparation of Order form and Quotation\",\r\n \"Option to view Customer's outstanding Bills & Sales history of goods, including the last price at which the goods were sold\",\r\n \"Goods / Services price with Inclusive / Exclusive Tax\",\r\n \"Invoice to Payment Process\",\r\n ],\r\n img: I1,\r\n },\r\n {\r\n question: \"Receivable & Payables\",\r\n answer: [\r\n \"Every transaction details and track business cash flow seamlessly\",\r\n \"Settle Multiple Bill against a payment\",\r\n \"Interest Calculation for early or delayed payments\",\r\n \"Credit Period Management\",\r\n \"Payment Due Register\",\r\n ],\r\n img: I2,\r\n },\r\n {\r\n question: \"Bank Management\",\r\n answer: [\r\n \"Auto Bank Reconciliation\",\r\n \"Generate Pay in slips and Cheque management\",\r\n \"Import Bank statements through Excel sheets\",\r\n \"Cheque Printing option\",\r\n ],\r\n img: I3,\r\n },\r\n {\r\n question: \"TDS Management\",\r\n answer: [\r\n \"Deduction of TDS as per the norms\",\r\n \"Generation of TDS Reports & Export in Excel\",\r\n ],\r\n img: I4,\r\n },\r\n {\r\n question: \"E-invoicing\",\r\n answer: [\r\n \"Generate E-invoices\",\r\n \"Bulk E-invoice direct upload facility\",\r\n \"E-Invoice reports\",\r\n \"Cancel uploaded e-invoices\",\r\n ],\r\n img: I5,\r\n },\r\n {\r\n question: \"Printing Modules\",\r\n answer: [\r\n \"Challan printing\",\r\n \"Half page Invoice printing\",\r\n \"Envelop Printing\",\r\n ],\r\n img: I6,\r\n },\r\n {\r\n question: \"Discount / Commission calculation & Reports\",\r\n answer: [\r\n \"Agent-wise / Sales person wise Commission calculation & Reports\",\r\n \"Auto calculation of Discounts\",\r\n ],\r\n img: I7,\r\n },\r\n {\r\n question: \"Multi-Account Management\",\r\n answer: [\r\n \"Multiple companies\",\r\n \"Multiple Group Company\",\r\n \"Multiple Bank accounts\",\r\n ],\r\n img: I8,\r\n },\r\n {\r\n question: \"Tax Compliance\",\r\n answer: [\r\n \"EasyACC helps you manage statutory compliances such as GST or TDS along with Multiple Tax Rates, Tax Categories & ledgers\",\r\n ],\r\n img: I9,\r\n },\r\n {\r\n question: \"Other Features\",\r\n answer: [\r\n \"Digital signature on invoices and reports\",\r\n \"Collect previous FY data to current year\",\r\n \"Automatic Data backup and restore\",\r\n \"User wise Data Access Management\",\r\n \"Technical Support\",\r\n \"User-Friendly Dashboard\",\r\n ],\r\n img: I10,\r\n },\r\n ];\r\n\r\n return (\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n Billing Software\r\n {\" \"}\r\n for Small Businesses in India\r\n
\r\n
\r\n
\r\n {faqDataLeft.map((faq, index) => (\r\n
\r\n
handleClick(index)}\r\n >\r\n \r\n
\r\n {faq.question}\r\n \r\n \r\n \r\n \r\n \r\n {expandedIndex === index && (\r\n
\r\n {faq.answer.map((item, idx) => (\r\n \r\n ))}\r\n
\r\n )}\r\n
\r\n ))}\r\n
\r\n
\r\n
\r\n
\r\n );\r\n}\r\n\r\nexport default RightSoft;\r\n","import React from 'react'\r\n\r\nconst Reports = () => {\r\n return (\r\n <>\r\n
\r\n
\r\n
\r\n
\r\n Reports\r\n
\r\n
\r\n
\r\n
\r\n
\r\n MIS Reports with Multiple Analysis\r\n
\r\n
\r\n
\r\n
\r\n Customized Reports\r\n
\r\n
\r\n
\r\n
\r\n Reports output On screen & Printer\r\n
\r\n
\r\n
\r\n
\r\n Report export facility to
\r\n PDF, HTML, Word, Excel, etc.\r\n
\r\n
\r\n\r\n
\r\n
\r\n Multi angle Accounting &
inventory reports\r\n
\r\n
\r\n
\r\n
\r\n Search / Sort / Filter option in
\r\n data entries & reports\r\n
\r\n
\r\n
\r\n
\r\n
\r\n >\r\n );\r\n}\r\n\r\nexport default Reports;","import React from 'react'\r\n\r\nconst Video = () => {\r\n return (\r\n <>\r\n
\r\n
\r\n
\r\n
\r\n Software Tutorial\r\n
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n >\r\n );\r\n}\r\n\r\nexport default Video;","import React from 'react'\r\n\r\nconst SecExtra = () => {\r\n return (\r\n <>\r\n
\r\n
\r\n Inquire Now for the Best Billing and Accounting Software\r\n
\r\n
\r\n
\r\n >\r\n );\r\n}\r\n\r\nexport default SecExtra;","import React, { useState } from \"react\";\r\n\r\nconst SecModule = React.memo(({ dataStore }) => {\r\n const [selectedCategory, setSelectedCategory] = useState(\r\n dataStore.length > 0 ? dataStore[0].name : \"\"\r\n );\r\n\r\n return (\r\n
\r\n
\r\n
\r\n
\r\n
\r\n {dataStore.map((item, index) => (\r\n
setSelectedCategory(item.name)}\r\n >\r\n {item.name}\r\n
\r\n ))}\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n {dataStore.map((item, index) => (\r\n

\r\n ))}\r\n
\r\n
\r\n
\r\n
\r\n
\r\n );\r\n});\r\n\r\nexport default SecModule;\r\n","import B1 from \"../../../Images/New/ImageView/1.jpg\";\r\nimport B2 from \"../../../Images/New/ImageView/2.jpg\";\r\nimport B3 from \"../../../Images/New/ImageView/3.jpg\";\r\nimport B4 from \"../../../Images/New/ImageView/4.jpg\";\r\nimport B5 from \"../../../Images/New/ImageView/5.png\";\r\nimport B6 from \"../../../Images/New/ImageView/6.png\";\r\nimport B7 from \"../../../Images/New/ImageView/7.jpg\";\r\nimport B8 from \"../../../Images/New/ImageView/8.png\";\r\n\r\nconst moduleData = [\r\n {\r\n name: \"Account Dashboard\",\r\n back: B1,\r\n },\r\n {\r\n name: \"GST base Invoicing\",\r\n back: B2,\r\n },\r\n {\r\n name: \"E-Invoice\",\r\n back: B8,\r\n },\r\n {\r\n name: \"Debit Note/Credit Note\",\r\n back: B3,\r\n },\r\n {\r\n name: \"Annual Final Statement\",\r\n back: B4,\r\n },\r\n {\r\n name: \"GST Reports & Analysis\",\r\n back: B5,\r\n },\r\n {\r\n name: \"Reports\",\r\n back: B6,\r\n },\r\n {\r\n name: \"Bank/Cash/Ledger/JV\",\r\n back: B7,\r\n },\r\n];\r\n\r\nexport default moduleData;\r\n\r\n","import React from 'react'\r\nimport SecModule from './SecModule';\r\nimport moduleData from './Data/Data';\r\n\r\nconst MainSecond = React.memo(() => {\r\n return (\r\n <>\r\n
\r\n
\r\n
\r\n We make your business{\" \"}\r\n \r\n Accounting & GST\r\n {\" \"}\r\n Reporting easy\r\n
\r\n
\r\n
\r\n
\r\n
\r\n >\r\n );\r\n});\r\n\r\nexport default MainSecond;","function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nfunction SvgInvoiceBro(_ref, svgRef) {\n let {\n title,\n titleId,\n ...props\n } = _ref;\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 500 500\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--background-simple--inject-3\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M132.36,86.75S70.52,137.64,47.54,200.51,42.25,334,95.42,377.93s132.09,19.64,206.42,38.69S449,412.8,465.91,334.93s-36.63-94.08-62.13-174.5S280.19-24.69,132.36,86.75Z\",\n style: {\n fill: \"#007CB5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M132.36,86.75S70.52,137.64,47.54,200.51,42.25,334,95.42,377.93s132.09,19.64,206.42,38.69S449,412.8,465.91,334.93s-36.63-94.08-62.13-174.5S280.19-24.69,132.36,86.75Z\",\n style: {\n fill: \"#fff\",\n opacity: 0.7000000000000001\n }\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Floor--inject-3\"\n }, /*#__PURE__*/React.createElement(\"line\", {\n x1: 49.92,\n y1: 425.46,\n x2: 462,\n y2: 425.46,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"line\", {\n x1: 32.4,\n y1: 425.46,\n x2: 38.85,\n y2: 425.46,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Icons--inject-3\"\n }, /*#__PURE__*/React.createElement(\"rect\", {\n x: 173.33,\n y: 99.81,\n width: 54.96,\n height: 34.57,\n rx: 1.66,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 173.33,\n y: 120.2,\n width: 54.96,\n height: 7.98,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"circle\", {\n cx: 219.65,\n cy: 106.46,\n r: 3.77,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"circle\", {\n cx: 213.89,\n cy: 106.46,\n r: 3.77,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"line\", {\n x1: 178.21,\n y1: 105.35,\n x2: 193.28,\n y2: 105.35,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 56.7,\n y: 254,\n width: 54.96,\n height: 34.57,\n rx: 1.66,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 56.7,\n y: 274.39,\n width: 54.96,\n height: 7.98,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M106.78,260.65a3.77,3.77,0,1,1-3.77-3.77A3.77,3.77,0,0,1,106.78,260.65Z\",\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"circle\", {\n cx: 97.25,\n cy: 260.65,\n r: 3.77,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"line\", {\n x1: 61.57,\n y1: 259.54,\n x2: 76.64,\n y2: 259.54,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 366.56,\n y: 66.56,\n width: 34.15,\n height: 34.15,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"394.19 81.01 385.48 81.01 385.48 72.31 381.79 72.31 381.79 81.01 373.09 81.01 373.09 84.7 381.79 84.7 381.79 93.41 385.48 93.41 385.48 84.7 394.19 84.7 394.19 81.01\",\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 400.64,\n y: 66.56,\n width: 34.15,\n height: 34.15,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 408.61,\n y: 81.01,\n width: 18.19,\n height: 3.16,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 366.56,\n y: 100.65,\n width: 34.15,\n height: 34.15,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"389.79 108.18 383.64 114.33 377.49 108.18 374.88 110.79 381.03 116.94 374.88 123.09 377.49 125.7 383.64 119.55 389.79 125.7 392.4 123.09 386.25 116.94 392.4 110.79 389.79 108.18\",\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 400.64,\n y: 100.65,\n width: 34.15,\n height: 34.15,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 408.61,\n y: 115.09,\n width: 18.19,\n height: 3.16,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M417.71,112.2a2.29,2.29,0,1,0-2.29-2.29A2.29,2.29,0,0,0,417.71,112.2Z\",\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"circle\", {\n cx: 417.71,\n cy: 123.8,\n r: 2.29,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 36.08,\n y: 366,\n width: 21.57,\n height: 21.57,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"53.52 375.13 48.03 375.13 48.03 369.63 45.7 369.63 45.7 375.13 40.2 375.13 40.2 377.46 45.7 377.46 45.7 382.95 48.03 382.95 48.03 377.46 53.52 377.46 53.52 375.13\",\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 57.6,\n y: 366,\n width: 21.57,\n height: 21.57,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 62.64,\n y: 375.13,\n width: 11.49,\n height: 2,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 36.08,\n y: 387.53,\n width: 21.57,\n height: 21.57,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"50.75 392.28 46.86 396.17 42.98 392.28 41.33 393.93 45.22 397.82 41.33 401.7 42.98 403.35 46.86 399.46 50.75 403.35 52.4 401.7 48.51 397.82 52.4 393.93 50.75 392.28\",\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 57.6,\n y: 387.53,\n width: 21.57,\n height: 21.57,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 62.64,\n y: 396.65,\n width: 11.49,\n height: 2,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"circle\", {\n cx: 68.38,\n cy: 393.38,\n r: 1.44,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M68.38,400.7a1.45,1.45,0,1,0,1.45,1.45A1.45,1.45,0,0,0,68.38,400.7Z\",\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M297.48,109.2a.24.24,0,0,0-.2.23l0,1.48a.49.49,0,0,1-.56.56h-1.95a.49.49,0,0,1-.56-.56l.07-1.51a.26.26,0,0,0-.2-.24c-3.76-.46-5.93-2.73-5.93-5.9v-1.41a.5.5,0,0,1,.56-.56h3.42c.37,0,.57.16.57.42v.47a3,3,0,0,0,3.32,3.13c2.11,0,3-1.29,3-2.61,0-2.34-4.28-2.7-7.45-4.74-2-1.26-3.46-2.87-3.46-5.67,0-3.46,2.15-5.9,5.94-6.46a.25.25,0,0,0,.19-.23l-.06-1.78a.49.49,0,0,1,.56-.56h1.88a.5.5,0,0,1,.56.56l0,1.74a.23.23,0,0,0,.19.23c4,.43,6.2,2.84,6.2,6.23v1.09a.51.51,0,0,1-.56.56h-3.46c-.36,0-.56-.13-.56-.33V93a3.09,3.09,0,0,0-3.3-3.33c-1.84,0-3,1-3,2.44,0,2.14,3,2.47,6.09,3.83,3.4,1.51,4.88,3.62,4.88,6.52C303.71,106.1,301.5,108.67,297.48,109.2Z\",\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"circle\", {\n cx: 295.66,\n cy: 97.54,\n r: 18.74,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M147.33,74.35a.17.17,0,0,0-.14.16l0,1a.33.33,0,0,1-.38.37h-1.3a.33.33,0,0,1-.38-.37l.05-1a.17.17,0,0,0-.13-.15c-2.52-.31-4-1.83-4-4v-.95a.35.35,0,0,1,.38-.38h2.29c.25,0,.38.11.38.29v.31a2,2,0,0,0,2.23,2.1,1.76,1.76,0,0,0,2-1.75c0-1.56-2.87-1.81-5-3.18A4.16,4.16,0,0,1,141.08,63a4.21,4.21,0,0,1,4-4.33.17.17,0,0,0,.14-.15l-.05-1.19a.33.33,0,0,1,.38-.38h1.26a.34.34,0,0,1,.37.38l0,1.17a.16.16,0,0,0,.13.15c2.65.29,4.15,1.9,4.15,4.17v.73A.34.34,0,0,1,151,64h-2.31c-.25,0-.38-.08-.38-.22v-.22a2.06,2.06,0,0,0-2.2-2.23c-1.24,0-2,.64-2,1.64,0,1.43,2,1.65,4.08,2.56,2.28,1,3.27,2.43,3.27,4.37C151.5,72.28,150,74,147.33,74.35Z\",\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"circle\", {\n cx: 146.1,\n cy: 66.55,\n r: 12.55,\n transform: \"translate(-4.26 122.8) rotate(-45)\",\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M50.19,200.07a.15.15,0,0,0-.13.15l0,1c0,.27-.13.38-.37.38H48.4c-.24,0-.37-.11-.37-.38l0-1a.17.17,0,0,0-.13-.16c-2.52-.3-4-1.83-4-3.95v-1a.33.33,0,0,1,.37-.37h2.3c.24,0,.37.11.37.29v.31a2,2,0,0,0,2.23,2.09,1.76,1.76,0,0,0,2-1.74c0-1.57-2.87-1.81-5-3.18a4.31,4.31,0,0,1,1.66-8.12.16.16,0,0,0,.13-.16l0-1.19a.32.32,0,0,1,.37-.37h1.26a.34.34,0,0,1,.38.37l0,1.17a.18.18,0,0,0,.14.16c2.64.28,4.15,1.89,4.15,4.17v.73a.34.34,0,0,1-.38.37H51.58c-.24,0-.37-.09-.37-.22v-.22A2.07,2.07,0,0,0,49,187c-1.24,0-2,.64-2,1.63,0,1.44,2,1.66,4.09,2.56,2.27,1,3.26,2.43,3.26,4.37C54.36,198,52.88,199.71,50.19,200.07Z\",\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"circle\", {\n cx: 48.97,\n cy: 192.26,\n r: 12.55,\n transform: \"translate(-121.61 90.94) rotate(-45)\",\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M463.22,371.81a.15.15,0,0,0-.13.15l0,1c0,.27-.13.38-.37.38h-1.31c-.24,0-.37-.11-.37-.38l0-1a.17.17,0,0,0-.13-.16c-2.52-.31-4-1.83-4-3.95v-.95a.33.33,0,0,1,.37-.37h2.3c.24,0,.37.11.37.29v.3a2,2,0,0,0,2.23,2.1,1.76,1.76,0,0,0,2-1.74c0-1.57-2.87-1.81-5-3.18a4.31,4.31,0,0,1,1.66-8.12.17.17,0,0,0,.13-.16l0-1.19a.32.32,0,0,1,.37-.37h1.26a.34.34,0,0,1,.38.37l0,1.17a.16.16,0,0,0,.14.15c2.64.29,4.15,1.9,4.15,4.18V361a.34.34,0,0,1-.38.38h-2.32c-.24,0-.37-.09-.37-.22V361a2.06,2.06,0,0,0-2.21-2.23c-1.24,0-2,.64-2,1.63,0,1.44,2,1.66,4.09,2.56,2.27,1,3.26,2.43,3.26,4.37C467.39,369.73,465.91,371.45,463.22,371.81Z\",\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"circle\", {\n cx: 462,\n cy: 364,\n r: 12.55,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Device--inject-3\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M421.85,448.51c0,3.34-76.58,6.05-171,6.05s-171-2.71-171-6.05,76.58-6,171.05-6S421.85,445.18,421.85,448.51Z\",\n style: {\n fill: \"#ccc\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M238.5,394.21s8.32,35.76,4.7,41.63c-4.74,7.69-55.15,12.32-55.15,12.32H299.21s13.93-3.91,9.74-15.11c-3.24-8.66-18.79-38.84-18.79-38.84Z\",\n style: {\n fill: \"#fff\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M236.06,394.21s8.88,36.06,4.7,41.63-52.71,9.84-52.71,9.84H299.73s9.39-3.79,6.78-12.63-18.78-38.84-18.78-38.84Z\",\n style: {\n fill: \"#fff\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M287.73,394.21H236.06s5.26,21.36,5.77,33.74h62.75C299.5,416.05,287.73,394.21,287.73,394.21Z\",\n style: {\n fill: \"#263238\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 188.05,\n y: 445.86,\n width: 111.15,\n height: 2.3,\n style: {\n fill: \"#fff\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 97.99,\n y: 146.19,\n width: 335.38,\n height: 251.53,\n rx: 8.48,\n style: {\n fill: \"#fff\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 90.09,\n y: 146.19,\n width: 335.38,\n height: 251.53,\n rx: 8.48,\n style: {\n fill: \"#263238\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M90.09,358.63H425.47a0,0,0,0,1,0,0v30.61a8.48,8.48,0,0,1-8.48,8.48H98.57a8.48,8.48,0,0,1-8.48-8.48V358.63A0,0,0,0,1,90.09,358.63Z\",\n style: {\n fill: \"#fff\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 106.96,\n y: 161.84,\n width: 301.64,\n height: 177.71,\n style: {\n fill: \"#fff\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 122.08,\n y: 264.15,\n width: 256.06,\n height: 11.24,\n style: {\n fill: \"#007CB5\"\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 122.08,\n y: 285.39,\n width: 256.06,\n height: 11.24,\n style: {\n fill: \"#007CB5\"\n }\n }), /*#__PURE__*/React.createElement(\"line\", {\n x1: 122.06,\n y1: 197.11,\n x2: 167.11,\n y2: 197.11,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"line\", {\n x1: 122.06,\n y1: 203.73,\n x2: 167.11,\n y2: 203.73,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"line\", {\n x1: 268.13,\n y1: 203.73,\n x2: 313.18,\n y2: 203.73,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"line\", {\n x1: 268.13,\n y1: 210.32,\n x2: 313.18,\n y2: 210.32,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"line\", {\n x1: 268.13,\n y1: 216.91,\n x2: 313.18,\n y2: 216.91,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"line\", {\n x1: 122.06,\n y1: 210.36,\n x2: 167.11,\n y2: 210.36,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"line\", {\n x1: 122.06,\n y1: 321.55,\n x2: 167.11,\n y2: 321.55,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"line\", {\n x1: 122.06,\n y1: 327.69,\n x2: 167.11,\n y2: 327.69,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"line\", {\n x1: 122.06,\n y1: 216.98,\n x2: 167.11,\n y2: 216.98,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 122.06,\n y: 223.61,\n width: 107.98,\n height: 11.92,\n style: {\n fill: \"#007CB5\"\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 320.79,\n y: 211.68,\n width: 56.97,\n height: 5.96,\n style: {\n fill: \"#007CB5\"\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 320.79,\n y: 196.45,\n width: 56.97,\n height: 21.2,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 320.79,\n y: 202.41,\n width: 56.97,\n height: 9.27,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"line\", {\n x1: 329.46,\n y1: 196.63,\n x2: 329.46,\n y2: 217.39,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 122.08,\n y: 243.54,\n width: 256.06,\n height: 71.82,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 122.08,\n y: 243.54,\n width: 256.06,\n height: 11.24,\n style: {\n fill: \"#007CB5\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"line\", {\n x1: 302.85,\n y1: 243.81,\n x2: 302.85,\n y2: 315.24,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"line\", {\n x1: 330.68,\n y1: 243.81,\n x2: 330.68,\n y2: 315.24,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeMiterlimit: 10\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 302.62,\n y: 319.63,\n width: 27.97,\n height: 16.63,\n style: {\n fill: \"#007CB5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M313.18,325.93v1.28c0,1.57-.75,2.42-2.3,2.42h-.72v3.69h-1.54v-9.81h2.26C312.43,323.51,313.18,324.36,313.18,325.93Zm-3-1v3.32h.72c.5,0,.76-.22.76-.92v-1.48c0-.7-.26-.92-.76-.92Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M319.26,333.32H317.7l-.26-1.78h-1.89l-.27,1.78h-1.41l1.56-9.81h2.26Zm-3.52-3.11h1.49l-.74-5Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M321.29,330.07l-2-6.56H321l1.18,4.47,1.17-4.47h1.48l-1.95,6.56v3.25h-1.54Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M122.62,177.87h2.31v14.7h-2.31Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M129.09,181.92v10.65H127v-14.7h2.9l2.37,8.8v-8.8h2.06v14.7H132Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M139.9,189.86l1.77-12h2.12l-2.27,14.7h-3.44l-2.27-14.7h2.33Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M145.07,181.4c0-2.36,1.24-3.7,3.51-3.7s3.5,1.34,3.5,3.7V189c0,2.35-1.23,3.69-3.5,3.69s-3.51-1.34-3.51-3.69Zm2.31,7.79c0,1,.46,1.44,1.2,1.44s1.19-.4,1.19-1.44v-7.94c0-1.05-.46-1.45-1.19-1.45s-1.2.4-1.2,1.45Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M154,177.87h2.31v14.7H154Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M165.1,187.09V189c0,2.35-1.17,3.69-3.44,3.69s-3.44-1.34-3.44-3.69V181.4c0-2.36,1.17-3.7,3.44-3.7s3.44,1.34,3.44,3.7v1.42h-2.18v-1.57c0-1.05-.46-1.45-1.2-1.45s-1.19.4-1.19,1.45v7.94c0,1,.46,1.42,1.19,1.42s1.2-.38,1.2-1.42v-2.1Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M169.24,184.06h3.17v2.1h-3.17v4.31h4v2.1h-6.3v-14.7h6.3V180h-4Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"rect\", {\n x: 106.96,\n y: 161.84,\n width: 301.64,\n height: 8.21,\n style: {\n fill: \"#007CB5\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M264,378.18a6.19,6.19,0,1,0-6.18,6.18A6.19,6.19,0,0,0,264,378.18Z\",\n style: {\n fill: \"#263238\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Character--inject-3\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M434.47,462.81c0,4-17.78,7.19-39.72,7.19S355,466.78,355,462.81s17.79-7.19,39.72-7.19S434.47,458.84,434.47,462.81Z\",\n style: {\n fill: \"#ccc\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M370.2,278.5s-4.28,1.6-5.61,7.62-4.15,24.2-5.62,32.76-9.36,36.36-9.36,36.36l4.15,2.81s10.16-14.84,13-21.79,5.61-11.77,6-17.12-.26-34.76-.26-37S371.41,278.23,370.2,278.5Z\",\n style: {\n fill: \"#007CB5\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M374.08,453.07s-10.56,6.82-11.77,9.22,1.07,3.08,7,2.28,10-3.88,12.83-5.49,4.15-1.73,3.21-5.34S374.08,453.07,374.08,453.07Z\",\n style: {\n fill: \"#fff\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M415.39,454.14s11.64,7.88,11,9.62-4.15,2.54-10.3.54-7.49-3.61-10-5.75-1.6-4.81-1.6-6.69S415.39,454.14,415.39,454.14Z\",\n style: {\n fill: \"#fff\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M368.6,332s-2.41,21.12-2.68,38,7.49,81.11,7.49,81.78v2a18.48,18.48,0,0,0,6.29,1.6,52.94,52.94,0,0,0,6.81-.27s0-11.9.27-21.12,1.74-51.3,1.74-51.3l.4-18.18,2.67,1.74,12.57,89.13,11.23-1.2s1.34-59.32,1.07-75.63S413,333.45,413,333.45Z\",\n style: {\n fill: \"#263238\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M389.59,272.22s-17.78,5.48-19.39,6.28-2.67,5.08-2.67,10.43,2,31.82,1.74,35-1.87,7.22-.54,9.49,19,3.74,28.48,3.34,14.84.54,16.18-2.14,2.14-35.69,3.47-43.32,2.28-11.63-.4-13.77-16.84-4.68-20.32-5.48Z\",\n style: {\n fill: \"#007CB5\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M389,268.85s-2.95,1-3.93,3.21-3.92,13.21-2.85,13.74,9.37-3.48,10.62-3.21,6.33,6.87,7.85,6,5.09-10.26,3.75-15.08S390.33,267.6,389,268.85Z\",\n style: {\n fill: \"#fff\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M387.38,265.82s-.09,4.9-.09,7.4,2.15,11.42,4,11.07,9.64-9.1,10.89-11.43,1.51-7.13,1.51-7.13-5.53,3.92-9.72,2.67A36.52,36.52,0,0,1,387.38,265.82Z\",\n style: {\n fill: \"#ccc\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M394,268.4a36.52,36.52,0,0,1-6.61-2.58s0,1.93-.06,4c.61,1.31,1.19,2.41,1.6,3.19a5.18,5.18,0,0,0,6.62,2.77,21.42,21.42,0,0,0,7.56-5.59,30.42,30.42,0,0,0,.61-4.44S398.18,269.65,394,268.4Z\",\n style: {\n fill: \"#263238\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M385.28,251.46s-.5-3.56-2.18-2.11-1.38,5.09-.58,6.84,1.67,1.53,1.89,1.45S385.28,251.46,385.28,251.46Z\",\n style: {\n fill: \"#ccc\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M408.56,254.88c.22-.36,2.91-9.38,3.06-14.26s-6.91-9.45-11.93-10.4-12.44.29-14,3.13-1.75,14-1.75,15.86,1.46,2.18,1.82,1.74,1.46-11.42,2.11-12.22,12.29-.43,14.11.07,2.84,2.41,2.48,5.17.07,2.62.8,4.22.72,2.18.72,4.36S407,257.35,408.56,254.88Z\",\n style: {\n fill: \"#263238\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M386.89,238.37a121.69,121.69,0,0,0-2.62,16.22c-.37,6.47,3.2,13.16,4.65,15.93s4.08,3.71,6.62,2.76a22.36,22.36,0,0,0,8.8-7c2.69-3.49,4.08-11.86,4.08-11.86s-1.1.58-1.17-.36.66-4.22-.07-6.33-2.33-2.62-1.38-4.66a13.61,13.61,0,0,0,1.31-3.63c0-.37-3.64-2.55-10.26-3.13S387.25,236.55,386.89,238.37Z\",\n style: {\n fill: \"#ccc\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M387.61,244.33s1.95-1.69,4.66.26\",\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M397.45,245.1s4.66-1.87,6.53,1.44\",\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M407.69,255.46s1.45-3.27,3.56-3.42,1.82,4-.14,6.7-4.8,3.78-4.88,1.81\",\n style: {\n fill: \"#ccc\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M393.43,249.57s-2.4,6.91-1.89,7.86,2.47,2,4.87.87\",\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M394.38,261.57a6.58,6.58,0,0,0,6.25-1.09\",\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M391,249.82c0,.79-.28,1.42-.62,1.42s-.62-.63-.62-1.42.28-1.41.62-1.41S391,249,391,249.82Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"ellipse\", {\n cx: 399.51,\n cy: 250.77,\n rx: 0.62,\n ry: 1.42,\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M393.5,249.39a4.18,4.18,0,1,1-4.18-4.18A4.18,4.18,0,0,1,393.5,249.39Z\",\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M404.35,250.29a4.4,4.4,0,1,1-4.4-4.41A4.4,4.4,0,0,1,404.35,250.29Z\",\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M393.5,248.62a1.67,1.67,0,0,1,2,.37\",\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"line\", {\n x1: 404.27,\n y1: 250.73,\n x2: 409.51,\n y2: 252.92,\n style: {\n fill: \"none\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"line\", {\n x1: 350.68,\n y1: 352.17,\n x2: 356.3,\n y2: 354.44,\n style: {\n fill: \"#fff\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M345.5,369.29s.79,4.62,1.33,4.87.73-2.25.55-3.83l-.18-1.58s.85,4.13,1.7,4.5.37-1.46.12-2.38l-.24-.91s2.13,2.25,2.31,1.7-1.28-3.28-1.34-3.46A22.49,22.49,0,0,1,349,365c-.06-.85-1.27-4.26-2.49-2.13S345.5,369.29,345.5,369.29Z\",\n style: {\n fill: \"#ccc\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M349.61,355.24s-4,6.42-5.08,8.56-1.87,10.16-.93,10.7,1.19-1.42,1.41-2.77a21.07,21.07,0,0,1,1.7-4.63s-.57,5.12.23,5,1.47-4.81,2-6,3.75-2.94,4.82-8Z\",\n style: {\n fill: \"#ccc\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M346.71,367.1s0-.68.49-3.22\",\n style: {\n fill: \"#fff\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M415.93,277.3a20,20,0,0,1,6.68,8.95c2.54,6.29,11.23,33.7,11.5,34.23s0,5.88-4.28,7.62-6.28-2-8.82-6.28-8.42-23.27-8.42-23.27\",\n style: {\n fill: \"#007CB5\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M426.89,312.73l20.76-10.2,3.61,4.15S436,325.29,432.64,327.43s-7.49,1.61-9.09-2\",\n style: {\n fill: \"#007CB5\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"line\", {\n x1: 445.38,\n y1: 304,\n x2: 449.25,\n y2: 308.68,\n style: {\n fill: \"#fff\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M447.65,302.53s4.55-7.08,5.88-7.62,5.08-1.33,7.22-2.94,3.34-1.2,2.14.54-2.54,2-3.74,2.54a9.48,9.48,0,0,0-1.74.93s3.34.14,5.48.27a15.15,15.15,0,0,0,3.88-.27s5.48-2.4,4.14.54-1.2,4.81-6.55,6.41a38.67,38.67,0,0,1-10.69,1.48l-2.41,2.27Z\",\n style: {\n fill: \"#ccc\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M468.64,300.93a5.89,5.89,0,0,0,3.61-3.74c.94-2.95.4-3.08-.8-2a14.29,14.29,0,0,0-2.81,4.15C468,300.66,468.64,300.93,468.64,300.93Z\",\n style: {\n fill: \"#ccc\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M467.44,301.06s1.6,1.07,2.81-2.14,1.06-5.75,0-5.21-1.34.67-2.68,3.48-2.54,4-1.74,4.27A1.9,1.9,0,0,0,467.44,301.06Z\",\n style: {\n fill: \"#ccc\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M452.06,302.27s2-3.35,4.28-3.35a76.94,76.94,0,0,1,8.29,1.07s4.41-6.41,5.35-5.48-1.47,5.35-2.54,6.55-1.21,1.34-2.14,1.61\",\n style: {\n fill: \"#ccc\",\n stroke: \"#263238\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n }), /*#__PURE__*/React.createElement(\"line\", {\n x1: 388.92,\n y1: 364.47,\n x2: 382.77,\n y2: 361.53,\n style: {\n fill: \"none\",\n stroke: \"#7d7d7d\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n })));\n}\nconst ForwardRef = /*#__PURE__*/React.forwardRef(SvgInvoiceBro);\nexport default __webpack_public_path__ + \"static/media/Invoice-bro.28ac8ef6f23314c4acd33d33a9ad9d2a.svg\";\nexport { ForwardRef as ReactComponent };","import React from \"react\";\r\nimport './style.css'\r\nimport BG from \"../../Images/New/AllFeature/Invoice-bro.svg\";\r\n\r\nconst Facilitys = () => {\r\n return (\r\n <>\r\n
\r\n
\r\n
\r\n
\r\n Simplify{\" \"}\r\n \r\n E-Invoicing\r\n {\" \"}\r\n Software\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n E-Invoice Quick Upload\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n Debit/Credit Note of E-Invoice\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n Print E-Invoice\r\n
\r\n
\r\n
\r\n
\r\n

\r\n
\r\n
\r\n
\r\n
\r\n Import JSON/Excel of E-Invoice\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n Cancel E-Invoice\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n Generate bulk e-invoice JSON\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n

\r\n
\r\n
\r\n
\r\n
\r\n E-Invoice Quick Upload\r\n
\r\n
\r\n
\r\n
\r\n Debit/Credit Note of E-Invoice\r\n
\r\n
\r\n
\r\n
\r\n Generate bulk e-invoice JSON\r\n
\r\n
\r\n
\r\n
\r\n Import JSON/Excel of E-Invoice\r\n
\r\n
\r\n
\r\n
\r\n Print E-Invoice\r\n
\r\n
\r\n
\r\n
\r\n Cancel E-Invoice\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n >\r\n );\r\n};\r\n\r\nexport default Facilitys;\r\n","var _path, _path2, _path3;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nfunction SvgOnlinereportAmico(_ref, svgRef) {\n let {\n title,\n titleId,\n ...props\n } = _ref;\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 500 500\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Floor--inject-114\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"freepik--floor--inject-114\",\n d: \"M77.67,448.33c-95.18-54.95-95.18-144,0-199s249.49-55,344.66,0,95.18,144,0,199S172.84,503.28,77.67,448.33Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Shadows--inject-114\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"freepik--Shadow--inject-114\",\n d: \"M34.63,436.83c-10.24,5.91-10.24,15.5,0,21.41s26.84,5.91,37.08,0,10.24-15.5,0-21.41S44.87,430.92,34.63,436.83Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n id: \"freepik--shadow--inject-114\",\n d: \"M378.14,301l-5-2.91a13.69,13.69,0,0,0-12.4,0L94.05,452c-3.41,2-3.41,5.19,0,7.16l5,2.91a13.75,13.75,0,0,0,12.4,0l78.73-45.43,32.27,18.62c9.29,5.37,24.49,5.37,33.78,0L312.16,403c7.93-4.58,7.93-12.07,0-16.65L277.42,366.3l100.72-58.17C381.55,306.16,381.55,302.94,378.14,301Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"ellipse\", {\n id: \"freepik--shadow--inject-114\",\n cx: 431.28,\n cy: 394.22,\n rx: 61.88,\n ry: 35.73,\n style: {\n fill: \"#e0e0e0\"\n }\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Plants--inject-114\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Plant--inject-114\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Pot--inject-114\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M37.82,448.68c-8.29-8.56-13.16-43.38-5.07-50.17H73.91c8.08,6.78,3.22,41.6-5.07,50.16l-.23.24-.28.28c-.24.23-.49.45-.75.67l-.2.16-.63.48a11.4,11.4,0,0,1-1.07.69c-6.82,4-17.88,4-24.7,0h0a9,9,0,0,1-1.08-.7c-.21-.14-.4-.29-.59-.44l-.24-.2a9.17,9.17,0,0,1-.72-.65c-.12-.1-.22-.21-.33-.32Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M37.82,448.68c-8.29-8.56-13.16-43.38-5.07-50.17H73.91c8.08,6.78,3.22,41.6-5.07,50.16l-.23.24-.28.28c-.24.23-.49.45-.75.67l-.2.16-.63.48a11.4,11.4,0,0,1-1.07.69c-6.82,4-17.88,4-24.7,0h0a9,9,0,0,1-1.08-.7c-.21-.14-.4-.29-.59-.44l-.24-.2a9.17,9.17,0,0,1-.72-.65c-.12-.1-.22-.21-.33-.32Z\",\n style: {\n fill: \"#fff\",\n opacity: 0.6000000000000001\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M70.33,395.77c9.39,5.49,9.39,14.38,0,19.86s-24.61,5.48-34,0-9.39-14.37,0-19.85S60.94,390.29,70.33,395.77Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M70.33,395.77c9.39,5.49,9.39,14.38,0,19.86s-24.61,5.48-34,0-9.39-14.37,0-19.85S60.94,390.29,70.33,395.77Z\",\n style: {\n fill: \"#fff\",\n opacity: 0.8\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M65.82,398.41c6.89,4,6.89,10.56,0,14.58s-18.08,4-25,0-6.89-10.55,0-14.58S58.92,394.39,65.82,398.41Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M65.82,398.41c6.89,4,6.89,10.56,0,14.58s-18.08,4-25,0-6.89-10.55,0-14.58S58.92,394.39,65.82,398.41Z\",\n style: {\n fill: \"#fff\",\n opacity: 0.6000000000000001\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M40.84,405.33c6.9-4,18.08-4,25,0A11.7,11.7,0,0,1,70,409.16,11.61,11.61,0,0,1,65.82,413c-6.9,4-18.08,4-25,0a11.53,11.53,0,0,1-4.13-3.83A11.61,11.61,0,0,1,40.84,405.33Z\",\n style: {\n fill: \"#fafafa\"\n }\n })), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M41.41,332.51a3.83,3.83,0,0,1,0-.61l-.06-.63c0-.42-.11-.83-.19-1.25-.16-.83-.37-1.65-.61-2.46a1.77,1.77,0,0,0-.15-.48l-.15-.47-.33-1c-.15-.46-.31-.92-.47-1.38a10.89,10.89,0,0,1-.44-1.33,2.83,2.83,0,0,0-.13-.52,1.09,1.09,0,0,1-.09-.23c0-.23-.09-.45-.13-.68-.1-.45-.21-.9-.33-1.34a26.75,26.75,0,0,0-.83-2.63q-.37-1-.84-2a7,7,0,0,0-2.28-3.06.92.92,0,0,0-.9-.17c-.31.16-.37.57-.4.92-.13,2-.26,3.93-.4,5.89a17.71,17.71,0,0,0,0,3.64,8.86,8.86,0,0,0,2,4.44,16.9,16.9,0,0,0,2.39,2.16c.64.51,1.3,1,1.92,1.55A8.35,8.35,0,0,0,41.41,332.51Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M53,320.11q-.07-.42-.18-.84a6.15,6.15,0,0,0-.72-1.71c-.17-.26-.25-.55-.41-.82a2.66,2.66,0,0,0-.6-.73,1.13,1.13,0,0,0-.5-.28.54.54,0,0,0-.53.15,1,1,0,0,0-.14.47,15.68,15.68,0,0,1-.62,3.12,9.93,9.93,0,0,1-.54,1.5,2.63,2.63,0,0,1-.28.4,1.64,1.64,0,0,0-.16.29,9.42,9.42,0,0,1-.82,1.41,7.06,7.06,0,0,1-.79.93A18.28,18.28,0,0,0,44,326.73c-1,1.64-.86,3.74-.9,5.6,0,.32,0,.64,0,1,0,2.55-.42,4.75.24,7.26,0,.18.23.62.5.45l.28-.19a9.47,9.47,0,0,0,2.86-4.22l.5-1.26a3.38,3.38,0,0,1,.59-.8A26.94,26.94,0,0,0,49.71,332a25.26,25.26,0,0,0,2.71-5.49,14.25,14.25,0,0,0,.75-4.39A11.93,11.93,0,0,0,53,320.11Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M35.34,340.21c.48,0,1,0,1.45,0,1,0,2,0,3,0,.49,0,1,0,1.48,0,.18,0,.34,0,.51,0a4.33,4.33,0,0,0,.72,0,.32.32,0,0,0,.14,0,.28.28,0,0,0,.07-.22,4.36,4.36,0,0,0-.47-2,4.78,4.78,0,0,0-.57-.84,7.7,7.7,0,0,0-2.56-2,13.46,13.46,0,0,0-3-.89L28,332.52a1.13,1.13,0,0,0-1.08.15,1,1,0,0,0-.19.59,6,6,0,0,0,2.75,5.22A11.62,11.62,0,0,0,35.34,340.21Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M44.22,350.15a4.61,4.61,0,0,0-1-1.19,6.22,6.22,0,0,0-1.89-1.27,20.94,20.94,0,0,0-3.65-1.07,43.3,43.3,0,0,1-8.29-3,1.07,1.07,0,0,0-.57-.16c-.47.05-.66.64-.68,1.11A6.9,6.9,0,0,0,31.8,351c2.24,1.15,4.89,1,7.41.89h.1a20.55,20.55,0,0,1,2.72.05,9.7,9.7,0,0,1,1.33.21c.37.08,1,.48,1.28,0a1,1,0,0,0,0-.57,4.55,4.55,0,0,0-.45-1.33Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M47,350.85a1.69,1.69,0,0,1-.38.28.63.63,0,0,1-.32.1.47.47,0,0,1-.41-.21c-.05-.08-.1-.16-.14-.24a3.82,3.82,0,0,1-.23-.51,6.09,6.09,0,0,1-.27-1.1c0-.09,0-.18,0-.27-.05-.41-.08-.83-.12-1.25,0-.21,0-.42-.08-.63a1.25,1.25,0,0,1,0-.47,3.33,3.33,0,0,0,0-.77,7.38,7.38,0,0,1,0-.94c.23-2.78,2.26-5,3.93-7.27A33.7,33.7,0,0,0,52.7,331c.23-.51.61-1.12,1.16-1s.68.55.82,1a14.84,14.84,0,0,1-.23,9.29,20.81,20.81,0,0,1-2.55,5,25,25,0,0,1-1.73,2.23c-.18.22-.34.43-.53.63-.58.63-1.17,1.24-1.77,1.84l-.74.74A1.29,1.29,0,0,1,47,350.85Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M41.84,358.56a23.65,23.65,0,0,0-5.74-1.13,13.24,13.24,0,0,1-5.57-1.67,1.08,1.08,0,0,0-.58-.23c-.4,0-.61.49-.66.89a5.48,5.48,0,0,0,.92,3.43,10.3,10.3,0,0,0,10.26,4.68h0c1.26-.22,2.49-.67,3.77-.8a7.38,7.38,0,0,1,.94,0c.2,0,.53.14.69,0,.34-.37-.07-.86-.15-1.23a4.28,4.28,0,0,0-.56-1.23,6.52,6.52,0,0,0-2-1.92A8.81,8.81,0,0,0,41.84,358.56Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M42,370c-1.93-.48-4-.58-5.83-1.25-.84-.3-1.64-.71-2.46-1-.24-.1-.53-.17-.71,0a.6.6,0,0,0-.12.42,6.51,6.51,0,0,0,2.95,5.35,11,11,0,0,0,6,1.72c1.27,0,2.55-.11,3.82,0a3,3,0,0,1,.89.14c.15.06.24.22.39.27.56.2.64-.61.58-1a4.84,4.84,0,0,0-.76-1.85,3.63,3.63,0,0,0-.65-.76,1.26,1.26,0,0,0-.32-.18c-.54-.27-1-.72-1.54-1A9.81,9.81,0,0,0,42,370Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M53.09,408.89c-.13-.64-.21-1.3-.4-1.92l-.63-2.1q-.56-1.92-1-3.87c-.6-2.66-1.08-5.33-1.42-8-.69-5.42-.94-10.9-1.17-16.36s-.47-11-1-16.44a138.7,138.7,0,0,0-2.79-16.67,98.63,98.63,0,0,0-6.21-18.55c-.07-.15-.19.06-.16.15,3.32,10.94,6.2,22,7.52,33.42,1.25,10.76.93,21.63,2.12,32.39a86.67,86.67,0,0,0,1.39,8.78c.3,1.44.67,2.86,1.1,4.27.24.84.51,1.66.81,2.48A18,18,0,0,0,52.48,409C52.64,409.31,53.18,409.33,53.09,408.89Z\",\n style: {\n fill: \"#37474f\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M43.45,340.63A3.6,3.6,0,0,0,42,339.1a9.77,9.77,0,0,0-2.07-1c-1.84-.64-3.75-1.08-5.62-1.64-.1,0-.15.24-.05.28,1.73.6,3.45,1.23,5.17,1.87a13.59,13.59,0,0,1,2,.87,5,5,0,0,1,.91.62c.31.26.55.59.85.86S43.52,340.81,43.45,340.63Z\",\n style: {\n fill: \"#37474f\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M45.74,353.19c-.77-2.41-3.32-3.81-5.65-4.27-1.27-.26-2.57-.31-3.86-.48a12,12,0,0,1-3.6-1.13c-.06,0-.09.13-.05.16,1.76,1.61,4.62,1.67,6.85,2a9.16,9.16,0,0,1,3.46,1.17,8.51,8.51,0,0,1,2.52,2.75C45.58,353.7,45.81,353.42,45.74,353.19Z\",\n style: {\n fill: \"#37474f\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M46.71,364.44a4.68,4.68,0,0,0-2.4-2,12.6,12.6,0,0,0-3.41-1c-2.38-.38-4.91-.47-6.95-1.92,0,0-.06.05,0,.07,1.71,1.63,4.08,2.07,6.32,2.51a20,20,0,0,1,3.32.86,7.5,7.5,0,0,1,1.47.74,17.08,17.08,0,0,1,1.39,1.16C46.66,365,46.8,364.63,46.71,364.44Z\",\n style: {\n fill: \"#37474f\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M47.45,375.4a3,3,0,0,0-1.27-1.64,6.17,6.17,0,0,0-2.09-1c-1.86-.48-3.83-.2-5.66-.81-.08,0-.12.16,0,.2a34.91,34.91,0,0,0,5.18,1.14,7.63,7.63,0,0,1,2,.78,3.58,3.58,0,0,1,.82.63c.27.27.43.61.68.91S47.49,375.64,47.45,375.4Z\",\n style: {\n fill: \"#37474f\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M49.19,325.37a16.23,16.23,0,0,1-2.35,3.83,17.53,17.53,0,0,0-2.27,3.69,17.23,17.23,0,0,0-1.17,4,12.5,12.5,0,0,0-.23,2.28,11.31,11.31,0,0,0,.3,2.1c0,.22.29.32.31,0,.08-.85.27-1.69.35-2.54a17.79,17.79,0,0,1,.3-2.07,20.28,20.28,0,0,1,1.26-4c1.06-2.5,2.86-4.65,3.69-7.25C49.42,325.38,49.26,325.18,49.19,325.37Z\",\n style: {\n fill: \"#37474f\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M51.23,339.64c-1,2-2.69,3.67-4,5.54a13.27,13.27,0,0,0-1.63,3.26,6.39,6.39,0,0,0-.16,3.52c0,.2.27.18.29,0a14.41,14.41,0,0,1,2.37-6.3,40.38,40.38,0,0,0,3.21-5.88C51.38,339.67,51.29,339.52,51.23,339.64Z\",\n style: {\n fill: \"#37474f\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M34.35,375.1a20.11,20.11,0,0,0-2.85-1.36L25,371.06A1,1,0,0,0,24,371a.91.91,0,0,0-.3.69,6.68,6.68,0,0,0,.38,2.76,11,11,0,0,0,8.4,7.56c1.64.26,3.34.07,5,.45.64.15,1.7.36,1.71-.61a1.36,1.36,0,0,0-.26-.7c-.16-.32-.24-.68-.37-1a10.35,10.35,0,0,0-2.3-3.54A9.41,9.41,0,0,0,34.35,375.1Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M37.68,386.13a15.93,15.93,0,0,0-4.09-1l-3.75-.59c-.48-.07-1-.14-1.45-.23a.71.71,0,0,1-.2,0,1.24,1.24,0,0,0-.62-.15c-.28,0-.32.24-.34.48a4.34,4.34,0,0,0,.14,1.48A5.36,5.36,0,0,0,29,388.63a9.29,9.29,0,0,0,4.52,2.06,17.14,17.14,0,0,0,4,.33,3,3,0,0,0,2.84-1.39c.48-1-.37-1.86-1-2.46A6.64,6.64,0,0,0,37.68,386.13Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M42,378.22a1.74,1.74,0,0,1,.08-.79A1,1,0,0,1,43,377a1.87,1.87,0,0,1,1,.49c1.15,1,1.44,2.71,1.59,4.25a14.73,14.73,0,0,1-.17,4.73c-.28,1.13-.8,2.59-2.09,2.86a2.23,2.23,0,0,1-2.34-1.11c-.72-1.31-.09-3.05.24-4.39a20.53,20.53,0,0,0,.79-5C42,378.62,42,378.42,42,378.22Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M39.22,394.89a17.74,17.74,0,0,0-5-1.09l-1.87-.24a1.08,1.08,0,0,0-.4,0c-.41.13-.44.7-.31,1.11.56,1.78,2.5,2.73,4.33,3.08s3.75.31,5.46,1c.4.17,1,.44,1.29-.07s-.16-.72-.34-1.05a5.84,5.84,0,0,0-1.84-2A7.52,7.52,0,0,0,39.22,394.89Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M42.94,392.67c.59-1.46,1.85-2.63,2.1-4.18a.83.83,0,0,1,.83.36,2.51,2.51,0,0,1,.33.89,17.74,17.74,0,0,1,.57,3.61,5.9,5.9,0,0,1-.94,3.48,2.1,2.1,0,0,1-1.51,1,1.78,1.78,0,0,1-1.41-.56c-.56-.62-.39-1.52-.35-2.29A6.78,6.78,0,0,1,42.94,392.67Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M47.06,410a16.86,16.86,0,0,1-2.56-5.93c-.45-1.8-.79-3.62-1.13-5.43a5.63,5.63,0,0,1,.29-1.16,11.12,11.12,0,0,1,.53-1.23c.09-.2.2-.4.3-.6a2.68,2.68,0,0,0,.25-.92s0-.09-.06-.08c-.51.17-.76.68-1,1.11a8.72,8.72,0,0,0-.6,1.18c-.41-2.07-.81-4.13-1.23-6.2h0a8.72,8.72,0,0,1,.24-1c.21-.66.54-1.26.8-1.89a9.1,9.1,0,0,0,.64-2.1,6.1,6.1,0,0,0,.15-2c0-.18-.19,0-.17.12.11.75-.51,1.46-.83,2.08s-.61,1.15-.9,1.73c-.14.27-.27.54-.39.82a20.21,20.21,0,0,0-1.65-5.7A9.24,9.24,0,0,0,37.57,380a10.16,10.16,0,0,0-1.7-1.15,14.56,14.56,0,0,0-2-.81c-.06,0-.1.14,0,.17.52.34,1,.74,1.52,1.07a16.62,16.62,0,0,1,1.62,1.17A6.21,6.21,0,0,1,38.72,383a32.34,32.34,0,0,1,1.5,6.06,16.65,16.65,0,0,0-3-.5,9.28,9.28,0,0,1-3.06-.88c-.13-.07-.19.22-.11.29a7.49,7.49,0,0,0,3.12,1.23c.56.11,1.12.22,1.67.35s1,.27,1.51.41c.45,2.38.92,4.75,1.39,7.12l.15.78c-.13-.1-.26-.2-.4-.29a4.84,4.84,0,0,0-1.16-.58,2.38,2.38,0,0,0-.64-.15l-.6,0c-.15,0-.16.29,0,.32a8.28,8.28,0,0,1,1.19.39,7.52,7.52,0,0,1,1,.52,4.49,4.49,0,0,1,.77.61c.34,1.77.67,3.54,1.11,5.29a18.15,18.15,0,0,0,1.09,3.24,9.38,9.38,0,0,0,2.57,3.35C47.18,410.81,47.19,410.19,47.06,410Z\",\n style: {\n fill: \"#37474f\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M74,323.77c1.52-3.2,4.28-5.76,5.4-9.12a.93.93,0,0,1,.24-.46.65.65,0,0,1,.85.09,1.75,1.75,0,0,1,.41.84,14,14,0,0,1,.32,7.67,26.17,26.17,0,0,1-1.37,3.35A63,63,0,0,1,77.25,332a11.71,11.71,0,0,1-2.17,2.78c-.64.59-1.77,1.6-2.46.51a2.93,2.93,0,0,1-.27-1.6c0-.65,0-1.3,0-1.95a26.13,26.13,0,0,1,.37-3.84,16.59,16.59,0,0,1,1.06-3.65C73.86,324.06,73.92,323.91,74,323.77Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M68.84,335.86A16.33,16.33,0,0,0,66.73,331l-3.43-6c-.09-.15-.21-.33-.39-.34s-.33.17-.43.33a10.43,10.43,0,0,0-.48,9,24.21,24.21,0,0,0,5.17,7.66,1,1,0,0,0,1,.39,1.42,1.42,0,0,0,.68-1.07,1.44,1.44,0,0,0,0-.41,5.65,5.65,0,0,1,.07-1.16c0-.47.09-.95.09-1.43A10.26,10.26,0,0,0,68.84,335.86Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M82.35,333.74l3.31-1.65A.5.5,0,0,1,86,332c.16,0,.24.23.27.39a5.12,5.12,0,0,1-.58,3.46,11.51,11.51,0,0,1-2.23,2.79A27.72,27.72,0,0,1,80.6,341a26.65,26.65,0,0,1-3.13,2,25.31,25.31,0,0,1-3.37,1.48,20.83,20.83,0,0,1-3.56.89c-.64.1-1.49.21-1.62-.63a3.72,3.72,0,0,1,.66-2.2,9.53,9.53,0,0,1,2.07-2.32,29.18,29.18,0,0,1,3.08-2.32c1.07-.7,2.18-1.35,3.31-2s2.29-1.2,3.45-1.78Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M62.57,346.29a21.53,21.53,0,0,0-1.12-2.78,48.19,48.19,0,0,1-2.41-6.7c-.37,0-.68.28-.9.57a11.43,11.43,0,0,0-2.43,6.3A8.4,8.4,0,0,0,58,349.94c1.17,1.18,2.76,2,3.6,3.43.15.27.31.58.61.68a.44.44,0,0,0,.47-.22c.09-.17,0-.34,0-.53.06-.57.14-1.15.2-1.72a18.62,18.62,0,0,0,.07-3.42A9.94,9.94,0,0,0,62.57,346.29Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M66.34,350.87c1.72-1.41,4-1.82,6.23-2.1s4.5-.49,6.41-1.63a1.51,1.51,0,0,1,.69-.27c.65,0,.92.85.81,1.48a6.1,6.1,0,0,1-1.25,2.44,11,11,0,0,1-1.84,2c-2.44,2-5.85,2.18-9,2.25l-2.27.06-1.14,0a8.23,8.23,0,0,1-1.11,0c-.57-.06-.11-.74,0-1a18.36,18.36,0,0,1,1-1.65A8.08,8.08,0,0,1,66.34,350.87Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M57.81,359.14a14,14,0,0,0-1.37-2.7l-2.74-4.55c-.29-.48-.67-1-1.22-1-1.31,3.5-2,7.55-.35,10.89a16.66,16.66,0,0,0,2.12,3l2.32,2.84c.32.38.92.79,1.44.52.24-.13.28-.44.33-.68a7.5,7.5,0,0,0,.14-1.16,4.22,4.22,0,0,0,0-.87,12.39,12.39,0,0,1-.2-2.51A11.51,11.51,0,0,0,57.81,359.14Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M66,360.75a9.52,9.52,0,0,1,2.46-.93c1-.22,2-.22,3-.35,1.67-.2,3.29-.72,4.95-1a.77.77,0,0,1,.5,0,.79.79,0,0,1,.33.67,5.8,5.8,0,0,1-.86,3.22,11.63,11.63,0,0,1-7.73,5.66,29.09,29.09,0,0,1-4.47.37,20.93,20.93,0,0,0-2.24.19,9.9,9.9,0,0,0-1.11.21,1,1,0,0,1-.68,0c-.37-.17-.39-.67-.36-1a4.15,4.15,0,0,1,.55-1.52,13.75,13.75,0,0,1,5.2-5.39Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M50.16,369.28a30,30,0,0,0-.46,4.64,15.27,15.27,0,0,0,.82,5.78,20.22,20.22,0,0,0,3.5,5.36.59.59,0,0,0,.3.24c.27.06.47-.24.57-.5a13.53,13.53,0,0,0,.76-7.29,14,14,0,0,0-1.12-3.61c-.24-.52-.6-1-.8-1.54,0-.12-.08-.26-.12-.38a9.66,9.66,0,0,0-.64-1.13,14.94,14.94,0,0,1-1.11-2.53,1.41,1.41,0,0,0-.48-.79.52.52,0,0,0-.54,0c-.19.11-.16.28-.24.46a4.39,4.39,0,0,0-.29.62A5.37,5.37,0,0,0,50.16,369.28Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M58.67,375.1a8.38,8.38,0,0,1,2.39-2.73,10.48,10.48,0,0,1,2.6-1.1l6.78-2.19A8.37,8.37,0,0,1,68,376a24.64,24.64,0,0,1-5.81,4.26c-1.5.86-3,1.52-3.86,2.08-.38.25-.74.52-1.1.79s-.8.66-1.1.34c-.14-.15,0-.42,0-.6s.11-.52.17-.78.18-.66.28-1,.18-.64.25-1c0-.16.05-.32.09-.48a13.89,13.89,0,0,1,.68-2.34A14.43,14.43,0,0,1,58.67,375.1Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M74.06,334.76c.62-1.63,1.15-3.31,1.61-5a52.46,52.46,0,0,0,1-5.29c0-.21-.2-.36-.26-.1-.37,1.61-1,3.17-1.46,4.74s-1.07,3.05-1.7,4.54A70.27,70.27,0,0,1,69,342.05c-.22.36-.44.72-.65,1.08v-.71a15.35,15.35,0,0,0-.27-2.95,16.83,16.83,0,0,0-.73-2.7,6.06,6.06,0,0,0-1.26-2.49c-.1-.09-.18.08-.16.16a17.25,17.25,0,0,0,.89,2.46,15.37,15.37,0,0,1,.6,2.65,17.58,17.58,0,0,1,.14,2.71,17.33,17.33,0,0,0-.12,2.38c-1.16,1.92-2.32,3.85-3.36,5.84-.47.9-.91,1.81-1.35,2.73l0-.12a17.38,17.38,0,0,0-1.11-3,26.93,26.93,0,0,1-2.59-7c0-.13-.14,0-.14.06a19.54,19.54,0,0,0,1.55,6.22c.39,1.08.75,2.16,1.05,3.28a11.29,11.29,0,0,1,.31,1.64c0,.28.06.55.1.82l-.14.33a2.9,2.9,0,0,0-.42,1q-.45,1.05-.87,2.13c-1,2.58-1.87,5.21-2.63,7.87a17.44,17.44,0,0,0-.78-2.9,17.14,17.14,0,0,0-1.32-2.81,9.54,9.54,0,0,0-1.88-2.64c-.09-.07-.13.17-.11.22.4.91,1,1.71,1.41,2.63a28.44,28.44,0,0,1,1,2.71,39.74,39.74,0,0,1,1.09,4.86A103.13,103.13,0,0,0,55,379.39c-.57-1.41-1.31-2.74-2-4.1-.09-.18-.24.09-.19.21a27.74,27.74,0,0,1,1.67,5.16c.08.36.14.72.2,1.08-.51,3.91-.82,7.86-.94,11.8,0,.59.07,4.19.14,6.41a36.89,36.89,0,0,0,.51,5.52,15.53,15.53,0,0,0,.84,2.87c.19.42.64.84,1.06.65-.09-.69-.13-1.4-.28-2.08a49.58,49.58,0,0,1-.88-9.23c0-1,0-2,0-3,.06-3.07.25-6.14.55-9.2A10.77,10.77,0,0,1,57,383.09c1.4-2,3.57-3.37,5-5.34.08-.11.05-.55-.17-.42a24.15,24.15,0,0,0-3.31,2.5,12.51,12.51,0,0,0-2.43,2.5c.22-1.79.48-3.58.8-5.35q.52-3,1.22-5.89a10.26,10.26,0,0,0,.74-.89c.32-.42.63-.85,1-1.25a10.29,10.29,0,0,1,4.82-3.06c.41-.11.83-.22,1.26-.3a4.08,4.08,0,0,0,1.34-.3s.08-.18,0-.22a5.08,5.08,0,0,0-3.2,0,10.27,10.27,0,0,0-3,1.19,10.64,10.64,0,0,0-2.23,1.9c.75-2.75,1.61-5.47,2.61-8.14q.9-2.38,1.93-4.69a7.68,7.68,0,0,1,1.78-1,23.41,23.41,0,0,1,2.69-.87,15.13,15.13,0,0,0,2.51-1c.1-.05.12-.33,0-.29-1,.28-2.16.36-3.22.57a14.4,14.4,0,0,0-2.89.8q1.56-3.25,3.33-6.4a10.44,10.44,0,0,1,1.3-1.52,16.6,16.6,0,0,1,2.46-1.49A59.42,59.42,0,0,0,76.5,341c.11-.07.07-.41-.09-.34a54.48,54.48,0,0,0-6,2.9c-.38.2-.78.42-1.19.66a1.4,1.4,0,0,1,.1-.16A59.6,59.6,0,0,0,74.06,334.76Z\",\n style: {\n fill: \"#37474f\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M59.92,398.05a13,13,0,0,0-.46-3.1,6.93,6.93,0,0,0-2.09-3.73,2.65,2.65,0,0,0-2.09-.58c.22,1.47.43,2.95.65,4.42,0,.16,0,.32.07.47a7.85,7.85,0,0,0,1,3.22,4.69,4.69,0,0,0,.58.6,7.29,7.29,0,0,0,1.3,1l.22.12a.72.72,0,0,0,.35.11c.41,0,.36-.66.39-.94a12,12,0,0,0,.06-1.47Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M67,392.49a12.5,12.5,0,0,0,2.35-1.36c.16-.11.38-.24.55-.14a.47.47,0,0,1,.18.29,3.72,3.72,0,0,1-1,3.09,12,12,0,0,1-2.86,2.74,8.37,8.37,0,0,1-3.59,1.42c-.76.11-2.44.25-2.12-1a4.29,4.29,0,0,1,.74-1.34,11.7,11.7,0,0,1,1.2-1.42,11.29,11.29,0,0,1,4-2.08Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M67.17,384.39a12.76,12.76,0,0,1,8.25.28,3.57,3.57,0,0,1,1.77,1.09,1.42,1.42,0,0,1-.1,1.91,2.07,2.07,0,0,1-.81.33l-12.81,3.14a3,3,0,0,1-1,.11c-.17,0-.31-.12-.47-.14s-.27.06-.36-.1a.56.56,0,0,1-.06-.31,4.25,4.25,0,0,1,.07-.8,1.48,1.48,0,0,1,.13-.35c.14-.28.25-.57.39-.86A8.37,8.37,0,0,1,65,385.48,9.14,9.14,0,0,1,67.17,384.39Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M69.46,376.72c2.19-1.15,4.77-1.26,7.25-1.34a.39.39,0,0,1,.52.37,3.81,3.81,0,0,1-1.19,3,9.54,9.54,0,0,1-3.15,2.34,19,19,0,0,1-3.62,1.12L66,383c-.22.05-.72.32-.92.16s0-.83,0-1a8.13,8.13,0,0,1,.63-1.25,9.8,9.8,0,0,1,1.4-2.24A8,8,0,0,1,69.46,376.72Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M57.46,383.8c-.07,0-.15-.09-.22-.06a.2.2,0,0,0-.09.16,2.45,2.45,0,0,0-.1.54.65.65,0,0,0,0,.14A2.29,2.29,0,0,1,57,385a4.27,4.27,0,0,0-.09,1,5.48,5.48,0,0,0,.13,1.06,7.46,7.46,0,0,0,1,2.36,3,3,0,0,0,.36.5c.15.17.32.32.48.48a5.93,5.93,0,0,1,.91,1.2c.07.12.18.26.32.24a.43.43,0,0,0,.2-.16,1.59,1.59,0,0,0,.31-.51c0-.2.1-.41.12-.61a.28.28,0,0,1,0-.09,7.62,7.62,0,0,0-.39-3.11A7.42,7.42,0,0,0,59.7,386,7.57,7.57,0,0,0,57.46,383.8Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M70.52,387.1a6.1,6.1,0,0,0-3.2.06,15.28,15.28,0,0,0-3.38,1,8.55,8.55,0,0,0-1.87,1.15A20.71,20.71,0,0,1,65,384.63a23.64,23.64,0,0,1,4.73-4.48c.07,0,.08-.29,0-.24A17.36,17.36,0,0,0,64.89,383a17.94,17.94,0,0,0-3.55,4.74,18.63,18.63,0,0,0-1.11,2.5c0-.17-.1-.34-.16-.51a7.73,7.73,0,0,0-.69-1.49,4.66,4.66,0,0,0-.47-.69c-.11-.14-.25-.39-.46-.36a.09.09,0,0,0-.05.1,1.71,1.71,0,0,0,.3.74c.1.21.22.41.31.62a10.17,10.17,0,0,1,.51,1.29,11.42,11.42,0,0,1,.34,1.4c-.18.61-.33,1.23-.45,1.85a25,25,0,0,0-.4,3.66q-.15-.4-.33-.78a9.84,9.84,0,0,0-1.24-1.94c-.1-.13-.19.15-.13.24a10.28,10.28,0,0,1,1.53,4.07c0,.26.09.51.13.76,0,.42,0,.83,0,1.24,0,1.51,0,3,0,4.51s-.21,2.87-.27,4.31c0,.22.36.66.53.33,1-2.07,1-4.6,1-6.86,0-1.4,0-2.79,0-4.19l.06-.05a3.49,3.49,0,0,1,.74-.33,11.28,11.28,0,0,0,1.59-.7,10.41,10.41,0,0,0,2.69-2.06c0-.06,0-.25-.06-.16a6.31,6.31,0,0,1-3,1.62c-.58.15-1.16.32-1.74.5a2,2,0,0,0-.26.09c0-.65,0-1.3.11-1.94a20.81,20.81,0,0,1,.61-3.35c.46-.48.81-1.1,1.28-1.56a8.51,8.51,0,0,1,2.17-1.53,14.63,14.63,0,0,1,2.79-1l1.49-.4a4.49,4.49,0,0,1,1.72-.33C70.58,387.33,70.61,387.13,70.52,387.1Z\",\n style: {\n fill: \"#37474f\"\n }\n }))), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Icon--inject-114\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--icon--inject-114\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"freepik--online-icon--inject-114\",\n d: \"M84.48,61.82c-6.8-3.93-15.45-3.28-24.35,1.86-19.79,11.43-35.89,42.14-35.89,68.46,0,14.12,4.67,24.92,12.82,29.62a19.12,19.12,0,0,0,9.7,2.54,29.65,29.65,0,0,0,14.66-4.39c19.79-11.43,35.89-42.14,35.89-68.47C97.31,77.32,92.63,66.53,84.48,61.82Zm-57.58,68c.46-13,4.79-26.94,11.48-38.81a18.65,18.65,0,0,0,5,1.58A93.46,93.46,0,0,0,37.14,124Zm35.16-17.32,19.71-11.38a92.32,92.32,0,0,1-6.3,29.53A28,28,0,0,0,62.06,134Zm0-3V88.14a58.91,58.91,0,0,0,14.16-12.4c3.49,5.55,5.49,13.24,5.59,22.42Zm0-24.48V66.22A18.72,18.72,0,0,1,74.7,73.57,58,58,0,0,1,62.06,85.08Zm-2.57,1.57a26.82,26.82,0,0,1-12.4,3.66,99.25,99.25,0,0,1,12.4-21.83ZM46.06,92.9c.24,0,.46,0,.7,0a28.57,28.57,0,0,0,12.73-3.41v21.52L39.76,122.44A92.44,92.44,0,0,1,46.06,92.9ZM59.49,114v21.43a58.6,58.6,0,0,0-14.18,12.41c-3.49-5.55-5.49-13.24-5.59-22.42Zm0,24.48v18.88A18.72,18.72,0,0,1,46.84,150,58.14,58.14,0,0,1,59.49,138.5Zm2.57-1.56a26.71,26.71,0,0,1,12.38-3.66A99.57,99.57,0,0,1,62.06,155.1ZM84.39,99.65l10.26-5.93c-.46,13-4.8,27-11.49,38.83a18.85,18.85,0,0,0-5-1.59A93.41,93.41,0,0,0,84.39,99.65Zm10.32-8.93-10.37,6c-.3-9.44-2.56-17.35-6.4-23.08A85.54,85.54,0,0,0,84.1,64.7C90.72,69.13,94.56,78.48,94.71,90.72ZM81.87,63.4a83.59,83.59,0,0,1-5.52,8.08,21.27,21.27,0,0,0-11.43-7.35,24.73,24.73,0,0,1,9.86-2.26A16.87,16.87,0,0,1,81.87,63.4ZM54.76,70.63A104.71,104.71,0,0,0,44.39,90.16a16.44,16.44,0,0,1-4.72-1.36A72.75,72.75,0,0,1,54.76,70.63ZM26.84,132.87l10.34-6c.31,9.44,2.57,17.36,6.41,23.08a85.27,85.27,0,0,0-6.14,8.91C30.83,154.46,27,145.1,26.84,132.87Zm12.84,27.3a84.63,84.63,0,0,1,5.5-8,21.35,21.35,0,0,0,11.38,7.33C50.38,162.16,44.54,162.4,39.68,160.17ZM66.76,153a103.36,103.36,0,0,0,10.38-19.54,16.26,16.26,0,0,1,4.74,1.36A72.54,72.54,0,0,1,66.76,153Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }))), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Cursor--inject-114\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--cursor--inject-114\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"freepik--shadow--inject-114\",\n d: \"M117.66,102.8l.12-57.12c0-1.18.57-1.47,1.26-.64L142.63,73.3c.69.83.17,2-1.16,2.59l-6.61,3a2.86,2.86,0,0,0-1.87,3l4.46,15.92a4.9,4.9,0,0,1-1.19,3.93L133,105.51c-1,1.1-2,1.13-2.27.06l-4.47-15.93c-.3-1.06-1-.94-1.58.29l-6,12.79C118.12,103.94,117.66,104,117.66,102.8Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M153.38,79.49,129.79,51.23a1.45,1.45,0,0,0-.43-.38l-5.66-3.27c-.48-.28-.83.09-.83,1l-.12,57.12c0,.48.07.76.2.84l5.67,3.27c.19.11.49-.2.82-.92l4.05-8.66,2.31,8.24a1.1,1.1,0,0,0,.45.67c.46.28,5.47,3.16,5.68,3.28.46.27,1.15,0,1.81-.74L147,108A4.93,4.93,0,0,0,148.2,104L143.74,88.1a2.86,2.86,0,0,1,1.87-3l6.61-3C153.55,81.48,154.07,80.32,153.38,79.49Z\",\n style: {\n fill: \"#37474f\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M128.41,109l.12-57.12c0-1.18.57-1.47,1.26-.64l23.59,28.26c.69.83.17,2-1.16,2.59l-6.61,3a2.86,2.86,0,0,0-1.87,3L148.2,104A4.93,4.93,0,0,1,147,108l-3.27,3.75c-1,1.1-2,1.13-2.28.06L137,95.83c-.3-1.06-1-.94-1.58.29l-6,12.79C128.87,110.13,128.41,110.17,128.41,109Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M130,53.74l22.2,26.6a1.32,1.32,0,0,1-.57.41l-6.61,3c-2,.9-3.17,3-2.68,4.75l4.47,15.92a3.62,3.62,0,0,1-.89,2.58l-3.23,3.71-4.27-15.26a2.12,2.12,0,0,0-2-1.79c-.65,0-1.57.32-2.29,1.85l-4.22,9,.11-50.8m-.92-3c-.32,0-.53.39-.54,1.11L128.41,109c0,.57.11.86.29.86s.45-.32.74-.94l6-12.79c.31-.67.67-1,1-1s.48.24.61.72l4.46,15.93a.92.92,0,0,0,.87.78,2.05,2.05,0,0,0,1.41-.84L147,108A4.93,4.93,0,0,0,148.2,104L143.74,88.1a2.86,2.86,0,0,1,1.87-3l6.61-3c1.33-.6,1.85-1.76,1.16-2.59L129.79,51.23a1.07,1.07,0,0,0-.72-.47Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M141.84,112.38l-5.59-3.22a1.1,1.1,0,0,1-.45-.67l-2.3-8.24,1.92-4.13c.58-1.22,1.29-1.35,1.59-.29l4.45,15.92A1.21,1.21,0,0,0,141.84,112.38Z\",\n style: {\n fill: \"#263238\"\n }\n }))), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Gears--inject-114\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--gears--inject-114\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"freepik--shadow--inject-114\",\n d: \"M329.12,468.49a4.41,4.41,0,0,1-4.28-3.54l-.73-3.81a48.4,48.4,0,0,1-4.85-1.21l-7.42,3.44a5.24,5.24,0,0,1-4.63-.21l-7.6-4.39a3.77,3.77,0,0,1-.32-6.41l4-2.86c-.19-.28-.37-.55-.54-.83l-9.27-.59a4.22,4.22,0,0,1-3.95-4.21v-5.64a4.23,4.23,0,0,1,4-4.21l9.26-.59c.17-.28.35-.56.54-.83l-4-2.87a3.76,3.76,0,0,1,.33-6.41l7.59-4.38a5.07,5.07,0,0,1,2.54-.65,5,5,0,0,1,2.09.44l7.42,3.44a47.73,47.73,0,0,1,4.85-1.21l.73-3.81a4.41,4.41,0,0,1,4.28-3.55h11.16a4.43,4.43,0,0,1,4.28,3.55l.72,3.81a48.6,48.6,0,0,1,4.86,1.21l7.41-3.44a5,5,0,0,1,2.1-.44,5.09,5.09,0,0,1,2.54.65l7.59,4.38a3.77,3.77,0,0,1,.32,6.42l-4,2.86c.19.27.37.55.54.83l9.27.59a4.22,4.22,0,0,1,3.95,4.21v5.64a4.22,4.22,0,0,1-3.95,4.21l-9.27.59c-.17.28-.35.55-.54.83l4,2.86a3.77,3.77,0,0,1-.32,6.42l-7.59,4.38a5.09,5.09,0,0,1-2.54.65h0a5,5,0,0,1-2.09-.44l-7.42-3.44a48.6,48.6,0,0,1-4.86,1.21l-.73,3.81a4.4,4.4,0,0,1-4.27,3.54Zm5.58-34.7a23.11,23.11,0,0,0-11.22,2.64c-2.36,1.36-3.71,3-3.71,4.62s1.35,3.26,3.71,4.62a25.16,25.16,0,0,0,22.44,0c2.35-1.36,3.7-3,3.7-4.62s-1.35-3.26-3.7-4.62A23.14,23.14,0,0,0,334.7,433.79Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M368.17,419.52l-7.59-4.38a2.05,2.05,0,0,0-1.68-.08l-7.69,3.57a2.79,2.79,0,0,1-1.76.1,46,46,0,0,0-6-1.42,1.44,1.44,0,0,1-1.12-1.08l-1-5.07a1.19,1.19,0,0,0-1.12-.93H329.12a1.2,1.2,0,0,0-1.13.93l-1,5.07a1.44,1.44,0,0,1-1.11,1.08,45.21,45.21,0,0,0-6,1.42,2.82,2.82,0,0,1-1.77-.1l-7.69-3.57a2.05,2.05,0,0,0-1.68.08l-7.59,4.38a.63.63,0,0,0-.35.52h0v6.58h0a.63.63,0,0,0,.3.51l3.49,2.51a1.66,1.66,0,0,1-.86.36l-10.11.64a1,1,0,0,0-.95,1v4.29h0l0,7.92a1,1,0,0,0,.95,1l10.11.64a1.58,1.58,0,0,1,.88.37l-3.47,2.5a.62.62,0,0,0-.3.5h0v6.59h0a.61.61,0,0,0,.35.51l7.59,4.39a2.05,2.05,0,0,0,1.68.07l7.7-3.56a2.79,2.79,0,0,1,1.76-.11,45.59,45.59,0,0,0,6,1.42,1.46,1.46,0,0,1,1.11,1.08l1,5.07a1.19,1.19,0,0,0,1.13.93h11.16a1.17,1.17,0,0,0,1.12-.93l1-5.07a1.44,1.44,0,0,1,1.11-1.08,46,46,0,0,0,6-1.42,2.86,2.86,0,0,1,1.76.11l7.7,3.56a2.05,2.05,0,0,0,1.68-.07l7.59-4.39a.61.61,0,0,0,.35-.5h0l0-6.6h0a.62.62,0,0,0-.3-.5l-3.5-2.52a1.68,1.68,0,0,1,.86-.35l10.12-.64a1,1,0,0,0,1-1V431.65a1,1,0,0,0-.94-1L365.61,430a1.78,1.78,0,0,1-.88-.37l3.48-2.5a.65.65,0,0,0,.3-.51h0l0-6.59h0A.63.63,0,0,0,368.17,419.52Zm-51.24,17.05c.55-1.82,2.17-3.6,4.94-5.2,7.08-4.09,18.57-4.09,25.65,0,2.6,1.5,4.29,3.15,5.05,4.84-.6,2.07-2.28,4.06-5.05,5.66-7.08,4.09-18.57,4.09-25.65,0A10.52,10.52,0,0,1,316.93,436.57Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M368.17,419.52l-7.59-4.38a2.05,2.05,0,0,0-1.68-.08l-7.69,3.57a2.79,2.79,0,0,1-1.76.1,46,46,0,0,0-6-1.42,1.44,1.44,0,0,1-1.12-1.08l-1-5.07a1.19,1.19,0,0,0-1.12-.93H329.12a1.2,1.2,0,0,0-1.13.93l-1,5.07a1.44,1.44,0,0,1-1.11,1.08,45.21,45.21,0,0,0-6,1.42,2.82,2.82,0,0,1-1.77-.1l-7.69-3.57a2.05,2.05,0,0,0-1.68.08l-7.59,4.38a.63.63,0,0,0-.35.52h0v6.58h0a.63.63,0,0,0,.3.51l3.49,2.51a1.66,1.66,0,0,1-.86.36l-10.11.64a1,1,0,0,0-.95,1v4.29h0l0,7.92a1,1,0,0,0,.95,1l10.11.64a1.58,1.58,0,0,1,.88.37l-3.47,2.5a.62.62,0,0,0-.3.5h0v6.59h0a.61.61,0,0,0,.35.51l7.59,4.39a2.05,2.05,0,0,0,1.68.07l7.7-3.56a2.79,2.79,0,0,1,1.76-.11,45.59,45.59,0,0,0,6,1.42,1.46,1.46,0,0,1,1.11,1.08l1,5.07a1.19,1.19,0,0,0,1.13.93h11.16a1.17,1.17,0,0,0,1.12-.93l1-5.07a1.44,1.44,0,0,1,1.11-1.08,46,46,0,0,0,6-1.42,2.86,2.86,0,0,1,1.76.11l7.7,3.56a2.05,2.05,0,0,0,1.68-.07l7.59-4.39a.61.61,0,0,0,.35-.5h0l0-6.6h0a.62.62,0,0,0-.3-.5l-3.5-2.52a1.68,1.68,0,0,1,.86-.35l10.12-.64a1,1,0,0,0,1-1V431.65a1,1,0,0,0-.94-1L365.61,430a1.78,1.78,0,0,1-.88-.37l3.48-2.5a.65.65,0,0,0,.3-.51h0l0-6.59h0A.63.63,0,0,0,368.17,419.52Zm-51.24,17.05c.55-1.82,2.17-3.6,4.94-5.2,7.08-4.09,18.57-4.09,25.65,0,2.6,1.5,4.29,3.15,5.05,4.84-.6,2.07-2.28,4.06-5.05,5.66-7.08,4.09-18.57,4.09-25.65,0A10.52,10.52,0,0,1,316.93,436.57Z\",\n style: {\n fill: \"#fff\",\n opacity: 0.2\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M305.15,439.84a1.9,1.9,0,0,0-1.37-.91l-10.12-.63a1,1,0,0,1-.94-1V436l0,7.92a1,1,0,0,0,.95,1l10.11.63a1.69,1.69,0,0,1,.89.37l2.53-1.82a.81.81,0,0,0,.12-1.24A14.91,14.91,0,0,1,305.15,439.84Zm-4.31-13.22h0a.63.63,0,0,0,.3.51l3.49,2.52a1.76,1.76,0,0,0,.5-.56,16.08,16.08,0,0,1,2.15-3,.79.79,0,0,0-.11-1.23l-6-4.33a.76.76,0,0,1-.3-.44Z\",\n style: {\n opacity: 0.1\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M347.52,427.07c-7.08-4.09-18.56-4.1-25.65,0-4.47,2.59-6.12,6.19-4.94,9.52.53-1.82,2.17-3.6,4.94-5.21,7.08-4.09,18.56-4.08,25.65,0,2.59,1.5,4.29,3.15,5.06,4.84C353.52,433,351.83,429.55,347.52,427.07Z\",\n style: {\n opacity: 0.1\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M376.67,437.42a1.05,1.05,0,0,1-.94.88l-10.11.63a1.34,1.34,0,0,0-.51.14v6.59a1.3,1.3,0,0,1,.49-.14l10.12-.65a1,1,0,0,0,1-1ZM368.53,420h0a.29.29,0,0,1,0,.2.39.39,0,0,1-.12.2l-.13.12-6,4.32a.67.67,0,0,0-.15.14.71.71,0,0,0-.18.37.7.7,0,0,0,0,.25.5.5,0,0,0,0,.13.78.78,0,0,0,.2.35l.11.13a15,15,0,0,1,2,2.85,2,2,0,0,0,.48.54l3.48-2.5a.65.65,0,0,0,.3-.5h0Zm0,28.91a.65.65,0,0,1-.36.47l-7.59,4.38a2,2,0,0,1-1.18.2v6.58a2.1,2.1,0,0,0,1.18-.2l7.58-4.39a.59.59,0,0,0,.36-.5Zm-49.59,1.17a2.74,2.74,0,0,0-.76.18l-7.69,3.57a1.84,1.84,0,0,1-.69.15v6.57a2.17,2.17,0,0,0,.69-.14l7.69-3.57a2.43,2.43,0,0,1,.75-.17Zm22.27,8.08a1.13,1.13,0,0,1-.93.5H329.11a1.15,1.15,0,0,1-.68-.24V465a1.13,1.13,0,0,0,.68.24h11.16a1.17,1.17,0,0,0,1-.56Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M376.67,437.42a1.05,1.05,0,0,1-.94.88l-10.11.63a1.34,1.34,0,0,0-.51.14v6.59a1.3,1.3,0,0,1,.49-.14l10.12-.65a1,1,0,0,0,1-1ZM368.53,420h0a.29.29,0,0,1,0,.2.39.39,0,0,1-.12.2l-.13.12-6,4.32a.67.67,0,0,0-.15.14.71.71,0,0,0-.18.37.7.7,0,0,0,0,.25.5.5,0,0,0,0,.13.78.78,0,0,0,.2.35l.11.13a15,15,0,0,1,2,2.85,2,2,0,0,0,.48.54l3.48-2.5a.65.65,0,0,0,.3-.5h0Zm0,28.91a.65.65,0,0,1-.36.47l-7.59,4.38a2,2,0,0,1-1.18.2v6.58a2.1,2.1,0,0,0,1.18-.2l7.58-4.39a.59.59,0,0,0,.36-.5Zm-49.59,1.17a2.74,2.74,0,0,0-.76.18l-7.69,3.57a1.84,1.84,0,0,1-.69.15v6.57a2.17,2.17,0,0,0,.69-.14l7.69-3.57a2.43,2.43,0,0,1,.75-.17Zm22.27,8.08a1.13,1.13,0,0,1-.93.5H329.11a1.15,1.15,0,0,1-.68-.24V465a1.13,1.13,0,0,0,.68.24h11.16a1.17,1.17,0,0,0,1-.56Z\",\n style: {\n fill: \"#fff\",\n opacity: 0.7000000000000001\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M358.9,415.06l-7.69,3.57a2.79,2.79,0,0,1-1.76.1,46,46,0,0,0-6-1.42,1.44,1.44,0,0,1-1.12-1.08l-1-5.07a1.19,1.19,0,0,0-1.12-.93H329.12a1.2,1.2,0,0,0-1.13.93l-1,5.07a1.44,1.44,0,0,1-1.11,1.08,45.21,45.21,0,0,0-6,1.42,2.82,2.82,0,0,1-1.77-.1l-7.69-3.57a2.05,2.05,0,0,0-1.68.08l-7.59,4.38a.57.57,0,0,0-.05,1l6,4.33a.8.8,0,0,1,.12,1.23,14.91,14.91,0,0,0-2.15,3,1.87,1.87,0,0,1-1.37.91l-10.11.64a1,1,0,0,0-.95,1v5.64a1,1,0,0,0,.94,1l10.12.64a1.86,1.86,0,0,1,1.37.9,14.91,14.91,0,0,0,2.15,3,.81.81,0,0,1-.12,1.24l-6,4.33a.56.56,0,0,0,.05,1l7.59,4.39a2.05,2.05,0,0,0,1.68.07l7.69-3.56a2.8,2.8,0,0,1,1.76-.11,45.74,45.74,0,0,0,6,1.42A1.47,1.47,0,0,1,327,452.7l1,5.07a1.18,1.18,0,0,0,1.13.93h11.16a1.18,1.18,0,0,0,1.12-.93l1-5.07a1.47,1.47,0,0,1,1.12-1.08,46,46,0,0,0,6-1.42,2.87,2.87,0,0,1,1.76.11l7.69,3.56a2.05,2.05,0,0,0,1.68-.07l7.59-4.39a.56.56,0,0,0,.06-1l-6-4.33a.81.81,0,0,1-.11-1.24,15.32,15.32,0,0,0,2.15-3,1.84,1.84,0,0,1,1.36-.9l10.12-.64a1,1,0,0,0,.94-1v-5.64a1,1,0,0,0-.94-1L365.61,430a1.85,1.85,0,0,1-1.36-.91,15.32,15.32,0,0,0-2.15-3,.8.8,0,0,1,.11-1.23l6-4.33a.57.57,0,0,0-.06-1l-7.59-4.38A2.05,2.05,0,0,0,358.9,415.06Zm-11.38,12c7.08,4.09,7.08,10.72,0,14.81s-18.57,4.09-25.65,0-7.08-10.72,0-14.81S340.44,423,347.52,427.06Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.55\n }\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M358.9,415.06l-7.69,3.57a2.79,2.79,0,0,1-1.76.1,46,46,0,0,0-6-1.42,1.44,1.44,0,0,1-1.12-1.08l-1-5.07a1.19,1.19,0,0,0-1.12-.93H329.12a1.2,1.2,0,0,0-1.13.93l-1,5.07a1.44,1.44,0,0,1-1.11,1.08,45.21,45.21,0,0,0-6,1.42,2.82,2.82,0,0,1-1.77-.1l-7.69-3.57a2.05,2.05,0,0,0-1.68.08l-7.59,4.38a.57.57,0,0,0-.05,1l6,4.33a.8.8,0,0,1,.12,1.23,14.91,14.91,0,0,0-2.15,3,1.87,1.87,0,0,1-1.37.91l-10.11.64a1,1,0,0,0-.95,1v5.64a1,1,0,0,0,.94,1l10.12.64a1.86,1.86,0,0,1,1.37.9,14.91,14.91,0,0,0,2.15,3,.81.81,0,0,1-.12,1.24l-6,4.33a.56.56,0,0,0,.05,1l7.59,4.39a2.05,2.05,0,0,0,1.68.07l7.69-3.56a2.8,2.8,0,0,1,1.76-.11,45.74,45.74,0,0,0,6,1.42A1.47,1.47,0,0,1,327,452.7l1,5.07a1.18,1.18,0,0,0,1.13.93h11.16a1.18,1.18,0,0,0,1.12-.93l1-5.07a1.47,1.47,0,0,1,1.12-1.08,46,46,0,0,0,6-1.42,2.87,2.87,0,0,1,1.76.11l7.69,3.56a2.05,2.05,0,0,0,1.68-.07l7.59-4.39a.56.56,0,0,0,.06-1l-6-4.33a.81.81,0,0,1-.11-1.24,15.32,15.32,0,0,0,2.15-3,1.84,1.84,0,0,1,1.36-.9l10.12-.64a1,1,0,0,0,.94-1v-5.64a1,1,0,0,0-.94-1L365.61,430a1.85,1.85,0,0,1-1.36-.91,15.32,15.32,0,0,0-2.15-3,.8.8,0,0,1,.11-1.23l6-4.33a.57.57,0,0,0-.06-1l-7.59-4.38A2.05,2.05,0,0,0,358.9,415.06Zm-11.38,12c7.08,4.09,7.08,10.72,0,14.81s-18.57,4.09-25.65,0-7.08-10.72,0-14.81S340.44,423,347.52,427.06Z\",\n style: {\n fill: \"#fff\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M340.28,459.08H329.12a1.56,1.56,0,0,1-1.49-1.24l-1-5.07a1.07,1.07,0,0,0-.81-.78,48.13,48.13,0,0,1-6-1.43,2.37,2.37,0,0,0-1.49.08l-7.69,3.57a2.44,2.44,0,0,1-2-.09L301,449.74a1,1,0,0,1-.54-.81,1,1,0,0,1,.46-.85l6-4.32a.45.45,0,0,0,.19-.31.53.53,0,0,0-.14-.38,14.88,14.88,0,0,1-2.2-3.05,1.49,1.49,0,0,0-1.06-.71l-10.12-.64a1.41,1.41,0,0,1-1.29-1.38v-5.64a1.39,1.39,0,0,1,1.29-1.38l10.12-.64a1.5,1.5,0,0,0,1.06-.72,15.44,15.44,0,0,1,2.2-3.05.49.49,0,0,0,.14-.37.43.43,0,0,0-.19-.31l-6-4.33a1,1,0,0,1-.46-.85,1,1,0,0,1,.54-.8l7.59-4.38a2.44,2.44,0,0,1,2-.09l7.69,3.56a2.44,2.44,0,0,0,1.49.09,44.85,44.85,0,0,1,6-1.43,1.09,1.09,0,0,0,.81-.79l1-5.07a1.55,1.55,0,0,1,1.49-1.23h11.16a1.56,1.56,0,0,1,1.49,1.23l1,5.07a1.1,1.1,0,0,0,.81.79,44.13,44.13,0,0,1,6,1.43,2.44,2.44,0,0,0,1.49-.09l7.7-3.56a2.42,2.42,0,0,1,2,.09l7.59,4.38a1,1,0,0,1,.54.8,1,1,0,0,1-.46.85l-6,4.33a.45.45,0,0,0-.2.31.49.49,0,0,0,.14.37,15.44,15.44,0,0,1,2.2,3.05,1.52,1.52,0,0,0,1.07.72l10.11.64a1.4,1.4,0,0,1,1.3,1.38v5.64a1.41,1.41,0,0,1-1.3,1.38l-10.11.64a1.51,1.51,0,0,0-1.07.71,14.88,14.88,0,0,1-2.2,3.05.53.53,0,0,0-.14.38.47.47,0,0,0,.2.31l6,4.32a.93.93,0,0,1-.08,1.65l-7.59,4.39a2.42,2.42,0,0,1-2,.09l-7.7-3.57a2.37,2.37,0,0,0-1.49-.08,47.71,47.71,0,0,1-6,1.43,1.09,1.09,0,0,0-.81.78l-1,5.07A1.58,1.58,0,0,1,340.28,459.08Zm-21-9.35a2.6,2.6,0,0,1,.81.12,46.7,46.7,0,0,0,5.93,1.4,1.85,1.85,0,0,1,1.42,1.38l1,5.07a.81.81,0,0,0,.76.63h11.16a.81.81,0,0,0,.75-.63l1-5.07a1.83,1.83,0,0,1,1.41-1.38,45.9,45.9,0,0,0,5.93-1.4,3.14,3.14,0,0,1,2,.12l7.69,3.56a1.69,1.69,0,0,0,1.34-.06l7.59-4.38a.33.33,0,0,0,.17-.19.33.33,0,0,0-.15-.21l-6-4.33a1.22,1.22,0,0,1-.5-.84,1.26,1.26,0,0,1,.33-.95,14.79,14.79,0,0,0,2.1-2.9,2.25,2.25,0,0,1,1.67-1.11l10.12-.64a.65.65,0,0,0,.59-.63v-5.64a.65.65,0,0,0-.59-.64l-10.12-.64a2.23,2.23,0,0,1-1.67-1.1,14.73,14.73,0,0,0-2.1-2.91,1.26,1.26,0,0,1-.33-.95,1.24,1.24,0,0,1,.5-.84l6-4.32a.33.33,0,0,0,.15-.21.34.34,0,0,0-.17-.2l-7.59-4.38a1.69,1.69,0,0,0-1.34-.06h0L351.37,419a3.2,3.2,0,0,1-2,.12,44.31,44.31,0,0,0-5.93-1.41A1.83,1.83,0,0,1,342,416.3l-1-5.07a.83.83,0,0,0-.76-.63H329.12a.81.81,0,0,0-.76.63l-1,5.07a1.84,1.84,0,0,1-1.42,1.38,44.53,44.53,0,0,0-5.92,1.41,3.2,3.2,0,0,1-2-.12l-7.7-3.57a1.67,1.67,0,0,0-1.33.06l-7.59,4.38c-.11.06-.17.14-.17.2s.05.14.15.21l6,4.32a1.17,1.17,0,0,1,.5.84,1.19,1.19,0,0,1-.33.95,15.27,15.27,0,0,0-2.1,2.91,2.2,2.2,0,0,1-1.67,1.1l-10.11.64a.66.66,0,0,0-.6.64v5.64a.64.64,0,0,0,.6.63l10.11.64a2.23,2.23,0,0,1,1.67,1.11,14.79,14.79,0,0,0,2.1,2.9,1.19,1.19,0,0,1,.33.95,1.15,1.15,0,0,1-.5.84l-6,4.33c-.1.07-.16.15-.15.21s.06.13.17.19l7.59,4.38a1.66,1.66,0,0,0,1.33.06L318,450A2.87,2.87,0,0,1,319.24,449.73Zm15.46-4.43a26.57,26.57,0,0,1-13-3.11c-3.55-2-5.5-4.79-5.5-7.72s1.95-5.68,5.5-7.73c7.17-4.14,18.84-4.14,26,0h0c3.54,2.05,5.49,4.79,5.49,7.73s-1.95,5.68-5.49,7.72A26.63,26.63,0,0,1,334.7,445.3Zm0-20.93a25.74,25.74,0,0,0-12.64,3c-3.31,1.9-5.13,4.42-5.13,7.08s1.82,5.17,5.13,7.08c7,4,18.31,4,25.27,0,3.31-1.91,5.13-4.43,5.13-7.08s-1.82-5.18-5.13-7.08h0A25.73,25.73,0,0,0,334.7,424.37Z\",\n style: {\n fill: \"#fff\"\n }\n })), /*#__PURE__*/React.createElement(\"path\", {\n id: \"freepik--shadow--inject-114\",\n d: \"M261.8,484.13a3.59,3.59,0,0,1-.47,0l-6.59-.69a4.35,4.35,0,0,1-3.88-4.86l.13-1c-.56-.2-1.11-.42-1.63-.64,0,0,0,0,0,0h-.07l-5,1.57a5.08,5.08,0,0,1-1.52.23,5.63,5.63,0,0,1-3.52-1.22l-3.36-2.8a3.91,3.91,0,0,1,.76-6.61l1.14-.57L234.7,467a4.2,4.2,0,0,1-3.33-5.44l.91-2.91a4.85,4.85,0,0,1,4.53-3.33l5.6.23-.72-.77a4,4,0,0,1,1.43-6.47l5.27-2.11a5.27,5.27,0,0,1,2-.36,5.54,5.54,0,0,1,3.06.88l3.42,2.27h0q1.49-.26,3-.39l1-2a5,5,0,0,1,4.41-2.67,3.85,3.85,0,0,1,.48,0l6.58.69a4.36,4.36,0,0,1,3.88,4.86l-.12,1c.56.2,1.1.42,1.63.64,0,0,0,0,0,0h.08l5-1.56a5,5,0,0,1,1.51-.23,5.59,5.59,0,0,1,3.52,1.22l3.36,2.8a3.91,3.91,0,0,1-.76,6.62l-1.14.56,3.09.53a4.22,4.22,0,0,1,3.33,5.44l-.92,2.91a4.85,4.85,0,0,1-4.53,3.33l-5.6-.23.72.77a3.94,3.94,0,0,1-1.43,6.47l-5.27,2.11a5.25,5.25,0,0,1-2,.36,5.6,5.6,0,0,1-3.07-.88l-3.41-2.27h0c-1,.17-2,.3-3,.39l-1,2A5.09,5.09,0,0,1,261.8,484.13ZM263.54,460a16.19,16.19,0,0,0-6,1.07c-2.31.92-3.27,2.1-3.38,2.83s.62,1.45,1.07,1.83c1.77,1.47,4.95,2.38,8.3,2.38a16.19,16.19,0,0,0,6-1.07c2.31-.92,3.27-2.1,3.38-2.83s-.62-1.45-1.07-1.83C270.07,460.87,266.89,460,263.54,460Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M273.74,447.58a1.44,1.44,0,0,1-1-1.49l.3-2.5a1.14,1.14,0,0,0-1-1.28l-6.59-.69a1.84,1.84,0,0,0-1.7.92l-1.31,2.55a2.29,2.29,0,0,1-1.7,1.12,32.07,32.07,0,0,0-3.41.42,3.37,3.37,0,0,1-2.13-.43l-3.54-2.35a2.51,2.51,0,0,0-2.07-.21l-5.26,2.11a.77.77,0,0,0-.55.67h0v.06h0v5.38h0a.87.87,0,0,0,.26.59l.3.32a2.68,2.68,0,0,1-1.45.45l-6-.24a1.64,1.64,0,0,0-1.52,1.07l-.91,2.91a.91.91,0,0,0,0,.36h0v5.44h0a1,1,0,0,0,.86.95l4.66.8-1.82.91a.77.77,0,0,0-.47.66h0v5.44h0a.81.81,0,0,0,.32.6l3.37,2.8a2.42,2.42,0,0,0,2,.4l5.12-1.61a3.69,3.69,0,0,1,2.18.14,27.9,27.9,0,0,0,2.75,1,1.33,1.33,0,0,1,.67.47V479h0a1.14,1.14,0,0,0,1,1.13l6.59.69a1.87,1.87,0,0,0,1.7-.92l1.31-2.56a2.33,2.33,0,0,1,1.7-1.11q1.72-.14,3.42-.42a3.28,3.28,0,0,1,2.12.42l3.55,2.36a2.52,2.52,0,0,0,2.06.21l5.27-2.11a.77.77,0,0,0,.54-.7h0v-5.43h0a.83.83,0,0,0-.26-.58l-.3-.33a2.77,2.77,0,0,1,1.45-.45l6,.24a1.61,1.61,0,0,0,1.52-1.07l.91-2.91a1,1,0,0,0,.05-.33h0v-5.41h0a1,1,0,0,0-.83-1l-4.67-.79L289,457a.74.74,0,0,0,.47-.67h0V451h0a.81.81,0,0,0-.33-.62l-3.36-2.8a2.36,2.36,0,0,0-2-.4l-5.13,1.6a3.54,3.54,0,0,1-2.18-.14A25.37,25.37,0,0,0,273.74,447.58Zm-21.86,13.64a9.84,9.84,0,0,1,4.5-3.26c5.71-2.28,13.55-1.46,17.51,1.83a7.94,7.94,0,0,1,1.34,1.42,9.71,9.71,0,0,1-4.51,3.27c-5.71,2.29-13.55,1.47-17.51-1.83A7.34,7.34,0,0,1,251.88,461.22Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M273.74,447.58a1.44,1.44,0,0,1-1-1.49l.3-2.5a1.14,1.14,0,0,0-1-1.28l-6.59-.69a1.84,1.84,0,0,0-1.7.92l-1.31,2.55a2.29,2.29,0,0,1-1.7,1.12,32.07,32.07,0,0,0-3.41.42,3.37,3.37,0,0,1-2.13-.43l-3.54-2.35a2.51,2.51,0,0,0-2.07-.21l-5.26,2.11a.77.77,0,0,0-.55.67h0v.06h0v5.38h0a.87.87,0,0,0,.26.59l.3.32a2.68,2.68,0,0,1-1.45.45l-6-.24a1.64,1.64,0,0,0-1.52,1.07l-.91,2.91a.91.91,0,0,0,0,.36h0v5.44h0a1,1,0,0,0,.86.95l4.66.8-1.82.91a.77.77,0,0,0-.47.66h0v5.44h0a.81.81,0,0,0,.32.6l3.37,2.8a2.42,2.42,0,0,0,2,.4l5.12-1.61a3.69,3.69,0,0,1,2.18.14,27.9,27.9,0,0,0,2.75,1,1.33,1.33,0,0,1,.67.47V479h0a1.14,1.14,0,0,0,1,1.13l6.59.69a1.87,1.87,0,0,0,1.7-.92l1.31-2.56a2.33,2.33,0,0,1,1.7-1.11q1.72-.14,3.42-.42a3.28,3.28,0,0,1,2.12.42l3.55,2.36a2.52,2.52,0,0,0,2.06.21l5.27-2.11a.77.77,0,0,0,.54-.7h0v-5.43h0a.83.83,0,0,0-.26-.58l-.3-.33a2.77,2.77,0,0,1,1.45-.45l6,.24a1.61,1.61,0,0,0,1.52-1.07l.91-2.91a1,1,0,0,0,.05-.33h0v-5.41h0a1,1,0,0,0-.83-1l-4.67-.79L289,457a.74.74,0,0,0,.47-.67h0V451h0a.81.81,0,0,0-.33-.62l-3.36-2.8a2.36,2.36,0,0,0-2-.4l-5.13,1.6a3.54,3.54,0,0,1-2.18-.14A25.37,25.37,0,0,0,273.74,447.58Zm-21.86,13.64a9.84,9.84,0,0,1,4.5-3.26c5.71-2.28,13.55-1.46,17.51,1.83a7.94,7.94,0,0,1,1.34,1.42,9.71,9.71,0,0,1-4.51,3.27c-5.71,2.29-13.55,1.47-17.51-1.83A7.34,7.34,0,0,1,251.88,461.22Z\",\n style: {\n fill: \"#fff\",\n opacity: 0.2\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M242.36,460.61a2,2,0,0,0-1.39-1.34l-5.74-1a1,1,0,0,1-.84-.89v5.37a1,1,0,0,0,.85.94l4.67.8,2.41-1.21a1.14,1.14,0,0,0,.48-1.55A7.57,7.57,0,0,1,242.36,460.61Zm1.4-8.75h0a.9.9,0,0,0,.25.59l.31.33a2.26,2.26,0,0,0,.5-.38,12.2,12.2,0,0,1,1.45-1.29,1,1,0,0,0,.14-1.54L244,447a.87.87,0,0,1-.26-.59Z\",\n style: {\n opacity: 0.1\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M256.38,452.54c-4.93,2-6.66,5.61-4.49,8.69a9.61,9.61,0,0,1,4.49-3.26c5.71-2.29,13.55-1.48,17.51,1.82a7.23,7.23,0,0,1,1.33,1.42c1.53-2.18,1.18-4.76-1.32-6.84C269.93,451.07,262.09,450.26,256.38,452.54Z\",\n style: {\n opacity: 0.1\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M265.22,471.29a1.91,1.91,0,0,0-.54.64l-1.32,2.55a1.83,1.83,0,0,1-1,.82v5.42a1.76,1.76,0,0,0,1-.81l1.32-2.56a2,2,0,0,1,.56-.62Zm18.12-.72h0a.77.77,0,0,1-.55.71l-5.26,2.11a2.38,2.38,0,0,1-1.38.05v5.42a2.38,2.38,0,0,0,1.38-.05l5.27-2.11a.75.75,0,0,0,.54-.7Zm-35-2.27-5.06,1.59a2.2,2.2,0,0,1-1.27,0v5.41a2.34,2.34,0,0,0,1.28,0l5.06-1.59Zm44.35-8.57a2,2,0,0,1-.06.32l-.91,2.91a1.61,1.61,0,0,1-1.52,1.07l-6-.24a2.36,2.36,0,0,0-.94.19v5.42a2.54,2.54,0,0,1,.94-.19l6,.24a1.6,1.6,0,0,0,1.52-1.06l.91-2.92a1,1,0,0,0,.05-.33ZM289.51,451a.45.45,0,0,1-.05.19.52.52,0,0,1-.18.27,1.34,1.34,0,0,1-.26.19l-4.23,2.12a.82.82,0,0,0-.25.19,1,1,0,0,0-.29.44,1,1,0,0,0-.06.42,1.8,1.8,0,0,0,0,.22c0,.1.06.19.1.29a8.18,8.18,0,0,1,.43,1.13,2,2,0,0,0,1.4,1.35l1.06.17L289,457a.76.76,0,0,0,.47-.68h0Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M265.22,471.29a1.91,1.91,0,0,0-.54.64l-1.32,2.55a1.83,1.83,0,0,1-1,.82v5.42a1.76,1.76,0,0,0,1-.81l1.32-2.56a2,2,0,0,1,.56-.62Zm18.12-.72h0a.77.77,0,0,1-.55.71l-5.26,2.11a2.38,2.38,0,0,1-1.38.05v5.42a2.38,2.38,0,0,0,1.38-.05l5.27-2.11a.75.75,0,0,0,.54-.7Zm-35-2.27-5.06,1.59a2.2,2.2,0,0,1-1.27,0v5.41a2.34,2.34,0,0,0,1.28,0l5.06-1.59Zm44.35-8.57a2,2,0,0,1-.06.32l-.91,2.91a1.61,1.61,0,0,1-1.52,1.07l-6-.24a2.36,2.36,0,0,0-.94.19v5.42a2.54,2.54,0,0,1,.94-.19l6,.24a1.6,1.6,0,0,0,1.52-1.06l.91-2.92a1,1,0,0,0,.05-.33ZM289.51,451a.45.45,0,0,1-.05.19.52.52,0,0,1-.18.27,1.34,1.34,0,0,1-.26.19l-4.23,2.12a.82.82,0,0,0-.25.19,1,1,0,0,0-.29.44,1,1,0,0,0-.06.42,1.8,1.8,0,0,0,0,.22c0,.1.06.19.1.29a8.18,8.18,0,0,1,.43,1.13,2,2,0,0,0,1.4,1.35l1.06.17L289,457a.76.76,0,0,0,.47-.68h0Z\",\n style: {\n fill: \"#fff\",\n opacity: 0.7000000000000001\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M283.79,447.13l-5.13,1.6a3.54,3.54,0,0,1-2.18-.14,25.37,25.37,0,0,0-2.74-1,1.44,1.44,0,0,1-1-1.49l.3-2.5a1.14,1.14,0,0,0-1-1.28l-6.59-.69a1.84,1.84,0,0,0-1.7.92l-1.31,2.55a2.29,2.29,0,0,1-1.7,1.12,32.07,32.07,0,0,0-3.41.42,3.37,3.37,0,0,1-2.13-.43l-3.54-2.35a2.51,2.51,0,0,0-2.07-.21l-5.26,2.11A.74.74,0,0,0,244,447l2.39,2.54a1,1,0,0,1-.15,1.54,12.92,12.92,0,0,0-1.44,1.29,2.92,2.92,0,0,1-2,.82l-6-.24a1.64,1.64,0,0,0-1.52,1.07l-.91,2.91a1,1,0,0,0,.81,1.32l5.72,1a2,2,0,0,1,1.4,1.34,8.82,8.82,0,0,0,.43,1.14,1.13,1.13,0,0,1-.48,1.55l-4.23,2.12a.71.71,0,0,0-.14,1.28l3.36,2.8a2.42,2.42,0,0,0,2,.4l5.12-1.61a3.61,3.61,0,0,1,2.18.14,26.36,26.36,0,0,0,2.75,1,1.43,1.43,0,0,1,1,1.49l-.3,2.5a1.15,1.15,0,0,0,1,1.29l6.58.68a1.84,1.84,0,0,0,1.7-.92l1.31-2.55a2.3,2.3,0,0,1,1.71-1.11c1.14-.09,2.28-.23,3.41-.43a3.35,3.35,0,0,1,2.12.43l3.55,2.35a2.45,2.45,0,0,0,2.06.21l5.27-2.11a.73.73,0,0,0,.28-1.28l-2.39-2.55a1,1,0,0,1,.15-1.54,13.94,13.94,0,0,0,1.44-1.28,2.88,2.88,0,0,1,2-.83l6,.24a1.6,1.6,0,0,0,1.52-1.07l.91-2.91a1,1,0,0,0-.8-1.32l-5.73-1a2,2,0,0,1-1.4-1.34,7.57,7.57,0,0,0-.43-1.14,1.15,1.15,0,0,1,.48-1.55L289,451.6a.71.71,0,0,0,.15-1.27l-3.37-2.8A2.34,2.34,0,0,0,283.79,447.13Zm-9.9,7.24c4,3.3,2.55,7.82-3.17,10.11s-13.55,1.47-17.51-1.83-2.54-7.82,3.17-10.11S269.93,451.07,273.89,454.37Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.55\n }\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M283.79,447.13l-5.13,1.6a3.54,3.54,0,0,1-2.18-.14,25.37,25.37,0,0,0-2.74-1,1.44,1.44,0,0,1-1-1.49l.3-2.5a1.14,1.14,0,0,0-1-1.28l-6.59-.69a1.84,1.84,0,0,0-1.7.92l-1.31,2.55a2.29,2.29,0,0,1-1.7,1.12,32.07,32.07,0,0,0-3.41.42,3.37,3.37,0,0,1-2.13-.43l-3.54-2.35a2.51,2.51,0,0,0-2.07-.21l-5.26,2.11A.74.74,0,0,0,244,447l2.39,2.54a1,1,0,0,1-.15,1.54,12.92,12.92,0,0,0-1.44,1.29,2.92,2.92,0,0,1-2,.82l-6-.24a1.64,1.64,0,0,0-1.52,1.07l-.91,2.91a1,1,0,0,0,.81,1.32l5.72,1a2,2,0,0,1,1.4,1.34,8.82,8.82,0,0,0,.43,1.14,1.13,1.13,0,0,1-.48,1.55l-4.23,2.12a.71.71,0,0,0-.14,1.28l3.36,2.8a2.42,2.42,0,0,0,2,.4l5.12-1.61a3.61,3.61,0,0,1,2.18.14,26.36,26.36,0,0,0,2.75,1,1.43,1.43,0,0,1,1,1.49l-.3,2.5a1.15,1.15,0,0,0,1,1.29l6.58.68a1.84,1.84,0,0,0,1.7-.92l1.31-2.55a2.3,2.3,0,0,1,1.71-1.11c1.14-.09,2.28-.23,3.41-.43a3.35,3.35,0,0,1,2.12.43l3.55,2.35a2.45,2.45,0,0,0,2.06.21l5.27-2.11a.73.73,0,0,0,.28-1.28l-2.39-2.55a1,1,0,0,1,.15-1.54,13.94,13.94,0,0,0,1.44-1.28,2.88,2.88,0,0,1,2-.83l6,.24a1.6,1.6,0,0,0,1.52-1.07l.91-2.91a1,1,0,0,0-.8-1.32l-5.73-1a2,2,0,0,1-1.4-1.34,7.57,7.57,0,0,0-.43-1.14,1.15,1.15,0,0,1,.48-1.55L289,451.6a.71.71,0,0,0,.15-1.27l-3.37-2.8A2.34,2.34,0,0,0,283.79,447.13Zm-9.9,7.24c4,3.3,2.55,7.82-3.17,10.11s-13.55,1.47-17.51-1.83-2.54-7.82,3.17-10.11S269.93,451.07,273.89,454.37Z\",\n style: {\n fill: \"#fff\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M261.8,475.87h-.19l-6.58-.69a1.57,1.57,0,0,1-1.1-.59,1.62,1.62,0,0,1-.34-1.2l.31-2.5a1,1,0,0,0-.67-1,25.52,25.52,0,0,1-2.79-1,3.13,3.13,0,0,0-1.86-.12l-5.13,1.6a2.87,2.87,0,0,1-2.45-.48l-3.36-2.8a1.22,1.22,0,0,1-.49-1.09,1.24,1.24,0,0,1,.73-.95l4.22-2.12a.69.69,0,0,0,.27-.95,8.67,8.67,0,0,1-.45-1.2,1.54,1.54,0,0,0-1-1l-5.72-1a1.44,1.44,0,0,1-1-.68,1.48,1.48,0,0,1-.14-1.22l.91-2.92a2.09,2.09,0,0,1,2-1.39l6,.24a2.36,2.36,0,0,0,1.6-.69,14.75,14.75,0,0,1,1.49-1.32.68.68,0,0,0,.26-.44.54.54,0,0,0-.17-.42l-2.39-2.55a1.2,1.2,0,0,1,.45-2l5.27-2.11a3,3,0,0,1,2.49.26l3.55,2.35a2.89,2.89,0,0,0,1.79.36c1.12-.2,2.28-.34,3.45-.43a1.85,1.85,0,0,0,1.33-.87l1.31-2.55a2.33,2.33,0,0,1,2.16-1.17l6.59.69a1.58,1.58,0,0,1,1.09.6,1.61,1.61,0,0,1,.34,1.2l-.3,2.5a1,1,0,0,0,.66,1,28,28,0,0,1,2.8,1,3.1,3.1,0,0,0,1.85.12l5.13-1.6a2.86,2.86,0,0,1,2.45.48l3.36,2.8a1.16,1.16,0,0,1-.23,2L285,454.13a.7.7,0,0,0-.27.95,7.94,7.94,0,0,1,.45,1.2,1.52,1.52,0,0,0,1,1l5.73,1a1.45,1.45,0,0,1,1,.68,1.43,1.43,0,0,1,.14,1.23l-.91,2.91a2.11,2.11,0,0,1-2,1.39l-6-.24a2.42,2.42,0,0,0-1.6.69,16.16,16.16,0,0,1-1.49,1.33.59.59,0,0,0-.25.43.52.52,0,0,0,.16.43l2.39,2.54a1.27,1.27,0,0,1,.36,1.15,1.25,1.25,0,0,1-.81.88l-5.27,2.11a3,3,0,0,1-2.49-.25l-3.54-2.36a2.91,2.91,0,0,0-1.79-.35c-1.12.19-2.29.34-3.46.43a1.85,1.85,0,0,0-1.33.86l-1.31,2.55A2.31,2.31,0,0,1,261.8,475.87Zm-12.53-8.15a4.06,4.06,0,0,1,1.54.29,25,25,0,0,0,2.69,1,1.91,1.91,0,0,1,1.31,2l-.3,2.5a.71.71,0,0,0,.14.51.7.7,0,0,0,.47.26l6.59.69a1.41,1.41,0,0,0,1.24-.68l1.31-2.55a2.73,2.73,0,0,1,2.08-1.36c1.14-.09,2.28-.23,3.37-.42a3.75,3.75,0,0,1,2.46.5l3.54,2.35a2.09,2.09,0,0,0,1.64.17l5.27-2.11c.14-.06.23-.14.25-.23a.4.4,0,0,0-.13-.32l-2.39-2.54a1.48,1.48,0,0,1-.41-1.13,1.53,1.53,0,0,1,.61-1.09,17,17,0,0,0,1.39-1.24,3.3,3.3,0,0,1,2.3-1l6,.24a1.13,1.13,0,0,0,1.06-.75l.91-2.91a.54.54,0,0,0,0-.47.58.58,0,0,0-.4-.25l-5.73-1a2.43,2.43,0,0,1-1.76-1.67,6.36,6.36,0,0,0-.41-1.07,1.6,1.6,0,0,1,.7-2.16l4.22-2.12c.14-.07.22-.15.23-.23a.35.35,0,0,0-.17-.28l-3.36-2.8a2,2,0,0,0-1.59-.31l-5.12,1.6a4,4,0,0,1-2.5-.16,26,26,0,0,0-2.7-1,1.9,1.9,0,0,1-1.31-2l.31-2.5a.7.7,0,0,0-.15-.52.68.68,0,0,0-.47-.26l-6.58-.68a1.38,1.38,0,0,0-1.25.67l-1.31,2.55a2.75,2.75,0,0,1-2.08,1.37,33.16,33.16,0,0,0-3.36.41,3.73,3.73,0,0,1-2.46-.49l-3.55-2.36a2,2,0,0,0-1.63-.16l-5.27,2.11a.36.36,0,0,0-.26.23.37.37,0,0,0,.14.31l2.39,2.54a1.51,1.51,0,0,1,.41,1.13,1.56,1.56,0,0,1-.61,1.09,14.27,14.27,0,0,0-1.4,1.25,3.32,3.32,0,0,1-2.29,1l-6-.24a1.16,1.16,0,0,0-1.07.75l-.91,2.91a.55.55,0,0,0,0,.47.56.56,0,0,0,.39.25l5.73,1a2.41,2.41,0,0,1,1.76,1.67,8.72,8.72,0,0,0,.41,1.07,1.6,1.6,0,0,1-.69,2.16l-4.23,2.12c-.13.07-.22.16-.23.24s.06.18.17.27l3.36,2.8a2,2,0,0,0,1.59.32l5.12-1.61A3.25,3.25,0,0,1,249.27,467.72Zm14.32-1.49c-4.11,0-8.15-1.13-10.67-3.22a5.69,5.69,0,0,1-2.36-5.23c.37-2.31,2.43-4.38,5.65-5.67,5.84-2.34,13.91-1.48,18,1.91h0a5.66,5.66,0,0,1,2.35,5.22c-.37,2.31-2.42,4.38-5.64,5.67A20,20,0,0,1,263.59,466.23Zm0-14.53a19,19,0,0,0-7,1.27c-2.91,1.17-4.76,3-5.08,5a4.73,4.73,0,0,0,2,4.37c3.84,3.19,11.48,4,17,1.75,2.92-1.16,4.77-3,5.08-4.95a4.73,4.73,0,0,0-2-4.38C271.23,452.76,267.43,451.7,263.55,451.7Z\",\n style: {\n fill: \"#fff\"\n }\n }))), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--gears--inject-114\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"freepik--Gear--inject-114\",\n d: \"M234.71,41.09l-1-2.63c-.14-.39-.58-.4-1,0l-2.8,2.79a1,1,0,0,1-1.26.2A4,4,0,0,0,228,41a1,1,0,0,1-.55-1.12l1-4.13c.11-.46-.21-.77-.71-.69l-2.37.37a1.71,1.71,0,0,0-1.23,1L222.5,40.7a3.09,3.09,0,0,1-1.19,1.3c-.45.27-.9.57-1.36.9s-.95.32-1.15,0l-1.12-1.92c-.21-.36-.66-.32-1,.08l-3.1,3.53A1.9,1.9,0,0,0,213.1,46l.63,2.73a2.39,2.39,0,0,1-.33,1.54c-.48.77-.92,1.57-1.33,2.37a2.49,2.49,0,0,1-1.31,1.1l-2.24.69a2,2,0,0,0-1.17,1.12l-1.48,4.71a.62.62,0,0,0,.62.85h1.89a.76.76,0,0,1,.78.84,17.79,17.79,0,0,0-.1,2,2.82,2.82,0,0,1-.55,1.56L205.82,69a1.69,1.69,0,0,0-.32,1.46l1,2.64c.15.39.58.39,1,0l2.8-2.79a1,1,0,0,1,1.27-.19,6,6,0,0,0,.69.41,1,1,0,0,1,.55,1.11l-1,4.14c-.12.46.2.77.7.69l2.38-.38a1.74,1.74,0,0,0,1.23-1l1.63-4.28a3.06,3.06,0,0,1,1.18-1.3,14.49,14.49,0,0,0,1.36-.9c.44-.32.95-.32,1.16,0l1.11,1.93c.21.35.67.32,1-.09l3.1-3.52a1.9,1.9,0,0,0,.47-1.48l-.64-2.72a2.38,2.38,0,0,1,.34-1.54c.47-.78.92-1.57,1.32-2.38a2.52,2.52,0,0,1,1.32-1.1l2.24-.69A2,2,0,0,0,232.86,56l1.48-4.72a.61.61,0,0,0-.62-.84l-1.9,0a.75.75,0,0,1-.77-.84,17.72,17.72,0,0,0,.09-2,2.89,2.89,0,0,1,.55-1.55l2.7-3.48A1.75,1.75,0,0,0,234.71,41.09ZM222.26,61.42c-3.37,3.82-7.06,4.4-8.25,1.3S214.58,54,218,50.17s7.05-4.4,8.24-1.3S225.62,57.6,222.26,61.42Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--gear--inject-114\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M178.64,77.42a1.27,1.27,0,0,1-.95-.38,1.2,1.2,0,0,1-.25-1.14l1.4-5.75a1,1,0,0,0-.52-1.05,6.21,6.21,0,0,1-1-.61,1,1,0,0,0-1.2.23L172.2,72.6a1.45,1.45,0,0,1-1.31.49,1,1,0,0,1-.74-.66l-1.41-3.67a2.79,2.79,0,0,1,.51-2.45L173,61.48a3.56,3.56,0,0,0,.67-1.88,26,26,0,0,1,.13-2.88.59.59,0,0,0-.14-.47.65.65,0,0,0-.51-.21l-2.63,0a1.34,1.34,0,0,1-1.11-.53,1.36,1.36,0,0,1-.17-1.2l2.06-6.56a3.14,3.14,0,0,1,1.92-1.83l3.11-1a3.11,3.11,0,0,0,1.57-1.31c.57-1.13,1.19-2.25,1.86-3.33a3,3,0,0,0,.41-1.82l-.89-3.78a3.11,3.11,0,0,1,.75-2.44l4.31-4.9a1.54,1.54,0,0,1,1.28-.6,1.08,1.08,0,0,1,.83.56L188,30a.39.39,0,0,0,.23.16,1.09,1.09,0,0,0,.75-.24c.64-.46,1.28-.89,1.93-1.27A3.82,3.82,0,0,0,192.36,27l2.27-5.94a2.87,2.87,0,0,1,2.05-1.63L200,19a1.32,1.32,0,0,1,1.22.36,1.24,1.24,0,0,1,.25,1.13L200,26.19a1,1,0,0,0,.53,1,6.4,6.4,0,0,1,1,.62,1,1,0,0,0,1.2-.24l3.89-3.87a1.44,1.44,0,0,1,1.3-.5,1,1,0,0,1,.75.67l1.4,3.66a2.77,2.77,0,0,1-.5,2.46l-3.75,4.82a3.62,3.62,0,0,0-.67,1.89,23.81,23.81,0,0,1-.14,2.88.61.61,0,0,0,.15.46.66.66,0,0,0,.51.22l2.63,0a1.39,1.39,0,0,1,1.11.53,1.34,1.34,0,0,1,.16,1.21l-2,6.55a3.18,3.18,0,0,1-1.92,1.84l-3.11,1A3,3,0,0,0,201,52.73c-.57,1.13-1.2,2.25-1.86,3.33a3,3,0,0,0-.41,1.81l.88,3.78a3.05,3.05,0,0,1-.74,2.44L194.55,69a1.57,1.57,0,0,1-1.28.59,1.08,1.08,0,0,1-.84-.55l-1.55-2.67a.3.3,0,0,0-.22-.16,1,1,0,0,0-.75.23c-.64.47-1.29.9-1.93,1.28a3.77,3.77,0,0,0-1.46,1.58l-2.26,6a2.83,2.83,0,0,1-2,1.62l-3.3.52A1.24,1.24,0,0,1,178.64,77.42Zm-1.76-9.91a1.58,1.58,0,0,1,.92.28,5.65,5.65,0,0,0,.89.53,1.84,1.84,0,0,1,1,2l-1.41,5.75a.39.39,0,0,0,.05.34.5.5,0,0,0,.45.09l3.29-.52a2,2,0,0,0,1.38-1.08l2.26-6a4.73,4.73,0,0,1,1.83-2,20.45,20.45,0,0,0,1.85-1.23,1.9,1.9,0,0,1,1.44-.38,1.16,1.16,0,0,1,.8.57l1.55,2.67a.22.22,0,0,0,.17.13.83.83,0,0,0,.55-.31l4.31-4.9a2.26,2.26,0,0,0,.55-1.67l-.88-3.78a3.71,3.71,0,0,1,.51-2.47c.65-1.06,1.27-2.15,1.83-3.26a3.89,3.89,0,0,1,2.08-1.75l3.11-1a2.29,2.29,0,0,0,1.35-1.27l2.05-6.55a.47.47,0,0,0,0-.44.5.5,0,0,0-.42-.17l-2.63,0a1.55,1.55,0,0,1-1.15-.51,1.45,1.45,0,0,1-.36-1.13,24.23,24.23,0,0,0,.13-2.78,4.35,4.35,0,0,1,.86-2.43L209,29.5a1.92,1.92,0,0,0,.38-1.61l-1.4-3.66c-.05-.11-.1-.13-.12-.13a.69.69,0,0,0-.51.26l-3.89,3.88a1.84,1.84,0,0,1-2.32.32,4.75,4.75,0,0,0-.89-.53,1.83,1.83,0,0,1-1-2l1.41-5.75a.38.38,0,0,0-.05-.34.51.51,0,0,0-.45-.09l-3.3.52a2,2,0,0,0-1.37,1.08l-2.26,5.94a4.78,4.78,0,0,1-1.84,2c-.61.36-1.23.77-1.85,1.22a1.87,1.87,0,0,1-1.44.39,1.22,1.22,0,0,1-.79-.57l-1.56-2.68c-.06-.1-.12-.12-.17-.12s-.32.06-.54.3l-4.31,4.91a2.22,2.22,0,0,0-.55,1.66l.88,3.79a3.73,3.73,0,0,1-.51,2.47c-.66,1-1.27,2.15-1.83,3.26a4,4,0,0,1-2.09,1.75l-3.1,1A2.31,2.31,0,0,0,172.13,48l-2.06,6.56a.48.48,0,0,0,0,.43.49.49,0,0,0,.41.17l2.64,0a1.53,1.53,0,0,1,1.15.5,1.5,1.5,0,0,1,.36,1.14,22,22,0,0,0-.13,2.77,4.46,4.46,0,0,1-.86,2.44l-3.75,4.82a2,2,0,0,0-.37,1.61l1.4,3.67a.18.18,0,0,0,.12.13.69.69,0,0,0,.51-.27l3.89-3.87A2,2,0,0,1,176.88,67.51ZM184.76,61a4.72,4.72,0,0,1-.85-.07,4.4,4.4,0,0,1-3.34-3c-1.7-4.45.79-12.46,5.55-17.88,3-3.37,6.29-5.11,8.86-4.65a4.37,4.37,0,0,1,3.33,3c1.71,4.44-.78,12.46-5.55,17.87C190.11,59.29,187.19,61,184.76,61Zm9.35-24.79c-2.17,0-4.85,1.61-7.34,4.44-4.57,5.19-7,12.81-5.39,17a3.55,3.55,0,0,0,2.68,2.43c2.27.41,5.29-1.22,8.05-4.37,4.58-5.2,7-12.82,5.39-17a3.54,3.54,0,0,0-2.68-2.44A4.17,4.17,0,0,0,194.11,36.21Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n })))), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Device--inject-114\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Monitor--inject-114\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M255.67,429.22l46.23-26.73c4.76-2.76,7.14-6.36,7.14-10s0-6.43,0-6.43L265.56,361.4a10.17,10.17,0,0,1-4.6-8v-57l-80.75,46.66v57a10.17,10.17,0,0,0,4.6,8l36.34,21.16C230.68,434.72,246.13,434.72,255.67,429.22Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M199.6,410.18v6.41l-14.8-8.53a10.16,10.16,0,0,1-4.6-8v-57l15.39-8.87c.31,3.91.66,7.95,1,11.88l-10.79,6.24v44.53a10.11,10.11,0,0,0,4.6,8Z\",\n style: {\n opacity: 0.15\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M185.78,396.88a10.15,10.15,0,0,0,4.6,8l30.76,17.94c9.54,5.5,25,5.5,34.52,0l46.26-26.73c9.53-5.5,9.53-14.42,0-19.92l-30.79-17.95a10.18,10.18,0,0,1-4.6-8V305.68l-80.75,46.66Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M280.51,363.61h0l-9.38-5.41a10.18,10.18,0,0,1-4.6-8V305.68l-80.75,46.66v44.54a10.15,10.15,0,0,0,4.6,8l9.21,5.32Z\",\n style: {\n opacity: 0.15\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M96.89,430.65c3,1.72,8,1.62,11.14-.21,39.7-22.92,222.25-128.34,262-151.25a12.75,12.75,0,0,0,5.75-10v-242c0-3.67-2.42-8-5.4-9.76s-8-1.62-11.15.21L97.25,168.88a12.73,12.73,0,0,0-5.76,10v242C91.49,424.56,93.91,428.93,96.89,430.65Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M108,430.43,370,279.18a12.72,12.72,0,0,0,5.75-10v-242c0-3.66-2.58-5.15-5.75-3.32L108,175.11a12.69,12.69,0,0,0-5.75,10v242C102.28,430.78,104.86,432.27,108,430.43Z\",\n style: {\n fill: \"#37474f\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M102.28,407.54v19.57c0,3.67,2.58,5.16,5.76,3.32L370,279.18a12.72,12.72,0,0,0,5.75-10V249.65Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M109.89,389.34V187.63a7.79,7.79,0,0,1,3.54-6.12l251.15-145c1.95-1.13,3.54-.21,3.54,2V240.23a7.83,7.83,0,0,1-3.54,6.13l-251.17,145C111.47,392.51,109.89,391.59,109.89,389.34Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M93.19,173.16,104,179.38a12.19,12.19,0,0,0-1.71,5.68V427.11c0,3.35,2.27,5.22,5.75,3.33a12.21,12.21,0,0,1-11.14.21,11.08,11.08,0,0,1-5.4-9.07V178.85A11.87,11.87,0,0,1,93.19,173.16Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M235.83,341.36l13-7.47c1.17-.67,2.11-.19,2.11,1.07a4.52,4.52,0,0,1-2.1,3.5l-13,7.47c-1.16.67-2.11.2-2.11-1.07A4.53,4.53,0,0,1,235.83,341.36Z\",\n style: {\n fill: \"#407BFF\"\n }\n }))), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Screen--inject-114\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Window--inject-114\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--window--inject-114\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M125.52,381.25a4.36,4.36,0,0,1-2,.62,5.13,5.13,0,0,1-3-.52,5.59,5.59,0,0,1-2.45-4.43V219.2l4.91,2.83V379.74c0,1.19.59,1.87,1.45,1.87A2.57,2.57,0,0,0,125.52,381.25Z\",\n style: {\n fill: \"#e6e6e6\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M124.36,381c-.75,0-.83-.87-.83-1.25V205.41L363.1,67.09V240.72a5.16,5.16,0,0,1-2.3,4l-235.59,136A1.74,1.74,0,0,1,124.36,381Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M362.49,68.16V240.72a4.55,4.55,0,0,1-2,3.46l-235.6,136a1.12,1.12,0,0,1-.54.19c-.21,0-.21-.63-.21-.64v-174L362.49,68.16M363.72,66l-240.8,139V379.74c0,1.19.59,1.87,1.44,1.87a2.38,2.38,0,0,0,1.16-.36l235.59-136a5.75,5.75,0,0,0,2.61-4.52V66Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M120.46,213.09a5.61,5.61,0,0,1-2.45-4.43V188.28a5.76,5.76,0,0,1,2.61-4.52l235.59-136a4.91,4.91,0,0,1,7.51,4.34V72.46A5.76,5.76,0,0,1,361.11,77L125.52,213A5.61,5.61,0,0,1,120.46,213.09Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M363.69,51.65c-.18-1.35-1.28-1.84-2.58-1.08l-235.59,136a5.5,5.5,0,0,0-1.84,1.95l-4.9-2.83a5.38,5.38,0,0,1,1.84-1.94l235.59-136a4.87,4.87,0,0,1,7.48,3.9Z\",\n style: {\n fill: \"#fff\",\n opacity: 0.30000000000000004\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M123.68,188.53a5.22,5.22,0,0,0-.76,2.57V222L118,219.2V188.28c0-.11,0-.21,0-.32a6.32,6.32,0,0,1,.1-.65,6.21,6.21,0,0,1,.66-1.61Z\",\n style: {\n opacity: 0.2\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M363.72,52.08V66L202.25,159.34c-1.43.83-2.6.15-2.6-1.51v-5.28c0-1.67-1.17-2.34-2.62-1.51l-61.71,35.54a5.78,5.78,0,0,0-2.61,4.52v5.28a5.76,5.76,0,0,1-2.61,4.52l-7.18,4.15v-14a5.79,5.79,0,0,1,2.6-4.52l235.59-136C362.55,49.74,363.72,50.41,363.72,52.08Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M356.24,59.56c1.1-.64,2-.12,2,1.16a4.42,4.42,0,0,1-2,3.46c-1.11.64-2,.12-2-1.15A4.42,4.42,0,0,1,356.24,59.56Z\",\n style: {\n fill: \"#fff\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M349,63.72c1.1-.64,2-.13,2,1.15a4.44,4.44,0,0,1-2,3.47c-1.11.64-2,.12-2-1.16A4.41,4.41,0,0,1,349,63.72Z\",\n style: {\n fill: \"#fff\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M341.82,67.87c1.1-.64,2-.12,2,1.16a4.44,4.44,0,0,1-2,3.47c-1.11.64-2,.12-2-1.16A4.42,4.42,0,0,1,341.82,67.87Z\",\n style: {\n fill: \"#fff\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M363.72,66V83L122.92,222v-17l5.36-3.11c1.44-.83,1.92-2.09,2.61-4.52l1.82-6.32c.57-2.19,1.17-3.69,2.61-4.52L196,151.65c1.45-.83,2.58-.92,3.68.9l2.23,4c.82,1.41,1.23,2.25,2.66,1.42Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"122.92 205.05 122.92 222.03 118.01 219.2 118.01 202.23 122.92 205.05\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"122.92 205.05 122.92 222.03 118.01 219.2 118.01 202.23 122.92 205.05\",\n style: {\n opacity: 0.15\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M134.89,206.28l-4.1,2.36,1.57-3a.78.78,0,0,0,0-.74c-.12-.14-.33,0-.47.22l-2.22,4.28v0l-.06.16,0,0a1.64,1.64,0,0,0,0,.22,1.11,1.11,0,0,0,0,.19l0,0,.06.09h0l2.22,1.7a.18.18,0,0,0,.22,0,.68.68,0,0,0,.25-.31c.12-.28.1-.6,0-.7l-1.57-1.2,4.1-2.37a.87.87,0,0,0,.33-.7C135.22,206.31,135.07,206.17,134.89,206.28Z\",\n style: {\n opacity: 0.15\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M138.32,204.3l4.09-2.37-1.56-1.2c-.14-.1-.15-.41,0-.7s.33-.42.46-.31l2.23,1.71h0a.15.15,0,0,1,.06.09s0,0,0,0a.48.48,0,0,1,0,.18.91.91,0,0,1,0,.23l0,.05a.52.52,0,0,1-.06.16h0l-2.23,4.28a.6.6,0,0,1-.21.25.19.19,0,0,1-.25,0,.75.75,0,0,1,0-.74l1.56-3-4.09,2.37c-.19.1-.33,0-.33-.32A.86.86,0,0,1,138.32,204.3Z\",\n style: {\n opacity: 0.15\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M151.76,192.5c0-.25-.24-.22-.35.05l-.56,1.37c-1-.1-2.12.83-2.9,2.49-1,2.15-1,4.69,0,5.67a1.45,1.45,0,0,0,1.84.11,5.06,5.06,0,0,0,1.84-2.23.7.7,0,0,0,0-.72c-.13-.13-.34,0-.47.27-.75,1.6-2,2.31-2.75,1.58s-.75-2.62,0-4.23c.54-1.14,1.32-1.82,2-1.86l-.43,1c-.11.27,0,.52.17.4l1.67-1.09a.55.55,0,0,0,.19-.46Z\",\n style: {\n opacity: 0.15\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M194.17,159.4l1.5-3.16a1,1,0,0,0,0-1c-.18-.17-.47,0-.64.37l-1.5,3.17L192,157.35c-.18-.17-.46,0-.64.37a.94.94,0,0,0,0,1l1.49,1.44-1.49,3.16a1,1,0,0,0,0,1,.27.27,0,0,0,.32,0,.86.86,0,0,0,.32-.39l1.49-3.16,1.5,1.43a.24.24,0,0,0,.32,0,.87.87,0,0,0,.32-.39,1,1,0,0,0,0-1Z\",\n style: {\n opacity: 0.15\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M157.2,196.39V191.1a5.78,5.78,0,0,1,2.61-4.52L346.42,78.91c1.44-.83,2.61-.16,2.61,1.51V85.7a5.74,5.74,0,0,1-2.62,4.52L159.81,197.89C158.37,198.73,157.2,198.05,157.2,196.39Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M342.86,90.63a.59.59,0,0,1-.23,0,.69.69,0,0,1-.39-.79l.25-2.14-1-.72a.73.73,0,0,1-.28-.59,1.2,1.2,0,0,1,.43-.91l1.53-1.18a.25.25,0,0,0,.07-.12l.69-2.25a.94.94,0,0,1,.77-.73.61.61,0,0,1,.6.36l.58,1.22,1.29-.49a.61.61,0,0,1,.7.16.94.94,0,0,1,0,1l-1.11,2.08a.4.4,0,0,0,0,.13l.26,1.89a1.17,1.17,0,0,1-.32.94.71.71,0,0,1-.61.23l-1.25-.15-1.36,1.72A.76.76,0,0,1,342.86,90.63Zm-.74-4.36,1,.72a.79.79,0,0,1,.27.73l-.17,1.42.9-1.15a.71.71,0,0,1,.69-.33l1.25.15a.34.34,0,0,0,.05-.14l-.26-1.89a1.15,1.15,0,0,1,.13-.67l1-1.82-1,.38a.61.61,0,0,1-.79-.32l-.45-1-.61,2a1.11,1.11,0,0,1-.38.57l-1.54,1.19A.42.42,0,0,0,342.12,86.27Zm3.52-3.44Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.15\n }\n }, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M352.1,78.27a.91.91,0,0,1-.45-1.69L359,72.34a.9.9,0,1,1,.9,1.56l-7.34,4.25A1,1,0,0,1,352.1,78.27Z\"\n })), _path2 || (_path2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M352.1,82.51a.9.9,0,0,1-.78-.45.91.91,0,0,1,.33-1.24L359,76.58a.9.9,0,0,1,1.23.33.91.91,0,0,1-.33,1.24l-7.34,4.24A1,1,0,0,1,352.1,82.51Z\"\n })), _path3 || (_path3 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M352.1,86.75a.9.9,0,0,1-.45-1.68L359,80.83a.88.88,0,0,1,1.23.33.9.9,0,0,1-.33,1.23l-7.34,4.24A.86.86,0,0,1,352.1,86.75Z\"\n })))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M151.92,216.19v-1.43a2.72,2.72,0,0,1,1.23-2.13l36.95-21.31c.68-.39,1.24-.08,1.24.71v1.43a2.74,2.74,0,0,1-1.23,2.14l-36.95,21.3C152.47,217.3,151.92,217,151.92,216.19Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M147.9,218.71l-.11.07a4.89,4.89,0,0,0,.05-.66c0-1.77-1.08-2.58-2.4-1.82a4.65,4.65,0,0,0-1.61,1.75c-.06-2.13-1.39-3.1-3-2.15a7.28,7.28,0,0,0-3,5.81,4.35,4.35,0,0,0,.06.74l-.21.12a4.62,4.62,0,0,0-1.94,3.69h0c0,1.42.87,2.11,1.94,1.49l2.81-1.62h0l7.48-4.32a2.77,2.77,0,0,0,1.16-2.22h0C149.06,218.74,148.55,218.34,147.9,218.71Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--gear--inject-114\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M309.39,125.22l-.53,0s-.06,0-.06-.11a3,3,0,0,0,0-.44.29.29,0,0,1,0-.19l.52-.74a.18.18,0,0,0,0-.16l-.26-.56s-.07-.07-.1,0l-.58.62a.09.09,0,0,1-.12,0,.64.64,0,0,0-.25-.15.12.12,0,0,1,0-.13l.13-.83c0-.06,0-.11-.05-.1l-.62.07s-.08,0-.09.1l-.26.87a.18.18,0,0,1-.09.13,2.94,2.94,0,0,0-.39.26s-.08,0-.11,0l-.29-.44a.06.06,0,0,0-.1,0l-.61.75a.21.21,0,0,0,0,.16l.18.57a.22.22,0,0,1,0,.18c-.09.18-.18.36-.26.54a.18.18,0,0,1-.1.11l-.58.16a.16.16,0,0,0-.09.12l-.21.94c0,.06,0,.11,0,.11l.53,0s.07,0,.06.11,0,.3,0,.44a.27.27,0,0,1,0,.18l-.52.74a.17.17,0,0,0,0,.17l.25.56c0,.05.07.06.1,0l.58-.61a.09.09,0,0,1,.12,0,1.28,1.28,0,0,0,.25.15.12.12,0,0,1,.05.13l-.12.83c0,.06,0,.11.05.1l.61-.07a.16.16,0,0,0,.1-.11l.25-.87a.24.24,0,0,1,.09-.12,2.94,2.94,0,0,0,.39-.26s.08,0,.11,0l.29.44s.07,0,.1,0l.61-.75a.19.19,0,0,0,0-.17l-.18-.56a.31.31,0,0,1,0-.19,4.49,4.49,0,0,0,.26-.54.16.16,0,0,1,.1-.1l.58-.16a.16.16,0,0,0,.09-.12l.21-1S309.43,125.22,309.39,125.22Zm-1.45.74c-.19.86-.81,1.61-1.37,1.68s-.86-.58-.67-1.44.81-1.61,1.37-1.68S308.13,125.1,307.94,126Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n })), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M323.62,116.51v-1c0-1.09-.67-1.6-1.49-1.12h0a3.57,3.57,0,0,0-1.49,2.85v.85a3.44,3.44,0,0,1-.5,1.68h0a.87.87,0,0,0-.13.44h0c0,.27.17.4.38.28l3.48-2a.89.89,0,0,0,.37-.72h0a.35.35,0,0,0-.11-.29h0A1,1,0,0,1,323.62,116.51Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M322.84,119.41a1.73,1.73,0,0,1-.71,1.37c-.4.22-.72,0-.72-.55Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M349.66,99.69,354.32,97a.78.78,0,0,0,.33-.63h0c0-.24-.14-.36-.33-.25l-4.66,2.69a.81.81,0,0,0-.33.63h0C349.33,99.68,349.48,99.8,349.66,99.69Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M349.66,101.82l4.66-2.7a.75.75,0,0,0,.33-.62h0c0-.25-.14-.36-.33-.25l-4.66,2.69a.79.79,0,0,0-.33.63h0C349.33,101.81,349.48,101.92,349.66,101.82Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M349.66,103.94l4.66-2.69a.77.77,0,0,0,.33-.63h0c0-.24-.14-.35-.33-.25l-4.66,2.7a.78.78,0,0,0-.33.63h0C349.33,103.94,349.48,104.05,349.66,103.94Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M337.25,108.85l-3.11-1.66,6.58-3.79-3.11,5.25C337.5,108.83,337.36,108.91,337.25,108.85Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M337.63,109.72l3.09-6.1v6.3l-6.58,3.79v-6.29l3.09,2.53C337.34,110.05,337.52,110,337.63,109.72Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M359.52,109.44a.5.5,0,0,0-.68-.18L127.3,242.93a.51.51,0,0,0-.18.69.5.5,0,0,0,.43.25.59.59,0,0,0,.25-.07L359.34,110.12A.5.5,0,0,0,359.52,109.44Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M138.5,244.78q1.13-.65,1.71-.18a2.35,2.35,0,0,1,.59,1.89,5.87,5.87,0,0,1-.3,1.9,4.85,4.85,0,0,1-.89,1.57l1.24,2.71a.32.32,0,0,1,0,.14.53.53,0,0,1-.06.24.45.45,0,0,1-.14.18l-.77.44c-.11.07-.2.07-.26,0a.44.44,0,0,1-.12-.17L138.35,251l-1.2.69v3.23a.66.66,0,0,1-.07.3.54.54,0,0,1-.17.21l-.73.42a.12.12,0,0,1-.17,0,.28.28,0,0,1-.07-.22v-9a.73.73,0,0,1,.07-.31.46.46,0,0,1,.17-.21Zm-1.35,5.15,1.31-.76a2.37,2.37,0,0,0,.82-.75,2.19,2.19,0,0,0,.3-1.23c0-.51-.1-.8-.3-.86a1.1,1.1,0,0,0-.82.21l-1.31.75Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M146.16,248.33a.12.12,0,0,1,.17,0,.29.29,0,0,1,.07.22v1a.66.66,0,0,1-.07.3.46.46,0,0,1-.17.21l-3.95,2.28a.12.12,0,0,1-.17,0,.29.29,0,0,1-.07-.22v-9a.7.7,0,0,1,.07-.31.46.46,0,0,1,.17-.21l3.88-2.24a.13.13,0,0,1,.17,0,.32.32,0,0,1,.07.23v1a.73.73,0,0,1-.07.31.39.39,0,0,1-.17.2l-2.91,1.68V246l2.71-1.57a.13.13,0,0,1,.17,0,.32.32,0,0,1,.07.23v1a.73.73,0,0,1-.07.31.39.39,0,0,1-.17.2l-2.71,1.57v2.3Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M150.17,238c.73-.42,1.3-.48,1.7-.18s.6.95.6,2a5.72,5.72,0,0,1-.6,2.68,4.29,4.29,0,0,1-1.7,1.78l-1.43.83v3.09a.67.67,0,0,1-.08.3.34.34,0,0,1-.17.21l-.73.43a.14.14,0,0,1-.17,0,.28.28,0,0,1-.07-.22v-9a.66.66,0,0,1,.07-.3.42.42,0,0,1,.17-.21Zm-1.43,5.34,1.39-.81a2.36,2.36,0,0,0,.82-.78,2.41,2.41,0,0,0,.3-1.27c0-.51-.1-.81-.3-.89a1,1,0,0,0-.82.17l-1.39.81Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M153.24,239.89a8.42,8.42,0,0,1,.19-1.57,6.51,6.51,0,0,1,.49-1.47,5.33,5.33,0,0,1,.81-1.28,4.46,4.46,0,0,1,1.15-1,2.28,2.28,0,0,1,1.14-.37,1.12,1.12,0,0,1,.81.34,2.16,2.16,0,0,1,.5.9,5.83,5.83,0,0,1,.2,1.36c0,.17,0,.36,0,.57v1.32c0,.21,0,.41,0,.59a9.24,9.24,0,0,1-.2,1.57,6.59,6.59,0,0,1-.49,1.48,5.21,5.21,0,0,1-.81,1.26,4.24,4.24,0,0,1-1.15,1,2.32,2.32,0,0,1-1.15.37,1.15,1.15,0,0,1-.81-.33,1.93,1.93,0,0,1-.49-.91,5.36,5.36,0,0,1-.19-1.35c0-.17,0-.36,0-.57v-1.32C153.22,240.27,153.23,240.07,153.24,239.89Zm4.07-2.28a1.72,1.72,0,0,0-.42-1.3c-.25-.22-.59-.21-1,0a2.58,2.58,0,0,0-1,1.14,4.13,4.13,0,0,0-.42,1.78c0,.36,0,.75,0,1.18s0,.82,0,1.16a1.72,1.72,0,0,0,.42,1.3c.25.21.59.2,1,0a2.6,2.6,0,0,0,1-1.13,4.13,4.13,0,0,0,.42-1.78c0-.36,0-.75,0-1.18S157.32,238,157.31,237.61Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M162.28,231.06c.75-.44,1.32-.5,1.71-.19a2.35,2.35,0,0,1,.59,1.89,5.87,5.87,0,0,1-.31,1.9,4.7,4.7,0,0,1-.88,1.58l1.24,2.7a.35.35,0,0,1,0,.14.61.61,0,0,1-.06.25.41.41,0,0,1-.14.17l-.77.44c-.12.07-.21.08-.26,0a.38.38,0,0,1-.12-.17l-1.18-2.55-1.2.69v3.23a.66.66,0,0,1-.07.3.42.42,0,0,1-.17.21l-.73.43c-.07,0-.13,0-.17,0a.28.28,0,0,1-.08-.22v-9a.67.67,0,0,1,.08-.3.34.34,0,0,1,.17-.21Zm-1.35,5.14,1.31-.75a2.44,2.44,0,0,0,.81-.75,2.16,2.16,0,0,0,.31-1.23c0-.52-.1-.81-.31-.87a1.19,1.19,0,0,0-.81.21l-1.31.76Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M169.88,226.67a.14.14,0,0,1,.17,0,.29.29,0,0,1,.07.22v1a.66.66,0,0,1-.07.3.54.54,0,0,1-.17.21l-1.62.94v7.59a.67.67,0,0,1-.08.3.34.34,0,0,1-.17.21l-.73.43a.14.14,0,0,1-.17,0,.32.32,0,0,1-.07-.22V230l-1.62.93a.12.12,0,0,1-.17,0,.28.28,0,0,1-.07-.22v-1a.67.67,0,0,1,.07-.31.54.54,0,0,1,.17-.21Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"175.86 223.54 354.65 120.39 354.71 129.8 175.85 232.92 175.86 223.54\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M143.36,266.75a1,1,0,0,1-.5-1.87L256.6,199.22a1,1,0,0,1,1.36.36,1,1,0,0,1-.36,1.37L143.86,266.61A1,1,0,0,1,143.36,266.75Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M135.23,279.54a1,1,0,0,1-.5-1.87L256.6,207.32a1,1,0,0,1,1,1.73L135.73,279.41A1,1,0,0,1,135.23,279.54Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M135.23,287.64a1,1,0,0,1-.5-1.86L256.6,215.42a1,1,0,0,1,1,1.73L135.73,287.51A1,1,0,0,1,135.23,287.64Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M135.23,295.74a1,1,0,0,1-.86-.5,1,1,0,0,1,.36-1.36L256.6,223.52a1,1,0,0,1,1,1.73L135.73,295.61A1,1,0,0,1,135.23,295.74Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M135.23,303.85a1,1,0,0,1-.86-.5,1,1,0,0,1,.36-1.37L256.6,231.62a1,1,0,0,1,1,1.74L135.73,303.71A1,1,0,0,1,135.23,303.85Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M135.23,312a1,1,0,0,1-.86-.5,1,1,0,0,1,.36-1.37L256.6,239.73a1,1,0,0,1,1.36.36,1,1,0,0,1-.36,1.37L135.73,311.81A1,1,0,0,1,135.23,312Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M135.23,320.05a1,1,0,0,1-.86-.5,1,1,0,0,1,.36-1.37L256.6,247.83a1,1,0,0,1,1.36.36,1,1,0,0,1-.36,1.37L135.73,319.91A.9.9,0,0,1,135.23,320.05Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M143.36,331.56a1,1,0,0,1-.5-1.87L256.6,264a1,1,0,0,1,1,1.73L143.86,331.43A1,1,0,0,1,143.36,331.56Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M135.24,344.35a1,1,0,0,1-.51-1.86L256.6,272.13a1,1,0,0,1,1,1.73L135.73,344.22A1,1,0,0,1,135.24,344.35Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M135.24,352.45a1,1,0,0,1-.87-.5,1,1,0,0,1,.36-1.36L256.6,280.23a1,1,0,0,1,1,1.73L135.73,352.32A1,1,0,0,1,135.24,352.45Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M135.24,360.56a1,1,0,0,1-.5-1.87L256.6,288.33a1,1,0,0,1,1,1.74L135.74,360.42A1,1,0,0,1,135.24,360.56Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--bar-graph--inject-114\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M269.89,280.89l1.31.75a2.56,2.56,0,0,0,2.32,0L353,235.78a2.57,2.57,0,0,0,1.16-2V146.23a2.57,2.57,0,0,0-1.16-2l-1.31-.76a2.56,2.56,0,0,0-2.32,0l-79.44,45.87a2.57,2.57,0,0,0-1.16,2v87.53A2.57,2.57,0,0,0,269.89,280.89Z\",\n style: {\n fill: \"#f0f0f0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M273.52,281.64,353,235.78a2.57,2.57,0,0,0,1.16-2V146.23c0-.74-.52-1-1.16-.67l-79.44,45.87a2.57,2.57,0,0,0-1.16,2V281C272.36,281.71,272.88,282,273.52,281.64Z\",\n style: {\n fill: \"#fff\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M273,282a.81.81,0,0,1-.41-.11,1,1,0,0,1-.45-.95V193.44a2.8,2.8,0,0,1,1.27-2.21l79.44-45.86a1,1,0,0,1,1-.08,1,1,0,0,1,.45.94v87.54a2.76,2.76,0,0,1-1.28,2.2l-79.44,45.87A1.31,1.31,0,0,1,273,282Zm80.48-136.4a.81.81,0,0,0-.41.13l-79.44,45.86a2.36,2.36,0,0,0-1.05,1.82V281a.63.63,0,0,0,.23.56.62.62,0,0,0,.6-.08l79.44-45.87a2.34,2.34,0,0,0,1-1.81V146.23a.62.62,0,0,0-.23-.56A.38.38,0,0,0,353.48,145.63Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M273.35,281.73a2.6,2.6,0,0,1-2.15-.09l-1.31-.75a2.59,2.59,0,0,1-1.16-2V191.34a2.41,2.41,0,0,1,.34-1.15l3.63,2.1a2.41,2.41,0,0,0-.34,1.15V281C272.36,281.65,272.79,282,273.35,281.73Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--bar-graph--inject-114\"\n }, /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"332.68 238.64 332.68 190.92 328.42 188.46 328.42 236.18 332.68 238.64\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"332.68 238.64 332.68 190.92 328.42 188.46 328.42 236.18 332.68 238.64\",\n style: {\n opacity: 0.2\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"332.68 238.64 345.04 231.5 345.04 183.78 332.68 190.92 332.68 238.64\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"345.04 183.78 340.78 181.32 328.42 188.46 332.68 190.92 345.04 183.78\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"345.04 183.78 340.78 181.32 328.42 188.46 332.68 190.92 345.04 183.78\",\n style: {\n fill: \"#fff\",\n opacity: 0.25\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M345,183.78l-12.36,6.95-4.26-2.27,4.09,2.72c-.1,1.4,0,46,.17,47.46.18-1.42.26-46.16.17-47.5Z\",\n style: {\n fill: \"#fff\",\n opacity: 0.30000000000000004\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"309.51 252.02 309.5 213.69 305.25 211.23 305.25 249.56 309.51 252.02\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"309.51 252.02 309.5 213.69 305.25 211.23 305.25 249.56 309.51 252.02\",\n style: {\n fill: \"#fff\",\n opacity: 0.1\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"309.51 252.02 321.87 244.88 321.87 206.55 309.5 213.69 309.51 252.02\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"309.51 252.02 321.87 244.88 321.87 206.55 309.5 213.69 309.51 252.02\",\n style: {\n fill: \"#fff\",\n opacity: 0.30000000000000004\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"321.87 206.55 317.61 204.09 305.25 211.23 309.5 213.69 321.87 206.55\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"321.87 206.55 317.61 204.09 305.25 211.23 309.5 213.69 321.87 206.55\",\n style: {\n fill: \"#fff\",\n opacity: 0.55\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M309.67,213.78l12.2-7.23-12.36,6.95c-1.35-.76-4.26-2.27-4.26-2.27s2.72,1.74,4.09,2.54c0,1.45.07,36.77.17,38.25C309.6,250.54,309.71,215.18,309.67,213.78Z\",\n style: {\n fill: \"#fff\",\n opacity: 0.30000000000000004\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"286.33 265.39 286.33 233.22 282.07 230.76 282.08 262.94 286.33 265.39\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"286.33 265.39 286.33 233.22 282.07 230.76 282.08 262.94 286.33 265.39\",\n style: {\n opacity: 0.45\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"286.33 265.39 298.69 258.26 298.69 226.09 286.33 233.22 286.33 265.39\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"286.33 265.39 298.69 258.26 298.69 226.09 286.33 233.22 286.33 265.39\",\n style: {\n opacity: 0.30000000000000004\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"298.69 226.09 294.44 223.63 282.07 230.76 286.33 233.22 298.69 226.09\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"298.69 226.09 294.44 223.63 282.07 230.76 286.33 233.22 298.69 226.09\",\n style: {\n opacity: 0.15\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M298.7,226.08,286.33,233l-4.26-2.27,4.09,2.67s0,31.09.17,32c.19-.87.19-31.95.19-31.95Z\",\n style: {\n fill: \"#fff\",\n opacity: 0.30000000000000004\n }\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Arrow--inject-114\"\n }, /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"343.99 162.9 342.9 162.26 333.41 165.67 335.51 167.63 308.67 196.29 303.07 191.01 301.98 190.38 281.03 212.75 283.54 215.1 284.64 215.74 302.88 196.26 308.09 201.05 309.73 202 338.91 170.85 340.12 171.94 341.21 172.58 343.99 162.9\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"343.99 162.9 342.9 162.26 333.41 165.67 335.51 167.63 308.67 196.29 303.07 191.01 301.98 190.38 281.03 212.75 283.54 215.1 284.64 215.74 302.88 196.26 308.09 201.05 309.73 202 338.91 170.85 340.12 171.94 341.21 172.58 343.99 162.9\",\n style: {\n fill: \"#fff\",\n opacity: 0.25\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"343.99 162.9 341.21 172.58 339.12 170.62 309.73 202 303.23 195.88 284.64 215.74 282.12 213.38 303.07 191.01 309.57 197.13 336.6 168.27 334.51 166.31 343.99 162.9\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"303.23 195.88 302.88 196.26 308.09 201.05 309.73 202 303.23 195.88\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"303.23 195.88 302.88 196.26 308.09 201.05 309.73 202 303.23 195.88\",\n style: {\n opacity: 0.2\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"335.51 167.63 336.6 168.27 334.51 166.31 333.41 165.67 335.51 167.63\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"335.51 167.63 336.6 168.27 334.51 166.31 333.41 165.67 335.51 167.63\",\n style: {\n opacity: 0.2\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"338.91 170.85 339.12 170.62 341.21 172.58 340.12 171.94 338.91 170.85\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"338.91 170.85 339.12 170.62 341.21 172.58 340.12 171.94 338.91 170.85\",\n style: {\n opacity: 0.2\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"281.03 212.75 282.12 213.38 284.64 215.74 283.54 215.1 281.03 212.75\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"281.03 212.75 282.12 213.38 284.64 215.74 283.54 215.1 281.03 212.75\",\n style: {\n opacity: 0.2\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"289.03 206.01 303.07 191.48 309.57 197.13 303.07 191.01 289.03 206.01\",\n style: {\n fill: \"#fff\",\n opacity: 0.5\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"321.95 183.91 336.92 168.27 334.9 166.4 343.99 162.9 334.51 166.31 336.6 168.27 321.95 183.91\",\n style: {\n fill: \"#fff\",\n opacity: 0.5\n }\n }))))), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--window--inject-114\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Document--inject-114\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n id: \"freepik--shadow--inject-114\",\n d: \"M244.13,243.77v-3.91c0-2.78-1.95-3.9-4.36-2.51L142.9,293.29a9.63,9.63,0,0,0-4.36,7.55V454.58c0,2,1,3.11,2.41,3.11a4,4,0,0,0,2-.59l96.88-56a9.65,9.65,0,0,0,4.35-7.55Z\",\n style: {\n opacity: 0.15\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Sheet--inject-114\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M253,248.94l-6.23-3.63L142.66,307.16V457a3.08,3.08,0,0,0,1.27,2.82h0l4.74,2.76h0a3.08,3.08,0,0,0,3.09-.31l96.88-55.95a9.65,9.65,0,0,0,4.35-7.55Z\",\n style: {\n fill: \"#e6e6e6\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M143.93,459.82h0l4.74,2.76a2.27,2.27,0,0,0,1.14.28l-2.41-3.1V309.92l-4.75-2.76V457A3.08,3.08,0,0,0,143.93,459.82Z\",\n style: {\n opacity: 0.15\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M149.82,462.36a3.5,3.5,0,0,0,1.69-.52l96.88-55.95a9.08,9.08,0,0,0,4.11-7.11v-149l-104.59,60.4V459.76C147.91,461.39,148.62,462.36,149.82,462.36Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M252,250.68V398.77a8.67,8.67,0,0,1-3.86,6.68L151.26,461.4a3,3,0,0,1-1.44.46c-1.27,0-1.4-1.47-1.4-2.1V310.5L252,250.68m1-1.74-105.59,61V459.76c0,2,1,3.11,2.41,3.11a3.9,3.9,0,0,0,2-.6l96.88-55.95a9.65,9.65,0,0,0,4.35-7.55V248.94Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M247,239.48a3,3,0,0,0-3.12.28L147,295.71a9.63,9.63,0,0,0-4.36,7.55v3.9l4.75,2.76,105.59-61V245a3.07,3.07,0,0,0-1.26-2.81C251,241.79,247.73,239.92,247,239.48Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M147.41,306a9.63,9.63,0,0,1,4.36-7.54l96.87-56c2.41-1.39,4.36-.27,4.36,2.51v3.91l-105.59,61Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M147.41,306a9.63,9.63,0,0,1,4.36-7.54l96.87-56c2.41-1.39,4.36-.27,4.36,2.51v3.91l-105.59,61Z\",\n style: {\n fill: \"#fff\",\n opacity: 0.30000000000000004\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M251.78,242.25a3,3,0,0,0-3.14.27l-96.87,56a8.78,8.78,0,0,0-3.08,3.25L143.93,299a9.08,9.08,0,0,1,3.09-3.26l96.88-55.95a3,3,0,0,1,3.12-.27c.71.43,4,2.31,4.72,2.73Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M251.78,242.25a3,3,0,0,0-3.14.27l-96.87,56a8.78,8.78,0,0,0-3.08,3.25L143.93,299a9.08,9.08,0,0,1,3.09-3.26l96.88-55.95a3,3,0,0,1,3.12-.27c.71.43,4,2.31,4.72,2.73Z\",\n style: {\n fill: \"#fff\",\n opacity: 0.45\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M237.79,251.8a3.38,3.38,0,0,0-1.52,2.64c0,1,.68,1.36,1.52.87a3.35,3.35,0,0,0,1.52-2.63C239.31,251.71,238.63,251.32,237.79,251.8Z\",\n style: {\n fill: \"#fff\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M243.11,248.73a3.38,3.38,0,0,0-1.52,2.64c0,1,.68,1.36,1.52.88a3.38,3.38,0,0,0,1.52-2.64C244.63,248.64,244,248.25,243.11,248.73Z\",\n style: {\n fill: \"#fff\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M248.44,245.67a3.36,3.36,0,0,0-1.53,2.63c0,1,.69,1.37,1.53.88a3.35,3.35,0,0,0,1.52-2.63C250,245.58,249.28,245.18,248.44,245.67Z\",\n style: {\n fill: \"#fff\"\n }\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Article--inject-114\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M204.32,350.91a.59.59,0,0,1-.5-.29.57.57,0,0,1,.21-.78l40.23-23.23a.57.57,0,1,1,.57,1L204.6,350.83A.6.6,0,0,1,204.32,350.91Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M204.32,356.25a.57.57,0,0,1-.29-1.07L244.26,332a.58.58,0,0,1,.78.21.56.56,0,0,1-.21.78L204.6,356.17A.6.6,0,0,1,204.32,356.25Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M204.32,361.59a.58.58,0,0,1-.5-.28.57.57,0,0,1,.21-.78l40.23-23.23a.57.57,0,1,1,.57,1L204.6,361.52A.58.58,0,0,1,204.32,361.59Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M204.32,366.93a.58.58,0,0,1-.5-.28.57.57,0,0,1,.21-.78l40.23-23.23a.57.57,0,0,1,.57,1L204.6,366.86A.58.58,0,0,1,204.32,366.93Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M157,345.56a.59.59,0,0,1-.5-.29.57.57,0,0,1,.21-.78l40.23-23.23a.57.57,0,0,1,.78.21.56.56,0,0,1-.21.78l-40.23,23.23A.6.6,0,0,1,157,345.56Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M157,350.9a.57.57,0,0,1-.29-1.07l40.23-23.22a.57.57,0,1,1,.57,1l-40.23,23.22A.5.5,0,0,1,157,350.9Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M157,356.24a.58.58,0,0,1-.5-.28.57.57,0,0,1,.21-.78L196.92,332a.57.57,0,0,1,.78.21.56.56,0,0,1-.21.78l-40.23,23.23A.58.58,0,0,1,157,356.24Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M157,361.54a.58.58,0,0,1-.5-.28.57.57,0,0,1,.21-.78l40.23-23.23a.57.57,0,0,1,.78.21.56.56,0,0,1-.21.78l-40.23,23.23A.58.58,0,0,1,157,361.54Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M157,329.28a.58.58,0,0,1-.5-.28.57.57,0,0,1,.21-.78L196.92,305a.57.57,0,1,1,.57,1l-40.23,23.23A.58.58,0,0,1,157,329.28Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M157,334.63a.59.59,0,0,1-.5-.29.57.57,0,0,1,.21-.78l40.23-23.23a.57.57,0,0,1,.78.21.56.56,0,0,1-.21.78l-40.23,23.23A.6.6,0,0,1,157,334.63Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M157,339.93a.59.59,0,0,1-.5-.29.57.57,0,0,1,.21-.78l40.23-23.23a.57.57,0,0,1,.78.21.56.56,0,0,1-.21.78l-40.23,23.23A.6.6,0,0,1,157,339.93Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M157,366.89a.57.57,0,0,1-.29-1.07l40.23-23.23a.58.58,0,0,1,.78.21.56.56,0,0,1-.21.78l-40.23,23.23A.6.6,0,0,1,157,366.89Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M157,372.23a.57.57,0,0,1-.29-1.07l40.23-23.22a.57.57,0,1,1,.57,1l-40.23,23.22A.5.5,0,0,1,157,372.23Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M157,377.69a.58.58,0,0,1-.5-.28.57.57,0,0,1,.21-.78l40.23-23.23a.57.57,0,0,1,.57,1l-40.23,23.23A.58.58,0,0,1,157,377.69Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M157,383a.59.59,0,0,1-.5-.29.57.57,0,0,1,.21-.78l40.23-23.23a.57.57,0,0,1,.78.21.56.56,0,0,1-.21.78L157.26,383A.6.6,0,0,1,157,383Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M157,388.38a.57.57,0,0,1-.29-1.07l40.23-23.22a.57.57,0,0,1,.78.2.57.57,0,0,1-.21.79L157.26,388.3A.5.5,0,0,1,157,388.38Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M157,394a.58.58,0,0,1-.5-.28.57.57,0,0,1,.21-.78l40.23-23.23a.57.57,0,0,1,.78.21.56.56,0,0,1-.21.78L157.26,393.9A.58.58,0,0,1,157,394Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M158.87,311.6c.62-.36,1.08-.41,1.41-.15a2,2,0,0,1,.48,1.56,4.74,4.74,0,0,1-.25,1.57,4,4,0,0,1-.73,1.29l1,2.23a.23.23,0,0,1,0,.11.52.52,0,0,1,0,.21.34.34,0,0,1-.12.14l-.63.36c-.1.06-.17.07-.22,0a.45.45,0,0,1-.1-.14l-1-2.1-1,.57v2.66a.74.74,0,0,1-.05.25.37.37,0,0,1-.15.17l-.6.35a.11.11,0,0,1-.14,0,.24.24,0,0,1-.06-.18v-7.38a.57.57,0,0,1,.06-.25.41.41,0,0,1,.14-.17Zm-1.12,4.24,1.08-.62a1.91,1.91,0,0,0,.67-.62,1.75,1.75,0,0,0,.26-1c0-.43-.09-.66-.26-.71a.92.92,0,0,0-.67.17l-1.08.62Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M165.18,314.52a.12.12,0,0,1,.14,0,.25.25,0,0,1,.06.19v.81a.57.57,0,0,1-.06.25.41.41,0,0,1-.14.17l-3.26,1.88a.11.11,0,0,1-.14,0,.24.24,0,0,1-.06-.18v-7.38a.57.57,0,0,1,.06-.25.41.41,0,0,1,.14-.17l3.2-1.85a.11.11,0,0,1,.14,0,.24.24,0,0,1,.06.18V309a.62.62,0,0,1-.06.26.41.41,0,0,1-.14.17l-2.4,1.38v1.82l2.24-1.29a.11.11,0,0,1,.14,0,.24.24,0,0,1,.06.18v.81a.54.54,0,0,1-.06.25.39.39,0,0,1-.14.18l-2.24,1.29v1.89Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M168.49,306.05c.6-.35,1.06-.4,1.39-.16a2,2,0,0,1,.5,1.62,4.71,4.71,0,0,1-.5,2.21,3.58,3.58,0,0,1-1.39,1.47l-1.19.68v2.55a.57.57,0,0,1-.06.25.41.41,0,0,1-.14.17l-.6.35a.11.11,0,0,1-.14,0,.24.24,0,0,1-.06-.18v-7.38a.57.57,0,0,1,.06-.25.45.45,0,0,1,.14-.18Zm-1.19,4.39,1.15-.66a1.93,1.93,0,0,0,.68-.65,2,2,0,0,0,.25-1c0-.43-.09-.67-.25-.74a.82.82,0,0,0-.68.15l-1.15.66Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M171,307.57a7.22,7.22,0,0,1,.16-1.3,6.13,6.13,0,0,1,.4-1.21,4.8,4.8,0,0,1,.67-1.05,3.45,3.45,0,0,1,.95-.79,2,2,0,0,1,.94-.31,1,1,0,0,1,.67.28,1.79,1.79,0,0,1,.41.75,4.49,4.49,0,0,1,.16,1.11c0,.15,0,.3,0,.48s0,.35,0,.54,0,.37,0,.54,0,.34,0,.49a7.22,7.22,0,0,1-.16,1.3,5.54,5.54,0,0,1-.4,1.21,4.51,4.51,0,0,1-.67,1,3.61,3.61,0,0,1-.95.79,1.88,1.88,0,0,1-.95.31,1,1,0,0,1-.67-.27,1.78,1.78,0,0,1-.4-.75,4.56,4.56,0,0,1-.16-1.11c0-.15,0-.3,0-.48s0-.35,0-.54,0-.37,0-.54S171,307.72,171,307.57Zm3.36-1.88a1.44,1.44,0,0,0-.35-1.08c-.21-.18-.48-.17-.83,0a2.05,2.05,0,0,0-.83.93,3.54,3.54,0,0,0-.35,1.47c0,.3,0,.62,0,1s0,.68,0,1a1.45,1.45,0,0,0,.35,1.07c.21.18.48.16.83,0a2.14,2.14,0,0,0,.83-.92,3.39,3.39,0,0,0,.35-1.47c0-.3,0-.62,0-1S174.38,306,174.37,305.69Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M178.47,300.29q.92-.54,1.41-.15a1.93,1.93,0,0,1,.48,1.56,5,5,0,0,1-.25,1.56,4,4,0,0,1-.73,1.3l1,2.23a.2.2,0,0,1,0,.11.45.45,0,0,1,0,.2.35.35,0,0,1-.12.14l-.63.37c-.1.06-.17.06-.22,0a.44.44,0,0,1-.1-.15l-1-2.1-1,.57v2.67a.61.61,0,0,1-.06.25.35.35,0,0,1-.14.17l-.6.35a.12.12,0,0,1-.14,0,.25.25,0,0,1-.06-.19v-7.37a.62.62,0,0,1,.06-.26.41.41,0,0,1,.14-.17Zm-1.12,4.24,1.08-.62a2.11,2.11,0,0,0,.67-.62,1.79,1.79,0,0,0,.26-1c0-.42-.09-.66-.26-.71a.93.93,0,0,0-.67.18l-1.08.62Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M184.73,296.67a.11.11,0,0,1,.14,0,.24.24,0,0,1,.06.18v.82a.61.61,0,0,1-.06.25.41.41,0,0,1-.14.17l-1.34.77v6.26a.57.57,0,0,1-.06.25.35.35,0,0,1-.14.17l-.6.35a.11.11,0,0,1-.14,0,.24.24,0,0,1-.06-.18v-6.26l-1.34.77a.11.11,0,0,1-.14,0,.24.24,0,0,1-.06-.18v-.81a.62.62,0,0,1,.06-.26.41.41,0,0,1,.14-.17Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"189.66 294.09 246.89 261.02 246.94 268.77 189.65 301.82 189.66 294.09\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Chart--inject-114\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M222.13,294.89l0,18.47-11.23,17.9c-4-5.08-2.8-17.75,3.38-27.77C216.8,299.45,219,296.86,222.13,294.89Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M222.13,294.89l0,18.47-11.23,17.9c-4-5.08-2.8-17.75,3.38-27.77C216.8,299.45,219,296.86,222.13,294.89Z\",\n style: {\n fill: \"#fff\",\n opacity: 0.2\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M237.37,311.17c-2.22,11.23-10,21.66-17.59,23.52a7.48,7.48,0,0,1-7.58-1.86l11.29-18.26Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M237.37,311.17c-2.22,11.23-10,21.66-17.59,23.52a7.48,7.48,0,0,1-7.58-1.86l11.29-18.26Z\",\n style: {\n fill: \"#fff\",\n opacity: 0.30000000000000004\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M237.66,309.23l-13.29,3.26,7.46-19.64C236.59,294.64,238.83,300.93,237.66,309.23Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M230.43,292.72l-6.74,17.72V294A9.39,9.39,0,0,1,230.43,292.72Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M230.43,292.72l-6.74,17.72V294A9.39,9.39,0,0,1,230.43,292.72Z\",\n style: {\n fill: \"#fff\",\n opacity: 0.5\n }\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--chart--inject-114\"\n }, /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"244.26 399.06 157.17 449.35 157.17 402.61 244.26 352.32 244.26 351.32 156.98 401.71 156.42 402.04 156.42 450.78 244.26 400.07 244.26 399.06\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"244.26 383.15 156.98 433.54 156.61 434.76 244.26 384.15 244.26 383.15\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"244.26 367.24 156.98 417.63 156.61 418.85 244.26 368.24 244.26 367.24\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"244.26 399.32 243.51 400.25 243.51 352.51 244.26 351.57 244.26 399.32\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"233.38 405.6 232.63 406.54 232.63 358.79 233.38 357.86 233.38 405.6\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"222.49 411.89 221.74 412.82 221.74 365.08 222.49 364.14 222.49 411.89\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"211.6 418.17 210.85 419.11 210.85 371.36 211.6 370.43 211.6 418.17\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"200.72 424.46 199.97 425.39 199.97 377.65 200.72 376.71 200.72 424.46\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"189.83 430.74 189.08 431.68 189.08 383.93 189.83 383 189.83 430.74\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"178.94 437.03 178.19 437.96 178.19 390.22 178.94 389.28 178.94 437.03\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"168.06 443.31 167.3 444.25 167.3 396.5 168.06 395.57 168.06 443.31\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M156.77,443.2h0a.36.36,0,0,1-.36-.36.35.35,0,0,1,.37-.36h0c.27,0,.4-.92.47-1.47.11-.73.19-1.35.56-1.61a.33.33,0,0,1,.3-.06l.12-.39c.06-.21.12-.42.19-.6a5.19,5.19,0,0,1,.32-.63,2.62,2.62,0,0,0,.37-.9,11.78,11.78,0,0,0,.13-1.34,8,8,0,0,1,.38-2.55c.08-.15.28-.54.66-.47s.43.49.49.9a1.08,1.08,0,0,0,0,.25,1.58,1.58,0,0,1,.06.45c0,.05,0,.12,0,.17H161a.36.36,0,0,1,.31.23,2.75,2.75,0,0,1,.11.89,2.73,2.73,0,0,0,.07.65.43.43,0,0,0,.06.11l.05,0c0-.31,0-.64,0-1,0-1,0-2.13,1-2.43v-.85a14.13,14.13,0,0,1,.23-3.11,1.19,1.19,0,0,1,.34-.63.37.37,0,0,0,.12-.21,1.49,1.49,0,0,0,0-.36,2.34,2.34,0,0,1,0-.53c0-.18,0-.34.05-.48a2.76,2.76,0,0,1,.51-1.52.37.37,0,0,1,.28-.16,1.15,1.15,0,0,0,0-.18.36.36,0,0,1,.17-.33.35.35,0,0,1,.37,0c.42.24.48.91.56,1.69a5,5,0,0,0,.19,1.1,11.75,11.75,0,0,0,.29-1.64v-.12a.37.37,0,0,1,.33-.32.64.64,0,0,1,.43.14.76.76,0,0,1,.2.56v.07l.15.06a.41.41,0,0,1,.31.11h0l.2.27a2.48,2.48,0,0,0,.18.25,10.38,10.38,0,0,0,.05-1.57,9.77,9.77,0,0,1,.07-1.77,4.23,4.23,0,0,1,.52-1.5,4.76,4.76,0,0,0,.33-.72,10,10,0,0,0,.45-2.59,8.8,8.8,0,0,1,.84-3.61.38.38,0,0,1,.35-.18.33.33,0,0,1,.23.1c.21-.33.47-.56.78-.52.54.07.67.83.83,1.87a8.63,8.63,0,0,0,.26,1.2h0a.36.36,0,0,1,.34-.14.38.38,0,0,1,.29.24,12.21,12.21,0,0,1,.37,2.06l0,.21a.73.73,0,0,1,.48.17c0-.09.06-.22.1-.38a7,7,0,0,0,0-1.31c-.07-1.37-.07-2.29.37-2.67a.62.62,0,0,1,.28-.14,5.72,5.72,0,0,0,.17-.59c.14-.55.29-1.17.92-1.25.31-.05.52.12.62.49h.19l0-.08a8.5,8.5,0,0,0,.16-1.2,5.8,5.8,0,0,1,.4-2c.24-.5.55-.77.89-.74a1,1,0,0,1,.83.69.84.84,0,0,1,.46-.6l.08,0a.91.91,0,0,1,.21-.4.54.54,0,0,1,.48-.17c.36.05.56.42.7.69l.05.09a1.07,1.07,0,0,1,.07.15,1.77,1.77,0,0,0,0-.2c.07-.34.14-.63.37-.76a.52.52,0,0,1,.28-.06v-.07a1,1,0,0,1,.38-.94.47.47,0,0,1,.44,0,4.78,4.78,0,0,0,.16-1.26c0-.09,0-.19,0-.31a2.18,2.18,0,0,1,.15-1.26c.2-.34.43-.37.58-.34.37.08.43.53.46.75l.08.55c.08.54.17,1.1.2,1.69v.13a2.06,2.06,0,0,0,.27,1.2,1.51,1.51,0,0,1,.39,1.09,2.42,2.42,0,0,0,.26,1,1.57,1.57,0,0,1,.32.78,2.15,2.15,0,0,0,.06.29h0a.81.81,0,0,1,.37,0c0-.14.1-.32.16-.57l0-.11c0-.13.07-.34.12-.59a3.65,3.65,0,0,1,.55-1.75.44.44,0,0,1,.31-.14c0-.12,0-.27,0-.35l0-.42c0-.54.09-1,.45-1.17a.43.43,0,0,1,.17,0c.23-.68.52-1.47,1.16-1.37s.78,1,.91,1.78c0,.25.08.52.13.71a.53.53,0,0,0,0-.15,1.34,1.34,0,0,0,.05-.2,2,2,0,0,1,.14-.48.53.53,0,0,1,.26-.25,3.44,3.44,0,0,0,.3-1.61,6.32,6.32,0,0,1,.07-.9,15.31,15.31,0,0,1,.62-2.35l.11-.34c.07-.22.13-.52.2-.83a5.39,5.39,0,0,1,.46-1.54.38.38,0,0,1,.31-.17.46.46,0,0,1,.31.17,4.86,4.86,0,0,1,.43,2.22c0,.27,0,.53.06.77a1.64,1.64,0,0,0,.19.75.39.39,0,0,0,.13.13,1,1,0,0,1,.39.53,4,4,0,0,1,.07,1.12c0,.25,0,.49,0,.68a6,6,0,0,0,.23,1.15l.17,0c.71-.08.85.4,1,.87a1.17,1.17,0,0,0,.28.48l.17.23a3.06,3.06,0,0,1,.34,1.46l.12,1.45c.06.67.11,1.33.16,2,0,.14,0,.33,0,.55a7.64,7.64,0,0,0,.22,1.92,12.94,12.94,0,0,0,.13-2.94,8.45,8.45,0,0,1,0-.85,3,3,0,0,1,.38-1.2l.14-.3a4.44,4.44,0,0,0,.25-1.8v-.1c0-.1,0-.22,0-.36a5.1,5.1,0,0,1,.24-2.26.62.62,0,0,1,.54-.39.5.5,0,0,1,.35.22h.08c.09-.05.16-.39.21-.6.12-.58.2-1.1.28-1.61s.16-1,.27-1.56.18-.89.62-1.09a.45.45,0,0,1,.29,0,3.83,3.83,0,0,0,.28-.81,4.09,4.09,0,0,1,.31-.88,1.55,1.55,0,0,1,.2-.27l.07-.08a1.72,1.72,0,0,0,.25-.62l.08-.26a5,5,0,0,1,1-1.87.53.53,0,0,1,.7-.09c0-.16.12-.39.15-.53s.08-.3.12-.39a2.63,2.63,0,0,1,.55-1,1.06,1.06,0,0,1,1.19-.3c.86.37,1,1.85,1.16,3.15,0,.27.06.53.1.77a2.06,2.06,0,0,0,.22.85l.06.07a.87.87,0,0,1,.28.4,5,5,0,0,1,.12,1.51c0,.25,0,.49,0,.69v.31a8.66,8.66,0,0,0,.2,1.65,3.86,3.86,0,0,0,.16.48,4.33,4.33,0,0,1,.27.9c0,.19.06.38.08.58a5.59,5.59,0,0,0,.22,1.15,4,4,0,0,1,.11.39,4.77,4.77,0,0,0,.13.47.7.7,0,0,1,.21,0l.08,0a7.14,7.14,0,0,0,.25-1.44l0-.29c0-.49.13-1.17.68-1.37a.5.5,0,0,1,.55.16c0-.1,0-.22,0-.37v-.09c0-.29,0-.58,0-.88a7,7,0,0,1,.17-1.74,2.3,2.3,0,0,1,.31-.68.91.91,0,0,0,.18-.6v-2c0-.94,0-1.88,0-2.83v-.33a5.07,5.07,0,0,1,0-1c0-.18.06-.36.09-.53a4,4,0,0,0,.12-.81,2.8,2.8,0,0,1,.2-1,4.21,4.21,0,0,0,.12-.42l0-.14c.11-.54.23-1,.61-1.18a.56.56,0,0,1,.57.12,1.64,1.64,0,0,1,.41,1.22,1.77,1.77,0,0,0,.1.6l.08.15a2.2,2.2,0,0,1,.33,1.3c0,.19,0,.41,0,.62a3.79,3.79,0,0,0,.06,1.25,1.75,1.75,0,0,0,.2.35,1.72,1.72,0,0,1,.38.89c0,.11,0,.21,0,.32a1.28,1.28,0,0,0,0,.3s.06,0,.13.07a1,1,0,0,1,.4.29.86.86,0,0,1,.15.32,3.68,3.68,0,0,0,.11-.56,4.3,4.3,0,0,0,0-1.07,3.69,3.69,0,0,1,.26-2.14,2.49,2.49,0,0,1,.23-.31,1.38,1.38,0,0,0,.22-.35,4,4,0,0,0,.21-1l0-.15c0-.3.07-.59.1-.87a10.37,10.37,0,0,1,.33-2l.15-.42a4.5,4.5,0,0,0,.16-.48,4.93,4.93,0,0,0,.11-.87l0-.33a5.72,5.72,0,0,1,.53-1.8,8.64,8.64,0,0,0,.35-.92,11,11,0,0,0,.35-1.93,8.51,8.51,0,0,1,.71-2.94c.09-.16.34-.64.78-.57s.78,1,1,2.36c0,.23.07.42.09.49a.43.43,0,0,0,.22.22,1.22,1.22,0,0,1,.49.53,3.39,3.39,0,0,1,.17,1.2c0,.16,0,.3,0,.43a31.6,31.6,0,0,0,.86,4.48l.14.6c.05.19.08.42.12.66a3.21,3.21,0,0,0,.23,1,10.18,10.18,0,0,1,.95,4.39c0,.19,0,.39.05.59a.83.83,0,0,0,0-.15,1.76,1.76,0,0,1,.3-.76.7.7,0,0,1,.21-.18,6.43,6.43,0,0,0,.11-1.24c0-.12,0-.22,0-.28s0-.32,0-.49a4.1,4.1,0,0,1,.11-1.29,1,1,0,0,1,.38-.56.29.29,0,0,0,.1-.09,2.64,2.64,0,0,0,.24-.8c.12-.58.22-1.08.6-1.23a.6.6,0,0,1,.57.08.71.71,0,0,1,.15.15.29.29,0,0,1,.23,0,.58.58,0,0,1,.41.31,3.42,3.42,0,0,1,.22.58l.07.21c0-.24,0-.55-.05-1v-.14a5,5,0,0,1,.06-1.34c.08-.43.18-.86.28-1.3a15.43,15.43,0,0,0,.36-2l0-.2a3.6,3.6,0,0,1,.27-1.36c.07-.12.23-.4.52-.41h0a.38.38,0,0,1,.19,0c.06-.19.11-.45.15-.64.13-.66.25-1.24.64-1.41a.45.45,0,0,1,.42,0,.5.5,0,0,1,.24.28h0a.67.67,0,0,1,.62-.21c.3.08.4.37.48.59v0a8.84,8.84,0,0,0,.43-2.21c.17-1.37.27-2.1.71-2.31a.57.57,0,0,1,.56,0,.85.85,0,0,1,.32.55.42.42,0,0,1,.15,0c.15,0,.45,0,.67.48a7.77,7.77,0,0,1,.56,2.63l0,.27c0,.4.1.79.16,1.17a18.4,18.4,0,0,1,.21,1.9l0,.54c0,.45,0,.9.08,1.34a4.35,4.35,0,0,1,0,.53,4.08,4.08,0,0,0,.08.87,5,5,0,0,0,.56-1l.11-.23c.12-.27.24-.54.35-.82.19-.45.39-.92.62-1.34a1.74,1.74,0,0,1,.13-.2.54.54,0,0,0,.11-.18,1.85,1.85,0,0,0,.06-.25,1.28,1.28,0,0,1,.25-.66.5.5,0,0,1,.48-.19.41.41,0,0,1,.27.16c0-.12.06-.25.08-.36.08-.49.19-1.11.75-1.27a1.06,1.06,0,0,1,.85.21c.09.06.22.14.26.12s.22-.72.25-1.1a4.26,4.26,0,0,1,.13-.93,3.68,3.68,0,0,1,.55-1,1.3,1.3,0,0,1,.19-.17l.05-.05a.78.78,0,0,0,.08-.18,1.2,1.2,0,0,1,.14-.3,1.59,1.59,0,0,1,.46-.47,1,1,0,0,0,.36-.37.36.36,0,0,1,.49-.15.37.37,0,0,1,.15.49,1.7,1.7,0,0,1-.57.61,1,1,0,0,0-.28.27,1.05,1.05,0,0,0-.08.18,1.33,1.33,0,0,1-.16.34,1,1,0,0,1-.21.21,2.6,2.6,0,0,0-.48.84,3.8,3.8,0,0,0-.1.77c0,.66-.1,1.42-.66,1.69a1,1,0,0,1-.95-.15.65.65,0,0,0-.28-.13c-.12,0-.19.45-.23.7a1.75,1.75,0,0,1-.48,1.12.45.45,0,0,1-.61,0,2,2,0,0,1-.09.33,2.7,2.7,0,0,1-.19.33.73.73,0,0,0-.09.13,13.32,13.32,0,0,0-.58,1.26c-.12.29-.24.57-.37.84l-.1.23c-.33.72-.71,1.54-1.32,1.48s-.69-.93-.7-1.62c0-.17,0-.33,0-.47,0-.45-.06-.91-.08-1.38l0-.53a17.32,17.32,0,0,0-.21-1.83c0-.4-.11-.8-.16-1.2l0-.28a7.18,7.18,0,0,0-.5-2.37h0a.45.45,0,0,1-.45.08.67.67,0,0,1-.37-.49,14.32,14.32,0,0,0-.22,1.45c-.19,1.63-.35,2.63-.95,2.9a.59.59,0,0,1-.47,0,.84.84,0,0,1-.42-.58h0l0,.05a.63.63,0,0,1-.46.29.49.49,0,0,1-.39-.16v0l-.11.52c-.15.72-.27,1.28-.71,1.39a.39.39,0,0,1-.3,0,6,6,0,0,0-.12.91l0,.21a15.31,15.31,0,0,1-.38,2.07c-.09.42-.19.84-.26,1.26a3.73,3.73,0,0,0-.06,1.15v.13c.09,1,.09,1.77-.24,2.14a.45.45,0,0,1-.44.17c-.36-.08-.52-.52-.75-1.23,0-.09-.06-.21-.09-.29h-.08a.45.45,0,0,1-.48-.21c0,.17-.1.4-.14.56a2.74,2.74,0,0,1-.36,1.09,1.21,1.21,0,0,1-.24.23c-.07,0-.08.06-.12.19a3.68,3.68,0,0,0-.09,1.06,5,5,0,0,1,0,.55c0,.06,0,.15,0,.26a4.36,4.36,0,0,1-.19,1.56.55.55,0,0,1-.29.31,1.32,1.32,0,0,0-.16.45,1.62,1.62,0,0,1-.35.81.6.6,0,0,1-.66.23c-.24-.08-.39-.32-.42-.71s0-.58-.08-.87a9.9,9.9,0,0,0-.85-4.08,3.62,3.62,0,0,1-.33-1.25c0-.21-.06-.42-.1-.59l-.14-.6a31,31,0,0,1-.88-4.59c0-.14,0-.3,0-.47a2.75,2.75,0,0,0-.1-.92c0-.11-.1-.14-.22-.22a1.07,1.07,0,0,1-.5-.57,4.41,4.41,0,0,1-.13-.63,10.14,10.14,0,0,0-.39-1.66.35.35,0,0,1-.05.08,8.22,8.22,0,0,0-.64,2.7,11,11,0,0,1-.37,2.06,9.47,9.47,0,0,1-.37,1,5,5,0,0,0-.48,1.58l0,.31a6,6,0,0,1-.12,1c-.05.19-.12.37-.19.56a2.72,2.72,0,0,0-.13.37,8.3,8.3,0,0,0-.31,1.87c0,.29-.06.59-.1.9l0,.14a5,5,0,0,1-.26,1.17,1.63,1.63,0,0,1-.34.55,1.13,1.13,0,0,0-.15.21,3,3,0,0,0-.17,1.71,5.17,5.17,0,0,1,0,1.24c-.14.89-.31,1.31-.62,1.45a.52.52,0,0,1-.51,0,1,1,0,0,1-.34-.6,1.38,1.38,0,0,0-.09-.23.25.25,0,0,0-.12-.07.89.89,0,0,1-.44-.36,1.27,1.27,0,0,1-.14-.66,1.93,1.93,0,0,0,0-.24,1.07,1.07,0,0,0-.25-.57,2.15,2.15,0,0,1-.29-.51,4.24,4.24,0,0,1-.1-1.54c0-.2,0-.4,0-.58a1.5,1.5,0,0,0-.25-1l-.08-.16a2.14,2.14,0,0,1-.18-.89,2.85,2.85,0,0,0-.06-.52c0,.16-.08.36-.1.44a1.64,1.64,0,0,1,0,.18c0,.18-.1.33-.15.48a2.14,2.14,0,0,0-.16.75,4.36,4.36,0,0,1-.13,1c0,.16-.07.32-.09.48a5.88,5.88,0,0,0,0,.85v.34c0,.94,0,1.88,0,2.81,0,.67,0,1.34,0,2a1.66,1.66,0,0,1-.29,1,1.37,1.37,0,0,0-.22.47,6.91,6.91,0,0,0-.15,1.57c0,.32,0,.63,0,.94v.08a2.2,2.2,0,0,1-.28,1.17.51.51,0,0,1-.4.18.64.64,0,0,1-.48-.37,3.55,3.55,0,0,0-.11.62l0,.29c-.14,1.24-.3,2-.75,2.21a.56.56,0,0,1-.36,0,.57.57,0,0,1-.13-.08.48.48,0,0,1-.45-.1,2,2,0,0,1-.4-1,2.93,2.93,0,0,0-.09-.33,7.3,7.3,0,0,1-.26-1.3c0-.19,0-.37-.07-.56a4.66,4.66,0,0,0-.23-.75c-.07-.18-.14-.36-.19-.54a9.15,9.15,0,0,1-.22-1.81v-.3a6,6,0,0,1,0-.74,5.31,5.31,0,0,0-.08-1.28s0,0-.08-.09a.9.9,0,0,1-.18-.2,2.67,2.67,0,0,1-.34-1.16c0-.24-.06-.51-.09-.79-.11-.94-.26-2.36-.74-2.57a.37.37,0,0,0-.38.14,2.06,2.06,0,0,0-.39.74c0,.07-.06.19-.1.33a2.32,2.32,0,0,1-.44,1.05.5.5,0,0,1-.7,0,4.58,4.58,0,0,0-.7,1.47l-.07.25a2.6,2.6,0,0,1-.35.82,2.11,2.11,0,0,1-.15.19.24.24,0,0,0-.09.12,3.24,3.24,0,0,0-.24.71,2.33,2.33,0,0,1-.61,1.27.49.49,0,0,1-.41.09,1.46,1.46,0,0,0-.17.53c-.1.51-.18,1-.26,1.53s-.16,1.05-.27,1.58-.26,1.24-.87,1.25l-.07.06a.38.38,0,0,1-.33.07l-.1-.05a8.59,8.59,0,0,0,0,1.59c0,.15,0,.28,0,.38v.11a4.93,4.93,0,0,1-.31,2.09q-.07.18-.15.33a2.32,2.32,0,0,0-.31.95c0,.1,0,.42,0,.76.08,2.45,0,3.64-.72,3.76a.62.62,0,0,1-.52-.15c-.45-.37-.52-1.33-.55-2.55,0-.2,0-.38,0-.51-.05-.67-.1-1.34-.16-2l-.12-1.45a2.72,2.72,0,0,0-.22-1.11.86.86,0,0,0-.14-.18,2,2,0,0,1-.39-.71,1.76,1.76,0,0,0-.14-.39h-.09l-.12,0a.63.63,0,0,1-.8-.45,7.24,7.24,0,0,1-.28-1.34,6.68,6.68,0,0,1,0-.78,3.44,3.44,0,0,0,0-.89c0-.07,0-.1-.15-.17a1.35,1.35,0,0,1-.3-.32,2.27,2.27,0,0,1-.29-1.05c0-.26,0-.53-.06-.81s0-.51-.05-.76l0,.18c-.07.33-.14.65-.22.91l-.11.34a14,14,0,0,0-.6,2.24,6.56,6.56,0,0,0-.06.82,3.72,3.72,0,0,1-.45,2,.68.68,0,0,1-.19.17c0,.07-.05.18-.07.28s-.06.23-.07.26c-.14.42-.32.88-.71.9s-.55-.35-.61-.48a4.34,4.34,0,0,1-.26-1.1,4.37,4.37,0,0,0-.29-1.15,4.13,4.13,0,0,0-.42.95l-.08.24a.39.39,0,0,1-.24.23.47.47,0,0,1-.17,0c0,.14,0,.34-.06.47l0,.42a1.58,1.58,0,0,1-.24.88.42.42,0,0,1-.38.15,8.94,8.94,0,0,0-.29,1.28c-.05.27-.09.51-.13.65l0,.1c-.26,1-.41,1.3-.67,1.38a.45.45,0,0,1-.36,0,.46.46,0,0,1-.2-.27c-.2,0-.56,0-.7-.55,0-.12-.05-.23-.07-.32a1,1,0,0,0-.18-.48,2.63,2.63,0,0,1-.4-1.37c-.05-.49-.06-.52-.21-.67a2.52,2.52,0,0,1-.46-1.65v-.13c0-.17,0-.34,0-.51a3.23,3.23,0,0,1-.26,1.08.63.63,0,0,1-.43.39.49.49,0,0,1-.25,0,1.34,1.34,0,0,0,0,.2,1.38,1.38,0,0,1-.15.68.57.57,0,0,1-.49.33h0c-.08.39-.16.79-.47,1a.48.48,0,0,1-.39,0c-.27-.09-.42-.39-.53-.63l-.06-.12-.06-.1a1.47,1.47,0,0,0-.09-.17s0,0,0,.06a1,1,0,0,1-.42.68.42.42,0,0,1-.15,0,1.17,1.17,0,0,1-.22.41.53.53,0,0,1-.53.2c-.3-.07-.39-.37-.45-.57l0-.1a.88.88,0,0,0-.25-.37,1.22,1.22,0,0,0-.2.33,5.15,5.15,0,0,0-.34,1.76,8.38,8.38,0,0,1-.18,1.32c-.09.36-.15.73-.6.68h-.08a.32.32,0,0,1-.17.1.4.4,0,0,1-.54-.11.76.76,0,0,1-.18-.41,2.75,2.75,0,0,0-.18.57,4.41,4.41,0,0,1-.31.93.37.37,0,0,1-.4.2,6.08,6.08,0,0,0-.09,2.06,6.62,6.62,0,0,1,0,1.52c-.16.69-.29,1-.59,1.1a.59.59,0,0,1-.56-.23l-.1-.1-.09.06a.36.36,0,0,1-.6-.22q0-.33-.09-.69c-.06-.5-.12-1-.21-1.44a.71.71,0,0,1-.25,0c-.5-.13-.62-.87-.79-1.89A8.6,8.6,0,0,0,171,415a4.08,4.08,0,0,0-.33.6.36.36,0,0,1-.37.2.36.36,0,0,1-.18-.07,9.69,9.69,0,0,0-.48,2.71,10.76,10.76,0,0,1-.49,2.77,5.73,5.73,0,0,1-.37.82,3.51,3.51,0,0,0-.45,1.27,10,10,0,0,0-.06,1.64,9.23,9.23,0,0,1-.12,2.12.36.36,0,0,1-.18.24c-.6.33-1-.3-1.25-.61l0-.06a1.74,1.74,0,0,1-.4-.16,6.38,6.38,0,0,1-.24,1.05.36.36,0,0,1-.13.19.79.79,0,0,1-.79.15c-.47-.22-.55-.92-.63-1.74,0-.13,0-.29-.05-.46a.27.27,0,0,1-.15,0,2.21,2.21,0,0,0-.26,1c0,.16,0,.33-.06.53a2.13,2.13,0,0,0,0,.35,1.81,1.81,0,0,1,0,.57,1,1,0,0,1-.32.58.53.53,0,0,0-.15.27,14.54,14.54,0,0,0-.21,3c0,.4,0,.79,0,1.16a.36.36,0,0,1-.32.35c-.58.06-.65.59-.65,1.78a5.78,5.78,0,0,1-.19,1.74.36.36,0,0,1-.34.25h0a.36.36,0,0,1-.34-.24.32.32,0,0,0,0-.1.84.84,0,0,1-.62-.55,2.75,2.75,0,0,1-.12-.91c0-.15,0-.31,0-.45a.61.61,0,0,1-.44-.32,1.46,1.46,0,0,1-.09-.52,1.3,1.3,0,0,0,0-.23,0,0,0,0,1,0,0c-.07.49-.12,1.18-.16,1.69a13.6,13.6,0,0,1-.14,1.45,3.43,3.43,0,0,1-.46,1.12,5.18,5.18,0,0,0-.27.53c-.06.16-.11.34-.17.53a2.26,2.26,0,0,1-.67,1.3.31.31,0,0,1-.19.06c0,.21-.07.43-.09.6C157.83,442,157.67,443.2,156.77,443.2Zm3.57-10.08Zm16.2-18.55Zm5.05-4.61Zm.59-1.48Zm41.71-11.82Zm5.32-13.26Z\",\n style: {\n fill: \"#407BFF\"\n }\n })), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"217.72 371 220.54 369.37 220.54 374.54 219.13 377.69 217.72 376.17 217.72 371\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"217.72 371 220.54 369.37 220.54 374.54 219.13 377.69 217.72 376.17 217.72 371\",\n style: {\n fill: \"#fff\",\n opacity: 0.30000000000000004\n }\n })))), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--document--inject-114\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--PDF--inject-114\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M77.31,200.34v63.39a3,3,0,0,1-1.37,2.36L30.09,292.57a1,1,0,0,1-1,.09c-.24-.14-2.31-1.33-2.55-1.48a.94.94,0,0,1-.4-.88V213.73a3,3,0,0,1,1.36-2.36L62,191.49Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M77.31,200.34v63.39a3,3,0,0,1-1.37,2.36L30.09,292.57a1,1,0,0,1-1,.09c-.24-.14-2.31-1.33-2.55-1.48a.94.94,0,0,1-.4-.88V213.73a3,3,0,0,1,1.36-2.36L62,191.49Z\",\n style: {\n fill: \"#fff\",\n opacity: 0.45\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M31.29,215.11l-4.76-2.64a2.73,2.73,0,0,0-.35,1.26V290.3a1,1,0,0,0,.4.89l2.55,1.47a1,1,0,0,0,1-.09l1.19-.69Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M77.31,200.34v63.39a3,3,0,0,1-1.37,2.36L30.1,292.57c-.75.43-1.36.08-1.36-.79V215.21a3,3,0,0,1,1.36-2.36l26.75-15.46L64.52,193Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M64.52,193.69l12.16,7v63a2.39,2.39,0,0,1-1.05,1.82L29.78,292a.61.61,0,0,1-.29.1c-.12,0-.12-.33-.12-.34V215.21a2.38,2.38,0,0,1,1-1.82l26.76-15.46,7.35-4.24m0-.73-7.67,4.43L30.1,212.85a3,3,0,0,0-1.36,2.36v76.57c0,.61.3,1,.75,1a1.31,1.31,0,0,0,.61-.18l45.84-26.48a3,3,0,0,0,1.37-2.36V200.34L64.52,193Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M72.46,200.71c.53,0,.9.42.9,1.16V234a3.59,3.59,0,0,1-1.62,2.8L35.5,257.68a1.45,1.45,0,0,1-.72.22c-.53,0-.9-.42-.9-1.15V224.66a3.58,3.58,0,0,1,1.62-2.8L60,207.7l11.73-6.77a1.48,1.48,0,0,1,.72-.22m0-.67a2.11,2.11,0,0,0-1.06.31l-11.73,6.77L35.16,221.27a4.27,4.27,0,0,0-1.95,3.39v32.09a1.64,1.64,0,0,0,1.57,1.83,2.21,2.21,0,0,0,1.06-.31l36.24-20.93A4.27,4.27,0,0,0,74,234V201.87A1.64,1.64,0,0,0,72.46,200Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M64.53,206.14V193l12.78,7.38-11.42,6.59C65.14,207.36,64.53,207,64.53,206.14Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M47.94,257.45a4.36,4.36,0,0,0-2,3.42l.07,12.6c0,1.26.89,1.77,2,1.14l31.34-18.2v-17.1Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M47.94,257.45a4.36,4.36,0,0,0-2,3.42l.07,12.6c0,1.26.89,1.77,2,1.14l31.34-18.2v-17.1Z\",\n style: {\n fill: \"#fff\",\n opacity: 0.5\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"79.36 239.31 77.31 238.13 77.31 240.5 79.36 239.31\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"79.36 239.31 77.31 238.13 77.31 240.5 79.36 239.31\",\n style: {\n opacity: 0.30000000000000004\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M54.49,264.78l-.83.48a.54.54,0,0,0-.17.21.82.82,0,0,0-.07.3v1.34a.34.34,0,0,0,.07.22.15.15,0,0,0,.17,0l.83-.48a.54.54,0,0,0,.17-.21.82.82,0,0,0,.07-.3V265a.34.34,0,0,0-.07-.22A.15.15,0,0,0,54.49,264.78Zm11.67-13.2a1.11,1.11,0,0,0-.81-.29,2.57,2.57,0,0,0-1.14.39L62,253a.35.35,0,0,0-.17.2.66.66,0,0,0-.07.3v8.83a.28.28,0,0,0,.07.22c0,.05.1.05.17,0l2.23-1.29a4.3,4.3,0,0,0,1.12-.91,5.26,5.26,0,0,0,.79-1.21,7,7,0,0,0,.49-1.48,9,9,0,0,0,.21-1.68c0-.68,0-1.36,0-2a5.78,5.78,0,0,0-.21-1.44A1.93,1.93,0,0,0,66.16,251.58Zm-.5,5a4.42,4.42,0,0,1-.11.89,3.5,3.5,0,0,1-.27.81,3.11,3.11,0,0,1-.44.69,2.43,2.43,0,0,1-.63.52l-1.24.71V254.1l1.19-.69a1.5,1.5,0,0,1,.66-.22.67.67,0,0,1,.46.17,1.14,1.14,0,0,1,.27.5,2.82,2.82,0,0,1,.11.75C65.69,255.27,65.69,256,65.66,256.63Zm6.56-9.47a.12.12,0,0,0-.16,0l-3.8,2.19a.37.37,0,0,0-.16.2.7.7,0,0,0-.07.31v8.83a.25.25,0,0,0,.07.21.11.11,0,0,0,.16,0l.72-.41a.46.46,0,0,0,.17-.21.66.66,0,0,0,.07-.3v-3.13l2.66-1.53a.54.54,0,0,0,.17-.21.82.82,0,0,0,.07-.3v-1a.34.34,0,0,0-.07-.22.14.14,0,0,0-.17,0l-2.66,1.54v-2.66l2.84-1.63a.45.45,0,0,0,.16-.21.66.66,0,0,0,.07-.3v-1A.29.29,0,0,0,72.22,247.16ZM58.54,255l-2.38,1.37a.45.45,0,0,0-.16.21.67.67,0,0,0-.08.3v8.83a.29.29,0,0,0,.08.22.11.11,0,0,0,.16,0l.72-.41a.41.41,0,0,0,.17-.21.66.66,0,0,0,.07-.3v-3.05l1.42-.82a4.18,4.18,0,0,0,1.67-1.76,5.53,5.53,0,0,0,.6-2.64c0-1-.2-1.64-.6-1.93S59.26,254.54,58.54,255Zm.77,3.69a2.33,2.33,0,0,1-.81.78l-1.38.79v-2.73l1.38-.8a1,1,0,0,1,.81-.17c.2.08.3.38.3.89A2.3,2.3,0,0,1,59.31,258.64Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M41.16,246.38a2.6,2.6,0,0,1-1.33-.35c-1.11-.64-1.75-2.08-1.75-3.95,0-3.35,2.05-7.25,4.57-8.71l.23-.13a11.29,11.29,0,0,1-.09-1.45c0-5.17,3.17-11.22,7.07-13.47a4.82,4.82,0,0,1,4.86-.39,5.64,5.64,0,0,1,2.52,4.3,10.06,10.06,0,0,1,3.09-3,3.93,3.93,0,0,1,4-.29c1.33.77,2.09,2.51,2.09,4.76q0,.38,0,.75a2,2,0,0,1,1.68.08A2.74,2.74,0,0,1,69.16,227a6.65,6.65,0,0,1-2.83,5.37L43.08,245.81A3.87,3.87,0,0,1,41.16,246.38ZM52.8,218.29a5.11,5.11,0,0,0-2.52.77c-3.66,2.11-6.64,7.83-6.64,12.73a10.42,10.42,0,0,0,.12,1.61.42.42,0,0,1-.21.43l-.47.28c-2.29,1.32-4.15,4.89-4.15,8,0,1.56.48,2.73,1.32,3.22a2.36,2.36,0,0,0,2.4-.22l23.26-13.43a5.89,5.89,0,0,0,2.4-4.63,1.94,1.94,0,0,0-.69-1.75,1.32,1.32,0,0,0-1.29.14l-.25.14a.43.43,0,0,1-.45,0,.43.43,0,0,1-.18-.41,10.12,10.12,0,0,0,.1-1.43c0-1.94-.61-3.41-1.66-4a3.09,3.09,0,0,0-3.13.29,9.91,9.91,0,0,0-3.46,3.77.44.44,0,0,1-.48.21.44.44,0,0,1-.32-.4c-.07-2.36-.86-4.14-2.19-4.88A3.08,3.08,0,0,0,52.8,218.29Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M50.69,230.37a.41.41,0,0,0,.21,0,.49.49,0,0,0,.45-.29l1.43-3v5.35a.5.5,0,0,0,1,0v-6.41l1.53,1.47a.5.5,0,0,0,.71,0,.5.5,0,0,0,0-.71l-2.38-2.29a.49.49,0,0,0-.8.14l-2.38,5A.5.5,0,0,0,50.69,230.37Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M56.7,228.8a.5.5,0,0,0-.5.5v3l-5.84,3.37v-2.45a.5.5,0,0,0-.5-.5.5.5,0,0,0-.5.5v3.32a.5.5,0,0,0,.25.43.47.47,0,0,0,.25.07.43.43,0,0,0,.25-.07L57,233.06a.5.5,0,0,0,.25-.44V229.3A.5.5,0,0,0,56.7,228.8Z\",\n style: {\n fill: \"#407BFF\"\n }\n }))), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Character--inject-114\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--character--inject-114\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Bottom--inject-114\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M466.9,378.63c-.87-12,.57-25.18-.43-43.91h0c-.08-4.8-.26-9.94-.58-14.51-1.08-15.37-3.45-20.62-3.67-23.59,0,0-1.17-29.45-2.17-63.09-.47-15.82-5.06-20.61-8.72-29H407.79c-4.87,20.73-6.25,65.92-6.11,87.27.08,10.89,4.47,69.14,4.56,70.48.31,4.75-.1,6.62-2,8.62-3.9,4.19-9.55,8.17-14.44,11.82.71,1.87,6.59,1.81,9.5.38a73.55,73.55,0,0,0,10.85-6.92c4-3,9.15-5.36,9.21-9.88a4.54,4.54,0,0,1,.14-.81c.07-2.64,6.23-41.6,6.75-50.64.44-7.78-.51-21-.51-21l5-32.93s3.85,25,7,38.29c2.55,10.82,6.75,29.28,9.62,42.59h0c2.75,15.34,6.7,30.25,7.39,37.93.22,1.83,2.29,19.82,3.15,23.95s9.84,4.23,10.41-2.86C468.72,396.12,467.07,380.89,466.9,378.63Z\",\n style: {\n fill: \"#ffbda7\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M381.51,387.5c-.25,0-.65,2.73.68,3.91,1.55,1.36,6.1,3.62,12.15,2.9s9.35-2.55,11.79-4.55,5.86-4.82,8.6-5.39c2.55-.54,5.32-1.66,6.14-2.44s.75-4.26.75-4.26Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M419.66,364.2s.45,0,.6.83c.17,1,.35,3.77.73,5.35a28.33,28.33,0,0,1,.5,8.49c-.35,1.78-4.51,3-7.16,4a33.67,33.67,0,0,0-8.63,5.32,25,25,0,0,1-12.81,4.62c-6,0-9.89-1.65-11.07-3.83-1.46-2.69-.28-4.23,6.67-7.36,1.31-.59,5.94-3.26,7.51-4.23a34.16,34.16,0,0,0,4.74-3.45,27.79,27.79,0,0,0,2.14-2.06,9.4,9.4,0,0,0,1.77-2.22c.08-.18.14-.4.21-.58a10.33,10.33,0,0,0,.47-1.62c.12-.57.19-1.41.75-1.75a4.6,4.6,0,0,1,2.47-.26,18.36,18.36,0,0,1,2.66.4c1,.24,2.19.34,2.78,1.31a5,5,0,0,1,.55,2.51c0,.4,0,.81,0,1.21,0,.17-.08.48.16.41s.5-.66.58-.87c.2-.45.33-.93.54-1.37a7.17,7.17,0,0,1,.88-1.46,6.8,6.8,0,0,1,1.11-1.1c.37-.29.85-.43,1.19-.75A2.92,2.92,0,0,0,419.66,364.2Z\",\n style: {\n fill: \"#37474f\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M387.37,382.1c8.7.69,11.38,6.1,11.72,9.43a20.76,20.76,0,0,1-6.2,1.24c-6,0-10.14-1.65-11.32-3.83C380.19,386.4,381.17,384.38,387.37,382.1Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M400.42,382.33a.46.46,0,0,0,.27-.09.44.44,0,0,0,.07-.6,10.25,10.25,0,0,0-7.84-3.19.43.43,0,0,0-.39.46.43.43,0,0,0,.47.39,9.45,9.45,0,0,1,7.09,2.87A.44.44,0,0,0,400.42,382.33Z\",\n style: {\n fill: \"#f0f0f0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M404.19,380.18a.44.44,0,0,0,.27-.09.42.42,0,0,0,.07-.6,10.23,10.23,0,0,0-7.84-3.19.43.43,0,0,0,.08.85,9.49,9.49,0,0,1,7.1,2.87A.39.39,0,0,0,404.19,380.18Z\",\n style: {\n fill: \"#f0f0f0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M407.69,377.73a.39.39,0,0,0,.27-.1.42.42,0,0,0,.07-.6,10.26,10.26,0,0,0-7.84-3.18.42.42,0,1,0,.08.84,9.5,9.5,0,0,1,7.1,2.88A.45.45,0,0,0,407.69,377.73Z\",\n style: {\n fill: \"#f0f0f0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M411.13,375.27a.43.43,0,0,0,.34-.69c-1.65-2.12-5.4-3.55-8.57-3.24a.43.43,0,0,0,.08.85c2.85-.28,6.35,1,7.81,2.91A.47.47,0,0,0,411.13,375.27Z\",\n style: {\n fill: \"#f0f0f0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M455.1,406.91c.24,4.1.87,6.83,2.33,9.24s4.21,3.16,7,2.46,6.35-2.59,7.15-6.14,1.27-6,.63-9.78Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M466.8,377.16c1.15.09,1.49,5.61,2.15,11.13.71,5.92,2.48,8.37,3.11,13.22.72,5.55-.19,8-2.14,11.37s-8.82,6.65-12.21,1.84c-2.76-3.91-2.87-8.25-2.62-13.79a124.28,124.28,0,0,0-.37-14c-.22-4.15-1.14-8.33-.15-8.8.08.61.16,1.39.24,2a9.73,9.73,0,0,0,.37,2.21c.11.31.37.63.47.13a3.24,3.24,0,0,0,0-1c-.16-1.53.61-1.66,1-1.77a50.08,50.08,0,0,1,5.32-.76c.88-.06,3.91-.19,4.3.31a3.47,3.47,0,0,1,.38,1.6c.1.84.3,1.45.32,1.19.05-.6-.06-2.15-.08-2.53s-.07-.85-.07-1.21S466.83,377.52,466.8,377.16Z\",\n style: {\n fill: \"#37474f\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M472.38,404.72a13.83,13.83,0,0,1-2.15,8.43c-1.94,3.35-9.37,6.65-12.76,1.85-1.69-2.39-2.14-5.21-2.37-8.1C457.13,403.2,469.17,401.57,472.38,404.72Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M457.6,400.88l.14,0c.05,0,5.36-2.22,10.53-1a.44.44,0,0,0,.51-.32.43.43,0,0,0-.32-.51,19.87,19.87,0,0,0-11.08,1.08.41.41,0,0,0-.2.57A.43.43,0,0,0,457.6,400.88Z\",\n style: {\n fill: \"#f0f0f0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M468,395.68a.42.42,0,0,0,.09-.82c-5.14-1.75-10.85.87-11.06,1a.43.43,0,0,0-.18.58.44.44,0,0,0,.57.18c.05,0,5.61-2.56,10.4-.94A.37.37,0,0,0,468,395.68Z\",\n style: {\n fill: \"#f0f0f0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M467.83,391.79a.43.43,0,0,0,.1-.83c-5.66-2-11.08.83-11.28,1a.42.42,0,0,0-.14.58.42.42,0,0,0,.58.14c.05,0,5.29-2.76,10.55-.88A.42.42,0,0,0,467.83,391.79Z\",\n style: {\n fill: \"#f0f0f0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M467.55,388a.42.42,0,0,0,.35-.27.43.43,0,0,0-.25-.55c-5.3-2-11.13.94-11.35,1.07a.42.42,0,0,0-.15.58.41.41,0,0,0,.58.16s5.7-2.86,10.62-1A.46.46,0,0,0,467.55,388Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M452.5,204.66c5.15,9.41,9,17.1,9.5,45.07s1.2,41.35,1.31,44.72,2.07,9.4,3.79,26,.14,36.07.14,36.07-1.64,3-8,3.59c-5.86.52-8.77-1.68-8.77-1.68s-8-32.35-10.25-42.36-9.44-48.45-9.44-48.45L427,294.32s1.79,9.17,0,23.74S422,347.55,422,347.55a26.64,26.64,0,0,1-9,1.47,15.26,15.26,0,0,1-7.9-2.06s-5-43.35-5-59.87,1.39-57.8,6.59-82.24Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M461.84,307.36c-.2-1-.4-1.87-.58-2.74-1.62-7.72-2.36-23.37-2.33-36.17,0-3.86,0-7.86,0-12.11-.14-16.66-1.43-35.31-9.85-47.34l-.68.47c5.66,8.09,8.05,19.28,9,30.83-8.36-1.11-10.2-9.37-12.69-20.74-.34-1.56-.69-3.16-1.07-4.82l-.81.19c.38,1.65.73,3.25,1.07,4.81,2.49,11.35,4.47,20.33,13.57,21.42.4,5.09.55,10.23.6,15.19,0,4.24,0,8.24,0,12.1,0,12.85.71,28.53,2.34,36.34.19.87.38,1.78.59,2.74,2.17,10,5.41,25,3.8,51.1a7.58,7.58,0,0,0,.86-.56C467.23,332.22,464,317.32,461.84,307.36ZM410.3,232.6c1.17,5.5,8.42,8.43,12.4,9.38l.6,3.36c-.19,3-.41,6.09-.63,9.32-1.21,17.76-2.46,36.13-1.56,40.28,2.4,10.91,1.69,17.82.41,30.38-.14,1.29-.27,2.63-.41,4-.73,7.29-1.53,14.44-2.06,19l.85-.2c.54-4.6,1.32-11.61,2-18.75.14-1.41.28-2.75.41-4,1.29-12.65,2-19.61-.42-30.65-.88-4,.43-23.17,1.58-40,.14-2,.28-4.05.41-6l3.55,19.69L427,294.32l3.84-26.69L426,238.78S416.44,239,410.3,232.6Z\",\n style: {\n fill: \"#37474f\"\n }\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Top--inject-114\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M347,153.63a4.5,4.5,0,0,1,2.67-.09,29.13,29.13,0,0,1,4,1.7c2.06.84,5.38,2.22,7.62,1.87.45-.07,1.37-.36.69-.86a18.51,18.51,0,0,1-2.62-2,4,4,0,0,1-1.27-3,1.33,1.33,0,0,1,.37-.9c.34-.33.62-.18.94,0a9.66,9.66,0,0,0,1.08.5l2.24,1c4.36,1.94,8.75,4.28,11.64,8.19.41.57,3.06,5.12,4.72,7.67,1.39,2.33,10.72,16.9,10.72,16.9s10.53-14.26,13.53-18.62,6.91-6.45,13.18-7.61l-2.82,22.14S400.54,197,398.46,198.89c-3.08,2.8-9,8-13.6,4.35-5.66-4.47-8.41-12.8-11-18.8-2.89-6.75-3.9-10-5.34-12s-3.45-1.9-4.89-2.18a21.64,21.64,0,0,1-5.76-1.79,19.84,19.84,0,0,1-4.57-2.64,6.29,6.29,0,0,1-1.85-1.78,20.69,20.69,0,0,0-.63-2c-.42-.73-1.17-1.23-1.51-2a7.73,7.73,0,0,1-.34-1.94,3.32,3.32,0,0,0-1.67-2.14,3.12,3.12,0,0,1-1-1C346,154.26,346.4,153.86,347,153.63Z\",\n style: {\n fill: \"#ffbda7\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M389.8,184.6a16.35,16.35,0,0,1,2.29,10c1.83-6,.11-9.83-1.11-11.57Z\",\n style: {\n fill: \"#f0997a\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M364.07,158.77a14.55,14.55,0,0,0,5.72,5.75,6.06,6.06,0,0,1-4-1.48A5.69,5.69,0,0,1,364.07,158.77Z\",\n style: {\n fill: \"#f0997a\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M461.08,224.05c-1.95-8.93-4.41-18.93-4.67-20.89-1.53-11.36.49-17.13,1.23-22.1,1.62-10.82-1.48-19.89-4-22,0,0-2.62-.6-5.75-1.35a44.37,44.37,0,0,0-5.4-1,65,65,0,0,0-14.46-.4c-1.17.12-6.73,1.08-6.73,1.08-1.68.39-4.76.95-4.77,1a35.65,35.65,0,0,0-7.44,9.57c-2.74,4.9-4.3,9-4.79,19.52-.62,13.37-.91,28.32-2.08,38.82C413.31,233.09,447.16,235.93,461.08,224.05Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Head--inject-114\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M442.05,146.92c-.32.87-1.14-.08-1.94.47a2.85,2.85,0,0,1-2.15.05c-.38-.09-.77-.2-1.15-.32a18.33,18.33,0,0,1-5.53-3.2c-2.52-2-4.75-4.33-7.06-6.57a88,88,0,0,1-6.58-6.66c-1-1.16-4.87-4.72-6.23-7.25-1.18-2.19-.7-4.25.33-5-2.82.71-4.57-1-4.64-2.56a3.7,3.7,0,0,1,2.59-3.43,1.28,1.28,0,0,0,.65,1.69,1.76,1.76,0,0,0,1.87-.43,2.86,2.86,0,0,0,.77-1.83,4.63,4.63,0,0,0-.53-2.45,3.3,3.3,0,0,1,.85-3.77c.72-.53,1.89-1.3,6.92-.7a1.74,1.74,0,0,0,1.63-.65,4.38,4.38,0,0,0,.42-1.11,3.68,3.68,0,0,1,3-2.23,7.69,7.69,0,0,1,3.83.61,7.77,7.77,0,0,0,2.8.78c1.35,0,2.58-.86,3.93-.85,2.49,0,3.08,2.63,5.45,3.38,1.17.37,2.61-.5,4.34,1.49.73.85.4,2.22.94,3.21a6,6,0,0,0,1.64,1.7,3.61,3.61,0,0,1-.32,5.49c2.15.71,4.29,3.22,4.5,7.52a22.59,22.59,0,0,1-1.7,8.58C449.56,135.24,442.89,144.66,442.05,146.92Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M441.93,153.42c0-1.78.23-10.68.23-10.68.07.67,3.31,2.47,6.19-1s3.07-7.08,1.33-9.4c-1.92-2.56-6.93-2.5-7.4,1.84-2.49-.1-3.69-1.17-2.71-5.26-.26-2.86-3.5-3.7-3.42-9.94-8.17-5.4-16.45-5-21.42-.72a48.66,48.66,0,0,0-2,15.71c.36,9.44,2.89,14,5.92,15.58,2,1.06,3.87,1.31,7.4,1l-.16,3h0c-.06,1.49.07,2.59-1.37,3.07-1,.33-3.27.77-3.27.77s-3.36,5.81,5.9,6.33c14.77.83,20.69-6,20.69-6l-3.27-1C442.21,155.93,442,155.19,441.93,153.42Z\",\n style: {\n fill: \"#ffbda7\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M429,139.41l-5.58,1.79a2.88,2.88,0,0,0,3.64,2A3.06,3.06,0,0,0,429,139.41Z\",\n style: {\n fill: \"#b16668\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M428.66,140.7a3.24,3.24,0,0,0-3.22,2.52,2.75,2.75,0,0,0,1.63,0,3,3,0,0,0,2-2.44A3,3,0,0,0,428.66,140.7Z\",\n style: {\n fill: \"#f0997a\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M415.6,125.77l3.49-2a1.91,1.91,0,0,0-2.66-.82A2.09,2.09,0,0,0,415.6,125.77Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M432.4,126l-3.86-1.21a1.93,1.93,0,0,1,2.47-1.36A2.12,2.12,0,0,1,432.4,126Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M419.58,129.23a1.71,1.71,0,0,1-1.53,1.82,1.6,1.6,0,0,1-1.79-1.47,1.7,1.7,0,0,1,1.53-1.82A1.6,1.6,0,0,1,419.58,129.23Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M431.67,129.5a1.72,1.72,0,0,1-1.53,1.82,1.6,1.6,0,0,1-1.79-1.47,1.71,1.71,0,0,1,1.53-1.82A1.6,1.6,0,0,1,431.67,129.5Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M418.24,134.53l5.28,2.5,1.06-10.16C422.48,126.92,420.36,130.41,418.24,134.53Z\",\n style: {\n fill: \"#f0997a\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M426.1,150.59c6.34-.65,12.41-2.74,13.83-5.64a7.57,7.57,0,0,1-2.54,4.68c-4.23,3.54-11.41,3.21-11.41,3.21Z\",\n style: {\n fill: \"#f0997a\"\n }\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Arm--inject-114\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M463.91,238.94c2.67.76,6.09-2.57,7-3.73s-.27-3.9-.83-6.22,0-6.24-2.87-5.14S458.33,232.69,463.91,238.94Z\",\n style: {\n fill: \"#f0997a\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M453.64,159c7.44,1.1,10.89,2.88,15,11.12,4.77,9.59,12.49,22.93,13.68,27.09,1.11,3.87,3.33,6.63-.91,12.52-3.88,5.39-16.07,19.51-17.86,21.58-1.58,1.83-.7,7.08,4.74,6.3,0,0-4.14,3.67-6.42,3.26-2-.35-5.05-2.07-7.89-8-1.79-3.76-.29-6.71,2.43-10.9,3.25-5,10.27-18.93,10.27-18.93L454.1,180.74S447.3,165.65,453.64,159Z\",\n style: {\n fill: \"#ffbda7\"\n }\n }))))), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--speech-bubble--inject-114\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--speech-bubble--inject-114\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--speech-bubble--inject-114\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M430.92,93.56a1.14,1.14,0,0,1-1-.67L426.68,86c-11.46-1-19.81-5.62-23.53-13.16a24.9,24.9,0,0,1,1.6-25.19c4.93-7.52,14.82-12.38,25.21-12.38,11.06,0,19.26,3.34,25.07,10.2h0c7.11,8.4,7.47,20.48,3.7,27.29-4.44,8-12.15,12.37-23.57,13.25L432,92.89A1.15,1.15,0,0,1,430.92,93.56ZM430,35.8c-10.2,0-19.9,4.76-24.73,12.12a24.34,24.34,0,0,0-1.56,24.61c4.91,10,16.66,12.34,23.23,12.86h.17l3.33,7.25a.59.59,0,0,0,1,0l3.34-7.24.17,0c11.47-.85,18.85-5,23.27-13,3.6-6.5,3.23-18.53-3.63-26.64C448.9,39.07,440.84,35.8,430,35.8Z\",\n style: {\n fill: \"#407BFF\"\n }\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--pie-chart--inject-114\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M446.39,62.68a15.2,15.2,0,1,1-30.4,0c0-.13,0-.27,0-.41l15.19.41-4.36-14.57a15.23,15.23,0,0,1,19.56,14.57Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M427.07,59.63l-15.18-.41a15.18,15.18,0,0,1,10.82-14.16Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M427.07,59.63l-15.18-.41a15.18,15.18,0,0,1,10.82-14.16Z\",\n style: {\n fill: \"#fff\",\n opacity: 0.30000000000000004\n }\n })))));\n}\nconst ForwardRef = /*#__PURE__*/React.forwardRef(SvgOnlinereportAmico);\nexport default __webpack_public_path__ + \"static/media/Online report-amico.340ec57d2a0ada4fe116f8928d601686.svg\";\nexport { ForwardRef as ReactComponent };","var _path, _path2, _path3, _path4, _path5, _path6, _path7, _path8, _polygon, _path9, _path10, _path11, _path12, _polygon2, _path13, _path14, _path15, _path16, _path17, _path18, _path19, _path20, _polygon3, _path21, _path22, _path23, _path24, _polygon4, _path25, _path26, _path27, _path28, _path29, _path30, _path31, _path32, _polygon5, _path33, _path34, _path35, _path36, _polygon6, _path37, _path38, _path39, _path40, _path41, _ellipse, _ellipse2, _path42, _polygon7, _path43, _path44, _path45, _path46, _polygon8, _path47, _path48, _path49, _path50, _path51, _path52, _path53, _path54, _polygon9, _path55, _path56, _path57, _path58, _polygon10, _path59, _path60, _path61, _path62, _path63, _path64, _path65, _path66, _polygon11, _path67, _path68, _path69, _path70, _polygon12, _path71, _path72, _path73, _path74, _path75, _path76, _path77, _path78;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nfunction SvgInvoiceAmico(_ref, svgRef) {\n let {\n title,\n titleId,\n ...props\n } = _ref;\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 500 500\",\n ref: svgRef,\n \"aria-labelledby\": titleId\n }, props), title ? /*#__PURE__*/React.createElement(\"title\", {\n id: titleId\n }, title) : null, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Floor--inject-87\"\n }, /*#__PURE__*/React.createElement(\"ellipse\", {\n id: \"freepik--floor--inject-87\",\n cx: 250,\n cy: 348.09,\n rx: 247.29,\n ry: 142.77,\n style: {\n fill: \"#f5f5f5\"\n }\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Shadows--inject-87\"\n }, /*#__PURE__*/React.createElement(\"polygon\", {\n id: \"freepik--Shadow--inject-87\",\n points: \"176.02 462.03 176.02 457.19 167.64 457.19 167.64 452.36 159.26 452.36 159.26 447.52 150.88 447.52 150.88 442.68 142.5 442.68 142.5 437.85 134.12 437.85 134.12 433.01 125.75 433.01 125.75 426.95 315.81 317.21 315.82 322.62 324.19 322.62 324.19 327.45 332.57 327.45 332.57 332.29 340.95 332.29 340.95 337.13 349.33 337.13 349.33 341.97 357.71 341.97 357.71 346.81 366.09 346.81 366.09 351.64 376.58 351.64 185.38 462.03 176.02 462.03\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n id: \"freepik--shadow--inject-87\",\n d: \"M422.14,215.58,358.62,252.2a7.08,7.08,0,0,1-6.4,0l-71.7-41.39a16.33,16.33,0,0,1-5-5.05l-2.31-4a3.7,3.7,0,0,1,1.35-5.05l57.3-33.26a7,7,0,0,1,6.4,0l83.93,48.46C423.91,212.91,423.91,214.56,422.14,215.58Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n id: \"freepik--shadow--inject-87\",\n d: \"M142.63,397.45,21,327.1c-5-2.87-5-7.56,0-10.43L219.59,202a8.26,8.26,0,0,1,7.44,0l133.15,70.31a2.23,2.23,0,0,1,0,3.85L150.07,397.45A8.26,8.26,0,0,1,142.63,397.45Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"ellipse\", {\n id: \"freepik--shadow--inject-87\",\n cx: 43.86,\n cy: 371.37,\n rx: 30.84,\n ry: 17.81,\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n id: \"freepik--shadow--inject-87\",\n d: \"M62.47,382.4c-12,7-12,18.23,0,25.18s31.58,6.95,43.62,0,12-18.23,0-25.18S74.52,375.44,62.47,382.4Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"ellipse\", {\n id: \"freepik--shadow--inject-87\",\n cx: 399.44,\n cy: 398.12,\n rx: 58.92,\n ry: 34.01,\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"ellipse\", {\n id: \"freepik--shadow--inject-87\",\n cx: 456.18,\n cy: 370.36,\n rx: 22,\n ry: 12.7,\n style: {\n fill: \"#e0e0e0\"\n }\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Calcuator--inject-87\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Calculator--inject-87\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M273.16,178.09v8.31a4.49,4.49,0,0,0,.51,1.42l7.47,12.92a19.25,19.25,0,0,0,6,6l63.44,36.65a8.43,8.43,0,0,0,7.58,0l57.5-33.21a2.66,2.66,0,0,0,1.57-2.19v-6.83a2.66,2.66,0,0,0-1.57-2.18L352.19,162.3a19.4,19.4,0,0,1-6-6l-7.46-12.93a4.37,4.37,0,0,0-6-1.6L275.27,175A4.36,4.36,0,0,0,273.16,178.09Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M354.32,163.53,415.64,199a2.66,2.66,0,0,1,1.57,2.18V208a2.66,2.66,0,0,1-1.57,2.19l-57.5,33.21a7.92,7.92,0,0,1-3.82.9Z\",\n style: {\n fill: \"#37474f\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M273.16,179.57a4.58,4.58,0,0,0,.51,1.42l.83,1.44,6.64,11.48a19.25,19.25,0,0,0,6,6l63.44,36.64a8.37,8.37,0,0,0,7.58,0l55.37-32,2.13-1.23a2.31,2.31,0,0,0,0-4.37L352.19,162.3a19.4,19.4,0,0,1-6-6l-7.46-12.93a4.37,4.37,0,0,0-6-1.6L275.27,175a4.36,4.36,0,0,0-2.11,3.08A4.59,4.59,0,0,0,273.16,179.57Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M339.61,157.79l-4.31-7.13a3,3,0,0,0-4-1l-48.2,27.83a2.85,2.85,0,0,0-1,4l4.31,7.13a3,3,0,0,0,4,1l48.2-27.83A2.84,2.84,0,0,0,339.61,157.79Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M339.61,157.79l-4.31-7.13a3,3,0,0,0-4-1l-48.2,27.83a2.85,2.85,0,0,0-1,4l4.31,7.13a3,3,0,0,0,4,1l48.2-27.83A2.84,2.84,0,0,0,339.61,157.79Z\",\n style: {\n fill: \"#fff\",\n opacity: 0.75\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M310.86,196.87l-6,3.48a2.61,2.61,0,0,1-2.4,0l-3.23-1.86a.77.77,0,0,1-.46-.67c0-.06,0-1.66,0-1.73a.82.82,0,0,1,.46-.67l6-3.48a2.67,2.67,0,0,1,2.4,0l3.22,1.86a.81.81,0,0,1,.47.66v1.74A.81.81,0,0,1,310.86,196.87Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M310.86,196.87l-6,3.48a2.61,2.61,0,0,1-2.4,0l-3.23-1.86a.77.77,0,0,1-.46-.67c0-.06,0-1.66,0-1.73a.82.82,0,0,1,.46-.67l6-3.48a2.67,2.67,0,0,1,2.4,0l3.22,1.86a.81.81,0,0,1,.47.66v1.74A.81.81,0,0,1,310.86,196.87Z\",\n style: {\n opacity: 0.2\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M305.24,191.94l-6,3.48a.74.74,0,0,0,0,1.39l3.23,1.86a2.67,2.67,0,0,0,2.4,0l6-3.49a.73.73,0,0,0,0-1.38l-3.22-1.86A2.67,2.67,0,0,0,305.24,191.94Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M311.33,194.68v1.52a.8.8,0,0,1-.47.67l-6,3.48a2.32,2.32,0,0,1-1.2.29V199a2.45,2.45,0,0,0,1.2-.28l6-3.49A1,1,0,0,0,311.33,194.68Z\",\n style: {\n opacity: 0.1\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M324.91,188.76l-6,3.48a2.67,2.67,0,0,1-2.4,0l-3.22-1.86a.81.81,0,0,1-.47-.67V188a.8.8,0,0,1,.47-.66l6-3.48a2.61,2.61,0,0,1,2.4,0l3.22,1.86a.79.79,0,0,1,.47.66v1.74A.79.79,0,0,1,324.91,188.76Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M324.91,188.76l-6,3.48a2.67,2.67,0,0,1-2.4,0l-3.22-1.86a.81.81,0,0,1-.47-.67V188a.8.8,0,0,1,.47-.66l6-3.48a2.61,2.61,0,0,1,2.4,0l3.22,1.86a.79.79,0,0,1,.47.66v1.74A.79.79,0,0,1,324.91,188.76Z\",\n style: {\n opacity: 0.2\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M319.29,183.83l-6,3.48a.73.73,0,0,0,0,1.38l3.22,1.87a2.67,2.67,0,0,0,2.4,0l6-3.49a.72.72,0,0,0,0-1.38l-3.22-1.86A2.61,2.61,0,0,0,319.29,183.83Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M325.38,186.56v1.52a.8.8,0,0,1-.47.68l-6,3.48a2.45,2.45,0,0,1-1.2.29v-1.69a2.37,2.37,0,0,0,1.2-.29l6-3.48A1,1,0,0,0,325.38,186.56Z\",\n style: {\n opacity: 0.1\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M339,180.64l-6,3.49a2.67,2.67,0,0,1-2.4,0l-3.22-1.86a.79.79,0,0,1-.47-.67v-1.74a.79.79,0,0,1,.47-.66l6-3.49a2.67,2.67,0,0,1,2.4,0l3.22,1.87a.81.81,0,0,1,.47.66V180A.79.79,0,0,1,339,180.64Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M339,180.64l-6,3.49a2.67,2.67,0,0,1-2.4,0l-3.22-1.86a.79.79,0,0,1-.47-.67v-1.74a.79.79,0,0,1,.47-.66l6-3.49a2.67,2.67,0,0,1,2.4,0l3.22,1.87a.81.81,0,0,1,.47.66V180A.79.79,0,0,1,339,180.64Z\",\n style: {\n opacity: 0.2\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M333.35,175.71l-6,3.49a.72.72,0,0,0,0,1.38l3.22,1.86a2.61,2.61,0,0,0,2.4,0l6-3.48a.73.73,0,0,0,0-1.38l-3.22-1.87A2.67,2.67,0,0,0,333.35,175.71Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M339.44,178.45V180a.82.82,0,0,1-.47.68l-6,3.48a2.39,2.39,0,0,1-1.2.28v-1.68a2.32,2.32,0,0,0,1.2-.29l6-3.48A1,1,0,0,0,339.44,178.45Z\",\n style: {\n opacity: 0.1\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M353,172.53,347,176a2.65,2.65,0,0,1-2.39,0l-3.23-1.87a.79.79,0,0,1-.47-.66v-1.74a.81.81,0,0,1,.47-.66l6-3.49a2.65,2.65,0,0,1,2.39,0l3.23,1.86a.8.8,0,0,1,.46.66c0,.07,0,1.68,0,1.74A.77.77,0,0,1,353,172.53Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M353,172.53,347,176a2.65,2.65,0,0,1-2.39,0l-3.23-1.87a.79.79,0,0,1-.47-.66v-1.74a.81.81,0,0,1,.47-.66l6-3.49a2.65,2.65,0,0,1,2.39,0l3.23,1.86a.8.8,0,0,1,.46.66c0,.07,0,1.68,0,1.74A.77.77,0,0,1,353,172.53Z\",\n style: {\n opacity: 0.2\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M347.41,167.6l-6,3.49a.73.73,0,0,0,0,1.38l3.23,1.86a2.65,2.65,0,0,0,2.39,0l6-3.48a.74.74,0,0,0,0-1.39l-3.23-1.86A2.65,2.65,0,0,0,347.41,167.6Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M353.49,170.34v1.52a.78.78,0,0,1-.47.67L347,176a2.42,2.42,0,0,1-1.2.28v-1.68a2.45,2.45,0,0,0,1.2-.29l6-3.48A1,1,0,0,0,353.49,170.34Z\",\n style: {\n opacity: 0.1\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M324.94,205l-6,3.48a2.67,2.67,0,0,1-2.4,0l-6.06-3.5a.77.77,0,0,1-.47-.67v-1.73a.81.81,0,0,1,.47-.67l6-3.48a2.67,2.67,0,0,1,2.4,0l6.06,3.5a.81.81,0,0,1,.47.66v1.74A.81.81,0,0,1,324.94,205Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M316.48,198.43l-6,3.48c-.67.39-.67,1,0,1.39l6.06,3.5a2.67,2.67,0,0,0,2.4,0l6-3.49a.73.73,0,0,0,0-1.38l-6.06-3.5A2.67,2.67,0,0,0,316.48,198.43Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M325.41,202.81v1.52a.8.8,0,0,1-.47.67l-6,3.48a2.3,2.3,0,0,1-1.2.29v-1.69a2.42,2.42,0,0,0,1.2-.28l6-3.49A1,1,0,0,0,325.41,202.81Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M325.41,202.81v-.21a.68.68,0,0,0-.25-.51A.66.66,0,0,1,325.41,202.81Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M339,196.85l-6,3.48a2.67,2.67,0,0,1-2.4,0l-6.06-3.5a.81.81,0,0,1-.47-.67v-1.73a.8.8,0,0,1,.47-.67l6-3.48a2.65,2.65,0,0,1,2.39,0l6.07,3.5a.79.79,0,0,1,.46.66c0,.07,0,1.67,0,1.74A.8.8,0,0,1,339,196.85Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M330.52,190.28l-6,3.48a.74.74,0,0,0,0,1.39l6.06,3.5a2.67,2.67,0,0,0,2.4,0l6-3.49a.73.73,0,0,0,0-1.38l-6.07-3.5A2.65,2.65,0,0,0,330.52,190.28Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M339.44,194.65v1.53a.8.8,0,0,1-.47.67l-6,3.48a2.45,2.45,0,0,1-1.2.29v-1.69a2.45,2.45,0,0,0,1.2-.28l6-3.49A1,1,0,0,0,339.44,194.65Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M339.44,194.65v-.2a.68.68,0,0,0-.25-.51A.63.63,0,0,1,339.44,194.65Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M353,188.69l-6,3.49a2.67,2.67,0,0,1-2.4,0l-6.06-3.5a.79.79,0,0,1-.47-.67v-1.74a.79.79,0,0,1,.47-.66l6-3.48a2.61,2.61,0,0,1,2.4,0l6.06,3.5a.79.79,0,0,1,.47.66V188A.79.79,0,0,1,353,188.69Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M344.55,182.13l-6,3.48a.72.72,0,0,0,0,1.38l6.06,3.5a2.61,2.61,0,0,0,2.4,0l6-3.48a.73.73,0,0,0,0-1.38l-6.06-3.5A2.61,2.61,0,0,0,344.55,182.13Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M353.48,186.5V188a.82.82,0,0,1-.47.68l-6,3.48a2.4,2.4,0,0,1-1.2.29v-1.69a2.32,2.32,0,0,0,1.2-.29l6-3.48A1,1,0,0,0,353.48,186.5Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M353.48,186.5v-.2a.71.71,0,0,0-.25-.52A.66.66,0,0,1,353.48,186.5Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M337.56,212.28l-6,3.49a2.67,2.67,0,0,1-2.4,0l-6.07-3.5a.8.8,0,0,1-.46-.67v-1.74a.79.79,0,0,1,.46-.66l6-3.49a2.67,2.67,0,0,1,2.4,0l6.06,3.5a.82.82,0,0,1,.47.66v1.75A.79.79,0,0,1,337.56,212.28Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M329.1,205.71l-6,3.49a.73.73,0,0,0,0,1.38l6.07,3.5a2.67,2.67,0,0,0,2.4,0l6-3.48a.74.74,0,0,0,0-1.39l-6.06-3.5A2.67,2.67,0,0,0,329.1,205.71Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M338,210.09v1.52a.8.8,0,0,1-.47.67l-6,3.49a2.42,2.42,0,0,1-1.2.28v-1.68a2.45,2.45,0,0,0,1.2-.29l6-3.48A1.07,1.07,0,0,0,338,210.09Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M338,210.09v-.2a.73.73,0,0,0-.25-.52A.66.66,0,0,1,338,210.09Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M351.59,204.13l-6,3.48a2.61,2.61,0,0,1-2.4,0l-6.06-3.5a.79.79,0,0,1-.47-.66v-1.74a.79.79,0,0,1,.47-.66l6-3.49a2.67,2.67,0,0,1,2.4,0l6.06,3.5a.8.8,0,0,1,.47.66v1.74A.77.77,0,0,1,351.59,204.13Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M343.13,197.56l-6,3.49a.73.73,0,0,0,0,1.38l6.06,3.5a2.67,2.67,0,0,0,2.4,0l6-3.48c.67-.39.67-1,0-1.39l-6.06-3.5A2.67,2.67,0,0,0,343.13,197.56Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M352.06,201.94v1.52a.78.78,0,0,1-.47.67l-6,3.49a2.45,2.45,0,0,1-1.2.28v-1.69a2.47,2.47,0,0,0,1.2-.28l6-3.48A1,1,0,0,0,352.06,201.94Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M352.06,201.94v-.2a.7.7,0,0,0-.25-.52A.64.64,0,0,1,352.06,201.94Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M365.63,196l-6,3.48a2.67,2.67,0,0,1-2.4,0l-6.07-3.5a.77.77,0,0,1-.46-.67v-1.73a.82.82,0,0,1,.46-.67l6-3.48a2.67,2.67,0,0,1,2.4,0l6.06,3.5a.81.81,0,0,1,.47.66v1.74A.81.81,0,0,1,365.63,196Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M357.17,189.41l-6,3.48a.74.74,0,0,0,0,1.39l6.07,3.5a2.67,2.67,0,0,0,2.4,0l6-3.49a.73.73,0,0,0,0-1.38l-6.06-3.5A2.67,2.67,0,0,0,357.17,189.41Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M366.1,193.79v1.52a.8.8,0,0,1-.47.67l-6,3.48a2.3,2.3,0,0,1-1.2.29v-1.69a2.42,2.42,0,0,0,1.2-.28l6-3.49A1,1,0,0,0,366.1,193.79Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M366.1,193.79v-.21a.71.71,0,0,0-.25-.51A.66.66,0,0,1,366.1,193.79Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M350.18,219.57l-6,3.48a2.65,2.65,0,0,1-2.39,0l-6.07-3.5a.82.82,0,0,1-.47-.67v-1.73a.82.82,0,0,1,.47-.67l6-3.48a2.65,2.65,0,0,1,2.39,0l6.07,3.5a.81.81,0,0,1,.47.66v1.74A.81.81,0,0,1,350.18,219.57Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M341.72,213l-6,3.48a.74.74,0,0,0,0,1.39l6.07,3.5a2.65,2.65,0,0,0,2.39,0l6-3.49a.73.73,0,0,0,0-1.38l-6.07-3.5A2.65,2.65,0,0,0,341.72,213Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M350.65,217.37v1.53a.81.81,0,0,1-.47.67l-6,3.48a2.32,2.32,0,0,1-1.2.29v-1.69a2.45,2.45,0,0,0,1.2-.28l6-3.49A1,1,0,0,0,350.65,217.37Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M350.65,217.37v-.2a.71.71,0,0,0-.25-.51A.65.65,0,0,1,350.65,217.37Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M364.21,211.41l-6,3.49a2.67,2.67,0,0,1-2.4,0l-6.06-3.5a.81.81,0,0,1-.47-.67V209a.79.79,0,0,1,.47-.66l6-3.48a2.61,2.61,0,0,1,2.4,0l6.06,3.5a.79.79,0,0,1,.47.66v1.74A.79.79,0,0,1,364.21,211.41Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M355.75,204.85l-6,3.48a.73.73,0,0,0,0,1.38l6.06,3.5a2.61,2.61,0,0,0,2.4,0l6-3.48a.72.72,0,0,0,0-1.38l-6.06-3.5A2.61,2.61,0,0,0,355.75,204.85Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M364.68,209.22v1.52a.82.82,0,0,1-.47.68l-6,3.48a2.38,2.38,0,0,1-1.19.29V213.5a2.31,2.31,0,0,0,1.19-.29l6-3.48A1,1,0,0,0,364.68,209.22Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M364.68,209.22V209a.71.71,0,0,0-.25-.52A.66.66,0,0,1,364.68,209.22Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M378.25,203.26l-6,3.49a2.65,2.65,0,0,1-2.39,0l-6.07-3.5a.83.83,0,0,1-.47-.67v-1.74a.81.81,0,0,1,.47-.66l6-3.49a2.65,2.65,0,0,1,2.39,0l6.07,3.5a.82.82,0,0,1,.47.66v1.75A.79.79,0,0,1,378.25,203.26Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M369.79,196.69l-6,3.49a.73.73,0,0,0,0,1.38l6.07,3.5a2.65,2.65,0,0,0,2.39,0l6-3.48a.74.74,0,0,0,0-1.39l-6.07-3.5A2.65,2.65,0,0,0,369.79,196.69Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M378.72,201.07v1.52a.8.8,0,0,1-.47.67l-6,3.49a2.42,2.42,0,0,1-1.2.28v-1.68a2.45,2.45,0,0,0,1.2-.29l6-3.48A1,1,0,0,0,378.72,201.07Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M378.72,201.07v-.2a.73.73,0,0,0-.25-.52A.66.66,0,0,1,378.72,201.07Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M362.8,226.85l-6,3.49a2.65,2.65,0,0,1-2.39,0l-6.07-3.51a.79.79,0,0,1-.47-.66v-1.74a.81.81,0,0,1,.47-.66l6-3.49a2.65,2.65,0,0,1,2.39,0l6.07,3.5a.84.84,0,0,1,.47.66v1.74A.81.81,0,0,1,362.8,226.85Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M354.34,220.28l-6,3.49a.73.73,0,0,0,0,1.38l6.07,3.5a2.65,2.65,0,0,0,2.39,0l6-3.48a.74.74,0,0,0,0-1.39l-6.07-3.5A2.65,2.65,0,0,0,354.34,220.28Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M363.27,224.66v1.52a.8.8,0,0,1-.47.67l-6,3.49a2.42,2.42,0,0,1-1.2.28v-1.68a2.45,2.45,0,0,0,1.2-.29l6-3.48A1.12,1.12,0,0,0,363.27,224.66Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M363.27,224.66v-.2a.73.73,0,0,0-.25-.52A.66.66,0,0,1,363.27,224.66Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M376.83,218.7l-6,3.48a2.61,2.61,0,0,1-2.4,0l-6.06-3.5a.79.79,0,0,1-.47-.66v-1.74a.81.81,0,0,1,.47-.67l6-3.48a2.67,2.67,0,0,1,2.4,0l6.06,3.5a.79.79,0,0,1,.47.66V218A.81.81,0,0,1,376.83,218.7Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M368.37,212.13l-6,3.48a.74.74,0,0,0,0,1.39l6.06,3.5a2.67,2.67,0,0,0,2.4,0l6-3.49a.73.73,0,0,0,0-1.38l-6.06-3.5A2.67,2.67,0,0,0,368.37,212.13Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M377.3,216.51V218a.8.8,0,0,1-.47.67l-6,3.48a2.28,2.28,0,0,1-1.19.29v-1.69a2.41,2.41,0,0,0,1.19-.28l6-3.49A1,1,0,0,0,377.3,216.51Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M377.3,216.51v-.21a.68.68,0,0,0-.25-.51A.66.66,0,0,1,377.3,216.51Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M390.87,210.55l-6,3.48a2.65,2.65,0,0,1-2.39,0l-6.07-3.5a.82.82,0,0,1-.47-.67v-1.73a.82.82,0,0,1,.47-.67l6-3.48a2.65,2.65,0,0,1,2.39,0l6.07,3.5a.83.83,0,0,1,.47.66v1.74A.83.83,0,0,1,390.87,210.55Z\",\n style: {\n fill: \"#f28f8f\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M382.41,204l-6,3.48a.74.74,0,0,0,0,1.39l6.07,3.5a2.65,2.65,0,0,0,2.39,0l6-3.49a.73.73,0,0,0,0-1.38L384.8,204A2.65,2.65,0,0,0,382.41,204Z\",\n style: {\n fill: \"#ffa8a7\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M391.34,208.35v1.53a.81.81,0,0,1-.47.67l-6,3.48a2.32,2.32,0,0,1-1.2.29v-1.69a2.45,2.45,0,0,0,1.2-.28l6-3.49A1.07,1.07,0,0,0,391.34,208.35Z\",\n style: {\n opacity: 0.1\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M367.05,180.54,361,184a2.67,2.67,0,0,1-2.4,0l-6.06-3.5a.81.81,0,0,1-.47-.67v-1.74a.81.81,0,0,1,.47-.66l6-3.49a2.65,2.65,0,0,1,2.39,0l6.07,3.5a.8.8,0,0,1,.46.66c0,.07,0,1.68,0,1.75A.77.77,0,0,1,367.05,180.54Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M367.05,180.54,361,184a2.67,2.67,0,0,1-2.4,0l-6.06-3.5a.81.81,0,0,1-.47-.67v-1.74a.81.81,0,0,1,.47-.66l6-3.49a2.65,2.65,0,0,1,2.39,0l6.07,3.5a.8.8,0,0,1,.46.66c0,.07,0,1.68,0,1.75A.77.77,0,0,1,367.05,180.54Z\",\n style: {\n opacity: 0.30000000000000004\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M358.59,174l-6,3.49a.73.73,0,0,0,0,1.38l6.06,3.5a2.67,2.67,0,0,0,2.4,0l6-3.48a.74.74,0,0,0,0-1.39L361,174A2.65,2.65,0,0,0,358.59,174Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M358.59,174l-6,3.49a.73.73,0,0,0,0,1.38l6.06,3.5a2.67,2.67,0,0,0,2.4,0l6-3.48a.74.74,0,0,0,0-1.39L361,174A2.65,2.65,0,0,0,358.59,174Z\",\n style: {\n opacity: 0.2\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M367.51,178.35v1.52a.78.78,0,0,1-.47.67L361,184a2.45,2.45,0,0,1-1.2.28v-1.68a2.45,2.45,0,0,0,1.2-.29l6-3.48A1,1,0,0,0,367.51,178.35Z\",\n style: {\n opacity: 0.1\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M379.66,187.83l-6,3.48a2.67,2.67,0,0,1-2.4,0l-6.06-3.5a.8.8,0,0,1-.47-.67v-1.73a.8.8,0,0,1,.47-.67l6-3.48a2.67,2.67,0,0,1,2.4,0l6.06,3.5a.79.79,0,0,1,.47.66v1.74A.79.79,0,0,1,379.66,187.83Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M379.66,187.83l-6,3.48a2.67,2.67,0,0,1-2.4,0l-6.06-3.5a.8.8,0,0,1-.47-.67v-1.73a.8.8,0,0,1,.47-.67l6-3.48a2.67,2.67,0,0,1,2.4,0l6.06,3.5a.79.79,0,0,1,.47.66v1.74A.79.79,0,0,1,379.66,187.83Z\",\n style: {\n opacity: 0.30000000000000004\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M371.2,181.26l-6,3.48a.74.74,0,0,0,0,1.39l6.06,3.5a2.67,2.67,0,0,0,2.4,0l6-3.49a.72.72,0,0,0,0-1.38l-6.06-3.5A2.67,2.67,0,0,0,371.2,181.26Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M371.2,181.26l-6,3.48a.74.74,0,0,0,0,1.39l6.06,3.5a2.67,2.67,0,0,0,2.4,0l6-3.49a.72.72,0,0,0,0-1.38l-6.06-3.5A2.67,2.67,0,0,0,371.2,181.26Z\",\n style: {\n opacity: 0.2\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M380.13,185.63v1.53a.8.8,0,0,1-.47.67l-6,3.48a2.35,2.35,0,0,1-1.2.29v-1.69a2.47,2.47,0,0,0,1.2-.28l6-3.49A1,1,0,0,0,380.13,185.63Z\",\n style: {\n opacity: 0.1\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M392.28,195.11l-6,3.48a2.61,2.61,0,0,1-2.4,0l-6.06-3.5a.79.79,0,0,1-.47-.66v-1.74a.79.79,0,0,1,.47-.66l6-3.49a2.67,2.67,0,0,1,2.4,0l6.06,3.5a.8.8,0,0,1,.47.66v1.74A.79.79,0,0,1,392.28,195.11Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M392.28,195.11l-6,3.48a2.61,2.61,0,0,1-2.4,0l-6.06-3.5a.79.79,0,0,1-.47-.66v-1.74a.79.79,0,0,1,.47-.66l6-3.49a2.67,2.67,0,0,1,2.4,0l6.06,3.5a.8.8,0,0,1,.47.66v1.74A.79.79,0,0,1,392.28,195.11Z\",\n style: {\n opacity: 0.30000000000000004\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M383.82,188.54l-6,3.49a.73.73,0,0,0,0,1.38l6.06,3.5a2.67,2.67,0,0,0,2.4,0l6-3.48c.67-.39.67-1,0-1.39l-6.06-3.5A2.67,2.67,0,0,0,383.82,188.54Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M383.82,188.54l-6,3.49a.73.73,0,0,0,0,1.38l6.06,3.5a2.67,2.67,0,0,0,2.4,0l6-3.48c.67-.39.67-1,0-1.39l-6.06-3.5A2.67,2.67,0,0,0,383.82,188.54Z\",\n style: {\n opacity: 0.2\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M392.75,192.92v1.52a.8.8,0,0,1-.47.67l-6,3.49a2.38,2.38,0,0,1-1.19.28v-1.69a2.41,2.41,0,0,0,1.19-.28l6-3.48A1,1,0,0,0,392.75,192.92Z\",\n style: {\n opacity: 0.1\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M404.9,202.39l-6,3.49a2.67,2.67,0,0,1-2.4,0l-6.06-3.5a.81.81,0,0,1-.47-.67V200a.79.79,0,0,1,.47-.66l6-3.48a2.61,2.61,0,0,1,2.4,0l6.06,3.5a.79.79,0,0,1,.47.66v1.74A.79.79,0,0,1,404.9,202.39Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M404.9,202.39l-6,3.49a2.67,2.67,0,0,1-2.4,0l-6.06-3.5a.81.81,0,0,1-.47-.67V200a.79.79,0,0,1,.47-.66l6-3.48a2.61,2.61,0,0,1,2.4,0l6.06,3.5a.79.79,0,0,1,.47.66v1.74A.79.79,0,0,1,404.9,202.39Z\",\n style: {\n opacity: 0.30000000000000004\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M396.44,195.83l-6,3.48a.73.73,0,0,0,0,1.38l6.06,3.5a2.61,2.61,0,0,0,2.4,0l6-3.48a.73.73,0,0,0,0-1.38l-6.06-3.5A2.61,2.61,0,0,0,396.44,195.83Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M396.44,195.83l-6,3.48a.73.73,0,0,0,0,1.38l6.06,3.5a2.61,2.61,0,0,0,2.4,0l6-3.48a.73.73,0,0,0,0-1.38l-6.06-3.5A2.61,2.61,0,0,0,396.44,195.83Z\",\n style: {\n opacity: 0.2\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M405.37,200.2v1.52a.82.82,0,0,1-.47.68l-6,3.48a2.38,2.38,0,0,1-1.19.29v-1.69a2.31,2.31,0,0,0,1.19-.29l6-3.48A1,1,0,0,0,405.37,200.2Z\",\n style: {\n opacity: 0.1\n }\n }))), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Device--inject-87\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Laptop--inject-87\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M34.51,314.6a10.43,10.43,0,0,0,4.87,8.08l106,61.19a10.76,10.76,0,0,0,9.73,0l186.6-107.73a9.15,9.15,0,0,0,0-16.17l-106-61.19a10.76,10.76,0,0,0-9.73,0L39.38,306.51A10.43,10.43,0,0,0,34.51,314.6Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M346.55,268.06a10.45,10.45,0,0,1-4.87,8.08L155.08,383.87a10,10,0,0,1-4.86,1.16V374.49a9.9,9.9,0,0,0,4.86-1.17L341.68,265.6c2.35-1.36,2.65-3.46.88-5A10.43,10.43,0,0,1,346.55,268.06Z\",\n style: {\n fill: \"#37474f\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M150.22,374.5V385a9.88,9.88,0,0,1-4.87-1.16l-106-61.19a9.12,9.12,0,0,1-.5-15.85c-2.18,1.56-2,3.85.5,5.3l106,61.2A10,10,0,0,0,150.22,374.5Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M52.85,306.8l173.2-100a5.42,5.42,0,0,1,4.87,0l5,2.65c1.34.78,1.34,2,0,2.81l-173.23,100a5.36,5.36,0,0,1-4.87,0l-5-2.63C51.51,308.83,51.51,307.58,52.85,306.8Z\",\n style: {\n fill: \"#37474f\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M66.43,314.88l173.2-100a5,5,0,0,1,4.45-.24l45.08,26c1.12.64.93,1.79-.42,2.56l-173,99.87a5,5,0,0,1-4.45.25L66,317.44C64.9,316.8,65.09,315.65,66.43,314.88Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M215.08,256.47l5.43-3.13c.23-.13.26-.33.07-.44l-4.78-2.76a.86.86,0,0,0-.76,0l-5.42,3.14c-.23.13-.27.32-.08.43l4.79,2.76A.84.84,0,0,0,215.08,256.47Zm-7.56-10.63L202.09,249c-.23.13-.26.33-.07.44l4.78,2.76a.86.86,0,0,0,.76,0L213,249c.24-.14.27-.33.08-.44l-4.78-2.76A.86.86,0,0,0,207.52,245.84ZM190,256l-9.18,5.29c-.23.14-.26.33-.08.44l4.79,2.76a.86.86,0,0,0,.76,0l9.17-5.3c.23-.13.27-.33.08-.44l-4.78-2.76A.83.83,0,0,0,190,256Zm9.59-5.54-5.42,3.13c-.23.13-.27.33-.08.44l4.79,2.76a.83.83,0,0,0,.76-.05l5.42-3.13c.23-.13.26-.33.07-.44l-4.78-2.76A.83.83,0,0,0,199.59,250.42ZM178.32,262.7l-5.43,3.13c-.23.13-.26.33-.07.44L177.6,269a.86.86,0,0,0,.76,0l5.42-3.13c.23-.14.27-.33.08-.44l-4.78-2.76A.86.86,0,0,0,178.32,262.7Zm-7.93,4.58L165,270.41c-.23.13-.27.33-.08.43l4.79,2.77a.83.83,0,0,0,.76-.05l5.42-3.13c.23-.13.26-.33.07-.44l-4.78-2.76A.83.83,0,0,0,170.39,267.28Zm20.1,12.08,5.42-3.13c.23-.13.26-.33.08-.44L191.2,273a.86.86,0,0,0-.76,0L185,276.2c-.23.14-.26.33-.08.44l4.79,2.76A.86.86,0,0,0,190.49,279.36Zm-7.93,4.58L188,280.8c.24-.13.27-.32.08-.43l-4.78-2.77a.89.89,0,0,0-.76,0l-5.43,3.13c-.23.13-.26.33-.07.44L181.8,284A.86.86,0,0,0,182.56,283.94Zm-7.92,4.57,5.42-3.13c.23-.13.26-.33.07-.44l-4.78-2.76a.86.86,0,0,0-.76,0l-5.42,3.13c-.23.14-.27.33-.08.44l4.79,2.76A.86.86,0,0,0,174.64,288.51Zm-7.93,4.58,5.42-3.13c.23-.14.27-.33.08-.44l-4.79-2.76a.84.84,0,0,0-.75,0l-5.43,3.13c-.23.13-.26.33-.07.44l4.78,2.76A.86.86,0,0,0,166.71,293.09Zm40.45-32,5.42-3.13c.23-.14.27-.33.08-.44l-4.79-2.76a.84.84,0,0,0-.75,0l-5.43,3.13c-.23.13-.26.33-.07.44l4.78,2.76A.86.86,0,0,0,207.16,261.05Zm-8.75,13.73,12.1-7c.23-.13.26-.33.08-.44l-12.31-7.1a.86.86,0,0,0-.76,0l-6.26,3.61c-.23.14-.26.33-.07.44L198,268.3c.19.11.15.3-.08.44l-5,2.89c-.23.13-.27.33-.08.44l4.78,2.76A.83.83,0,0,0,198.41,274.78Zm-35.94-2.93L157,275c-.23.14-.26.33-.07.44l4.78,2.76a.86.86,0,0,0,.76,0l5.42-3.13c.23-.14.27-.33.08-.44l-4.79-2.76A.84.84,0,0,0,162.47,271.85Zm-7.93,4.58-5.42,3.13c-.23.13-.27.33-.08.44l4.78,2.76a.83.83,0,0,0,.76-.05l5.43-3.13c.23-.13.26-.33.07-.43l-4.78-2.77A.83.83,0,0,0,154.54,276.43Zm-44.07,48.73a.86.86,0,0,0,.76,0l5.42-3.13c.23-.13.27-.33.08-.44l-4.79-2.76a.84.84,0,0,0-.75,0L105.76,322c-.23.14-.26.33-.07.44ZM91.13,313l-5.42,3.13c-.23.13-.26.33-.07.43l4.78,2.77a.86.86,0,0,0,.76-.05l5.42-3.13c.23-.13.26-.33.08-.44L91.89,313A.83.83,0,0,0,91.13,313Zm9.73,9a.86.86,0,0,0,.76,0l5.42-3.13c.23-.13.27-.33.08-.44l-4.78-2.76a.86.86,0,0,0-.76,0l-5.43,3.13c-.23.14-.26.33-.07.44Zm22.06,5,5.43-3.13c.23-.13.26-.33.07-.43l-4.78-2.77a.83.83,0,0,0-.76,0l-5.42,3.13c-.23.13-.27.33-.08.44l4.78,2.76A.83.83,0,0,0,122.92,327.05Zm-8.68,4.62a.86.86,0,0,0,.76,0l5.42-3.13c.23-.13.26-.33.08-.44l-4.79-2.76a.86.86,0,0,0-.76,0l-5.42,3.13c-.23.14-.26.33-.07.44ZM99.06,308.46l-5.42,3.13c-.23.13-.27.33-.08.44l4.78,2.76a.86.86,0,0,0,.76,0l5.43-3.13c.23-.14.26-.33.07-.44l-4.78-2.76A.86.86,0,0,0,99.06,308.46Zm39.63-22.88-5.42,3.13c-.23.13-.27.33-.08.44l4.78,2.76a.86.86,0,0,0,.76,0l5.43-3.13c.23-.14.26-.33.07-.44l-4.78-2.76A.86.86,0,0,0,138.69,285.58ZM107,303.88,101.56,307c-.23.14-.26.33-.07.44l4.78,2.76a.86.86,0,0,0,.76,0l5.42-3.13c.23-.13.27-.33.08-.44l-4.79-2.76A.84.84,0,0,0,107,303.88ZM146.61,281l-5.42,3.13c-.23.14-.26.33-.07.44l4.78,2.76a.86.86,0,0,0,.76,0l5.42-3.13c.23-.13.27-.33.08-.44L147.37,281A.86.86,0,0,0,146.61,281Zm-15.85,9.16-5.42,3.13c-.23.13-.26.33-.08.43l4.79,2.77a.83.83,0,0,0,.76-.05l5.42-3.13c.23-.13.26-.33.08-.44l-4.79-2.76A.83.83,0,0,0,130.76,290.16Zm-7.92,4.57-5.43,3.13c-.23.13-.26.33-.07.44l4.78,2.76a.86.86,0,0,0,.76,0l5.42-3.13c.23-.14.27-.33.08-.44l-4.78-2.76A.86.86,0,0,0,122.84,294.73Zm-7.93,4.58-5.42,3.13c-.23.13-.27.33-.08.44l4.79,2.76a.81.81,0,0,0,.75-.05l5.43-3.13c.23-.13.26-.33.07-.43l-4.78-2.77A.83.83,0,0,0,114.91,299.31Zm36,2.93,5.42-3.13c.23-.13.27-.33.08-.44l-4.79-2.76a.86.86,0,0,0-.76,0l-5.42,3.13c-.23.14-.26.33-.07.44l4.78,2.76A.86.86,0,0,0,150.86,302.24ZM225,235.73l-5.42,3.13c-.24.13-.27.33-.08.43l4.78,2.77a.86.86,0,0,0,.76-.05l5.43-3.13c.23-.13.26-.33.07-.44l-4.78-2.76A.83.83,0,0,0,225,235.73Zm-9.6,5.53L210,244.4c-.23.13-.26.32-.07.43l4.78,2.77a.89.89,0,0,0,.76,0l5.42-3.13c.23-.13.26-.33.08-.44l-4.79-2.76A.86.86,0,0,0,215.44,241.26ZM233,231.15l-5.42,3.13c-.23.13-.26.33-.07.44l4.78,2.76a.86.86,0,0,0,.76,0l5.42-3.13c.23-.14.27-.33.08-.44l-4.79-2.76A.86.86,0,0,0,233,231.15ZM188.8,271.64l5.43-3.13c.23-.13.26-.33.07-.44l-4.78-2.76a.83.83,0,0,0-.76.05l-5.42,3.13c-.23.13-.27.33-.08.44l4.79,2.76A.81.81,0,0,0,188.8,271.64Zm52.85-45.11a.86.86,0,0,0-.76,0l-5.42,3.13c-.23.14-.27.33-.08.44l4.79,2.76a.84.84,0,0,0,.75,0l5.43-3.13c.23-.13.26-.33.07-.44Zm-82.87,71.13,5.43-3.13c.23-.13.26-.33.07-.44l-4.78-2.76a.83.83,0,0,0-.76.05l-5.42,3.13c-.23.13-.27.33-.08.43l4.79,2.77A.81.81,0,0,0,158.78,297.66ZM256,241.55l5.42-3.13c.23-.14.27-.33.08-.44l-4.79-2.76a.84.84,0,0,0-.75,0l-5.43,3.13c-.23.13-.26.33-.07.44l4.78,2.76A.86.86,0,0,0,256,241.55Zm-15.45.23,5.42-3.13c.23-.13.27-.33.08-.44l-4.78-2.76a.86.86,0,0,0-.76,0l-5.43,3.13c-.23.14-.26.33-.07.44l4.78,2.76A.86.86,0,0,0,240.53,241.78Zm8.64-10.91a.83.83,0,0,0-.76,0L243,234.05c-.23.13-.26.33-.08.44l4.79,2.76a.83.83,0,0,0,.76-.05l5.42-3.13c.23-.13.26-.33.08-.43Zm1.67-1L263.15,237a.89.89,0,0,0,.76-.05l5.42-3.13c.23-.13.26-.33.07-.44l-12.3-7.1a.86.86,0,0,0-.76,0l-5.42,3.13C250.69,229.6,250.65,229.8,250.84,229.91Zm-18.28,10.16-5.42,3.13c-.23.13-.27.33-.08.44l4.79,2.76a.86.86,0,0,0,.76,0l5.42-3.13c.23-.14.26-.33.07-.44L233.32,240A.89.89,0,0,0,232.56,240.07Zm-59.65,34.44-5.42,3.13c-.23.13-.27.33-.08.44l4.78,2.76a.86.86,0,0,0,.76,0l5.43-3.13c.23-.14.26-.33.07-.44l-4.78-2.76A.86.86,0,0,0,172.91,274.51Zm74.39-28.34a.81.81,0,0,0,.75,0l5.43-3.13c.23-.13.26-.33.07-.44l-4.78-2.76a.83.83,0,0,0-.76.05L242.59,243c-.23.13-.27.33-.08.43Zm-66.47,23.76-5.42,3.13c-.23.14-.26.33-.07.44l4.78,2.76a.86.86,0,0,0,.76,0l5.42-3.13c.23-.13.27-.33.08-.44l-4.79-2.76A.86.86,0,0,0,180.83,269.93ZM118.4,320.59a.83.83,0,0,0,.76,0l5.42-3.13c.23-.13.26-.33.07-.44l-4.78-2.76a.83.83,0,0,0-.76.05l-5.42,3.13c-.23.13-.27.33-.08.43Zm-8.9-9.47-5.42,3.13c-.23.13-.26.33-.08.44l4.79,2.76a.83.83,0,0,0,.76-.05l5.42-3.13c.23-.13.26-.33.07-.44l-4.78-2.76A.83.83,0,0,0,109.5,311.12ZM127.08,316l5.42-3.13c.23-.14.27-.33.08-.44l-4.78-2.76a.86.86,0,0,0-.76,0l-5.43,3.13c-.23.13-.26.33-.07.44l4.78,2.76A.86.86,0,0,0,127.08,316Zm7.93-4.58,5.42-3.13c.23-.13.26-.33.08-.44l-4.79-2.76a.86.86,0,0,0-.76,0l-5.42,3.13c-.23.14-.26.33-.08.44l4.79,2.76A.86.86,0,0,0,135,311.39Zm7.92-4.57,5.43-3.14c.23-.13.26-.32.07-.43l-4.78-2.77a.86.86,0,0,0-.76,0l-5.42,3.13c-.23.13-.27.33-.08.44l4.78,2.76A.86.86,0,0,0,142.93,306.82Zm-25.5-.28L112,309.67c-.24.13-.27.33-.08.44l4.78,2.76a.86.86,0,0,0,.76,0l5.43-3.13c.23-.14.26-.33.07-.44l-4.78-2.76A.86.86,0,0,0,117.43,306.54Zm7.92-4.58-5.42,3.14c-.23.13-.26.32-.07.43l4.78,2.77a.86.86,0,0,0,.76-.05l5.42-3.13c.23-.13.27-.33.08-.44l-4.79-2.76A.86.86,0,0,0,125.35,302Zm31.71-18.3-5.43,3.13c-.23.14-.26.33-.07.44l4.78,2.76a.86.86,0,0,0,.76,0l5.42-3.13c.23-.14.27-.33.08-.44l-4.78-2.76A.86.86,0,0,0,157.06,283.66Zm-7.93,4.58-5.42,3.13c-.23.13-.27.33-.08.44l4.79,2.76a.83.83,0,0,0,.76-.05l5.42-3.13c.23-.13.26-.33.07-.44l-4.78-2.76A.83.83,0,0,0,149.13,288.24ZM165,279.08l-5.42,3.14c-.23.13-.26.32-.08.43l4.79,2.77a.86.86,0,0,0,.76-.05l5.42-3.13c.23-.13.26-.33.08-.44L165.74,279A.86.86,0,0,0,165,279.08Zm-31.7,18.31-5.42,3.13c-.23.13-.27.33-.08.44l4.79,2.76a.84.84,0,0,0,.75,0l5.43-3.13c.23-.14.26-.33.07-.44L134,297.35A.86.86,0,0,0,133.28,297.39Zm7.93-4.58-5.43,3.13c-.23.14-.26.33-.07.44l4.78,2.76a.86.86,0,0,0,.76,0l5.42-3.13c.23-.13.27-.33.08-.44L142,292.77A.84.84,0,0,0,141.21,292.81Zm-10.36,29.67,5.42-3.13c.23-.14.27-.33.08-.44l-4.79-2.76a.84.84,0,0,0-.75,0l-5.43,3.13c-.23.13-.26.33-.07.44l4.78,2.76A.86.86,0,0,0,130.85,322.48Zm-42.1-2.15L84,317.57a.86.86,0,0,0-.76,0l-5.43,3.13c-.23.13-.26.33-.07.44l4.78,2.76a.86.86,0,0,0,.76,0l5.42-3.13C88.9,320.63,88.94,320.44,88.75,320.33ZM99.19,323l-4.78-2.76a.86.86,0,0,0-.76,0l-8.34,4.82c-.23.13-.27.32-.08.43L90,328.29a.84.84,0,0,0,.75-.05l8.35-4.81C99.35,323.29,99.38,323.1,99.19,323Zm-17.48-8.17-4.79-2.76a.84.84,0,0,0-.75,0L69.49,316c-.23.14-.26.33-.07.44l4.78,2.76a.86.86,0,0,0,.76,0l6.67-3.85C81.86,315.12,81.9,314.93,81.71,314.82Zm5.11-3a.86.86,0,0,0,.76,0L93,308.69c.23-.13.26-.33.07-.44l-4.78-2.76a.86.86,0,0,0-.76,0l-5.42,3.13c-.23.14-.27.33-.08.44Zm22,14.27L104,323.36a.86.86,0,0,0-.76.05l-10.43,6c-.23.13-.26.33-.07.44l4.78,2.76a.86.86,0,0,0,.76,0l10.43-6C109,326.43,109,326.24,108.8,326.13Zm3.77,6.51-4.78-2.76a.86.86,0,0,0-.76,0l-6.68,3.85c-.23.14-.26.33-.07.44l4.78,2.76a.86.86,0,0,0,.76,0l6.68-3.86C112.73,332.94,112.76,332.75,112.57,332.64Zm33.18-54.8a.86.86,0,0,0,.76,0l5.43-3.13c.23-.14.26-.33.07-.44l-4.78-2.76a.86.86,0,0,0-.76,0l-5.42,3.13c-.23.13-.27.33-.08.44ZM129.9,287a.86.86,0,0,0,.76,0l5.42-3.13c.23-.13.27-.33.08-.44l-4.78-2.76a.86.86,0,0,0-.76,0l-5.43,3.13c-.23.14-.26.33-.07.44Zm-35.15,20.3a.83.83,0,0,0,.76-.05l5.42-3.13c.23-.13.27-.33.08-.43l-4.79-2.77a.84.84,0,0,0-.75,0L90,304.09c-.23.13-.26.33-.07.44Zm43.08-24.87a.83.83,0,0,0,.76-.05l5.42-3.13c.23-.13.26-.33.08-.44L139.3,276a.83.83,0,0,0-.76,0l-5.42,3.13c-.23.13-.26.33-.08.44ZM122,291.57a.86.86,0,0,0,.76,0l5.42-3.14c.23-.13.26-.32.07-.43l-4.78-2.77a.89.89,0,0,0-.76.05l-5.42,3.13c-.23.13-.27.33-.08.44Zm-5,41.69a.86.86,0,0,0-.76,0l-8.34,4.82c-.23.13-.27.32-.08.43l4.78,2.77a.86.86,0,0,0,.76-.05l8.35-4.81c.23-.14.26-.33.07-.44Zm-6.38-35.12a.86.86,0,0,0,.76-.05l5.42-3.13c.23-.13.27-.33.08-.44l-4.78-2.76a.83.83,0,0,0-.76.05l-5.43,3.13c-.23.13-.26.33-.07.43Zm-7.92,4.57a.84.84,0,0,0,.75,0l5.43-3.13c.23-.14.26-.33.07-.44l-4.78-2.76a.86.86,0,0,0-.76,0L98,299.51c-.23.14-.27.33-.08.44Zm161.13-54.23a.84.84,0,0,0-.75,0l-13.35,7.71c-.23.13-.27.33-.08.44l4.79,2.76a.84.84,0,0,0,.75,0l13.35-7.71c.23-.13.27-.33.08-.44Zm-17.52,10.11a.87.87,0,0,0-.75.05l-5.43,3.13c-.23.13-.26.33-.07.44l4.78,2.76a.86.86,0,0,0,.76,0l5.42-3.14c.23-.13.27-.32.08-.43ZM138.78,317.9l5.42-3.13c.23-.13.26-.33.07-.44l-4.78-2.76a.86.86,0,0,0-.76,0l-5.42,3.14c-.23.13-.27.32-.08.43L138,318A.89.89,0,0,0,138.78,317.9Zm91.66-50.15a.86.86,0,0,0-.76,0l-5.42,3.13c-.23.13-.26.33-.07.44l4.78,2.76a.86.86,0,0,0,.76,0l5.42-3.13c.23-.14.27-.33.08-.44Zm41.3-23.85a.83.83,0,0,0-.76,0l-5.42,3.13c-.23.13-.27.33-.08.44l4.79,2.76a.83.83,0,0,0,.76-.05l5.42-3.13c.23-.13.26-.33.07-.43Zm12.71-1.81L272.14,235a.86.86,0,0,0-.76.05L266,238.16c-.23.13-.26.33-.07.44l12.3,7.1a.86.86,0,0,0,.76,0l5.42-3.13C284.6,242.39,284.64,242.2,284.45,242.09Zm-83.62,42.76a.86.86,0,0,0-.76,0l-6.68,3.85c-.23.14-.26.33-.07.44l4.78,2.76a.86.86,0,0,0,.76,0l6.67-3.85c.23-.14.27-.33.08-.44Zm20-11.56a.86.86,0,0,0-.76,0l-8.34,4.82c-.23.13-.27.33-.08.43l4.78,2.77a.83.83,0,0,0,.76-.05l8.35-4.81c.23-.14.26-.33.07-.44Zm-38.38,22.15a.83.83,0,0,0-.76.05l-44.63,25.77c-.23.13-.27.33-.08.43l4.79,2.77a.81.81,0,0,0,.75,0l44.64-25.77c.23-.13.26-.33.07-.44Zm-47.14,27.22a.86.86,0,0,0-.76,0l-6.67,3.86c-.23.13-.26.32-.08.43l4.79,2.77a.89.89,0,0,0,.76-.05l6.67-3.85c.23-.13.27-.33.08-.44Zm56.32-32.52a.89.89,0,0,0-.76.05L184.22,294c-.24.14-.27.33-.08.44l4.78,2.76a.86.86,0,0,0,.76,0l6.68-3.86c.23-.13.26-.32.07-.43ZM126.16,328a.86.86,0,0,0-.76,0l-6.68,3.85c-.23.14-.26.33-.07.44l4.78,2.76a.86.86,0,0,0,.76,0l6.67-3.85c.23-.14.27-.33.08-.44ZM210,279.55a.86.86,0,0,0-.76,0l-6.67,3.85c-.23.14-.26.33-.08.44l4.79,2.76a.86.86,0,0,0,.76,0l6.67-3.85c.23-.14.26-.33.08-.44Zm28.37-16.38a.86.86,0,0,0-.76,0l-5.42,3.14c-.23.13-.27.32-.08.43l4.79,2.77a.87.87,0,0,0,.75-.05l5.43-3.13c.23-.13.26-.33.07-.44Zm17.21-12.7,5.42-3.13c.23-.14.26-.33.08-.44l-4.79-2.76a.86.86,0,0,0-.76,0l-5.42,3.13c-.23.13-.26.33-.08.44l4.79,2.76A.86.86,0,0,0,255.58,250.47ZM223,251.9l5.42-3.14c.23-.13.27-.32.08-.43l-4.78-2.77a.86.86,0,0,0-.76.05l-5.43,3.13c-.23.13-.26.33-.07.44l4.78,2.76A.86.86,0,0,0,223,251.9Zm-20.83,29.39L218,272.14c.23-.13.27-.33.08-.44l-4.78-2.76a.83.83,0,0,0-.76.05l-15.85,9.15c-.24.13-.27.33-.08.44l4.78,2.76A.83.83,0,0,0,202.18,281.29Zm44.71-26.2a.83.83,0,0,0,.76-.05l5.42-3.13c.23-.13.27-.33.08-.44l-4.78-2.76a.83.83,0,0,0-.76,0l-5.43,3.13c-.23.13-.26.33-.07.43Zm-6.76-4.39,5.42-3.13c.23-.13.27-.33.08-.44l-4.79-2.76a.86.86,0,0,0-.76,0l-5.42,3.13c-.23.14-.26.33-.07.44l4.78,2.76A.86.86,0,0,0,240.13,250.7Zm-45.87,35.17,5.42-3.13c.23-.13.26-.33.07-.44L195,279.54a.86.86,0,0,0-.76,0l-5.42,3.13c-.23.14-.27.33-.08.44l4.79,2.76A.86.86,0,0,0,194.26,285.87Zm35.11-20.67a.86.86,0,0,0,.76,0l5.42-3.13c.23-.14.27-.33.08-.44l-4.78-2.76a.86.86,0,0,0-.76,0L224.66,262c-.23.13-.26.33-.07.44Zm-74.74,43.55,5.42-3.13c.23-.13.26-.33.08-.44l-4.79-2.76a.86.86,0,0,0-.76,0l-5.42,3.13c-.23.14-.26.33-.08.44l4.79,2.76A.86.86,0,0,0,154.63,308.75Zm7.92-4.58L168,301c.23-.13.26-.33.07-.43l-4.78-2.77a.83.83,0,0,0-.76.05L157.09,301c-.23.13-.27.33-.08.44l4.78,2.76A.83.83,0,0,0,162.55,304.17Zm-15.85,9.16,5.42-3.13c.23-.14.27-.33.08-.44L147.42,307a.86.86,0,0,0-.76,0l-5.43,3.13c-.23.13-.26.33-.07.44l4.78,2.76A.86.86,0,0,0,146.7,313.33ZM178.4,295l5.43-3.13c.23-.13.26-.33.07-.44l-4.78-2.76a.86.86,0,0,0-.76,0l-5.42,3.14c-.23.13-.27.32-.08.43l4.79,2.77A.84.84,0,0,0,178.4,295Zm-7.92,4.58,5.42-3.13c.23-.14.27-.33.08-.44l-4.79-2.76a.86.86,0,0,0-.76,0L165,296.44c-.23.13-.26.33-.07.44l4.78,2.76A.86.86,0,0,0,170.48,299.6Zm15.85-9.15,5.42-3.13c.23-.14.27-.33.08-.44L187,284.12a.84.84,0,0,0-.75,0l-5.43,3.13c-.23.13-.26.33-.07.44l4.78,2.76A.86.86,0,0,0,186.33,290.45Zm43.8-63.35a.84.84,0,0,0,.75,0l5.43-3.13c.23-.14.26-.33.07-.44l-1.27-.74a.89.89,0,0,0-.76.05l-5.42,3.13c-.23.13-.27.33-.08.44ZM190.58,252a.86.86,0,0,0,.76,0l5.43-3.14c.23-.13.26-.32.07-.43l-4.78-2.77a.86.86,0,0,0-.76,0l-5.42,3.13c-.24.13-.27.33-.08.44Zm15.86-9.15a.81.81,0,0,0,.75-.05l5.43-3.13c.23-.13.26-.33.07-.44l-4.78-2.76a.83.83,0,0,0-.76,0l-5.42,3.13c-.23.13-.27.33-.08.44Zm-25.53,14.74a.81.81,0,0,0,.75-.05l5.43-3.13c.23-.13.26-.33.07-.44l-4.78-2.76a.83.83,0,0,0-.76.05l-5.42,3.13c-.23.13-.27.33-.08.43Zm17.6-10.17a.86.86,0,0,0,.76,0l5.42-3.13c.23-.13.27-.33.08-.44L200,241a.86.86,0,0,0-.76,0l-5.42,3.13c-.23.14-.26.33-.07.44ZM165.05,266.7a.83.83,0,0,0,.76-.05l5.43-3.13c.23-.13.26-.33.07-.43l-4.78-2.77a.86.86,0,0,0-.76.05l-5.42,3.13c-.24.13-.27.33-.08.44Zm7.93-4.58a.86.86,0,0,0,.76,0l5.42-3.13c.23-.14.27-.33.08-.44l-4.79-2.76a.86.86,0,0,0-.76,0l-5.42,3.13c-.23.14-.26.33-.07.44Zm41.29-25.87a.86.86,0,0,0,.76,0l5.43-3.13c.23-.13.26-.33.07-.44l-1.27-.73a.86.86,0,0,0-.76,0l-5.42,3.13c-.23.13-.27.33-.08.44Zm23.78-13.72a.83.83,0,0,0,.76-.05l5.42-3.13c.23-.13.27-.33.08-.44l-1.27-.73a.86.86,0,0,0-.76,0l-5.43,3.13c-.23.14-.26.33-.07.44Zm10,5.8a.83.83,0,0,0,.76-.05l5.42-3.13c.23-.13.27-.33.08-.43L249.57,222a.81.81,0,0,0-.75.05l-5.43,3.13c-.23.13-.26.33-.07.44Zm15.4,17.56,5.43-3.13c.23-.13.26-.33.07-.44l-4.78-2.76a.86.86,0,0,0-.76,0L258,242.73c-.23.14-.27.33-.08.44l4.78,2.76A.86.86,0,0,0,263.5,245.89Zm-41.3-14.21a.83.83,0,0,0,.76-.05l5.42-3.13c.23-.13.27-.33.08-.43l-1.28-.74a.86.86,0,0,0-.76,0L221,230.51c-.23.13-.26.32-.07.43Zm-65.07,39.59a.86.86,0,0,0,.76,0l5.42-3.13c.23-.13.26-.33.08-.44l-4.79-2.76a.86.86,0,0,0-.76,0l-5.42,3.13c-.23.14-.26.33-.08.44Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"181.39 312.2 182.51 312.85 212.04 329.89 264.56 299.57 265.66 298.95 235.01 281.26 181.39 312.2\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"264.07 299.85 235.01 283.08 183 313.13 212.04 329.89 264.07 299.85\",\n style: {\n fill: \"#37474f\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M30,306.69c-2.38-1.68-2.39-3.92-2.39-7V153.3a10.76,10.76,0,0,1,4.87-8.43L219,37.14c2.68-1.55,5.16-.43,7.69,1s4.12,2.71,4.12,5.81V190.35a10.73,10.73,0,0,1-4.86,8.43L39.38,306.51C35.31,309.26,32.54,308.51,30,306.69Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M39.38,306.51c-4.07,2.74-6.85,2-9.43.17-2.38-1.67-2.39-3.91-2.39-7V153.3A10,10,0,0,1,29,148.51l7,4.05a9.93,9.93,0,0,0-1.41,4.77V303.7C34.52,306.8,36.69,308.06,39.38,306.51Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M34.51,157.34V303.7c0,3.11,2.18,4.36,4.87,2.81L226,198.78a10.73,10.73,0,0,0,4.86-8.43V44c0-3.1-2.17-4.36-4.86-2.81L39.38,148.91A10.74,10.74,0,0,0,34.51,157.34Z\",\n style: {\n fill: \"#37474f\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M42,154.52,221.9,50.68c1.61-.93,2.92-.18,2.92,1.69V185.75a6.47,6.47,0,0,1-2.92,5.06L42,294.65c-1.61.93-2.92.17-2.92-1.69V159.58A6.47,6.47,0,0,1,42,154.52Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M42,154.52a6.47,6.47,0,0,0-2.92,5.06V292.1L217.92,188.87a6.44,6.44,0,0,0,2.92-5.06V51.29Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M42,154.52a6.47,6.47,0,0,0-2.92,5.06V292.1L217.92,188.87a6.44,6.44,0,0,0,2.92-5.06V51.29Z\",\n style: {\n fill: \"#fff\",\n opacity: 0.7000000000000001\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Window--inject-87\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M50.6,273.16c0,2.17,1.52,3,3.4,2l155.9-90a7.53,7.53,0,0,0,3.41-5.89V75.89L50.6,169.83Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M212.52,77.25v102a6.77,6.77,0,0,1-3,5.21l-155.91,90a2.25,2.25,0,0,1-1.12.36c-1,0-1.1-1.15-1.1-1.64V170.28l161.14-93m.78-1.36L50.6,169.83V273.16c0,1.54.76,2.43,1.88,2.43a3.08,3.08,0,0,0,1.52-.47l155.9-90a7.53,7.53,0,0,0,3.41-5.89V75.89Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"50.59 169.83 50.59 184.56 213.3 90.62 213.3 75.89 50.59 169.83\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M152.69,116.66v3.17c0,.65.46.91,1,.59l50-28.88V86l-50,28.88A2.28,2.28,0,0,0,152.69,116.66Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M209.09,82.92c.57-.33,1-.06,1,.59v3.17a2.22,2.22,0,0,1-1,1.76l-5.36,3.1V86Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M208.7,87.26l-.6-.18a3.46,3.46,0,0,0,.1-.77,1.4,1.4,0,0,0-.55-1.28.85.85,0,0,0-.87,0,3.07,3.07,0,0,0-1.2,2.49,1.39,1.39,0,0,0,.55,1.27.76.76,0,0,0,.38.11.93.93,0,0,0,.49-.15,2.55,2.55,0,0,0,1-1.29l.6.19h.06a.21.21,0,0,0,.21-.16A.22.22,0,0,0,208.7,87.26Zm-1.92,1.15a.43.43,0,0,1-.43,0,1,1,0,0,1-.32-.89,2.64,2.64,0,0,1,1-2.1.54.54,0,0,1,.27-.09.42.42,0,0,1,.16,0,1.05,1.05,0,0,1,.32.9A2.67,2.67,0,0,1,206.78,88.41Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M50.6,162.7a7.53,7.53,0,0,1,3.4-5.89l155.9-90c1.88-1.08,3.4-.2,3.4,2v7.13L50.6,169.83Z\",\n style: {\n fill: \"#37474f\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M194.16,79.56a3.53,3.53,0,0,0-1.59,2.77c0,1,.71,1.43,1.59.92a3.54,3.54,0,0,0,1.6-2.77C195.76,79.47,195,79.06,194.16,79.56Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M199.75,76.35a3.5,3.5,0,0,0-1.6,2.76c0,1,.71,1.43,1.6.92a3.52,3.52,0,0,0,1.59-2.76C201.34,76.25,200.63,75.84,199.75,76.35Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"ellipse\", {\n cx: 205.33,\n cy: 74.98,\n rx: 2.26,\n ry: 1.3,\n transform: \"translate(37.76 215.34) rotate(-60.01)\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M54,275.12l28.5-16.46V166.13L50.6,184.56v88.6C50.6,275.33,52.12,276.21,54,275.12Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M81.72,167.49v90.72L53.6,274.44a2.25,2.25,0,0,1-1.12.36c-1,0-1.1-1.15-1.1-1.64V185l30.34-17.52m.78-1.36L50.6,184.56v88.6c0,1.54.76,2.43,1.88,2.43a3.08,3.08,0,0,0,1.52-.47l28.5-16.46V166.13Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M61.19,185.81,76.45,177c.56-.33,1-.07,1,.58v1.33a2.28,2.28,0,0,1-1,1.77l-15.26,8.82c-.57.33-1,.06-1-.59v-1.32A2.24,2.24,0,0,1,61.19,185.81Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M57,189.42v1.33a2.24,2.24,0,0,1-1,1.76l-1.15.67c-.57.32-1,.06-1-.59v-1.33a2.25,2.25,0,0,1,1-1.77l1.15-.66C56.52,188.5,57,188.77,57,189.42Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M61.19,193.15l15.26-8.82c.56-.33,1-.07,1,.59v1.32a2.26,2.26,0,0,1-1,1.77l-15.26,8.82c-.57.33-1,.07-1-.59v-1.32A2.25,2.25,0,0,1,61.19,193.15Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M57,196.76v1.33a2.24,2.24,0,0,1-1,1.76l-1.15.67c-.57.32-1,.06-1-.59V198.6a2.25,2.25,0,0,1,1-1.77l1.15-.66C56.52,195.84,57,196.11,57,196.76Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M61.19,200.49l15.26-8.82c.56-.33,1-.06,1,.59v1.32a2.26,2.26,0,0,1-1,1.77l-15.26,8.82c-.57.33-1,.07-1-.58v-1.33A2.25,2.25,0,0,1,61.19,200.49Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M57,204.1v1.33a2.24,2.24,0,0,1-1,1.76l-1.15.67c-.57.32-1,.06-1-.59v-1.33a2.25,2.25,0,0,1,1-1.77l1.15-.66C56.52,203.19,57,203.45,57,204.1Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M61.19,224.83,76.45,216c.56-.33,1-.06,1,.59v1.33a2.24,2.24,0,0,1-1,1.76l-15.26,8.83c-.57.32-1,.06-1-.59V226.6A2.25,2.25,0,0,1,61.19,224.83Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M57,228.44v1.33a2.28,2.28,0,0,1-1,1.77l-1.15.66c-.57.32-1,.06-1-.59v-1.33a2.22,2.22,0,0,1,1-1.76l1.15-.67C56.52,227.53,57,227.79,57,228.44Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M61.19,231.33l15.26-8.82c.56-.33,1-.06,1,.59v1.33a2.24,2.24,0,0,1-1,1.76L61.19,235c-.57.32-1,.06-1-.59V233.1A2.25,2.25,0,0,1,61.19,231.33Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M57,234.94v1.33A2.28,2.28,0,0,1,56,238l-1.15.66c-.57.33-1,.06-1-.59v-1.33a2.22,2.22,0,0,1,1-1.76l1.15-.67C56.52,234,57,234.29,57,234.94Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M61.19,237.83,76.45,229c.56-.32,1-.06,1,.59v1.33a2.28,2.28,0,0,1-1,1.77l-15.26,8.82c-.57.32-1,.06-1-.59V239.6A2.25,2.25,0,0,1,61.19,237.83Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M57,241.44v1.33a2.28,2.28,0,0,1-1,1.77l-1.15.66c-.57.33-1,.06-1-.59v-1.32a2.22,2.22,0,0,1,1-1.77l1.15-.67C56.52,240.53,57,240.79,57,241.44Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"60.17 208.5 60.17 210.79 62.15 208.5 60.17 208.5\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M63.36,208c0,.42.3.59.68.38l12.75-7.35a1.47,1.47,0,0,0,.68-1.17c0-.43-.3-.6-.68-.38L64,206.87A1.45,1.45,0,0,0,63.36,208Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"60.17 212.19 60.17 214.47 62.15 212.19 60.17 212.19\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M63.36,211.71c0,.43.3.6.68.38l12.75-7.34a1.49,1.49,0,0,0,.68-1.17c0-.44-.3-.61-.68-.39L64,210.55A1.49,1.49,0,0,0,63.36,211.71Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"60.17 215.87 60.17 218.16 62.15 215.87 60.17 215.87\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M63.36,215.4c0,.42.3.59.68.37l12.75-7.34a1.49,1.49,0,0,0,.68-1.17c0-.43-.3-.61-.68-.39L64,214.23A1.49,1.49,0,0,0,63.36,215.4Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"60.17 219.55 60.17 221.84 62.15 219.55 60.17 219.55\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M63.36,219.08c0,.42.3.59.68.38l12.75-7.35a1.47,1.47,0,0,0,.68-1.17c0-.43-.3-.6-.68-.39L64,217.92A1.45,1.45,0,0,0,63.36,219.08Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M92.07,172.3v19.19c0,.81.57,1.13,1.26.73L114.44,180a2.8,2.8,0,0,0,1.26-2.18V162.07c0-.81-.57-1.13-1.26-.73l-12.25,7.07c-.7.4-1.26.08-1.26-.73v-.5c0-.8-.56-1.13-1.26-.73l-6.34,3.67A2.78,2.78,0,0,0,92.07,172.3Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M96.22,195.11v1.23c0,.6.42.85.94.55L113,187.75a2.1,2.1,0,0,0,.94-1.64v-1.23c0-.6-.42-.84-.94-.54l-15.84,9.14A2.08,2.08,0,0,0,96.22,195.11Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M121.42,155.45v19.19c0,.8.56,1.13,1.26.73l21.1-12.19A2.77,2.77,0,0,0,145,161V145.22c0-.81-.56-1.13-1.26-.73l-12.24,7.07c-.7.4-1.26.08-1.26-.73v-.5c0-.8-.57-1.13-1.26-.73l-6.34,3.66A2.79,2.79,0,0,0,121.42,155.45Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M125.57,178.26v1.23c0,.6.42.85.94.55l15.83-9.14a2.12,2.12,0,0,0,.95-1.64V168c0-.6-.43-.85-.95-.54l-15.83,9.14A2.08,2.08,0,0,0,125.57,178.26Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M92.07,210.86v19.19c0,.81.57,1.13,1.26.73l21.11-12.18a2.82,2.82,0,0,0,1.26-2.19V200.63c0-.8-.57-1.13-1.26-.73L102.19,207c-.7.4-1.26.08-1.26-.72v-.51c0-.8-.56-1.12-1.26-.72l-6.34,3.66A2.8,2.8,0,0,0,92.07,210.86Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M96.22,233.68v1.23c0,.6.42.84.94.54L113,226.31a2.08,2.08,0,0,0,.94-1.64v-1.23c0-.6-.42-.84-.94-.54L97.16,232A2.08,2.08,0,0,0,96.22,233.68Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M121.42,194V213.2c0,.81.56,1.13,1.26.73l21.1-12.19a2.76,2.76,0,0,0,1.26-2.18V183.78c0-.81-.56-1.13-1.26-.73l-12.24,7.07c-.7.4-1.26.08-1.26-.73v-.5c0-.8-.57-1.13-1.26-.72l-6.34,3.66A2.77,2.77,0,0,0,121.42,194Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M125.57,216.82v1.23c0,.61.42.85.94.55l15.83-9.14a2.09,2.09,0,0,0,.95-1.64v-1.23c0-.6-.43-.84-.95-.54l-15.83,9.14A2.08,2.08,0,0,0,125.57,216.82Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M151.11,137.67v19.19c0,.81.56,1.13,1.26.73l21.1-12.19a2.76,2.76,0,0,0,1.26-2.18V127.44c0-.81-.56-1.13-1.26-.73l-12.25,7.07c-.69.4-1.26.08-1.26-.72v-.51c0-.8-.57-1.13-1.26-.72l-6.35,3.66A2.79,2.79,0,0,0,151.11,137.67Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M154.91,161.41v1.23c0,.6.42.85,1,.55l15.83-9.14a2.11,2.11,0,0,0,.94-1.64v-1.23c0-.6-.42-.85-.94-.55l-15.83,9.15A2.06,2.06,0,0,0,154.91,161.41Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M180.11,121.74v19.2c0,.8.56,1.13,1.26.73l21.1-12.19a2.77,2.77,0,0,0,1.26-2.18V111.51c0-.8-.56-1.13-1.26-.72l-12.24,7.07c-.7.4-1.26.07-1.26-.73v-.5c0-.8-.57-1.13-1.26-.73l-6.34,3.66A2.77,2.77,0,0,0,180.11,121.74Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M184.26,144.56v1.23c0,.6.42.85.94.55L201,137.19a2.09,2.09,0,0,0,.95-1.63v-1.23c0-.6-.43-.85-.95-.55l-15.83,9.14A2.11,2.11,0,0,0,184.26,144.56Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M154.91,200v1.23c0,.6.42.85,1,.54l15.83-9.14a2.08,2.08,0,0,0,.94-1.63v-1.23c0-.6-.42-.85-.94-.55l-15.83,9.14A2.08,2.08,0,0,0,154.91,200Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M155.31,173l16.42-9.48c.75-.43,1.36-.08,1.36.79v19a3,3,0,0,1-1.36,2.35l-16.42,9.48c-.75.44-1.36.08-1.36-.78v-19A3,3,0,0,1,155.31,173Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M154.7,195.66a1.12,1.12,0,0,1-.55-.14,1.35,1.35,0,0,1-.6-1.22v-19a3.42,3.42,0,0,1,1.56-2.7h0l16.42-9.48a1.34,1.34,0,0,1,1.36-.09,1.32,1.32,0,0,1,.59,1.22v19a3.39,3.39,0,0,1-1.55,2.69l-16.43,9.48A1.6,1.6,0,0,1,154.7,195.66Zm.8-22.34a2.63,2.63,0,0,0-1.16,2v19a.45.45,0,0,0,.77.44l16.42-9.48a2.62,2.62,0,0,0,1.17-2v-19a.6.6,0,0,0-.21-.54c-.12-.08-.33,0-.56.09l-16.43,9.48Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M173.66,166.06,170,168.17a3,3,0,0,0-1.36,2.36v4.23c0,.86.61,1.22,1.36.78l3.66-2.11a3,3,0,0,0,1.36-2.36v-4.22C175,166,174.41,165.63,173.66,166.06Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M156.56,175l8.23-4.73c.37-.22.68,0,.68.39V171a1.52,1.52,0,0,1-.68,1.18l-8.23,4.74c-.38.22-.68,0-.68-.39v-.27A1.49,1.49,0,0,1,156.56,175Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M156.56,178.71l8.23-4.73c.37-.22.68,0,.68.39v.26a1.53,1.53,0,0,1-.68,1.18l-8.23,4.74c-.38.22-.68,0-.68-.39v-.27A1.48,1.48,0,0,1,156.56,178.71Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M156.56,182.39l8.23-4.74c.37-.21.68,0,.68.4v.26a1.53,1.53,0,0,1-.68,1.18l-8.23,4.74c-.38.22-.68,0-.68-.39v-.28A1.47,1.47,0,0,1,156.56,182.39Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M156.56,186.07l13.67-7.88c.37-.22.68,0,.68.39v.26a1.5,1.5,0,0,1-.68,1.18l-13.67,7.89c-.38.22-.68,0-.68-.39v-.28A1.47,1.47,0,0,1,156.56,186.07Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M156.56,189.75l13.67-7.88c.37-.22.68,0,.68.39v.26a1.52,1.52,0,0,1-.68,1.18l-13.67,7.89c-.38.21-.68,0-.68-.4v-.27A1.47,1.47,0,0,1,156.56,189.75Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M183.62,183.38v1.23c0,.6.43.85.95.55L200.4,176a2.11,2.11,0,0,0,.95-1.64v-1.23c0-.6-.43-.85-.95-.54l-15.83,9.14A2.09,2.09,0,0,0,183.62,183.38Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M184,156.4l16.42-9.48c.75-.43,1.36-.08,1.36.79v19a3,3,0,0,1-1.36,2.35L184,178.51c-.75.43-1.36.08-1.36-.79v-19A3,3,0,0,1,184,156.4Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M183.41,179.08a1,1,0,0,1-.55-.14,1.33,1.33,0,0,1-.59-1.22v-19a3.41,3.41,0,0,1,1.55-2.7l16.43-9.48a1.22,1.22,0,0,1,1.95,1.13v19a3.39,3.39,0,0,1-1.56,2.69l-16.42,9.49A1.72,1.72,0,0,1,183.41,179.08Zm17.64-32a.92.92,0,0,0-.41.13l-16.42,9.49a2.6,2.6,0,0,0-1.17,2v19a.6.6,0,0,0,.21.54c.12.08.33,0,.56-.09l16.43-9.49a2.59,2.59,0,0,0,1.16-2v-19c0-.27-.07-.47-.2-.54A.29.29,0,0,0,201.05,147.13Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M202.37,149.48l-3.66,2.12a3,3,0,0,0-1.36,2.35v4.23c0,.87.61,1.22,1.36.79l3.66-2.12a3,3,0,0,0,1.36-2.35v-4.23C203.73,149.4,203.13,149.05,202.37,149.48Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M185.27,158.45l8.23-4.73c.37-.22.68,0,.68.39v.27a1.5,1.5,0,0,1-.68,1.17l-8.23,4.74c-.37.22-.68,0-.68-.39v-.27A1.53,1.53,0,0,1,185.27,158.45Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M185.27,162.13l8.23-4.73c.37-.22.68,0,.68.39v.26a1.5,1.5,0,0,1-.68,1.18L185.27,164c-.37.22-.68,0-.68-.39v-.27A1.53,1.53,0,0,1,185.27,162.13Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M185.27,165.81l8.23-4.73c.37-.22.68,0,.68.39v.26a1.52,1.52,0,0,1-.68,1.18l-8.23,4.74c-.37.22-.68,0-.68-.39V167A1.52,1.52,0,0,1,185.27,165.81Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M185.27,169.49l13.67-7.88c.38-.21.68,0,.68.4v.26a1.47,1.47,0,0,1-.68,1.17l-13.67,7.89c-.37.22-.68,0-.68-.39v-.27A1.52,1.52,0,0,1,185.27,169.49Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M185.27,173.17l13.67-7.88c.38-.22.68,0,.68.39V166a1.47,1.47,0,0,1-.68,1.17L185.27,175c-.37.22-.68,0-.68-.39v-.27A1.52,1.52,0,0,1,185.27,173.17Z\",\n style: {\n fill: \"#ebebeb\"\n }\n })))), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Folder--inject-87\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--folder--inject-87\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M289.56,240.62v9.3L128.34,343h0l-5,2.85a8.65,8.65,0,0,1-3.79-6.85V182.25a1.67,1.67,0,0,1,.23-.79,1.79,1.79,0,0,1,.58-.61l36.74-21.21c.45-.26,3.07.84,3.5,1.1l.28.16a2.58,2.58,0,0,1,.64.57,2.13,2.13,0,0,1,.47.77l3.33,9.61L285,100.61a1.8,1.8,0,0,1,1.57,0l2.22,1.29a1.62,1.62,0,0,1,.57.59,1.68,1.68,0,0,1,.24.81V240.62Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M289.56,240.62v9.3L128.34,343h0l-5,2.85a8.65,8.65,0,0,1-3.79-6.85V182.25a1.67,1.67,0,0,1,.23-.79,1.79,1.79,0,0,1,.58-.61l36.74-21.21c.45-.26,3.07.84,3.5,1.1l.28.16a2.58,2.58,0,0,1,.64.57,2.13,2.13,0,0,1,.47.77l3.33,9.61L285,100.61a1.8,1.8,0,0,1,1.57,0l2.22,1.29a1.62,1.62,0,0,1,.57.59,1.68,1.68,0,0,1,.24.81V240.62Z\",\n style: {\n opacity: 0.5\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M289.56,249.92,123.38,345.85V183.5l38.18-22a2.13,2.13,0,0,1,.47.77l3.33,9.61.63,1.82,123.32-71.21a1.68,1.68,0,0,1,.24.81Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M289.56,249.92,123.38,345.85V183.5l38.18-22a2.13,2.13,0,0,1,.47.77l3.33,9.61.63,1.82,123.32-71.21a1.68,1.68,0,0,1,.24.81Z\",\n style: {\n opacity: 0.35000000000000003\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M161.56,161.47l-38.18,22-3.56-2a1.79,1.79,0,0,1,.58-.61l36.75-21.21a1.72,1.72,0,0,1,1.59,0l2.18,1.26A2.58,2.58,0,0,1,161.56,161.47Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M161.56,161.47l-38.18,22-3.56-2a1.79,1.79,0,0,1,.58-.61l36.75-21.21a1.72,1.72,0,0,1,1.59,0l2.18,1.26A2.58,2.58,0,0,1,161.56,161.47Z\",\n style: {\n opacity: 0.2\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M289.31,102.46,166,173.67l-.63-1.82L285,100.6a1.84,1.84,0,0,1,1.57,0l2.22,1.29A1.62,1.62,0,0,1,289.31,102.46Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M289.31,102.46,166,173.67l-.63-1.82L285,100.6a1.84,1.84,0,0,1,1.57,0l2.22,1.29A1.62,1.62,0,0,1,289.31,102.46Z\",\n style: {\n opacity: 0.2\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Document--inject-87\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M170.79,303.29a4.09,4.09,0,0,1-1.79-3.24V139.42a4.21,4.21,0,0,1,1.91-3.31l102.29-59a3.58,3.58,0,0,1,5.49,3.17V240.91a4.21,4.21,0,0,1-1.91,3.31l-102.29,59A4.09,4.09,0,0,1,170.79,303.29Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M174.49,303.22l102.29-59a4.21,4.21,0,0,0,1.91-3.31V80.28c0-1.22-.85-1.71-1.91-1.11l-102.29,59a4.24,4.24,0,0,0-1.91,3.31V302.12C172.58,303.34,173.44,303.83,174.49,303.22Z\",\n style: {\n fill: \"#f0f0f0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M184.89,144.56l79.05-45.65c.93-.54,1.69-.1,1.69,1v.67a3.73,3.73,0,0,1-1.69,2.92l-79.05,45.64c-.93.54-1.69.11-1.68-1v-.67A3.7,3.7,0,0,1,184.89,144.56Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M184.89,155.94l79.05-45.65c.93-.53,1.69-.1,1.69,1v.67a3.71,3.71,0,0,1-1.69,2.91L184.89,160.5c-.93.54-1.69.1-1.68-1v-.67A3.72,3.72,0,0,1,184.89,155.94Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M184.89,167.32l79.05-45.64c.93-.54,1.69-.1,1.69,1v.67a3.75,3.75,0,0,1-1.69,2.92l-79.05,45.64c-.93.54-1.69.1-1.68-1v-.67A3.73,3.73,0,0,1,184.89,167.32Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M184.89,178.71l79.05-45.65c.93-.53,1.69-.1,1.69,1v.68a3.73,3.73,0,0,1-1.69,2.91l-79.05,45.65c-.93.53-1.69.1-1.68-1v-.68A3.72,3.72,0,0,1,184.89,178.71Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M184.89,190.09l79.05-45.64c.93-.54,1.69-.11,1.69,1v.67a3.75,3.75,0,0,1-1.69,2.92l-79.05,45.64c-.93.54-1.69.1-1.68-1V193A3.73,3.73,0,0,1,184.89,190.09Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M184.89,201.56l79.05-45.65c.93-.53,1.69-.1,1.69,1v.67a3.71,3.71,0,0,1-1.69,2.91l-79.05,45.65c-.93.54-1.69.1-1.68-1v-.67A3.72,3.72,0,0,1,184.89,201.56Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M184.89,212.94l79.05-45.64c.93-.54,1.69-.1,1.69,1v.67a3.73,3.73,0,0,1-1.69,2.92L184.89,217.5c-.93.54-1.69.11-1.68-1v-.67A3.73,3.73,0,0,1,184.89,212.94Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M184.89,224.33l79.05-45.65c.93-.53,1.69-.1,1.69,1v.68a3.71,3.71,0,0,1-1.69,2.91l-79.05,45.65c-.93.54-1.69.1-1.68-1v-.67A3.72,3.72,0,0,1,184.89,224.33Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M184.89,235.71l79.05-45.64c.93-.54,1.69-.1,1.69,1v.67a3.75,3.75,0,0,1-1.69,2.92l-79.05,45.64c-.93.54-1.69.1-1.68-1v-.67A3.73,3.73,0,0,1,184.89,235.71Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M184.89,247.1l79.05-45.65c.93-.54,1.69-.1,1.69,1v.67a3.73,3.73,0,0,1-1.69,2.92l-79.05,45.65c-.93.53-1.69.1-1.68-1V250A3.7,3.7,0,0,1,184.89,247.1Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M184.89,258.53l79.05-45.64c.93-.54,1.69-.11,1.69,1v.67a3.75,3.75,0,0,1-1.69,2.92l-79.05,45.64c-.93.54-1.69.1-1.68-1v-.67A3.72,3.72,0,0,1,184.89,258.53Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M184.89,269.92l79.05-45.65c.93-.54,1.69-.1,1.69,1v.67a3.73,3.73,0,0,1-1.69,2.92l-79.05,45.65c-.93.53-1.69.1-1.68-1v-.67A3.7,3.7,0,0,1,184.89,269.92Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M184.89,281.3l79.05-45.65c.93-.53,1.69-.1,1.69,1v.67a3.71,3.71,0,0,1-1.69,2.91l-79.05,45.65c-.93.54-1.69.1-1.68-1v-.67A3.72,3.72,0,0,1,184.89,281.3Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M174.24,303.35a3.57,3.57,0,0,1-5.24-3.3V139.42a4,4,0,0,1,.56-1.88l3.58,2.07a3.82,3.82,0,0,0-.56,1.87V302.12C172.58,303.24,173.31,303.74,174.24,303.35Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--document--inject-87\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M185.15,311.58a4.09,4.09,0,0,1-1.79-3.24V147.71a4.24,4.24,0,0,1,1.91-3.31l102.29-59a3.59,3.59,0,0,1,5.5,3.17V249.2a4.24,4.24,0,0,1-1.91,3.31l-102.3,59A4.09,4.09,0,0,1,185.15,311.58Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M188.85,311.51l102.3-59a4.24,4.24,0,0,0,1.91-3.31V88.57c0-1.22-.86-1.71-1.91-1.1l-102.3,59a4.24,4.24,0,0,0-1.91,3.31V310.41C186.94,311.63,187.8,312.12,188.85,311.51Z\",\n style: {\n fill: \"#f0f0f0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M199.25,152.85,278.3,107.2c.93-.54,1.69-.1,1.69,1v.67a3.73,3.73,0,0,1-1.69,2.92l-79.05,45.65c-.93.53-1.68.1-1.68-1v-.67A3.7,3.7,0,0,1,199.25,152.85Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M199.25,164.23l79.05-45.65c.93-.53,1.69-.1,1.69,1v.67a3.71,3.71,0,0,1-1.69,2.91l-79.05,45.65c-.93.54-1.68.1-1.68-1v-.67A3.72,3.72,0,0,1,199.25,164.23Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M199.25,175.62,278.3,130c.93-.54,1.69-.1,1.69,1v.67a3.73,3.73,0,0,1-1.69,2.92l-79.05,45.64c-.93.54-1.68.11-1.68-1v-.67A3.7,3.7,0,0,1,199.25,175.62Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M199.25,187l79.05-45.65c.93-.53,1.69-.1,1.69,1V143a3.71,3.71,0,0,1-1.69,2.91l-79.05,45.65c-.93.54-1.68.1-1.68-1v-.67A3.72,3.72,0,0,1,199.25,187Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M199.25,198.38l79.05-45.64c.93-.54,1.69-.1,1.69,1v.67a3.75,3.75,0,0,1-1.69,2.92l-79.05,45.64c-.93.54-1.68.1-1.68-1v-.67A3.73,3.73,0,0,1,199.25,198.38Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M199.25,209.85l79.05-45.64c.93-.54,1.69-.11,1.69,1v.67a3.71,3.71,0,0,1-1.69,2.91l-79.05,45.65c-.93.54-1.68.1-1.68-1v-.67A3.72,3.72,0,0,1,199.25,209.85Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M199.25,221.24l79.05-45.65c.93-.54,1.69-.1,1.69,1v.67a3.73,3.73,0,0,1-1.69,2.92L199.25,225.8c-.93.53-1.68.1-1.68-1v-.67A3.7,3.7,0,0,1,199.25,221.24Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M199.25,232.62,278.3,187c.93-.53,1.69-.1,1.69,1v.67a3.71,3.71,0,0,1-1.69,2.91l-79.05,45.65c-.93.54-1.68.1-1.68-1v-.67A3.72,3.72,0,0,1,199.25,232.62Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M199.25,244l79.05-45.64c.93-.54,1.69-.1,1.69,1V200a3.73,3.73,0,0,1-1.69,2.92l-79.05,45.64c-.93.54-1.68.11-1.68-1v-.67A3.73,3.73,0,0,1,199.25,244Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M199.25,255.39l79.05-45.65c.93-.53,1.69-.1,1.69,1v.68a3.71,3.71,0,0,1-1.69,2.91L199.25,260c-.93.54-1.68.1-1.68-1v-.67A3.72,3.72,0,0,1,199.25,255.39Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M199.25,266.82l79.05-45.64c.93-.54,1.69-.1,1.69,1v.67a3.75,3.75,0,0,1-1.69,2.92l-79.05,45.64c-.93.54-1.68.1-1.68-1v-.67A3.73,3.73,0,0,1,199.25,266.82Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M199.25,278.21l79.05-45.65c.93-.54,1.69-.1,1.69,1v.67a3.73,3.73,0,0,1-1.69,2.92l-79.05,45.65c-.93.53-1.68.1-1.68-1v-.68A3.7,3.7,0,0,1,199.25,278.21Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M199.25,289.59,278.3,244c.93-.54,1.69-.11,1.69,1v.67a3.75,3.75,0,0,1-1.69,2.92l-79.05,45.64c-.93.54-1.68.1-1.68-1v-.67A3.72,3.72,0,0,1,199.25,289.59Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M188.6,311.64a3.57,3.57,0,0,1-5.24-3.3V147.71a4,4,0,0,1,.56-1.88l3.59,2.07a3.83,3.83,0,0,0-.57,1.87V310.41C186.94,311.53,187.67,312,188.6,311.64Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n })), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M323.49,121.58,296.85,237l-2.46,10.61a12.26,12.26,0,0,1-5.09,6.89L131.22,345.71a8.15,8.15,0,0,1-3.74,1,7.61,7.61,0,0,1-4.1-.86l.82-3.52c0-.11,0-.22.08-.34l.89-3.86L129,321.39l24.49-106.07a1.56,1.56,0,0,1,.15-.39,4.05,4.05,0,0,1,.21-.35l0-.06a2.4,2.4,0,0,1,.62-.58l135-77.94,29.54-17.06a1.8,1.8,0,0,1,1.63,0l2.18,1.26A1.36,1.36,0,0,1,323.49,121.58Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M323.49,121.58,296.85,237l-2.46,10.61a12.26,12.26,0,0,1-5.09,6.89L131.22,345.71a8.15,8.15,0,0,1-3.74,1,7.61,7.61,0,0,1-4.1-.86l.82-3.52c0-.11,0-.22.08-.34l.89-3.86L129,321.39l24.49-106.07a1.56,1.56,0,0,1,.15-.39,4.05,4.05,0,0,1,.21-.35l0-.06a2.4,2.4,0,0,1,.62-.58l135-77.94,29.54-17.06a1.8,1.8,0,0,1,1.63,0l2.18,1.26A1.36,1.36,0,0,1,323.49,121.58Z\",\n style: {\n opacity: 0.30000000000000004\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M323.52,121.34c0-.32-.26-.43-.62-.21l-164.56,95a2.19,2.19,0,0,0-.62.57l-3.79-2.19a2.4,2.4,0,0,1,.62-.58l164.54-95a1.8,1.8,0,0,1,1.63,0l2.18,1.26A1.39,1.39,0,0,1,323.52,121.34Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M323.52,121.34c0-.32-.26-.43-.62-.21l-164.56,95a2.19,2.19,0,0,0-.62.57l-3.79-2.19a2.4,2.4,0,0,1,.62-.58l164.54-95a1.8,1.8,0,0,1,1.63,0l2.18,1.26A1.39,1.39,0,0,1,323.52,121.34Z\",\n style: {\n opacity: 0.2\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M157.72,216.71a3.78,3.78,0,0,0-.28.46,3.54,3.54,0,0,0-.12.34L133.9,318.94h0L129,340.32l-.62,2.67h0l-.86,3.71a7.61,7.61,0,0,1-4.1-.86l.82-3.52c0-.11,0-.22.08-.34l.89-3.86L129,321.39l24.49-106.07a1.56,1.56,0,0,1,.15-.39,4.05,4.05,0,0,1,.21-.35l0-.06Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M157.72,216.71a3.78,3.78,0,0,0-.28.46,3.54,3.54,0,0,0-.12.34L133.9,318.94h0L129,340.32l-.62,2.67h0l-.86,3.71a7.61,7.61,0,0,1-4.1-.86l.82-3.52c0-.11,0-.22.08-.34l.89-3.86L129,321.39l24.49-106.07a1.56,1.56,0,0,1,.15-.39,4.05,4.05,0,0,1,.21-.35l0-.06Z\",\n style: {\n opacity: 0.5\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M129.18,336.06a1.06,1.06,0,0,1,.5,1.15L128.34,343h0l-.67,2.89a1,1,0,0,1-1.08.82,7.14,7.14,0,0,1-3.21-.86,8.65,8.65,0,0,1-3.79-6.85v-6.65a1.06,1.06,0,0,1,1.58-.92l1.69,1a1.07,1.07,0,0,1,.52.91v3.31a1.05,1.05,0,0,0,2.08.24l.28-1.23a1.05,1.05,0,0,1,1.55-.67Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M129.18,336.06a1.06,1.06,0,0,1,.5,1.15L128.34,343h0l-.67,2.89a1,1,0,0,1-1.08.82,7.14,7.14,0,0,1-3.21-.86,8.65,8.65,0,0,1-3.79-6.85v-6.65a1.06,1.06,0,0,1,1.58-.92l1.69,1a1.07,1.07,0,0,1,.52.91v3.31a1.05,1.05,0,0,0,2.08.24l.28-1.23a1.05,1.05,0,0,1,1.55-.67Z\",\n style: {\n opacity: 0.5\n }\n }))), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--document--inject-87\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--document--inject-87\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M199.52,319.87a4.09,4.09,0,0,1-1.79-3.24V156a4.19,4.19,0,0,1,1.91-3.3l102.28-59a3.58,3.58,0,0,1,5.49,3.17V257.49a4.21,4.21,0,0,1-1.91,3.31l-102.28,59A4.12,4.12,0,0,1,199.52,319.87Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M203.22,319.81l102.28-59a4.21,4.21,0,0,0,1.91-3.31V96.86c0-1.22-.85-1.71-1.91-1.11l-102.28,59a4.21,4.21,0,0,0-1.91,3.31V318.7C201.31,319.92,202.16,320.41,203.22,319.81Z\",\n style: {\n fill: \"#f0f0f0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M203,319.93a4,4,0,0,1-3.45-.06,4.08,4.08,0,0,1-1.79-3.23V156a4,4,0,0,1,.56-1.89l3.58,2.07a3.85,3.85,0,0,0-.56,1.88V318.71C201.31,319.82,202,320.33,203,319.93Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Text--inject-87\"\n }, /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"218.02 146.22 289.85 104.78 289.85 121.34 218.02 162.81 218.02 146.22\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M211.8,173.26,235,159.85c.53-.31,1-.09,1,.48a2,2,0,0,1-1,1.59L211.8,175.33c-.53.31-1,.09-1-.48A2,2,0,0,1,211.8,173.26Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M211.8,177.41,235,164c.53-.31,1-.09,1,.48a2.06,2.06,0,0,1-1,1.59L211.8,179.48c-.53.3-1,.09-1-.49A2,2,0,0,1,211.8,177.41Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M211.8,181.55,235,168.14c.53-.3,1-.09,1,.49a2.06,2.06,0,0,1-1,1.59L211.8,183.63c-.53.3-1,.09-1-.49A2.06,2.06,0,0,1,211.8,181.55Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M211.8,185.7,235,172.29c.53-.3,1-.09,1,.48a2,2,0,0,1-1,1.59L211.8,187.77c-.53.31-1,.09-1-.48A2.06,2.06,0,0,1,211.8,185.7Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M274.15,160.07l23.23-13.41c.53-.31.95-.09.95.48a2.05,2.05,0,0,1-.95,1.59l-23.23,13.41c-.53.31-1,.09-1-.48A2,2,0,0,1,274.15,160.07Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M274.15,164.21l23.23-13.41c.53-.3.95-.08.95.49a2.05,2.05,0,0,1-.95,1.59l-23.23,13.41c-.53.3-1,.09-1-.49A2.06,2.06,0,0,1,274.15,164.21Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M274.15,168.36,297.38,155c.53-.3.95-.09.95.49a2,2,0,0,1-.95,1.58l-23.23,13.41c-.53.31-1,.09-1-.48A2.06,2.06,0,0,1,274.15,168.36Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M274.15,172.51l23.23-13.41c.53-.31.95-.09.95.48a2,2,0,0,1-.95,1.59l-23.23,13.41c-.53.31-1,.09-1-.48A2,2,0,0,1,274.15,172.51Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M211.8,301.82l87.87-50.73c.53-.31,1-.09,1,.48a2,2,0,0,1-1,1.59L211.8,303.9c-.53.3-1,.08-1-.49A2.06,2.06,0,0,1,211.8,301.82Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M211.8,306l87.87-50.74c.53-.3,1-.08,1,.49a2.06,2.06,0,0,1-1,1.59L211.8,308c-.53.31-1,.09-1-.48A2,2,0,0,1,211.8,306Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M268.3,140.63,297,124c.52-.3.95-.08.95.49a2.08,2.08,0,0,1-.95,1.59L268.3,142.71c-.53.3-.95.09-.95-.49A2.05,2.05,0,0,1,268.3,140.63Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M268.3,144.78,297,128.19c.52-.3.95-.09.95.49a2.08,2.08,0,0,1-.95,1.59L268.3,146.85c-.53.31-.95.09-.95-.48A2.05,2.05,0,0,1,268.3,144.78Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M268.3,148.93,297,132.34c.52-.31.95-.09.95.48a2,2,0,0,1-.95,1.59L268.3,151c-.53.31-.95.09-.95-.48A2,2,0,0,1,268.3,148.93Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M268.3,153.08,297,136.49c.52-.31.95-.09.95.48a2.06,2.06,0,0,1-.95,1.59L268.3,155.15c-.53.3-.95.09-.95-.49A2,2,0,0,1,268.3,153.08Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M212.07,210.42a.18.18,0,0,1-.24,0,.42.42,0,0,1-.1-.32V197.43a1,1,0,0,1,.1-.43.69.69,0,0,1,.24-.3l1.67-1a.17.17,0,0,1,.24,0,.4.4,0,0,1,.11.31v12.66a1,1,0,0,1-.11.43.58.58,0,0,1-.24.3Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M221.66,204.89a.3.3,0,0,1-.35,0,.45.45,0,0,1-.17-.17l-2.92-5v6.62a.94.94,0,0,1-.1.43.63.63,0,0,1-.24.3l-1.67,1a.18.18,0,0,1-.24,0,.42.42,0,0,1-.1-.32V195a1,1,0,0,1,.1-.43.76.76,0,0,1,.24-.3l1.33-.76a.31.31,0,0,1,.35,0,.89.89,0,0,1,.17.18l2.91,5v-6.63a1.17,1.17,0,0,1,.1-.43.69.69,0,0,1,.25-.3l1.66-1a.19.19,0,0,1,.25,0,.46.46,0,0,1,.1.31V203.4a1.17,1.17,0,0,1-.1.43.61.61,0,0,1-.25.29Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M227.81,201.34c-.33.19-.56.06-.67-.4l-2.6-10.75a.8.8,0,0,1,0-.16.17.17,0,0,1,0-.07.85.85,0,0,1,.08-.35.49.49,0,0,1,.2-.24l1.6-.93c.17-.1.29-.11.37,0a.47.47,0,0,1,.13.24l1.77,7.61,1.77-9.65a1.67,1.67,0,0,1,.13-.4,1,1,0,0,1,.37-.38l1.6-.92a.15.15,0,0,1,.2,0,.37.37,0,0,1,.08.26.25.25,0,0,1,0,.08,1.29,1.29,0,0,1,0,.19l-2.59,13.75a1.67,1.67,0,0,1-.68,1.18Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M233.39,189.51a11.07,11.07,0,0,1,.31-2.25,10.19,10.19,0,0,1,.77-2.13,9.23,9.23,0,0,1,1.23-1.84,6.27,6.27,0,0,1,1.66-1.38,3.38,3.38,0,0,1,1.65-.54,1.89,1.89,0,0,1,1.23.43A2.65,2.65,0,0,1,241,183a6.91,6.91,0,0,1,.31,1.89c0,.55,0,1.13,0,1.75s0,1.19,0,1.74a11.61,11.61,0,0,1-.31,2.24,9.85,9.85,0,0,1-.78,2.15,8.21,8.21,0,0,1-1.23,1.84,6.35,6.35,0,0,1-1.65,1.37,3.48,3.48,0,0,1-1.66.55,1.83,1.83,0,0,1-1.23-.43,2.81,2.81,0,0,1-.77-1.25,6.55,6.55,0,0,1-.31-1.89q0-.78,0-1.71C233.36,190.68,233.37,190.08,233.39,189.51Zm5.58.17c0-.24,0-.51,0-.8s0-.59,0-.89,0-.59,0-.87,0-.52,0-.74a3.2,3.2,0,0,0-.13-.82,1.27,1.27,0,0,0-.3-.54.74.74,0,0,0-.49-.2,1.41,1.41,0,0,0-.69.22,2.76,2.76,0,0,0-.69.58,3.53,3.53,0,0,0-.49.76,4.44,4.44,0,0,0-.3.89,5.26,5.26,0,0,0-.14,1c0,.23,0,.49,0,.77s0,.58,0,.88,0,.59,0,.88,0,.54,0,.76a2.21,2.21,0,0,0,.44,1.38c.26.28.65.27,1.18,0a2.8,2.8,0,0,0,1.17-1.32A5.56,5.56,0,0,0,239,189.68Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M243.16,192.47a.18.18,0,0,1-.24,0,.42.42,0,0,1-.1-.32V179.48a1,1,0,0,1,.1-.43.69.69,0,0,1,.24-.3l1.67-1a.17.17,0,0,1,.24,0,.4.4,0,0,1,.11.31v12.66a1,1,0,0,1-.11.43.63.63,0,0,1-.24.3Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M249,180.59c0,.18,0,.42,0,.72s0,.61,0,.93,0,.64,0,.94,0,.54,0,.71a3.76,3.76,0,0,0,.11.79,1.18,1.18,0,0,0,.28.56.68.68,0,0,0,.49.22,1.27,1.27,0,0,0,.72-.23,2.59,2.59,0,0,0,.72-.57,3.55,3.55,0,0,0,.73-1.3c.06-.22.11-.42.14-.6a3.31,3.31,0,0,1,.14-.52.65.65,0,0,1,.3-.29l1.66-1a.15.15,0,0,1,.2,0,.32.32,0,0,1,.08.25,7.64,7.64,0,0,1-.31,2.07,10.16,10.16,0,0,1-.84,2,10.05,10.05,0,0,1-1.26,1.76,6.41,6.41,0,0,1-1.56,1.28,3.27,3.27,0,0,1-1.63.52,1.84,1.84,0,0,1-1.23-.44,2.74,2.74,0,0,1-.79-1.24,6.82,6.82,0,0,1-.31-1.87c0-.52,0-1.09,0-1.71s0-1.2,0-1.78a10.23,10.23,0,0,1,.31-2.22,10.39,10.39,0,0,1,.78-2.15,9.37,9.37,0,0,1,1.23-1.86,6.23,6.23,0,0,1,1.64-1.36,3.38,3.38,0,0,1,1.56-.52,2.19,2.19,0,0,1,1.26.3,2.37,2.37,0,0,1,.84,1.05,4.29,4.29,0,0,1,.31,1.69.78.78,0,0,1-.08.36.54.54,0,0,1-.2.24l-1.66,1c-.15.08-.25.1-.3,0a.93.93,0,0,1-.14-.36,2.3,2.3,0,0,0-.14-.42.89.89,0,0,0-.28-.35.72.72,0,0,0-.45-.11,1.51,1.51,0,0,0-.72.25,2.54,2.54,0,0,0-.72.61,3.12,3.12,0,0,0-.49.78,3.76,3.76,0,0,0-.28.88A5.9,5.9,0,0,0,249,180.59Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M262.27,178.3a.21.21,0,0,1,.25,0,.46.46,0,0,1,.1.31v2.08a1.08,1.08,0,0,1-.1.43.59.59,0,0,1-.25.3l-6,3.48a.18.18,0,0,1-.24,0,.42.42,0,0,1-.1-.32V171.93a1,1,0,0,1,.1-.43.68.68,0,0,1,.24-.3l5.93-3.42a.18.18,0,0,1,.24,0,.43.43,0,0,1,.11.32v2.08a1,1,0,0,1-.11.43.55.55,0,0,1-.24.29l-3.92,2.27v2.11l3.64-2.1c.1-.05.18-.05.24,0a.4.4,0,0,1,.11.31v2.08a1,1,0,0,1-.11.43.57.57,0,0,1-.24.3l-3.64,2.1v2.2Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"210.84 217.36 300.63 165.52 300.63 167.59 210.84 219.43 210.84 217.36\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"210.84 217.36 300.63 165.52 300.63 167.59 210.84 219.43 210.84 217.36\",\n style: {\n opacity: 0.2\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"210.84 271.27 300.63 219.43 300.63 221.5 210.84 273.34 210.84 271.27\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"210.84 271.27 300.63 219.43 300.63 221.5 210.84 273.34 210.84 271.27\",\n style: {\n opacity: 0.2\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"210.84 223.58 243.16 204.91 243.16 209.06 210.84 227.72 210.84 223.58\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"250.35 200.77 264.71 192.47 264.71 196.62 250.35 204.91 250.35 200.77\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"268.3 190.4 282.67 182.1 282.67 186.25 268.3 194.55 268.3 190.4\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"286.26 180.03 300.63 171.74 300.63 175.88 286.26 184.18 286.26 180.03\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"210.84 236.02 300.63 184.18 300.63 192.47 210.84 244.31 210.84 236.02\",\n style: {\n fill: \"#e6e6e6\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"210.84 252.61 300.63 200.77 300.63 209.06 210.84 260.9 210.84 252.61\",\n style: {\n fill: \"#e6e6e6\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M214.43,230.46a.67.67,0,0,1-.33-1.24l25.14-14.51a.66.66,0,1,1,.66,1.15l-25.14,14.51A.66.66,0,0,1,214.43,230.46Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M253.94,205.87a.47.47,0,0,1-.39-.22.43.43,0,0,1,.17-.6l10.77-6.22a.44.44,0,0,1,.6.16.42.42,0,0,1-.16.6l-10.77,6.22A.46.46,0,0,1,253.94,205.87Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M253.94,208.84a.47.47,0,0,1-.39-.22.44.44,0,0,1,.17-.61l10.77-6.22a.44.44,0,0,1,.6.16.43.43,0,0,1-.16.61l-10.77,6.22A.46.46,0,0,1,253.94,208.84Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M271.9,197.06a.44.44,0,0,1-.39-.22.44.44,0,0,1,.16-.6L282.45,190a.43.43,0,0,1,.6.16.44.44,0,0,1-.16.6L272.12,197A.46.46,0,0,1,271.9,197.06Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M289.85,186.69a.42.42,0,0,1-.38-.22.44.44,0,0,1,.16-.6l10.78-6.22a.44.44,0,1,1,.44.76l-10.78,6.23A.42.42,0,0,1,289.85,186.69Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M214.43,238.76a.67.67,0,0,1-.33-1.24l18-10.37a.67.67,0,0,1,.9.24.66.66,0,0,1-.24.91l-18,10.37A.66.66,0,0,1,214.43,238.76Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M253.94,214.17a.47.47,0,0,1-.39-.22.45.45,0,0,1,.17-.61l10.77-6.22a.44.44,0,0,1,.6.16.43.43,0,0,1-.16.61l-10.77,6.22A.46.46,0,0,1,253.94,214.17Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M253.94,217.13a.47.47,0,0,1-.39-.22.43.43,0,0,1,.17-.6l10.77-6.22a.43.43,0,0,1,.6.16.42.42,0,0,1-.16.6l-10.77,6.22A.46.46,0,0,1,253.94,217.13Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M271.9,205.36a.44.44,0,0,1-.39-.22.45.45,0,0,1,.16-.61l10.78-6.22a.44.44,0,0,1,.6.16.45.45,0,0,1-.16.61l-10.77,6.22A.46.46,0,0,1,271.9,205.36Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M289.85,195a.44.44,0,0,1-.38-.22.45.45,0,0,1,.16-.61l10.78-6.22a.44.44,0,0,1,.6.16.45.45,0,0,1-.16.61l-10.78,6.22A.43.43,0,0,1,289.85,195Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M214.43,247.05a.67.67,0,0,1-.33-1.24l28.73-16.59a.67.67,0,0,1,.91.25.66.66,0,0,1-.25.9L214.76,247A.66.66,0,0,1,214.43,247.05Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M253.94,222.46a.47.47,0,0,1-.39-.22.43.43,0,0,1,.17-.6l10.77-6.22a.44.44,0,0,1,.6.16.42.42,0,0,1-.16.6l-10.77,6.22A.46.46,0,0,1,253.94,222.46Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M253.94,225.43a.47.47,0,0,1-.39-.22.44.44,0,0,1,.17-.61l10.77-6.22a.44.44,0,0,1,.44.77l-10.77,6.22A.46.46,0,0,1,253.94,225.43Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M271.9,213.65a.44.44,0,0,1-.39-.22.44.44,0,0,1,.16-.6l10.78-6.22a.42.42,0,0,1,.6.16.44.44,0,0,1-.16.6l-10.77,6.22A.46.46,0,0,1,271.9,213.65Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M289.85,203.28a.44.44,0,0,1-.22-.82l10.78-6.22a.44.44,0,1,1,.44.76l-10.78,6.22A.43.43,0,0,1,289.85,203.28Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M214.43,255.35a.67.67,0,0,1-.33-1.24l14.37-8.3a.66.66,0,0,1,.66,1.15l-14.37,8.3A.66.66,0,0,1,214.43,255.35Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M253.94,230.76a.47.47,0,0,1-.39-.22.44.44,0,0,1,.17-.61l10.77-6.22a.44.44,0,0,1,.6.16.43.43,0,0,1-.16.61l-10.77,6.22A.46.46,0,0,1,253.94,230.76Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M253.94,233.72a.47.47,0,0,1-.39-.22.43.43,0,0,1,.17-.6l10.77-6.22a.44.44,0,1,1,.44.76l-10.77,6.22A.46.46,0,0,1,253.94,233.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M271.9,222a.44.44,0,0,1-.39-.22.45.45,0,0,1,.16-.61l10.78-6.22a.44.44,0,0,1,.6.16.45.45,0,0,1-.16.61l-10.77,6.22A.46.46,0,0,1,271.9,222Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M289.85,211.58a.44.44,0,0,1-.38-.22.45.45,0,0,1,.16-.61l10.78-6.22a.44.44,0,0,1,.6.16.45.45,0,0,1-.16.61l-10.78,6.22A.43.43,0,0,1,289.85,211.58Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M214.43,263.64a.67.67,0,0,1-.33-1.24l25.14-14.51a.66.66,0,1,1,.66,1.14l-25.14,14.52A.66.66,0,0,1,214.43,263.64Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M253.94,239.05a.47.47,0,0,1-.39-.22.43.43,0,0,1,.17-.6L264.49,232a.43.43,0,0,1,.6.16.42.42,0,0,1-.16.6L254.16,239A.46.46,0,0,1,253.94,239.05Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M253.94,242a.46.46,0,0,1-.39-.23.43.43,0,0,1,.17-.6L264.49,235a.44.44,0,0,1,.6.16.42.42,0,0,1-.16.6L254.16,242A.46.46,0,0,1,253.94,242Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M271.9,230.24a.44.44,0,0,1-.39-.22.44.44,0,0,1,.16-.6l10.78-6.23a.43.43,0,0,1,.6.17.44.44,0,0,1-.16.6l-10.77,6.22A.46.46,0,0,1,271.9,230.24Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M289.85,219.87a.44.44,0,0,1-.22-.82l10.78-6.22a.43.43,0,0,1,.6.16.44.44,0,0,1-.16.6l-10.78,6.22A.43.43,0,0,1,289.85,219.87Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M271.9,242.68a.44.44,0,0,1-.39-.22.44.44,0,0,1,.16-.6l10.78-6.22a.44.44,0,1,1,.44.76l-10.77,6.22A.46.46,0,0,1,271.9,242.68Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M289.85,232.31a.44.44,0,0,1-.22-.82l10.78-6.22a.44.44,0,1,1,.44.76l-10.77,6.22A.46.46,0,0,1,289.85,232.31Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M271.9,246.83a.44.44,0,0,1-.39-.22.44.44,0,0,1,.16-.6l10.78-6.23a.44.44,0,0,1,.44.77l-10.77,6.22A.46.46,0,0,1,271.9,246.83Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M289.85,236.46a.44.44,0,0,1-.22-.82l10.78-6.22a.43.43,0,0,1,.6.16.44.44,0,0,1-.16.6l-10.77,6.22A.46.46,0,0,1,289.85,236.46Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"300.63 233.95 243.16 267.12 243.16 279.56 300.63 246.39 300.63 233.95\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M253.93,263.84a.09.09,0,0,1,.12,0,.21.21,0,0,1,0,.15v1a.54.54,0,0,1,0,.21.24.24,0,0,1-.12.14l-1.08.63v4.85a.35.35,0,0,1,0,.2.37.37,0,0,1-.11.15l-.81.46a.08.08,0,0,1-.12,0,.21.21,0,0,1,0-.15v-4.85l-1.09.63a.09.09,0,0,1-.11,0,.21.21,0,0,1-.05-.15v-1a.54.54,0,0,1,.05-.21.37.37,0,0,1,.11-.15Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M254.44,266a5.19,5.19,0,0,1,.15-1.09,4.69,4.69,0,0,1,.37-1,4.44,4.44,0,0,1,.59-.89,3,3,0,0,1,.8-.66,1.69,1.69,0,0,1,.8-.26.87.87,0,0,1,.59.21,1.29,1.29,0,0,1,.38.59,3.16,3.16,0,0,1,.15.92c0,.26,0,.54,0,.84s0,.57,0,.84a5,5,0,0,1-.15,1.08,5.16,5.16,0,0,1-.38,1,4.44,4.44,0,0,1-.59.89,3.39,3.39,0,0,1-.8.66,1.69,1.69,0,0,1-.8.26.87.87,0,0,1-.59-.21,1.28,1.28,0,0,1-.37-.6,3,3,0,0,1-.15-.91c0-.25,0-.53,0-.82S254.43,266.29,254.44,266Zm2.69.08c0-.12,0-.25,0-.39s0-.28,0-.43,0-.28,0-.41,0-.26,0-.36a2.12,2.12,0,0,0-.06-.4.71.71,0,0,0-.15-.26.32.32,0,0,0-.24-.09.61.61,0,0,0-.33.1,1.12,1.12,0,0,0-.33.28,2,2,0,0,0-.24.37,1.81,1.81,0,0,0-.14.43,2.42,2.42,0,0,0-.07.47c0,.11,0,.24,0,.37s0,.28,0,.42,0,.29,0,.43,0,.26,0,.37a1.12,1.12,0,0,0,.21.66c.13.14.32.13.57,0a1.34,1.34,0,0,0,.57-.63A2.75,2.75,0,0,0,257.13,266.1Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M262.07,259.14a.11.11,0,0,1,.12,0,.21.21,0,0,1,.05.15v1a.54.54,0,0,1-.05.21.49.49,0,0,1-.12.15l-1.08.62v4.85a.54.54,0,0,1-.05.21.28.28,0,0,1-.12.14l-.8.46s-.09,0-.12,0a.21.21,0,0,1,0-.15v-4.85l-1.08.62a.11.11,0,0,1-.12,0,.21.21,0,0,1,0-.15v-1a.52.52,0,0,1,0-.21.35.35,0,0,1,.12-.14Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M264.63,257.66a.16.16,0,0,1,.19,0,.42.42,0,0,1,.09.16l1.34,5.18a.83.83,0,0,1,0,.13.38.38,0,0,1,0,.17.27.27,0,0,1-.1.11l-.77.45c-.08.05-.14.05-.18,0a.23.23,0,0,1-.06-.12l-.17-.68-1.63.94-.18.88a.63.63,0,0,1-.06.2.44.44,0,0,1-.18.18l-.77.45a.07.07,0,0,1-.09,0,.16.16,0,0,1,0-.12.53.53,0,0,1,0-.16l1.34-6.73a.81.81,0,0,1,.09-.26.46.46,0,0,1,.18-.21Zm-1,4.71,1-.57-.5-2Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M269.78,259.8a.07.07,0,0,1,.11,0,.21.21,0,0,1,.05.15v1a.54.54,0,0,1-.05.21.27.27,0,0,1-.11.14L266.93,263a.07.07,0,0,1-.11,0,.17.17,0,0,1-.05-.15v-6.1a.41.41,0,0,1,.05-.21.37.37,0,0,1,.11-.15l.81-.46a.08.08,0,0,1,.11,0,.17.17,0,0,1,0,.15v4.85Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M282.66,247.12a1,1,0,0,1,.53,0,.74.74,0,0,1,.38.2,1,1,0,0,1,.23.36,1.34,1.34,0,0,1,.1.43.46.46,0,0,1,0,.21.24.24,0,0,1-.12.14l-.43.25c-.07,0-.12,0-.16,0a.35.35,0,0,1-.09-.11.53.53,0,0,0-.28-.25.78.78,0,0,0-.56.15,1.91,1.91,0,0,0-.3.22,1.42,1.42,0,0,0-.25.3,1.54,1.54,0,0,0-.17.34,1.13,1.13,0,0,0-.06.36.6.6,0,0,0,.06.31.28.28,0,0,0,.22.11,1.16,1.16,0,0,0,.39,0l.57-.13a2.19,2.19,0,0,1,.63-.07.66.66,0,0,1,.42.16.83.83,0,0,1,.23.39,2.49,2.49,0,0,1,.07.65,3.2,3.2,0,0,1-.09.75,3.39,3.39,0,0,1-.27.73,3.64,3.64,0,0,1-.43.67,3.42,3.42,0,0,1-.57.57v.64a.41.41,0,0,1-.05.21.33.33,0,0,1-.11.14l-.5.29a.1.1,0,0,1-.12,0,.21.21,0,0,1-.05-.15v-.64a1.36,1.36,0,0,1-.52.07.75.75,0,0,1-.42-.14.84.84,0,0,1-.29-.35,1.44,1.44,0,0,1-.12-.59.39.39,0,0,1,0-.21.43.43,0,0,1,.12-.14l.43-.25c.07,0,.12-.05.16,0s.07.05.09.11a1.18,1.18,0,0,0,.11.19.28.28,0,0,0,.16.12.55.55,0,0,0,.26,0,1.25,1.25,0,0,0,.39-.17,2.25,2.25,0,0,0,.36-.24,1.79,1.79,0,0,0,.3-.32,1.53,1.53,0,0,0,.21-.37,1.07,1.07,0,0,0,.08-.41.39.39,0,0,0-.09-.29.33.33,0,0,0-.26-.07,1.58,1.58,0,0,0-.43.07l-.6.12a1.43,1.43,0,0,1-.53,0,.6.6,0,0,1-.38-.16.86.86,0,0,1-.23-.4,2.66,2.66,0,0,1-.07-.69,3.06,3.06,0,0,1,.09-.74,3.79,3.79,0,0,1,.26-.71,2.81,2.81,0,0,1,.39-.64,3.54,3.54,0,0,1,.49-.53v-.64a.54.54,0,0,1,.05-.21.28.28,0,0,1,.12-.14l.5-.29a.09.09,0,0,1,.11,0,.17.17,0,0,1,.05.15Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M286.93,244.66a1.1,1.1,0,0,1,.53,0,.92.92,0,0,1,.38.2.93.93,0,0,1,.23.37,1.07,1.07,0,0,1,.09.43.39.39,0,0,1,0,.21.43.43,0,0,1-.12.14l-.43.25c-.07,0-.12.05-.16,0a.25.25,0,0,1-.09-.11.49.49,0,0,0-.28-.25c-.13,0-.31,0-.56.14a1.6,1.6,0,0,0-.3.23,1.42,1.42,0,0,0-.25.3,1.2,1.2,0,0,0-.17.34,1,1,0,0,0-.06.35.65.65,0,0,0,.06.32.31.31,0,0,0,.22.11,1.51,1.51,0,0,0,.39,0l.57-.13a1.83,1.83,0,0,1,.62-.07.69.69,0,0,1,.42.15.8.8,0,0,1,.24.4,2.87,2.87,0,0,1,.07.65,2.69,2.69,0,0,1-.1.74,3.57,3.57,0,0,1-.69,1.41,3.35,3.35,0,0,1-.57.56V252a.5.5,0,0,1-.05.21.31.31,0,0,1-.12.15l-.49.28s-.09,0-.12,0a.25.25,0,0,1,0-.16v-.64a1.4,1.4,0,0,1-.52.08.84.84,0,0,1-.42-.14.81.81,0,0,1-.29-.36,1.38,1.38,0,0,1-.13-.58.36.36,0,0,1,.05-.21.24.24,0,0,1,.12-.14l.43-.25a.22.22,0,0,1,.16,0,.19.19,0,0,1,.09.12.72.72,0,0,0,.11.19.4.4,0,0,0,.16.12.57.57,0,0,0,.26,0,1.19,1.19,0,0,0,.39-.16,2.6,2.6,0,0,0,.36-.25,1.83,1.83,0,0,0,.3-.32,2.12,2.12,0,0,0,.21-.36,1.15,1.15,0,0,0,.08-.41.37.37,0,0,0-.09-.29.34.34,0,0,0-.26-.08,2.91,2.91,0,0,0-.43.07l-.6.13a1.68,1.68,0,0,1-.53,0,.69.69,0,0,1-.39-.16.89.89,0,0,1-.22-.41,2.56,2.56,0,0,1-.07-.69A3,3,0,0,1,285,247a3.52,3.52,0,0,1,.25-.71,3.77,3.77,0,0,1,.39-.64,3.16,3.16,0,0,1,.5-.53v-.64a.54.54,0,0,1,0-.21.24.24,0,0,1,.12-.14l.49-.29c.05,0,.09,0,.12,0a.21.21,0,0,1,.05.15Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M291.2,242.2a1,1,0,0,1,.53,0,.78.78,0,0,1,.38.2,1,1,0,0,1,.23.36,1.64,1.64,0,0,1,.09.44.46.46,0,0,1-.16.35l-.43.24c-.07.05-.13.05-.16,0a.22.22,0,0,1-.1-.11.49.49,0,0,0-.28-.25.76.76,0,0,0-.55.15,1.66,1.66,0,0,0-.31.23,2.26,2.26,0,0,0-.25.29,2.16,2.16,0,0,0-.17.34,1.13,1.13,0,0,0-.06.36.59.59,0,0,0,.07.31.25.25,0,0,0,.22.11,1.43,1.43,0,0,0,.39,0l.57-.14a2.1,2.1,0,0,1,.62-.07.72.72,0,0,1,.42.16.69.69,0,0,1,.23.4,2.39,2.39,0,0,1,.07.65,3.18,3.18,0,0,1-.09.74,3.39,3.39,0,0,1-.27.73,3.13,3.13,0,0,1-.42.67,3.84,3.84,0,0,1-.57.57v.64a.54.54,0,0,1-.05.21.24.24,0,0,1-.12.14l-.5.29a.08.08,0,0,1-.11,0,.21.21,0,0,1-.05-.15v-.64a1.23,1.23,0,0,1-.52.07.83.83,0,0,1-.42-.13.89.89,0,0,1-.3-.36,1.62,1.62,0,0,1-.12-.59.41.41,0,0,1,.05-.21.33.33,0,0,1,.12-.14l.43-.25c.07,0,.12,0,.16,0a.25.25,0,0,1,.09.12,1.62,1.62,0,0,0,.1.18.3.3,0,0,0,.17.12.45.45,0,0,0,.26,0,1.39,1.39,0,0,0,.39-.16l.36-.25a2.27,2.27,0,0,0,.3-.32,2.6,2.6,0,0,0,.21-.36,1.15,1.15,0,0,0,.08-.41.41.41,0,0,0-.09-.3.34.34,0,0,0-.26-.07,2,2,0,0,0-.43.07l-.6.12a1.78,1.78,0,0,1-.54.05.64.64,0,0,1-.38-.17.85.85,0,0,1-.22-.4,2.61,2.61,0,0,1-.08-.69,2.69,2.69,0,0,1,.1-.74,3.6,3.6,0,0,1,.64-1.35,4.18,4.18,0,0,1,.5-.53V242a.54.54,0,0,1,.05-.21.4.4,0,0,1,.11-.14l.5-.29a.1.1,0,0,1,.12,0,.21.21,0,0,1,.05.15Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M295.47,239.73a1,1,0,0,1,.52,0,.7.7,0,0,1,.38.2.91.91,0,0,1,.24.36,1.57,1.57,0,0,1,.09.43.41.41,0,0,1-.05.21.24.24,0,0,1-.12.14l-.43.25q-.11.06-.15,0a.27.27,0,0,1-.1-.11.46.46,0,0,0-.28-.25.69.69,0,0,0-.55.14,2.26,2.26,0,0,0-.31.23,1.81,1.81,0,0,0-.25.3,1.54,1.54,0,0,0-.17.34,1.07,1.07,0,0,0-.06.35.54.54,0,0,0,.07.32.26.26,0,0,0,.22.11,1.09,1.09,0,0,0,.38,0l.58-.13a1.81,1.81,0,0,1,.62-.07.71.71,0,0,1,.42.15.79.79,0,0,1,.23.4,2.44,2.44,0,0,1,.07.65,3.2,3.2,0,0,1-.09.75,3.39,3.39,0,0,1-.27.73,3.94,3.94,0,0,1-.42.67,3.35,3.35,0,0,1-.57.56v.65a.54.54,0,0,1-.05.21.58.58,0,0,1-.12.14l-.5.29a.09.09,0,0,1-.11,0,.17.17,0,0,1-.05-.15v-.65a1.25,1.25,0,0,1-.52.08.88.88,0,0,1-.43-.14.92.92,0,0,1-.29-.35,1.67,1.67,0,0,1-.12-.59.33.33,0,0,1,.05-.21.24.24,0,0,1,.12-.14l.43-.25a.15.15,0,0,1,.15,0s.07,0,.1.11a.69.69,0,0,0,.1.19.3.3,0,0,0,.17.12.56.56,0,0,0,.26,0,1.14,1.14,0,0,0,.39-.16,2,2,0,0,0,.35-.25,1.82,1.82,0,0,0,.31-.31,1.9,1.9,0,0,0,.2-.37.94.94,0,0,0,.08-.41.44.44,0,0,0-.08-.29.4.4,0,0,0-.26-.08,3.24,3.24,0,0,0-.44.07,5.91,5.91,0,0,1-.59.13,1.76,1.76,0,0,1-.54,0,.63.63,0,0,1-.38-.16.77.77,0,0,1-.22-.41,2.51,2.51,0,0,1-.08-.69,3,3,0,0,1,.09-.73,4.3,4.3,0,0,1,.26-.71,3.77,3.77,0,0,1,.39-.64,3.6,3.6,0,0,1,.5-.53v-.64a.41.41,0,0,1,.05-.21.27.27,0,0,1,.11-.14l.5-.29a.09.09,0,0,1,.12,0,.21.21,0,0,1,.05.15Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M214.43,284.15a.42.42,0,0,1-.38-.22.44.44,0,0,1,.16-.6l21.55-12.44a.43.43,0,0,1,.6.16.44.44,0,0,1-.16.6L214.65,284.1A.42.42,0,0,1,214.43,284.15Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M214.43,288.3a.44.44,0,0,1-.22-.82L235.76,275a.42.42,0,0,1,.6.16.44.44,0,0,1-.16.6l-21.55,12.44A.43.43,0,0,1,214.43,288.3Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M214.43,292.45a.44.44,0,0,1-.38-.22.45.45,0,0,1,.16-.61l21.55-12.44a.44.44,0,0,1,.6.16.45.45,0,0,1-.16.61l-21.55,12.44A.43.43,0,0,1,214.43,292.45Z\",\n style: {\n fill: \"#455a64\"\n }\n })))), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Coins--inject-87\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--coins--inject-87\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M68,364.57a17.35,17.35,0,0,0-6.41-5.92c-10.47-6-27.45-6-37.92,0a17.27,17.27,0,0,0-6.41,5.92H15.85v5.48h0c.19,3.81,2.8,7.58,7.84,10.49,10.47,6,27.45,6,37.92,0,5-2.91,7.66-6.68,7.86-10.49h0v-5.48Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.25\n }\n }, _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M68,364.57a17.35,17.35,0,0,0-6.41-5.92c-10.47-6-27.45-6-37.92,0a17.27,17.27,0,0,0-6.41,5.92H15.85v5.48h0c.19,3.81,2.8,7.58,7.84,10.49,10.47,6,27.45,6,37.92,0,5-2.91,7.66-6.68,7.86-10.49h0v-5.48Z\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.1\n }\n }, _path2 || (_path2 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M42.67,354.11c-6.86,0-13.73,1.51-19,4.54a17.27,17.27,0,0,0-6.41,5.92H15.85v5.48h0c.19,3.81,2.8,7.58,7.84,10.49,5.23,3,12.1,4.54,19,4.54Z\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.1\n }\n }, _path3 || (_path3 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M28,356.62a29.41,29.41,0,0,0-4.31,2,17.27,17.27,0,0,0-6.41,5.92H15.85v5.48h0c.19,3.81,2.8,7.58,7.84,10.49a28.38,28.38,0,0,0,4.31,2Z\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.5\n }\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M57.32,356.62a29.41,29.41,0,0,1,4.31,2A17.35,17.35,0,0,1,68,364.57h1.45v5.48h0c-.2,3.81-2.82,7.58-7.86,10.49a28.38,28.38,0,0,1-4.31,2Z\",\n style: {\n fill: \"#407BFF\"\n }\n })), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M61.63,353.62c-10.47-6-27.45-6-37.92,0s-10.48,15.85,0,21.9,27.45,6.05,37.92,0S72.1,359.67,61.63,353.62Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.2\n }\n }, _path4 || (_path4 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M61.63,353.62c-10.47-6-27.45-6-37.92,0s-10.48,15.85,0,21.9,27.45,6.05,37.92,0S72.1,359.67,61.63,353.62Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M55,357.63A27.68,27.68,0,0,0,42.67,355a27.65,27.65,0,0,0-12.35,2.63c-3.51,1.8-5.44,4.27-5.44,6.94s1.93,5.14,5.44,6.94a27.51,27.51,0,0,0,12.35,2.64A27.54,27.54,0,0,0,55,371.51c3.5-1.8,5.44-4.26,5.44-6.94S58.52,359.43,55,357.63Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.4\n }\n }, _path5 || (_path5 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M55,357.63A27.68,27.68,0,0,0,42.67,355a27.65,27.65,0,0,0-12.35,2.63c-3.51,1.8-5.44,4.27-5.44,6.94s1.93,5.14,5.44,6.94a27.51,27.51,0,0,0,12.35,2.64A27.54,27.54,0,0,0,55,371.51c3.5-1.8,5.44-4.26,5.44-6.94S58.52,359.43,55,357.63Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M61.05,354.64c-4.89-2.83-11.42-4.39-18.38-4.39s-13.49,1.56-18.38,4.39c-4.69,2.7-7.27,6.23-7.27,9.93s2.58,7.23,7.27,9.94c4.89,2.82,11.42,4.38,18.38,4.38s13.49-1.56,18.38-4.38c4.68-2.71,7.27-6.24,7.27-9.94S65.73,357.34,61.05,354.64Zm-6,16.87a27.54,27.54,0,0,1-12.35,2.64,27.51,27.51,0,0,1-12.35-2.64c-3.51-1.8-5.44-4.26-5.44-6.94s1.93-5.14,5.44-6.94A27.65,27.65,0,0,1,42.67,355,27.68,27.68,0,0,1,55,357.63c3.5,1.8,5.44,4.27,5.44,6.94S58.52,369.71,55,371.51Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.2\n }\n }, _path6 || (_path6 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M54.6,370.69c6.58-3.38,6.58-8.86,0-12.24s-17.27-3.38-23.86,0-6.58,8.86,0,12.24S48,374.07,54.6,370.69Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M54.6,370.69c6.58-3.38,6.58-8.86,0-12.24s-17.27-3.38-23.86,0-6.58,8.86,0,12.24S48,374.07,54.6,370.69Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.6000000000000001\n }\n }, _path7 || (_path7 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M54.6,370.69c6.58-3.38,6.58-8.86,0-12.24s-17.27-3.38-23.86,0-6.58,8.86,0,12.24S48,374.07,54.6,370.69Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M54.6,360.74c-6.59-3.38-17.27-3.38-23.86,0-2.72,1.4-4.32,3.16-4.79,5,.47,1.82,2.07,3.57,4.79,5,6.59,3.38,17.27,3.38,23.86,0,2.72-1.4,4.31-3.15,4.78-5C58.91,363.9,57.32,362.14,54.6,360.74Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.5\n }\n }, _path8 || (_path8 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M54.6,360.74c-6.59-3.38-17.27-3.38-23.86,0-2.72,1.4-4.32,3.16-4.79,5,.47,1.82,2.07,3.57,4.79,5,6.59,3.38,17.27,3.38,23.86,0,2.72-1.4,4.31-3.15,4.78-5C58.91,363.9,57.32,362.14,54.6,360.74Z\"\n }))), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"44.27 358.58 44.27 361.06 43.42 361.95 41.86 363.58 41.86 361.01 44.27 358.58\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.30000000000000004\n }\n }, _polygon || (_polygon = /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"44.27 358.58 44.27 361.06 43.42 361.95 41.86 363.58 41.86 361.01 44.27 358.58\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M41.86,361v1.46a14.72,14.72,0,0,1-2.4.68,2.5,2.5,0,0,1-1,0,3,3,0,0,1-.49-.2c-.59-.36-.69-.89.44-1.54A3.94,3.94,0,0,1,41.86,361Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.45\n }\n }, _path9 || (_path9 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M41.86,361v1.46a14.72,14.72,0,0,1-2.4.68,2.5,2.5,0,0,1-1,0,3,3,0,0,1-.49-.2c-.59-.36-.69-.89.44-1.54A3.94,3.94,0,0,1,41.86,361Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M53.06,368v2.13l-2.71,1.57-2-1.16a10.23,10.23,0,0,1-7.75.35v-2.14l1.23-1.22-1.23.34a7.89,7.89,0,0,1-6-.69c-1.21-.7-1.78-1.46-1.77-2.25v-2.08L33,362l-.73-.43V359.4l2,1.16a3.06,3.06,0,0,0-1.48,2.3v0c0,.77.59,1.51,1.77,2.2,2.63,1.52,5.24,1,7.62.25,2.22-.73,3.84-1.58,5.12-.84.8.46.56,1-.34,1.53a4.44,4.44,0,0,1-3.81.23l-2.56,2.53a9.9,9.9,0,0,0,1.42.42,10.5,10.5,0,0,0,6.33-.77l2,1.16Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.35000000000000003\n }\n }, _path10 || (_path10 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M32.8,362.86v0c0,.77.59,1.51,1.77,2.2,2.63,1.52,5.24,1,7.62.25,2.22-.73,3.84-1.58,5.12-.84.8.46.56,1-.34,1.53a4.44,4.44,0,0,1-3.81.23l-2.56,2.53a9.9,9.9,0,0,0,1.42.42,10.5,10.5,0,0,0,6.33-.77l2,1.16L53.06,368v2.13l-2.71,1.57-2-1.16a10.23,10.23,0,0,1-7.75.35v-2.14l1.23-1.22-1.23.34a7.89,7.89,0,0,1-6-.69c-1.21-.7-1.78-1.46-1.77-2.25v-2.08L33,362\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.45\n }\n }, _path11 || (_path11 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M32.28,359.4v2.14L33,362h0a4.41,4.41,0,0,1,1.27-1.42Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M52.61,366.63a2.57,2.57,0,0,1-.2,1l-1.36-.78a2.64,2.64,0,0,0,1.54-2.05C52.6,365.4,52.61,366.58,52.61,366.63Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.30000000000000004\n }\n }, _path12 || (_path12 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M52.61,366.63a2.57,2.57,0,0,1-.2,1l-1.36-.78a2.64,2.64,0,0,0,1.54-2.05C52.6,365.4,52.61,366.58,52.61,366.63Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M52.6,367.77l-1.55-.9a2.63,2.63,0,0,0,1.55-2.37,1.48,1.48,0,0,0,0-.21c-.07-.74-.61-1.45-1.73-2.1h0a7,7,0,0,0-3.6-.94h-.34l-.32,0-.28,0-.12,0-.21,0a13.91,13.91,0,0,0-1.75.37c-.28.07-.55.15-.82.24s-.77.24-1.13.37l-.43.14a12.89,12.89,0,0,1-2.4.69,2.68,2.68,0,0,1-1,0,2.06,2.06,0,0,1-.48-.21c-.61-.34-.7-.87.43-1.53a4,4,0,0,1,3.48-.36l2.41-2.43A10.34,10.34,0,0,0,37,359l-2-1.15-2.72,1.58,2,1.15a3.11,3.11,0,0,0-1.49,2.3v0c0,.77.59,1.51,1.78,2.2,2.63,1.52,5.24,1,7.62.24,2.22-.72,3.84-1.57,5.12-.83.8.46.55,1-.34,1.53a4.36,4.36,0,0,1-3.81.22l-2.56,2.54a10.18,10.18,0,0,0,1.41.42,10,10,0,0,0,2.47.18,11.4,11.4,0,0,0,3.87-.95l2,1.16,2.7-1.56Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"48.35 368.43 48.35 370.57 50.35 371.73 50.35 369.59 48.35 368.43\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.45\n }\n }, _polygon2 || (_polygon2 = /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"48.35 368.43 48.35 370.57 50.35 371.73 50.35 369.59 48.35 368.43\"\n }))), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"32.28 359.41 35 357.83 37.01 358.98 35.02 358.15 32.28 359.41\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M38.38,361.37a4,4,0,0,1,3.48-.36l2.41-2.43-2.41,2.18A3.66,3.66,0,0,0,38.38,361.37Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M40.6,368.78a10.18,10.18,0,0,0,1.41.42,10,10,0,0,0,2.47.18,8.69,8.69,0,0,1-3.48-.7l2.16-2.44Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"48.35 368.43 50.35 369.34 53.05 368.03 50.35 369.59 48.35 368.43\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M24.5,355c7.1-4.32,18.17-4.75,18.17-4.75-7,0-13.49,1.56-18.38,4.39-4.69,2.7-7.27,6.23-7.27,9.93C17,364.57,17.27,359.38,24.5,355Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M40.6,380c7.53.33,15.27-1.16,21-4.49,6-3.46,8.56-8.15,7.69-12.66,0,0,1.12,7.35-8.14,12.38S40.6,380,40.6,380Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M66.2,356.82a17.27,17.27,0,0,0-6.41-5.92c-10.47-6-27.45-6-37.92,0a17.27,17.27,0,0,0-6.41,5.92H14v5.48h0c.19,3.81,2.8,7.59,7.84,10.49,10.47,6,27.45,6,37.92,0,5-2.9,7.66-6.68,7.86-10.49h0v-5.48Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.25\n }\n }, _path13 || (_path13 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M66.2,356.82a17.27,17.27,0,0,0-6.41-5.92c-10.47-6-27.45-6-37.92,0a17.27,17.27,0,0,0-6.41,5.92H14v5.48h0c.19,3.81,2.8,7.59,7.84,10.49,10.47,6,27.45,6,37.92,0,5-2.9,7.66-6.68,7.86-10.49h0v-5.48Z\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.1\n }\n }, _path14 || (_path14 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M40.83,346.36c-6.86,0-13.73,1.51-19,4.54a17.27,17.27,0,0,0-6.41,5.92H14v5.48h0c.19,3.81,2.8,7.59,7.84,10.49,5.23,3,12.1,4.54,19,4.54Z\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.1\n }\n }, _path15 || (_path15 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M26.18,348.88a28.38,28.38,0,0,0-4.31,2,17.27,17.27,0,0,0-6.41,5.92H14v5.48h0c.19,3.81,2.8,7.59,7.84,10.49a29.41,29.41,0,0,0,4.31,2Z\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.5\n }\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M55.48,348.88a28.38,28.38,0,0,1,4.31,2,17.27,17.27,0,0,1,6.41,5.92h1.45v5.48h0c-.2,3.81-2.82,7.59-7.86,10.49a29.41,29.41,0,0,1-4.31,2Z\",\n style: {\n fill: \"#407BFF\"\n }\n })), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M59.79,345.88c-10.47-6.05-27.45-6.05-37.92,0s-10.48,15.85,0,21.89,27.45,6.05,37.92,0S70.27,351.92,59.79,345.88Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.2\n }\n }, _path16 || (_path16 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M59.79,345.88c-10.47-6.05-27.45-6.05-37.92,0s-10.48,15.85,0,21.89,27.45,6.05,37.92,0S70.27,351.92,59.79,345.88Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M53.18,349.88a27.68,27.68,0,0,0-12.35-2.63,27.68,27.68,0,0,0-12.35,2.63C25,351.68,23,354.15,23,356.83S25,362,28.48,363.77a27.68,27.68,0,0,0,12.35,2.63,27.68,27.68,0,0,0,12.35-2.63c3.51-1.8,5.44-4.27,5.44-6.94S56.69,351.68,53.18,349.88Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.4\n }\n }, _path17 || (_path17 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M53.18,349.88a27.68,27.68,0,0,0-12.35-2.63,27.68,27.68,0,0,0-12.35,2.63C25,351.68,23,354.15,23,356.83S25,362,28.48,363.77a27.68,27.68,0,0,0,12.35,2.63,27.68,27.68,0,0,0,12.35-2.63c3.51-1.8,5.44-4.27,5.44-6.94S56.69,351.68,53.18,349.88Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M59.21,346.89c-4.89-2.83-11.42-4.38-18.38-4.38s-13.49,1.55-18.38,4.38c-4.69,2.71-7.27,6.23-7.27,9.94s2.58,7.23,7.27,9.93c4.89,2.82,11.42,4.38,18.38,4.38s13.49-1.56,18.38-4.38c4.69-2.7,7.27-6.23,7.27-9.93S63.9,349.6,59.21,346.89Zm-6,16.88a27.68,27.68,0,0,1-12.35,2.63,27.68,27.68,0,0,1-12.35-2.63C25,362,23,359.5,23,356.83s1.93-5.15,5.44-6.95a27.68,27.68,0,0,1,12.35-2.63,27.68,27.68,0,0,1,12.35,2.63c3.51,1.8,5.44,4.27,5.44,6.95S56.69,362,53.18,363.77Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.2\n }\n }, _path18 || (_path18 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M52.76,362.94c6.58-3.38,6.58-8.86,0-12.24s-17.27-3.38-23.86,0-6.58,8.86,0,12.24S46.17,366.32,52.76,362.94Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M52.76,362.94c6.58-3.38,6.58-8.86,0-12.24s-17.27-3.38-23.86,0-6.58,8.86,0,12.24S46.17,366.32,52.76,362.94Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.6000000000000001\n }\n }, _path19 || (_path19 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M52.76,362.94c6.58-3.38,6.58-8.86,0-12.24s-17.27-3.38-23.86,0-6.58,8.86,0,12.24S46.17,366.32,52.76,362.94Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M52.76,353c-6.59-3.38-17.27-3.38-23.86,0-2.72,1.39-4.31,3.15-4.79,5,.48,1.82,2.07,3.58,4.79,5,6.59,3.38,17.27,3.38,23.86,0,2.72-1.39,4.31-3.15,4.79-5C57.07,356.15,55.48,354.39,52.76,353Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.5\n }\n }, _path20 || (_path20 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M52.76,353c-6.59-3.38-17.27-3.38-23.86,0-2.72,1.39-4.31,3.15-4.79,5,.48,1.82,2.07,3.58,4.79,5,6.59,3.38,17.27,3.38,23.86,0,2.72-1.39,4.31-3.15,4.79-5C57.07,356.15,55.48,354.39,52.76,353Z\"\n }))), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"42.43 350.83 42.43 353.31 41.58 354.2 40.02 355.83 40.02 353.26 42.43 350.83\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.30000000000000004\n }\n }, _polygon3 || (_polygon3 = /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"42.43 350.83 42.43 353.31 41.58 354.2 40.02 355.83 40.02 353.26 42.43 350.83\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M40,353.26v1.46a14.45,14.45,0,0,1-2.4.68,2.25,2.25,0,0,1-1.52-.24c-.59-.36-.69-.88.45-1.54A3.92,3.92,0,0,1,40,353.26Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.45\n }\n }, _path21 || (_path21 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M40,353.26v1.46a14.45,14.45,0,0,1-2.4.68,2.25,2.25,0,0,1-1.52-.24c-.59-.36-.69-.88.45-1.54A3.92,3.92,0,0,1,40,353.26Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M51.22,360.28v2.14L48.51,364l-2-1.16a10.18,10.18,0,0,1-7.75.35V361L40,359.81l-1.23.34a7.89,7.89,0,0,1-6-.69c-1.21-.7-1.78-1.46-1.77-2.25v-2.08l.22-.91-.74-.43v-2.13l2,1.15a3.06,3.06,0,0,0-1.48,2.3v0c0,.77.59,1.51,1.77,2.2,2.63,1.52,5.24,1,7.62.25,2.23-.72,3.84-1.58,5.12-.84.8.46.56,1-.34,1.54a4.43,4.43,0,0,1-3.81.22L38.76,361a8.77,8.77,0,0,0,1.42.42,10.57,10.57,0,0,0,6.33-.76l2,1.15Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.35000000000000003\n }\n }, _path22 || (_path22 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M31,355.11v0c0,.77.59,1.51,1.77,2.2,2.63,1.52,5.24,1,7.62.25,2.23-.72,3.84-1.58,5.12-.84.8.46.56,1-.34,1.54a4.43,4.43,0,0,1-3.81.22L38.76,361a8.77,8.77,0,0,0,1.42.42,10.57,10.57,0,0,0,6.33-.76l2,1.15,2.71-1.56v2.14L48.51,364l-2-1.16a10.18,10.18,0,0,1-7.75.35V361L40,359.81l-1.23.34a7.89,7.89,0,0,1-6-.69c-1.21-.7-1.78-1.46-1.77-2.25v-2.08l.22-.91\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.45\n }\n }, _path23 || (_path23 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M30.44,351.66v2.13l.74.43h0a4.52,4.52,0,0,1,1.27-1.42Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M50.77,358.89a2.52,2.52,0,0,1-.2,1l-1.36-.77a2.66,2.66,0,0,0,1.54-2.06C50.76,357.66,50.77,358.83,50.77,358.89Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.30000000000000004\n }\n }, _path24 || (_path24 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M50.77,358.89a2.52,2.52,0,0,1-.2,1l-1.36-.77a2.66,2.66,0,0,0,1.54-2.06C50.76,357.66,50.77,358.83,50.77,358.89Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M50.76,360l-1.54-.89a2.65,2.65,0,0,0,1.54-2.38,1.48,1.48,0,0,0,0-.21A2.93,2.93,0,0,0,49,354.45h0a7.13,7.13,0,0,0-3.6-.94h-.34l-.32,0a2.66,2.66,0,0,0-.28,0h-.12a1.52,1.52,0,0,0-.21,0,13.9,13.9,0,0,0-1.75.36c-.27.07-.55.15-.82.24l-1.13.37-.43.15a13.53,13.53,0,0,1-2.4.68,2.5,2.5,0,0,1-1,0,2.55,2.55,0,0,1-.48-.2c-.61-.35-.7-.88.43-1.54a4,4,0,0,1,3.48-.36l2.41-2.43a10.29,10.29,0,0,0-7.26.41l-2-1.16-2.73,1.58,2,1.15a3.11,3.11,0,0,0-1.49,2.3v0c0,.77.59,1.52,1.78,2.2,2.63,1.52,5.24,1,7.63.25,2.21-.73,3.83-1.58,5.11-.84.8.46.56,1-.34,1.53a4.4,4.4,0,0,1-3.81.23L38.76,361a9.84,9.84,0,0,0,1.42.41,9,9,0,0,0,2.46.18,11.4,11.4,0,0,0,3.87-.94l2,1.16,2.7-1.57Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"46.51 360.69 46.51 362.82 48.51 363.98 48.51 361.84 46.51 360.69\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.45\n }\n }, _polygon4 || (_polygon4 = /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"46.51 360.69 46.51 362.82 48.51 363.98 48.51 361.84 46.51 360.69\"\n }))), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"30.44 351.66 33.16 350.08 35.17 351.24 33.18 350.41 30.44 351.66\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M36.54,353.62a4,4,0,0,1,3.48-.36l2.41-2.43L40,353A3.66,3.66,0,0,0,36.54,353.62Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M38.76,361a9.84,9.84,0,0,0,1.42.41,9,9,0,0,0,2.46.18,8.73,8.73,0,0,1-3.47-.69l2.15-2.44Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"46.51 360.69 48.51 361.59 51.21 360.28 48.51 361.84 46.51 360.69\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M22.66,347.25c7.1-4.31,18.17-4.74,18.17-4.74-7,0-13.49,1.55-18.38,4.38-4.69,2.71-7.27,6.23-7.27,9.94C15.18,356.83,15.44,351.64,22.66,347.25Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M38.76,372.26c7.54.34,15.27-1.16,21-4.49,6-3.46,8.56-8.15,7.69-12.66,0,0,1.12,7.35-8.14,12.39S38.76,372.26,38.76,372.26Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M70,349.32a17.32,17.32,0,0,0-6.4-5.92c-10.47-6-27.45-6-37.93,0a17.32,17.32,0,0,0-6.4,5.92H17.85v5.48h0c.19,3.81,2.8,7.59,7.83,10.5,10.48,6,27.46,6,37.93,0,5-2.91,7.66-6.69,7.85-10.5h0v-5.48Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.25\n }\n }, _path25 || (_path25 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M70,349.32a17.32,17.32,0,0,0-6.4-5.92c-10.47-6-27.45-6-37.93,0a17.32,17.32,0,0,0-6.4,5.92H17.85v5.48h0c.19,3.81,2.8,7.59,7.83,10.5,10.48,6,27.46,6,37.93,0,5-2.91,7.66-6.69,7.85-10.5h0v-5.48Z\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.1\n }\n }, _path26 || (_path26 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M44.67,338.87c-6.87,0-13.73,1.51-19,4.53a17.32,17.32,0,0,0-6.4,5.92H17.85v5.48h0c.19,3.81,2.8,7.59,7.83,10.5,5.24,3,12.1,4.53,19,4.53Z\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.1\n }\n }, _path27 || (_path27 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M30,341.38a29,29,0,0,0-4.32,2,17.32,17.32,0,0,0-6.4,5.92H17.85v5.48h0c.19,3.81,2.8,7.59,7.83,10.5a30.05,30.05,0,0,0,4.32,2Z\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.5\n }\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M59.31,341.38a29,29,0,0,1,4.32,2,17.32,17.32,0,0,1,6.4,5.92h1.45v5.48h0c-.19,3.81-2.82,7.59-7.85,10.5a30.05,30.05,0,0,1-4.32,2Z\",\n style: {\n fill: \"#407BFF\"\n }\n })), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M63.63,338.38c-10.47-6.05-27.45-6.05-37.93,0s-10.47,15.85,0,21.89,27.46,6.05,37.93,0S74.1,344.43,63.63,338.38Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.2\n }\n }, _path28 || (_path28 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M63.63,338.38c-10.47-6.05-27.45-6.05-37.93,0s-10.47,15.85,0,21.89,27.46,6.05,37.93,0S74.1,344.43,63.63,338.38Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M57,342.38a27.83,27.83,0,0,0-12.36-2.63,27.77,27.77,0,0,0-12.34,2.63c-3.51,1.8-5.45,4.27-5.45,6.95s1.94,5.14,5.45,6.94a27.63,27.63,0,0,0,12.34,2.64A27.69,27.69,0,0,0,57,356.27c3.5-1.8,5.44-4.27,5.44-6.94S60.52,344.18,57,342.38Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.4\n }\n }, _path29 || (_path29 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M57,342.38a27.83,27.83,0,0,0-12.36-2.63,27.77,27.77,0,0,0-12.34,2.63c-3.51,1.8-5.45,4.27-5.45,6.95s1.94,5.14,5.45,6.94a27.63,27.63,0,0,0,12.34,2.64A27.69,27.69,0,0,0,57,356.27c3.5-1.8,5.44-4.27,5.44-6.94S60.52,344.18,57,342.38Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M63.05,339.39C58.16,336.57,51.63,335,44.66,335s-13.48,1.56-18.37,4.38C21.6,342.1,19,345.62,19,349.33s2.58,7.23,7.27,9.94c4.89,2.81,11.41,4.37,18.37,4.37s13.5-1.56,18.39-4.37c4.68-2.71,7.27-6.24,7.27-9.94S67.73,342.1,63.05,339.39Zm-6,16.88a27.69,27.69,0,0,1-12.36,2.64,27.63,27.63,0,0,1-12.34-2.64c-3.51-1.8-5.45-4.27-5.45-6.94s1.94-5.15,5.45-6.95a27.77,27.77,0,0,1,12.34-2.63A27.83,27.83,0,0,1,57,342.38c3.5,1.8,5.44,4.27,5.44,6.95S60.52,354.47,57,356.27Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.2\n }\n }, _path30 || (_path30 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M56.59,355.45c6.59-3.38,6.59-8.86,0-12.25s-17.26-3.38-23.85,0-6.59,8.87,0,12.25S50,358.83,56.59,355.45Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M56.59,355.45c6.59-3.38,6.59-8.86,0-12.25s-17.26-3.38-23.85,0-6.59,8.87,0,12.25S50,358.83,56.59,355.45Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.6000000000000001\n }\n }, _path31 || (_path31 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M56.59,355.45c6.59-3.38,6.59-8.86,0-12.25s-17.26-3.38-23.85,0-6.59,8.87,0,12.25S50,358.83,56.59,355.45Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M56.59,345.5c-6.58-3.38-17.26-3.38-23.85,0-2.72,1.4-4.32,3.15-4.79,5,.47,1.82,2.07,3.58,4.79,5,6.59,3.38,17.27,3.38,23.85,0,2.73-1.4,4.32-3.16,4.79-5C60.91,348.65,59.32,346.9,56.59,345.5Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.5\n }\n }, _path32 || (_path32 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M56.59,345.5c-6.58-3.38-17.26-3.38-23.85,0-2.72,1.4-4.32,3.15-4.79,5,.47,1.82,2.07,3.58,4.79,5,6.59,3.38,17.27,3.38,23.85,0,2.73-1.4,4.32-3.16,4.79-5C60.91,348.65,59.32,346.9,56.59,345.5Z\"\n }))), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"46.26 343.34 46.26 345.81 45.42 346.7 43.86 348.34 43.86 345.76 46.26 343.34\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.30000000000000004\n }\n }, _polygon5 || (_polygon5 = /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"46.26 343.34 46.26 345.81 45.42 346.7 43.86 348.34 43.86 345.76 46.26 343.34\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M43.86,345.76v1.46a12.93,12.93,0,0,1-2.4.68,2.5,2.5,0,0,1-1,0,1.87,1.87,0,0,1-.49-.2c-.6-.35-.69-.88.44-1.53A4,4,0,0,1,43.86,345.76Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.45\n }\n }, _path33 || (_path33 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M43.86,345.76v1.46a12.93,12.93,0,0,1-2.4.68,2.5,2.5,0,0,1-1,0,1.87,1.87,0,0,1-.49-.2c-.6-.35-.69-.88.44-1.53A4,4,0,0,1,43.86,345.76Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M55.05,352.78v2.14l-2.7,1.56-2-1.16a10.18,10.18,0,0,1-7.75.35v-2.13l1.23-1.22-1.23.34a7.94,7.94,0,0,1-6-.69c-1.22-.7-1.78-1.47-1.78-2.26v-2.08l.22-.9-.74-.43v-2.14l2,1.16a3.08,3.08,0,0,0-1.49,2.29v0c0,.77.59,1.52,1.78,2.2,2.63,1.52,5.23,1,7.62.25,2.22-.72,3.84-1.57,5.12-.84.79.46.55,1-.34,1.54a4.43,4.43,0,0,1-3.81.22l-2.56,2.54A9.72,9.72,0,0,0,44,354a10.6,10.6,0,0,0,6.34-.76l2,1.16Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.35000000000000003\n }\n }, _path34 || (_path34 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M34.79,347.61v0c0,.77.59,1.52,1.78,2.2,2.63,1.52,5.23,1,7.62.25,2.22-.72,3.84-1.57,5.12-.84.79.46.55,1-.34,1.54a4.43,4.43,0,0,1-3.81.22l-2.56,2.54A9.72,9.72,0,0,0,44,354a10.6,10.6,0,0,0,6.34-.76l2,1.16,2.7-1.57v2.14l-2.7,1.56-2-1.16a10.18,10.18,0,0,1-7.75.35v-2.13l1.23-1.22-1.23.34a7.94,7.94,0,0,1-6-.69c-1.22-.7-1.78-1.47-1.78-2.26v-2.08l.22-.9\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.45\n }\n }, _path35 || (_path35 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M34.27,344.16v2.14l.74.43h0a4.17,4.17,0,0,1,1.27-1.41Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M54.6,351.39a2.44,2.44,0,0,1-.2,1l-1.35-.78a2.69,2.69,0,0,0,1.54-2.06C54.6,350.16,54.6,351.33,54.6,351.39Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.30000000000000004\n }\n }, _path36 || (_path36 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M54.6,351.39a2.44,2.44,0,0,1-.2,1l-1.35-.78a2.69,2.69,0,0,0,1.54-2.06C54.6,350.16,54.6,351.33,54.6,351.39Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M54.6,352.53l-1.55-.9a2.65,2.65,0,0,0,1.55-2.38c0-.07,0-.14,0-.2a2.92,2.92,0,0,0-1.73-2.1h0a7.13,7.13,0,0,0-3.6-.94h-.34l-.32,0-.29,0H48.2a1.33,1.33,0,0,0-.21,0,13.54,13.54,0,0,0-1.75.36c-.28.07-.55.15-.82.24l-1.13.37-.43.15a13.77,13.77,0,0,1-2.4.68,2.49,2.49,0,0,1-1,0,2.3,2.3,0,0,1-.49-.2c-.6-.35-.69-.88.44-1.53a4,4,0,0,1,3.48-.37l2.4-2.42a10.26,10.26,0,0,0-7.25.4l-2-1.15-2.73,1.57,2,1.15a3.13,3.13,0,0,0-1.49,2.3v0c0,.77.59,1.52,1.78,2.2,2.63,1.52,5.24,1,7.62.25,2.22-.72,3.84-1.58,5.12-.84.79.46.55,1-.34,1.54a4.43,4.43,0,0,1-3.81.22l-2.56,2.54A9.72,9.72,0,0,0,44,354a9.07,9.07,0,0,0,2.47.18,11.46,11.46,0,0,0,3.87-.94l2,1.16,2.7-1.56Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"50.35 353.19 50.35 355.32 52.35 356.48 52.35 354.35 50.35 353.19\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.45\n }\n }, _polygon6 || (_polygon6 = /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"50.35 353.19 50.35 355.32 52.35 356.48 52.35 354.35 50.35 353.19\"\n }))), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"34.27 344.16 37 342.59 39.01 343.74 37.02 342.91 34.27 344.16\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M40.38,346.13a4,4,0,0,1,3.48-.37l2.4-2.42-2.4,2.17A3.65,3.65,0,0,0,40.38,346.13Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M42.6,353.54A9.72,9.72,0,0,0,44,354a9.07,9.07,0,0,0,2.47.18,8.79,8.79,0,0,1-3.48-.69L45.16,351Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"50.35 353.19 52.35 354.09 55.05 352.79 52.35 354.35 50.35 353.19\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M26.49,339.75c7.1-4.31,18.17-4.74,18.17-4.74-7,0-13.48,1.56-18.37,4.38C21.6,342.1,19,345.62,19,349.33,19,349.33,19.27,344.14,26.49,339.75Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M42.6,364.76c7.53.34,15.27-1.16,21-4.49,6-3.46,8.56-8.15,7.69-12.66,0,0,1.12,7.36-8.14,12.39S42.6,364.76,42.6,364.76Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M67.42,341.74A17.37,17.37,0,0,0,61,335.81c-10.47-6-27.45-6-37.93,0a17.25,17.25,0,0,0-6.4,5.93H15.23v5.48h0c.19,3.81,2.8,7.58,7.83,10.49,10.48,6.05,27.46,6.05,37.93,0,5-2.91,7.66-6.68,7.85-10.49h0v-5.48Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.25\n }\n }, _path37 || (_path37 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M67.42,341.74A17.37,17.37,0,0,0,61,335.81c-10.47-6-27.45-6-37.93,0a17.25,17.25,0,0,0-6.4,5.93H15.23v5.48h0c.19,3.81,2.8,7.58,7.83,10.49,10.48,6.05,27.46,6.05,37.93,0,5-2.91,7.66-6.68,7.85-10.49h0v-5.48Z\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.1\n }\n }, _path38 || (_path38 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M42.05,331.28c-6.86,0-13.73,1.51-19,4.53a17.25,17.25,0,0,0-6.4,5.93H15.23v5.48h0c.19,3.81,2.8,7.58,7.83,10.49,5.24,3,12.11,4.54,19,4.54Z\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.1\n }\n }, _path39 || (_path39 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M27.4,333.79a30.57,30.57,0,0,0-4.32,2,17.25,17.25,0,0,0-6.4,5.93H15.23v5.48h0c.19,3.81,2.8,7.58,7.83,10.49a29.49,29.49,0,0,0,4.32,2Z\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.5\n }\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M56.69,333.79a30.05,30.05,0,0,1,4.32,2,17.37,17.37,0,0,1,6.41,5.93h1.44v5.48h0c-.19,3.81-2.81,7.58-7.85,10.49a29,29,0,0,1-4.32,2Z\",\n style: {\n fill: \"#407BFF\"\n }\n })), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M61,330.79c-10.47-6-27.45-6-37.93,0s-10.47,15.85,0,21.9,27.46,6.05,37.93,0S71.48,336.84,61,330.79Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.2\n }\n }, _path40 || (_path40 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M61,330.79c-10.47-6-27.45-6-37.93,0s-10.47,15.85,0,21.9,27.46,6.05,37.93,0S71.48,336.84,61,330.79Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M54.4,334.8a27.68,27.68,0,0,0-12.35-2.63A27.65,27.65,0,0,0,29.7,334.8c-3.51,1.8-5.44,4.27-5.44,6.94s1.93,5.14,5.44,6.94a27.65,27.65,0,0,0,12.35,2.64,27.68,27.68,0,0,0,12.35-2.64c3.5-1.8,5.44-4.26,5.44-6.94S57.9,336.6,54.4,334.8Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.4\n }\n }, _path41 || (_path41 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M54.4,334.8a27.68,27.68,0,0,0-12.35-2.63A27.65,27.65,0,0,0,29.7,334.8c-3.51,1.8-5.44,4.27-5.44,6.94s1.93,5.14,5.44,6.94a27.65,27.65,0,0,0,12.35,2.64,27.68,27.68,0,0,0,12.35-2.64c3.5-1.8,5.44-4.26,5.44-6.94S57.9,336.6,54.4,334.8Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M60.43,331.81C55.54,329,49,327.42,42.05,327.42S28.56,329,23.67,331.81c-4.69,2.7-7.27,6.23-7.27,9.93S19,349,23.67,351.68c4.89,2.82,11.41,4.38,18.38,4.38s13.49-1.56,18.38-4.38c4.68-2.71,7.27-6.24,7.27-9.94S65.11,334.51,60.43,331.81Zm-6,16.87a27.68,27.68,0,0,1-12.35,2.64,27.65,27.65,0,0,1-12.35-2.64c-3.51-1.8-5.44-4.26-5.44-6.94s1.93-5.14,5.44-6.94a27.65,27.65,0,0,1,12.35-2.63A27.68,27.68,0,0,1,54.4,334.8c3.5,1.8,5.44,4.27,5.44,6.94S57.9,346.88,54.4,348.68Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.2\n }\n }, _ellipse || (_ellipse = /*#__PURE__*/React.createElement(\"ellipse\", {\n cx: 42.05,\n cy: 341.74,\n rx: 16.87,\n ry: 8.66\n }))), /*#__PURE__*/React.createElement(\"ellipse\", {\n cx: 42.05,\n cy: 341.74,\n rx: 16.87,\n ry: 8.66,\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.6000000000000001\n }\n }, _ellipse2 || (_ellipse2 = /*#__PURE__*/React.createElement(\"ellipse\", {\n cx: 42.05,\n cy: 341.74,\n rx: 16.87,\n ry: 8.66\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M54,337.91c-6.58-3.38-17.26-3.38-23.85,0-2.72,1.4-4.32,3.16-4.79,5,.47,1.82,2.07,3.57,4.79,5,6.59,3.38,17.27,3.38,23.85,0,2.73-1.4,4.32-3.15,4.79-5C58.29,341.07,56.7,339.31,54,337.91Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.5\n }\n }, _path42 || (_path42 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M54,337.91c-6.58-3.38-17.26-3.38-23.85,0-2.72,1.4-4.32,3.16-4.79,5,.47,1.82,2.07,3.57,4.79,5,6.59,3.38,17.27,3.38,23.85,0,2.73-1.4,4.32-3.15,4.79-5C58.29,341.07,56.7,339.31,54,337.91Z\"\n }))), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"43.65 335.75 43.65 338.23 42.8 339.12 41.24 340.75 41.24 338.18 43.65 335.75\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.30000000000000004\n }\n }, _polygon7 || (_polygon7 = /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"43.65 335.75 43.65 338.23 42.8 339.12 41.24 340.75 41.24 338.18 43.65 335.75\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M41.24,338.18v1.46a14.72,14.72,0,0,1-2.4.68,2.5,2.5,0,0,1-1,0,3,3,0,0,1-.49-.2c-.6-.36-.69-.89.44-1.54A3.94,3.94,0,0,1,41.24,338.18Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.45\n }\n }, _path43 || (_path43 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M41.24,338.18v1.46a14.72,14.72,0,0,1-2.4.68,2.5,2.5,0,0,1-1,0,3,3,0,0,1-.49-.2c-.6-.36-.69-.89.44-1.54A3.94,3.94,0,0,1,41.24,338.18Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M52.43,345.2v2.13l-2.7,1.56-2-1.15a10.23,10.23,0,0,1-7.75.35V346l1.23-1.22-1.23.34a7.89,7.89,0,0,1-6-.69c-1.22-.7-1.78-1.46-1.78-2.25v-2.08l.22-.91-.74-.43v-2.14l2,1.16A3.11,3.11,0,0,0,32.17,340v0c0,.77.59,1.51,1.78,2.2,2.63,1.51,5.23,1,7.62.25,2.22-.73,3.84-1.58,5.12-.84.8.46.55,1-.34,1.53a4.47,4.47,0,0,1-3.81.23L40,346a9.79,9.79,0,0,0,1.41.42,10.53,10.53,0,0,0,6.34-.77l2,1.16Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.35000000000000003\n }\n }, _path44 || (_path44 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M32.17,340v0c0,.77.59,1.51,1.78,2.2,2.63,1.51,5.23,1,7.62.25,2.22-.73,3.84-1.58,5.12-.84.8.46.55,1-.34,1.53a4.47,4.47,0,0,1-3.81.23L40,346a9.79,9.79,0,0,0,1.41.42,10.53,10.53,0,0,0,6.34-.77l2,1.16,2.7-1.56v2.13l-2.7,1.56-2-1.15a10.23,10.23,0,0,1-7.75.35V346l1.23-1.22-1.23.34a7.89,7.89,0,0,1-6-.69c-1.22-.7-1.78-1.46-1.78-2.25v-2.08l.22-.91\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.45\n }\n }, _path45 || (_path45 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M31.66,336.57v2.14l.73.43h0a4.3,4.3,0,0,1,1.27-1.42Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M52,343.8a2.4,2.4,0,0,1-.21,1L50.43,344A2.66,2.66,0,0,0,52,342C52,342.57,52,343.75,52,343.8Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.30000000000000004\n }\n }, _path46 || (_path46 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M52,343.8a2.4,2.4,0,0,1-.21,1L50.43,344A2.66,2.66,0,0,0,52,342C52,342.57,52,343.75,52,343.8Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M52,344.94l-1.55-.9A2.63,2.63,0,0,0,52,341.67a1.48,1.48,0,0,0,0-.21c-.07-.74-.61-1.45-1.73-2.1h0a7,7,0,0,0-3.6-.94H46.3l-.32,0-.28,0-.12,0-.21,0a13.54,13.54,0,0,0-1.75.37c-.28.07-.55.15-.82.24l-1.13.36-.43.15a12.89,12.89,0,0,1-2.4.69,2.68,2.68,0,0,1-1,0,2.33,2.33,0,0,1-.49-.21c-.6-.34-.69-.87.44-1.53a4,4,0,0,1,3.48-.36l2.4-2.43a10.31,10.31,0,0,0-7.25.4l-2-1.15-2.72,1.58,2,1.15a3.11,3.11,0,0,0-1.49,2.3v0c0,.77.59,1.51,1.78,2.2,2.63,1.52,5.24,1,7.62.24,2.22-.72,3.84-1.57,5.12-.83.79.46.55,1-.34,1.53a4.36,4.36,0,0,1-3.81.22L40,346a9.79,9.79,0,0,0,1.41.42,10,10,0,0,0,2.47.18,11.46,11.46,0,0,0,3.87-.95l2,1.16,2.7-1.56Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"47.73 345.6 47.73 347.74 49.73 348.89 49.73 346.76 47.73 345.6\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.45\n }\n }, _polygon8 || (_polygon8 = /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"47.73 345.6 47.73 347.74 49.73 348.89 49.73 346.76 47.73 345.6\"\n }))), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"31.66 336.58 34.38 335 36.39 336.15 34.4 335.32 31.66 336.58\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M37.76,338.54a4,4,0,0,1,3.48-.36l2.4-2.43-2.4,2.18A3.66,3.66,0,0,0,37.76,338.54Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M40,346a9.79,9.79,0,0,0,1.41.42,10,10,0,0,0,2.47.18,8.69,8.69,0,0,1-3.48-.7l2.16-2.44Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"47.73 345.6 49.73 346.51 52.43 345.2 49.73 346.76 47.73 345.6\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M23.88,332.17c7.1-4.32,18.17-4.75,18.17-4.75-7,0-13.49,1.56-18.38,4.39-4.69,2.7-7.27,6.23-7.27,9.93C16.4,341.74,16.65,336.55,23.88,332.17Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M40,357.18c7.53.33,15.27-1.16,21-4.49,6-3.46,8.56-8.15,7.69-12.66,0,0,1.12,7.35-8.14,12.38S40,357.18,40,357.18Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n })), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--coins--inject-87\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M109.26,387.89a17.27,17.27,0,0,0-6.41-5.92c-10.47-6.05-27.45-6.05-37.92,0a17.27,17.27,0,0,0-6.41,5.92H57.07v5.48h0c.19,3.81,2.8,7.59,7.84,10.49,10.47,6.05,27.45,6.05,37.92,0,5-2.9,7.66-6.68,7.86-10.49h0v-5.48Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.25\n }\n }, _path47 || (_path47 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M109.26,387.89a17.27,17.27,0,0,0-6.41-5.92c-10.47-6.05-27.45-6.05-37.92,0a17.27,17.27,0,0,0-6.41,5.92H57.07v5.48h0c.19,3.81,2.8,7.59,7.84,10.49,10.47,6.05,27.45,6.05,37.92,0,5-2.9,7.66-6.68,7.86-10.49h0v-5.48Z\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.1\n }\n }, _path48 || (_path48 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M83.89,377.43c-6.86,0-13.73,1.51-19,4.54a17.27,17.27,0,0,0-6.41,5.92H57.07v5.48h0c.19,3.81,2.8,7.59,7.84,10.49,5.23,3,12.1,4.54,19,4.54Z\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.1\n }\n }, _path49 || (_path49 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M69.24,380a28.38,28.38,0,0,0-4.31,2,17.27,17.27,0,0,0-6.41,5.92H57.07v5.48h0c.19,3.81,2.8,7.59,7.84,10.49a29.41,29.41,0,0,0,4.31,2Z\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.5\n }\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M98.54,380a28.38,28.38,0,0,1,4.31,2,17.27,17.27,0,0,1,6.41,5.92h1.45v5.48h0c-.2,3.81-2.82,7.59-7.86,10.49a29.41,29.41,0,0,1-4.31,2Z\",\n style: {\n fill: \"#407BFF\"\n }\n })), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M102.85,377c-10.47-6.05-27.45-6.05-37.92,0s-10.48,15.85,0,21.89,27.45,6.05,37.92,0S113.32,383,102.85,377Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.2\n }\n }, _path50 || (_path50 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M102.85,377c-10.47-6.05-27.45-6.05-37.92,0s-10.48,15.85,0,21.89,27.45,6.05,37.92,0S113.32,383,102.85,377Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M96.24,381a27.68,27.68,0,0,0-12.35-2.63A27.65,27.65,0,0,0,71.54,381c-3.51,1.8-5.44,4.27-5.44,6.95S68,393,71.54,394.83a27.51,27.51,0,0,0,12.35,2.64,27.54,27.54,0,0,0,12.35-2.64c3.51-1.79,5.44-4.26,5.44-6.93S99.75,382.75,96.24,381Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.4\n }\n }, _path51 || (_path51 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M96.24,381a27.68,27.68,0,0,0-12.35-2.63A27.65,27.65,0,0,0,71.54,381c-3.51,1.8-5.44,4.27-5.44,6.95S68,393,71.54,394.83a27.51,27.51,0,0,0,12.35,2.64,27.54,27.54,0,0,0,12.35-2.64c3.51-1.79,5.44-4.26,5.44-6.93S99.75,382.75,96.24,381Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M102.27,378c-4.89-2.83-11.42-4.38-18.38-4.38S70.4,375.13,65.51,378c-4.69,2.71-7.27,6.23-7.27,9.94s2.58,7.23,7.27,9.93c4.89,2.82,11.42,4.38,18.38,4.38s13.49-1.56,18.38-4.38c4.69-2.7,7.27-6.23,7.27-9.93S107,380.67,102.27,378Zm-6,16.87a27.54,27.54,0,0,1-12.35,2.64,27.51,27.51,0,0,1-12.35-2.64C68,393,66.1,390.57,66.1,387.9S68,382.75,71.54,381a27.65,27.65,0,0,1,12.35-2.63A27.68,27.68,0,0,1,96.24,381c3.51,1.8,5.44,4.27,5.44,6.95S99.75,393,96.24,394.83Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.2\n }\n }, _path52 || (_path52 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M95.82,394c6.58-3.38,6.58-8.86,0-12.24s-17.27-3.38-23.86,0-6.58,8.86,0,12.24S89.23,397.39,95.82,394Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M95.82,394c6.58-3.38,6.58-8.86,0-12.24s-17.27-3.38-23.86,0-6.58,8.86,0,12.24S89.23,397.39,95.82,394Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.6000000000000001\n }\n }, _path53 || (_path53 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M95.82,394c6.58-3.38,6.58-8.86,0-12.24s-17.27-3.38-23.86,0-6.58,8.86,0,12.24S89.23,397.39,95.82,394Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M95.82,384.07c-6.59-3.38-17.27-3.38-23.86,0-2.72,1.39-4.31,3.15-4.79,5,.48,1.82,2.07,3.58,4.79,5,6.59,3.38,17.27,3.38,23.86,0,2.72-1.39,4.31-3.15,4.78-5C100.13,387.22,98.54,385.46,95.82,384.07Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.5\n }\n }, _path54 || (_path54 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M95.82,384.07c-6.59-3.38-17.27-3.38-23.86,0-2.72,1.39-4.31,3.15-4.79,5,.48,1.82,2.07,3.58,4.79,5,6.59,3.38,17.27,3.38,23.86,0,2.72-1.39,4.31-3.15,4.78-5C100.13,387.22,98.54,385.46,95.82,384.07Z\"\n }))), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"85.49 381.9 85.49 384.38 84.64 385.27 83.08 386.9 83.08 384.33 85.49 381.9\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.30000000000000004\n }\n }, _polygon9 || (_polygon9 = /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"85.49 381.9 85.49 384.38 84.64 385.27 83.08 386.9 83.08 384.33 85.49 381.9\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M83.08,384.33v1.46a14.72,14.72,0,0,1-2.4.68,2.25,2.25,0,0,1-1.52-.24c-.59-.36-.69-.88.44-1.54A3.94,3.94,0,0,1,83.08,384.33Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.45\n }\n }, _path55 || (_path55 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M83.08,384.33v1.46a14.72,14.72,0,0,1-2.4.68,2.25,2.25,0,0,1-1.52-.24c-.59-.36-.69-.88.44-1.54A3.94,3.94,0,0,1,83.08,384.33Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M94.28,391.35v2.14l-2.71,1.56-2-1.16a10.18,10.18,0,0,1-7.75.35V392.1l1.23-1.22-1.23.34a7.89,7.89,0,0,1-6-.69c-1.21-.7-1.78-1.46-1.77-2.25V386.2l.21-.91-.73-.43v-2.13l2,1.15a3.06,3.06,0,0,0-1.48,2.3v0c0,.77.59,1.51,1.77,2.2,2.63,1.52,5.24,1,7.62.25s3.84-1.58,5.12-.84c.8.46.56,1-.34,1.54a4.43,4.43,0,0,1-3.81.22l-2.56,2.53a8.77,8.77,0,0,0,1.42.42,10.57,10.57,0,0,0,6.33-.76l2,1.15Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.35000000000000003\n }\n }, _path56 || (_path56 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M74,386.18v0c0,.77.59,1.51,1.77,2.2,2.63,1.52,5.24,1,7.62.25s3.84-1.58,5.12-.84c.8.46.56,1-.34,1.54a4.43,4.43,0,0,1-3.81.22l-2.56,2.53a8.77,8.77,0,0,0,1.42.42,10.57,10.57,0,0,0,6.33-.76l2,1.15,2.71-1.56v2.14l-2.71,1.56-2-1.16a10.18,10.18,0,0,1-7.75.35V392.1l1.23-1.22-1.23.34a7.89,7.89,0,0,1-6-.69c-1.21-.7-1.78-1.46-1.77-2.25V386.2l.21-.91\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.45\n }\n }, _path57 || (_path57 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M73.5,382.73v2.13l.74.43h0a4.52,4.52,0,0,1,1.27-1.42Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M93.83,390a2.52,2.52,0,0,1-.2,1l-1.36-.77a2.66,2.66,0,0,0,1.54-2.06C93.82,388.73,93.83,389.9,93.83,390Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.30000000000000004\n }\n }, _path58 || (_path58 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M93.83,390a2.52,2.52,0,0,1-.2,1l-1.36-.77a2.66,2.66,0,0,0,1.54-2.06C93.82,388.73,93.83,389.9,93.83,390Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M93.82,391.09l-1.54-.9a2.62,2.62,0,0,0,1.54-2.37,1.48,1.48,0,0,0,0-.21,2.93,2.93,0,0,0-1.73-2.09h0a7.13,7.13,0,0,0-3.6-.94h-.34l-.32,0a2.66,2.66,0,0,0-.28,0h-.12a1.52,1.52,0,0,0-.21,0,13.9,13.9,0,0,0-1.75.36c-.27.07-.55.15-.82.24l-1.13.37-.43.14a12.89,12.89,0,0,1-2.4.69,2.5,2.5,0,0,1-1,0,2.55,2.55,0,0,1-.48-.2c-.61-.35-.7-.88.43-1.54a4,4,0,0,1,3.48-.36l2.41-2.43a10.29,10.29,0,0,0-7.26.41l-2-1.16-2.72,1.58,2,1.15a3.11,3.11,0,0,0-1.49,2.3v0c0,.77.59,1.52,1.78,2.2,2.63,1.52,5.24,1,7.63.25,2.21-.73,3.83-1.58,5.11-.84.8.46.56,1-.34,1.53a4.36,4.36,0,0,1-3.81.22l-2.56,2.54a9,9,0,0,0,1.41.42,9.12,9.12,0,0,0,2.47.18,11.64,11.64,0,0,0,3.87-.94l2,1.16,2.7-1.57Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"89.57 391.76 89.57 393.89 91.57 395.05 91.57 392.91 89.57 391.76\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.45\n }\n }, _polygon10 || (_polygon10 = /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"89.57 391.76 89.57 393.89 91.57 395.05 91.57 392.91 89.57 391.76\"\n }))), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"73.5 382.73 76.22 381.15 78.23 382.31 76.24 381.48 73.5 382.73\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M79.6,384.69a4,4,0,0,1,3.48-.36l2.41-2.43-2.41,2.18A3.66,3.66,0,0,0,79.6,384.69Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M81.82,392.1a9,9,0,0,0,1.41.42,9.12,9.12,0,0,0,2.47.18,8.73,8.73,0,0,1-3.47-.69l2.15-2.45Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"89.57 391.76 91.57 392.66 94.27 391.35 91.57 392.91 89.57 391.76\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M65.72,378.32c7.1-4.32,18.17-4.74,18.17-4.74-7,0-13.49,1.55-18.38,4.38-4.69,2.71-7.27,6.23-7.27,9.94C58.24,387.9,58.5,382.71,65.72,378.32Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M81.82,403.33c7.54.34,15.27-1.16,21-4.49,6-3.46,8.56-8.15,7.69-12.66,0,0,1.12,7.35-8.14,12.39S81.82,403.33,81.82,403.33Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M110.86,380.36a17.27,17.27,0,0,0-6.41-5.92c-10.47-6.05-27.45-6.05-37.92,0a17.27,17.27,0,0,0-6.41,5.92H58.67v5.48h0c.2,3.81,2.8,7.59,7.84,10.49,10.47,6.05,27.45,6.05,37.92,0,5-2.9,7.67-6.68,7.86-10.49h0v-5.48Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.25\n }\n }, _path59 || (_path59 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M110.86,380.36a17.27,17.27,0,0,0-6.41-5.92c-10.47-6.05-27.45-6.05-37.92,0a17.27,17.27,0,0,0-6.41,5.92H58.67v5.48h0c.2,3.81,2.8,7.59,7.84,10.49,10.47,6.05,27.45,6.05,37.92,0,5-2.9,7.67-6.68,7.86-10.49h0v-5.48Z\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.1\n }\n }, _path60 || (_path60 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M85.49,369.9c-6.86,0-13.72,1.51-19,4.54a17.35,17.35,0,0,0-6.41,5.92H58.67v5.48h0c.2,3.81,2.8,7.59,7.84,10.49,5.24,3,12.1,4.54,19,4.54Z\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.1\n }\n }, _path61 || (_path61 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M70.84,372.42a28.38,28.38,0,0,0-4.31,2,17.35,17.35,0,0,0-6.41,5.92H58.67v5.48h0c.2,3.81,2.8,7.59,7.84,10.49a28.38,28.38,0,0,0,4.31,2Z\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.5\n }\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M100.14,372.42a28.38,28.38,0,0,1,4.31,2,17.27,17.27,0,0,1,6.41,5.92h1.45v5.48h0c-.19,3.81-2.82,7.59-7.86,10.49a28.38,28.38,0,0,1-4.31,2Z\",\n style: {\n fill: \"#407BFF\"\n }\n })), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M104.45,369.42c-10.47-6.05-27.45-6.05-37.92,0s-10.47,15.85,0,21.89,27.45,6.05,37.92,0S114.93,375.46,104.45,369.42Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.2\n }\n }, _path62 || (_path62 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M104.45,369.42c-10.47-6.05-27.45-6.05-37.92,0s-10.47,15.85,0,21.89,27.45,6.05,37.92,0S114.93,375.46,104.45,369.42Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.84,373.42a27.68,27.68,0,0,0-12.35-2.63,27.68,27.68,0,0,0-12.35,2.63c-3.51,1.8-5.44,4.27-5.44,6.95s1.93,5.14,5.44,6.93a27.54,27.54,0,0,0,12.35,2.64,27.54,27.54,0,0,0,12.35-2.64c3.51-1.79,5.44-4.26,5.44-6.93S101.35,375.22,97.84,373.42Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.4\n }\n }, _path63 || (_path63 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.84,373.42a27.68,27.68,0,0,0-12.35-2.63,27.68,27.68,0,0,0-12.35,2.63c-3.51,1.8-5.44,4.27-5.44,6.95s1.93,5.14,5.44,6.93a27.54,27.54,0,0,0,12.35,2.64,27.54,27.54,0,0,0,12.35-2.64c3.51-1.79,5.44-4.26,5.44-6.93S101.35,375.22,97.84,373.42Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M103.87,370.43c-4.89-2.83-11.42-4.38-18.38-4.38S72,367.6,67.11,370.43c-4.69,2.71-7.27,6.23-7.27,9.94s2.58,7.23,7.27,9.93c4.89,2.82,11.42,4.38,18.38,4.38s13.49-1.56,18.38-4.38c4.69-2.7,7.27-6.23,7.27-9.93S108.56,373.14,103.87,370.43Zm-6,16.87a27.54,27.54,0,0,1-12.35,2.64,27.54,27.54,0,0,1-12.35-2.64c-3.51-1.79-5.44-4.26-5.44-6.93s1.93-5.15,5.44-6.95a27.68,27.68,0,0,1,12.35-2.63,27.68,27.68,0,0,1,12.35,2.63c3.51,1.8,5.44,4.27,5.44,6.95S101.35,385.51,97.84,387.3Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.2\n }\n }, _path64 || (_path64 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.42,386.48c6.58-3.38,6.58-8.86,0-12.24s-17.27-3.38-23.86,0-6.58,8.86,0,12.24S90.83,389.86,97.42,386.48Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.42,386.48c6.58-3.38,6.58-8.86,0-12.24s-17.27-3.38-23.86,0-6.58,8.86,0,12.24S90.83,389.86,97.42,386.48Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.6000000000000001\n }\n }, _path65 || (_path65 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.42,386.48c6.58-3.38,6.58-8.86,0-12.24s-17.27-3.38-23.86,0-6.58,8.86,0,12.24S90.83,389.86,97.42,386.48Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.42,376.54c-6.59-3.38-17.27-3.38-23.86,0-2.72,1.39-4.31,3.15-4.78,5,.47,1.82,2.06,3.58,4.78,5,6.59,3.38,17.27,3.38,23.86,0,2.72-1.39,4.32-3.15,4.79-5C101.74,379.69,100.14,377.93,97.42,376.54Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.5\n }\n }, _path66 || (_path66 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M97.42,376.54c-6.59-3.38-17.27-3.38-23.86,0-2.72,1.39-4.31,3.15-4.78,5,.47,1.82,2.06,3.58,4.78,5,6.59,3.38,17.27,3.38,23.86,0,2.72-1.39,4.32-3.15,4.79-5C101.74,379.69,100.14,377.93,97.42,376.54Z\"\n }))), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"87.09 374.37 87.09 376.85 86.24 377.74 84.68 379.37 84.68 376.8 87.09 374.37\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.30000000000000004\n }\n }, _polygon11 || (_polygon11 = /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"87.09 374.37 87.09 376.85 86.24 377.74 84.68 379.37 84.68 376.8 87.09 374.37\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M84.68,376.8v1.46a14.45,14.45,0,0,1-2.4.68,2.25,2.25,0,0,1-1.52-.24c-.59-.36-.69-.88.45-1.54A3.93,3.93,0,0,1,84.68,376.8Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.45\n }\n }, _path67 || (_path67 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M84.68,376.8v1.46a14.45,14.45,0,0,1-2.4.68,2.25,2.25,0,0,1-1.52-.24c-.59-.36-.69-.88.45-1.54A3.93,3.93,0,0,1,84.68,376.8Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M95.88,383.82V386l-2.71,1.56-2-1.16a10.16,10.16,0,0,1-7.74.35v-2.14l1.22-1.22-1.22.34a7.91,7.91,0,0,1-6-.69c-1.21-.7-1.77-1.46-1.77-2.25v-2.08l.22-.91-.74-.43V375.2l2,1.15a3.06,3.06,0,0,0-1.48,2.3v0c0,.77.59,1.51,1.77,2.2,2.63,1.52,5.24,1,7.63.25,2.22-.73,3.83-1.58,5.11-.84.8.46.56,1-.33,1.54A4.45,4.45,0,0,1,86,382l-2.55,2.53a8.38,8.38,0,0,0,1.41.42,10.57,10.57,0,0,0,6.33-.76l2,1.15Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.35000000000000003\n }\n }, _path68 || (_path68 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M75.62,378.65v0c0,.77.59,1.51,1.77,2.2,2.63,1.52,5.24,1,7.63.25,2.22-.73,3.83-1.58,5.11-.84.8.46.56,1-.33,1.54A4.45,4.45,0,0,1,86,382l-2.55,2.53a8.38,8.38,0,0,0,1.41.42,10.57,10.57,0,0,0,6.33-.76l2,1.15,2.71-1.56V386l-2.71,1.56-2-1.16a10.16,10.16,0,0,1-7.74.35v-2.14l1.22-1.22-1.22.34a7.91,7.91,0,0,1-6-.69c-1.21-.7-1.77-1.46-1.77-2.25v-2.08l.22-.91\"\n }))), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.45\n }\n }, _path69 || (_path69 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M75.1,375.2v2.13l.74.43h0a4.52,4.52,0,0,1,1.27-1.42Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M95.43,382.43a2.52,2.52,0,0,1-.2,1l-1.36-.77a2.66,2.66,0,0,0,1.54-2.06C95.42,381.2,95.43,382.37,95.43,382.43Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.30000000000000004\n }\n }, _path70 || (_path70 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M95.43,382.43a2.52,2.52,0,0,1-.2,1l-1.36-.77a2.66,2.66,0,0,0,1.54-2.06C95.42,381.2,95.43,382.37,95.43,382.43Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M95.43,383.56l-1.55-.9a2.63,2.63,0,0,0,1.55-2.37,1.49,1.49,0,0,0,0-.21c-.06-.73-.61-1.45-1.73-2.09h0a7.13,7.13,0,0,0-3.6-.94h-.34l-.32,0a2.66,2.66,0,0,0-.28,0H89a1.46,1.46,0,0,0-.22,0,13.9,13.9,0,0,0-1.75.36c-.27.07-.55.15-.82.24l-1.13.37-.43.14a12.89,12.89,0,0,1-2.4.69,2.5,2.5,0,0,1-1,0,2.55,2.55,0,0,1-.48-.2c-.6-.35-.7-.88.43-1.54a4,4,0,0,1,3.48-.36l2.41-2.43a10.29,10.29,0,0,0-7.26.41l-2-1.16L75.1,375.2l2,1.15a3.11,3.11,0,0,0-1.49,2.3v0c0,.77.59,1.51,1.78,2.2,2.63,1.52,5.24,1,7.63.25,2.22-.73,3.83-1.58,5.11-.84.8.46.56,1-.33,1.53A4.38,4.38,0,0,1,86,382l-2.56,2.54a8.77,8.77,0,0,0,1.42.42,9,9,0,0,0,2.46.18,11.64,11.64,0,0,0,3.87-.94l2,1.16,2.7-1.57Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"91.17 384.23 91.17 386.36 93.17 387.52 93.17 385.38 91.17 384.23\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.45\n }\n }, _polygon12 || (_polygon12 = /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"91.17 384.23 91.17 386.36 93.17 387.52 93.17 385.38 91.17 384.23\"\n }))), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"75.1 375.2 77.83 373.62 79.83 374.78 77.84 373.94 75.1 375.2\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M81.2,377.16a4,4,0,0,1,3.48-.36l2.41-2.43-2.41,2.18A3.66,3.66,0,0,0,81.2,377.16Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M83.42,384.57a8.77,8.77,0,0,0,1.42.42,9,9,0,0,0,2.46.18,8.73,8.73,0,0,1-3.47-.69L86,382Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"91.17 384.23 93.17 385.13 95.87 383.82 93.17 385.38 91.17 384.23\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M67.32,370.79c7.1-4.32,18.17-4.74,18.17-4.74-7,0-13.49,1.55-18.38,4.38-4.69,2.71-7.27,6.23-7.27,9.94C59.84,380.37,60.1,375.18,67.32,370.79Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M83.42,395.8c7.54.34,15.27-1.16,21-4.49,6-3.46,8.56-8.15,7.69-12.66,0,0,1.12,7.35-8.14,12.39S83.42,395.8,83.42,395.8Z\",\n style: {\n fill: \"#f5f5f5\"\n }\n }))), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Ticket--inject-87\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--ticket--inject-87\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M176.41,458.29v-4.58a.26.26,0,0,0-.26-.26H168v-4.57a.26.26,0,0,0-.26-.26h-8.12V444a.26.26,0,0,0-.26-.26h-8.12V439.2a.26.26,0,0,0-.26-.26h-8.12v-4.58a.26.26,0,0,0-.26-.25h-8.12v-4.58a.26.26,0,0,0-.26-.26h-8.12v-4.43l188-108.55v4.39a.26.26,0,0,0,.26.26h8.12v4.58a.26.26,0,0,0,.25.26h8.13v4.58a.26.26,0,0,0,.25.26h8.12v4.57a.26.26,0,0,0,.26.26h8.12V340a.26.26,0,0,0,.26.26H356v4.58a.26.26,0,0,0,.26.26h8.12v4.58a.26.26,0,0,0,.26.26h7.42L184.46,458.29Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M313.88,316.74v3.94a.52.52,0,0,0,.52.52h7.86v4.32a.52.52,0,0,0,.51.52h7.87v4.32a.51.51,0,0,0,.51.51H339v4.32a.51.51,0,0,0,.51.52h7.87V340a.51.51,0,0,0,.51.52h7.86v4.32a.53.53,0,0,0,.52.52h7.86v4.32a.51.51,0,0,0,.52.51h6.45L184.39,458h-7.73v-4.33a.51.51,0,0,0-.51-.51h-7.87v-4.32a.51.51,0,0,0-.51-.52h-7.86V444a.52.52,0,0,0-.52-.52h-7.86V439.2a.52.52,0,0,0-.52-.51h-7.86v-4.33a.51.51,0,0,0-.52-.51h-7.86v-4.32a.52.52,0,0,0-.52-.52h-7.86v-4L313.88,316.74m.52-.9L125.87,424.69v4.84h8.38v4.83h8.38v4.84H151V444h8.38v4.84h8.38v4.83h8.38v4.84h8.38L373.05,349.71h-8.38v-4.84h-8.38V340h-8.38v-4.84h-8.38v-4.83h-8.38v-4.84h-8.38v-4.84H314.4v-4.84Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M339.53,350.74a1.06,1.06,0,0,1-.51-.14l-25.14-14.51a1,1,0,1,1,1-1.79l25.14,14.51a1,1,0,0,1-.52,1.93Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M339.53,354.93a.45.45,0,0,1-.19-.05l-33.52-19.35a.39.39,0,0,1-.14-.53.38.38,0,0,1,.53-.14l33.52,19.35a.39.39,0,0,1-.2.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M335.34,357.35a.45.45,0,0,1-.19-.05L301.63,338a.39.39,0,0,1-.14-.53.38.38,0,0,1,.53-.14l33.52,19.35a.39.39,0,0,1-.2.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M318.58,357.35a.45.45,0,0,1-.19-.05l-29.32-16.93a.4.4,0,0,1-.15-.53.38.38,0,0,1,.53-.14l29.33,16.93a.39.39,0,0,1-.2.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M331.15,364.61a.35.35,0,0,1-.19-.06l-8.38-4.83a.39.39,0,0,1-.14-.53.38.38,0,0,1,.53-.14l8.38,4.83a.39.39,0,0,1,.14.53A.38.38,0,0,1,331.15,364.61Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M314.4,359.77a.46.46,0,0,1-.2,0l-29.32-16.93a.4.4,0,0,1-.15-.53.38.38,0,0,1,.53-.14l29.33,16.93a.39.39,0,0,1-.19.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M327,367a.34.34,0,0,1-.19,0l-8.38-4.83a.39.39,0,0,1-.14-.53.38.38,0,0,1,.53-.14l8.38,4.83a.4.4,0,0,1,.14.53A.37.37,0,0,1,327,367Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M310.21,362.19a.46.46,0,0,1-.2-.05l-29.32-16.93a.39.39,0,1,1,.38-.68l29.33,16.94a.39.39,0,0,1-.19.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M322.77,369.44a.34.34,0,0,1-.19-.05l-8.38-4.83a.39.39,0,0,1,.39-.68l8.38,4.84a.4.4,0,0,1,.14.53A.39.39,0,0,1,322.77,369.44Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M306,364.61a.46.46,0,0,1-.2-.05L276.5,347.62a.38.38,0,0,1-.15-.52.4.4,0,0,1,.53-.15l29.33,16.94a.39.39,0,0,1-.19.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M318.58,371.86a.34.34,0,0,1-.19-.05L310,367a.38.38,0,0,1-.14-.52.4.4,0,0,1,.53-.15l8.38,4.84a.4.4,0,0,1,.14.53A.39.39,0,0,1,318.58,371.86Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M301.82,367a.45.45,0,0,1-.19,0L272.31,350a.39.39,0,0,1-.15-.53.4.4,0,0,1,.53-.14L302,366.3a.39.39,0,0,1,.14.53A.38.38,0,0,1,301.82,367Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M314.39,374.28a.34.34,0,0,1-.19,0l-8.38-4.84a.39.39,0,0,1-.14-.53.4.4,0,0,1,.53-.14l8.38,4.84a.39.39,0,0,1-.2.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M297.63,369.45a.35.35,0,0,1-.19-.06l-29.32-16.93a.39.39,0,0,1-.15-.53.4.4,0,0,1,.53-.14l29.33,16.93a.39.39,0,0,1,.14.53A.38.38,0,0,1,297.63,369.45Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M310.2,376.7a.45.45,0,0,1-.19-.05l-8.38-4.84a.39.39,0,0,1-.14-.53.4.4,0,0,1,.53-.14L310.4,376a.39.39,0,0,1-.2.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M293.44,371.87a.35.35,0,0,1-.19-.06l-29.32-16.93a.39.39,0,0,1-.15-.53.4.4,0,0,1,.53-.14l29.33,16.93a.39.39,0,0,1,.14.53A.38.38,0,0,1,293.44,371.87Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M306,379.12a.45.45,0,0,1-.19-.05l-8.38-4.84a.39.39,0,0,1-.14-.53.4.4,0,0,1,.53-.14l8.38,4.84a.39.39,0,0,1-.2.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M289.25,374.28a.34.34,0,0,1-.19,0L259.74,357.3a.39.39,0,0,1-.15-.53.4.4,0,0,1,.53-.14l29.33,16.93a.39.39,0,0,1,.14.53A.37.37,0,0,1,289.25,374.28Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M301.82,381.54a.45.45,0,0,1-.19-.05l-8.38-4.84a.39.39,0,0,1-.14-.53.4.4,0,0,1,.53-.14l8.38,4.84a.39.39,0,0,1-.2.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M285.06,376.7a.34.34,0,0,1-.19-.05l-29.32-16.93a.39.39,0,1,1,.38-.67L285.26,376a.39.39,0,0,1-.2.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M297.63,384a.45.45,0,0,1-.19,0l-8.38-4.84a.39.39,0,1,1,.39-.67l8.38,4.84a.39.39,0,0,1-.2.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M280.88,379.12a.46.46,0,0,1-.2-.05l-29.32-16.93a.39.39,0,0,1-.15-.53.38.38,0,0,1,.53-.14l29.33,16.93a.39.39,0,0,1-.19.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M293.44,386.38a.45.45,0,0,1-.19-.05l-8.38-4.84a.39.39,0,0,1-.14-.53.38.38,0,0,1,.53-.14l8.38,4.84a.39.39,0,0,1,.14.52A.38.38,0,0,1,293.44,386.38Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M276.69,381.54a.46.46,0,0,1-.2-.05l-29.32-16.93A.4.4,0,0,1,247,364a.38.38,0,0,1,.53-.14l29.33,16.93a.39.39,0,0,1-.19.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M289.25,388.8a.45.45,0,0,1-.19-.05l-8.38-4.84a.39.39,0,0,1-.14-.53.38.38,0,0,1,.53-.14l8.38,4.83a.4.4,0,0,1,.14.53A.38.38,0,0,1,289.25,388.8Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M272.5,384a.46.46,0,0,1-.2,0L243,367a.4.4,0,0,1-.15-.53.38.38,0,0,1,.53-.14l29.33,16.93a.39.39,0,0,1-.19.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M285.06,391.22a.35.35,0,0,1-.19-.06l-8.38-4.83a.39.39,0,0,1-.14-.53.38.38,0,0,1,.53-.14l8.38,4.83a.39.39,0,0,1,.14.53A.38.38,0,0,1,285.06,391.22Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M268.3,386.38a.45.45,0,0,1-.19-.05L238.79,369.4a.4.4,0,0,1-.15-.53.38.38,0,0,1,.53-.14l29.33,16.93a.39.39,0,0,1-.2.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M280.87,393.64a.35.35,0,0,1-.19-.06l-8.38-4.83a.39.39,0,0,1-.14-.53.38.38,0,0,1,.53-.14l8.38,4.83a.39.39,0,0,1,.14.53A.38.38,0,0,1,280.87,393.64Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M264.11,388.8a.45.45,0,0,1-.19-.05L234.6,371.82a.4.4,0,0,1-.15-.53.38.38,0,0,1,.53-.14l29.33,16.93a.39.39,0,0,1-.2.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M276.68,396.05a.34.34,0,0,1-.19-.05l-8.38-4.83a.39.39,0,0,1-.14-.53.38.38,0,0,1,.53-.14l8.38,4.83a.39.39,0,0,1,.14.53A.37.37,0,0,1,276.68,396.05Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M259.92,391.22a.45.45,0,0,1-.19-.05l-29.32-16.93a.39.39,0,0,1,.38-.68l29.33,16.94a.39.39,0,0,1-.2.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M272.49,398.47a.34.34,0,0,1-.19-.05l-8.38-4.83a.39.39,0,0,1,.39-.68l8.38,4.84a.39.39,0,0,1-.2.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M255.73,393.64a.45.45,0,0,1-.19-.05l-29.32-16.94a.39.39,0,0,1-.15-.53.4.4,0,0,1,.53-.14l29.33,16.94a.39.39,0,0,1-.2.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M268.3,400.89a.34.34,0,0,1-.19-.05L259.73,396a.38.38,0,0,1-.14-.52.4.4,0,0,1,.53-.15l8.38,4.84a.39.39,0,0,1-.2.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M251.54,396.06a.45.45,0,0,1-.19-.05L222,379.07a.39.39,0,0,1-.15-.53.4.4,0,0,1,.53-.14l29.33,16.93a.39.39,0,0,1,.14.53A.38.38,0,0,1,251.54,396.06Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M264.11,403.31a.34.34,0,0,1-.19-.05l-8.38-4.84a.39.39,0,0,1-.14-.53.4.4,0,0,1,.53-.14l8.38,4.84a.39.39,0,0,1-.2.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M247.35,398.48a.35.35,0,0,1-.19-.06l-29.32-16.93a.39.39,0,0,1-.15-.53.4.4,0,0,1,.53-.14l29.33,16.93a.39.39,0,0,1,.14.53A.38.38,0,0,1,247.35,398.48Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M259.92,405.73a.45.45,0,0,1-.19-.05l-8.38-4.84a.39.39,0,0,1-.14-.53.4.4,0,0,1,.53-.14l8.38,4.84a.4.4,0,0,1,.14.53A.39.39,0,0,1,259.92,405.73Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M239,403.31a.46.46,0,0,1-.2-.05l-29.32-16.94a.38.38,0,0,1-.14-.53.4.4,0,0,1,.53-.14l29.32,16.93a.38.38,0,0,1,.14.53A.38.38,0,0,1,239,403.31Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M251.55,410.56a.34.34,0,0,1-.19-.05L243,405.67a.4.4,0,0,1-.14-.53.4.4,0,0,1,.53-.14l8.38,4.84a.39.39,0,0,1-.2.72Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M230.61,408.79a1.07,1.07,0,0,1-.52-.14L213.33,399a1,1,0,0,1,1-1.78l16.75,9.67a1,1,0,0,1,.38,1.41A1,1,0,0,1,230.61,408.79Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M230.6,422.65a.41.41,0,0,1-.19,0l-41.88-24.18a.39.39,0,0,1-.14-.53.4.4,0,0,1,.53-.14l41.87,24.18a.38.38,0,0,1,.14.53A.39.39,0,0,1,230.6,422.65Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M226.32,425a.41.41,0,0,1-.19,0l-41.88-24.18a.39.39,0,0,1-.14-.53.4.4,0,0,1,.53-.14l41.87,24.18a.37.37,0,0,1,.14.52A.38.38,0,0,1,226.32,425Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M222,427.38a.32.32,0,0,1-.19-.05L180,403.16a.39.39,0,0,1-.14-.53.38.38,0,0,1,.53-.14l41.87,24.17a.38.38,0,0,1,.14.53A.39.39,0,0,1,222,427.38Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M217.76,429.75a.49.49,0,0,1-.2-.05l-41.87-24.18a.39.39,0,0,1-.14-.53.4.4,0,0,1,.53-.14L218,429a.38.38,0,0,1,.14.53A.39.39,0,0,1,217.76,429.75Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M192.88,444.41a.34.34,0,0,1-.19-.05l-41.87-24.17a.4.4,0,0,1-.15-.53.38.38,0,0,1,.53-.14l41.88,24.17a.39.39,0,0,1-.2.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M188.6,446.78a.45.45,0,0,1-.19,0l-41.87-24.18a.39.39,0,0,1-.15-.53.4.4,0,0,1,.53-.14l41.88,24.18a.39.39,0,0,1-.2.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M201.28,429.91a.34.34,0,0,1-.19-.05L176,415.35a.39.39,0,0,1-.14-.53.38.38,0,0,1,.53-.14l25.14,14.51a.4.4,0,0,1,.14.53A.39.39,0,0,1,201.28,429.91Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M197.09,432.27a.34.34,0,0,1-.19,0l-25.14-14.51a.39.39,0,0,1-.14-.53.4.4,0,0,1,.53-.14l25.14,14.51a.39.39,0,0,1-.2.72Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M192.9,434.63a.34.34,0,0,1-.19-.05l-25.14-14.51a.39.39,0,0,1,.39-.67l25.14,14.51a.39.39,0,0,1,.14.53A.37.37,0,0,1,192.9,434.63Z\",\n style: {\n fill: \"#455a64\"\n }\n }))), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--Character--inject-87\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--character--inject-87\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M407.5,367.3c-.12,2.05-.35,3.91.49,6.15,1.21,3.22,3.66,4.66,5.11,5.91a24.86,24.86,0,0,1,4.24,4.93,21,21,0,0,0,4.43,5.31c1.37,1.14,5.17,1.17,7,.37s2.42-1.51,2.25-4.44-9.06-3.74-9.06-3.74Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M429.68,376.83c.76.27,1,1.71,1.15,4.58.13,2.16,1.11,5.32-1.85,6.74-2.39,1.15-6.25.5-7.92-1.51-2.09-2.51-3.5-4.73-6.46-7.78-2.57-2.65-5.21-3.51-6.44-8.88-.78-3.46-.25-4.91,2.07-6,3.18-1.43,8.31,2.94,10.84,3.59C423.25,368.18,428.92,376.56,429.68,376.83Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M429.68,376.83c.76.27,1,1.71,1.15,4.58.13,2.16,1.11,5.32-1.85,6.74-2.39,1.15-6.25.5-7.92-1.51-2.09-2.51-3.5-4.73-6.46-7.78-2.57-2.65-5.21-3.51-6.44-8.88-.78-3.46-.25-4.91,2.07-6,3.18-1.43,8.31,2.94,10.84,3.59C423.25,368.18,428.92,376.56,429.68,376.83Z\",\n style: {\n opacity: 0.4\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M421.07,367.62a3,3,0,0,1-.43-.14,8.29,8.29,0,0,0-6.86,4.7c-.41.95.93,1.66,1.7.91a8.82,8.82,0,0,1,6.85-4.67A3.76,3.76,0,0,0,421.07,367.62Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M423.18,369.21a8.22,8.22,0,0,0-6.37,4.65c-.41.95.93,1.66,1.7.91a8.47,8.47,0,0,1,5.7-4.44C423.86,369.93,423.51,369.55,423.18,369.21Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M368.05,412.44c-.44,2.44.46,3.68,3.63,5.43s8.1,2.27,13.25.66,7.57-3.92,9.71-4.5,7.46-.73,9.57-1.4,2.06-1.75,2-4.3Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M403.87,396.05a56.82,56.82,0,0,1,1.67,5.71c.48,2.11,1.17,5.66.46,7.27s-3.6,2.71-8.11,2.76c-2.91,0-7.42,2.11-10.5,3.91s-6.66,1.94-10.07,1.61c-4-.39-8.22-2.64-8.9-4.28s-.87-2.89,8.49-7.1c.09,0,10.88-4.27,15.35-9.41Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.4\n }\n }, _path71 || (_path71 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M403.87,396.05a56.82,56.82,0,0,1,1.67,5.71c.48,2.11,1.17,5.66.46,7.27s-3.6,2.71-8.11,2.76c-2.91,0-7.42,2.11-10.5,3.91s-6.66,1.94-10.07,1.61c-4-.39-8.22-2.64-8.9-4.28s-.87-2.89,8.49-7.1c.09,0,10.88-4.27,15.35-9.41Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M386.12,416.35s-1-8.1-7.61-10.28c-6-2-11.12,2.54-10.46,6.37C368.49,415,375.86,420.73,386.12,416.35Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M380.14,404.51a7.69,7.69,0,0,1,4.54,1.91c1.94,1.56,2,2.63,2,2.63a1,1,0,0,0,1.7-.86s-.52-4.08-5.92-4.81A2.2,2.2,0,0,0,380.14,404.51Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M383.88,402.63a6.78,6.78,0,0,1,4.58,1.72c1.93,1.56,2,2.82,2,2.82a1,1,0,0,0,1.71-.86s-.53-4.08-5.93-4.81A2.19,2.19,0,0,0,383.88,402.63Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M387.57,400.42a6.77,6.77,0,0,1,4.69,1.4c2,1.43,2.16,2.68,2.16,2.68a1,1,0,0,0,1.64-1s-.81-4-6.24-4.4A2.21,2.21,0,0,0,387.57,400.42Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M429.58,372.2l.11,5.5s-3.6,2.88-8.88.42c-.16-.34-.72-5.73-.72-5.73Z\",\n style: {\n fill: \"#ffa8a7\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M403.8,392.25s0,2.61.08,4.1-1.67,3.75-6.24,3.68c-3.2,0-5.46-.87-5.38-3.51l-.08-3.8Z\",\n style: {\n fill: \"#ffa8a7\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M434.58,325.4c-.53-11.6-3-16.64-3-16.64s.6-14.35,2.18-31.94c2.4-26.77.28-30.74-5.23-42.65,0,0-44.39-4.84-45.39,13.88-1.24,23.3-1.45,67.77-.66,76s1.33,11.39,3.66,28c1.84,13.13,6.06,40.7,6.06,40.7,6,3.11,11.62-.47,11.62-.47s2.8-43.56,2.23-53c-.71-11.57-1.42-14.51-1.42-14.51s4.5-37.6,5.2-43.65c0,0,.94,10.79,1.73,19s.86,14.84,2.93,31.81c1.63,13.31,5.5,42,5.5,42a11,11,0,0,0,9.79-.92S435,334.78,434.58,325.4Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M409.72,373.94s.12-6.43,8.78-7.5l.51.28a7.52,7.52,0,0,0-4.34-3.21c-2.9-.73-5.17.07-6.64,2.05S408.19,372.72,409.72,373.94Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M409.81,281.05l.56-7.69a62.81,62.81,0,0,0,13.72-6.89,18.51,18.51,0,0,1-11,8.39l-1.38,7.54L411.54,300Z\",\n style: {\n fill: \"#37474f\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M471.08,328.56l-13.68,39.9a1.28,1.28,0,0,1-2.43,0l-13.49-40.22Z\",\n style: {\n fill: \"#ffa8a7\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M455,368.45a1.28,1.28,0,0,0,2.43,0l2.67-7.79h0a7.1,7.1,0,0,1-7.39-.41l-.59-.41Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M442,150.32v3.9l0,4.71-.48,169.3c3.13,3.58,7.77,5.39,12.47,5.87,7.16.74,14.5-1.6,17.12-5.54l.48-169.2,0-9C471.22,156.19,441.73,156.17,442,150.32Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M442,150.32v3.9l0,4.71-.48,169.3c3.13,3.58,7.77,5.39,12.47,5.87,7.16.74,14.5-1.6,17.12-5.54l.48-169.2,0-9C471.22,156.19,441.73,156.17,442,150.32Z\",\n style: {\n opacity: 0.25\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M441.9,165.18v8.72c-.09,2.53,5.29,4.16,11.51,4.73,8.25.78,18-1.46,18.08-4.8l0-6.43,0-2.3c-.12,3.35-9.84,5.59-18.09,4.81-5.95-.55-11.17-2.1-11.46-4.46v0A.69.69,0,0,1,441.9,165.18Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M441.92,167.36c-.21,5.86,29.37,5.79,29.58-.08l0-8.72c-.21,5.86-29.79,5.94-29.58.07Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M442,150.32l0,8.61c-.25,5.76,28.3,5.93,29.59.43a1.53,1.53,0,0,0,0-.33l0-8.67C471.22,156.19,441.73,156.17,442,150.32Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M471.7,113.41V113c0-4.2-6.62-7.61-14.79-7.61s-14.79,3.41-14.79,7.61v4L442,150.32c-.11,2.5,5.21,4.15,11.37,4.75,8.26.8,18-1.37,18.2-4.71a.06.06,0,0,0,0,0l.13-36.68Z\",\n style: {\n fill: \"#f28f8f\"\n }\n }), /*#__PURE__*/React.createElement(\"ellipse\", {\n cx: 456.91,\n cy: 113.04,\n rx: 14.79,\n ry: 7.61,\n style: {\n fill: \"#fff\",\n opacity: 0.2\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M471.54,159.36l.16-46c-.2,3.6-6.33,7-13,7.24l-.47,213.58-.8,34.23,13.68-39.9h0Z\",\n style: {\n opacity: 0.1\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M422.93,179.49c5.62-.81,11.37,1.66,16.19,8.44s21.78,23,23.62,28.29c1.35,3.83,1.88,14.45-6,11.07-7.67-3.26-34-29.64-34-29.64Z\",\n style: {\n fill: \"#ffa8a7\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M422.66,179a15,15,0,0,1,10.15,1.92c2.37,1.61,7,7,12.39,13a121.94,121.94,0,0,1,7.95,9.76,17,17,0,0,1-10.28,14.11l-21-17.68Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M457.58,210.3l13.82-12.4,0-13.16s2.72.92,3.8,5.15,2.43,9.18,1.89,12.79-11.95,23.74-16.36,25.13C455.47,229.48,457.58,210.3,457.58,210.3Z\",\n style: {\n fill: \"#ffa8a7\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"400.65 172.61 402.56 189.54 418.3 185.96 416.26 163.37 400.65 172.61\",\n style: {\n fill: \"#ffa8a7\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M434.62,187.86c-.87-4.73-7.09-9.71-12.92-8.76-1.36.22-2.68.44-4,.67-.7,2.84-8.5,4.62-16,2.87-2.24.59-9.64,2-11.51,2.59-5.36,1.78-7.57,7.06-8.4,24.53,0,0,.43,39.56.22,47.44,13.22,5.58,27.11,5.73,34.82,4.23,16-3.13,18.12-9.71,18.12-9.71l-2.39-18.1S436.57,198.58,434.62,187.86Z\",\n style: {\n fill: \"#f0f0f0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M401.28,178.19h0a21,21,0,0,0,10,.4c5.19-1.16,6.23-2,6.23-2l-.11-1.21s.84-.05,2,1.51,1.66,2.27,1.66,2.27-.31,3.79-6.42,5.64a18.85,18.85,0,0,1-15.2-1.66l-2.39.51s2.07-4.77,2.7-5.74a1.57,1.57,0,0,1,1.49-.83Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M389.39,151.89s-4,6.06-3.53,6.65,3.39,1.13,3.39,1.13Z\",\n style: {\n fill: \"#f28f8f\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M391.26,155.78A4.76,4.76,0,1,1,396,151,4.75,4.75,0,0,1,391.26,155.78Zm0-8.45A3.7,3.7,0,1,0,395,151,3.7,3.7,0,0,0,391.26,147.33Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M400.47,135.14c-8.07,1.71-10.4,5.26-11.16,18.08-.8,13.41.57,17.62,2.33,19.43,1.19,1.21,7.79,1.43,11.13.52,4.17-1.16,13.59-4.5,18-11.24,5.19-7.93,6.55-18.68,1-23.09C414,132.63,403.76,134.45,400.47,135.14Z\",\n style: {\n fill: \"#ffa8a7\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M400.76,173.54l-.38-2.47A16,16,0,0,1,392.1,173C393.64,173.71,397.66,173.93,400.76,173.54Z\",\n style: {\n fill: \"#f28f8f\"\n }\n }), /*#__PURE__*/React.createElement(\"polygon\", {\n points: \"386.95 150.03 401.31 151.89 400.73 152.9 386.95 151.11 386.95 150.03\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M387.93,140.33a4.07,4.07,0,0,0,1.82-.12,2.87,2.87,0,0,0,1,3.37,4.09,4.09,0,0,0,3.62.48,3.49,3.49,0,0,0-.4,2.49,4.05,4.05,0,0,0,4.18,3c.09,1.88.11,3.71,2.12,4.57,0,0,1.27-5,5.45-4.33s4.77,6,2.12,9.24-5.08,2-5.12,2a8.74,8.74,0,0,0,.66,2.37,9.74,9.74,0,0,0,3.53,3.89A19,19,0,0,0,417,170c1.31-3.78,3.46-6.65,5.74-10,1.8-2.6,4.08-5.56,5-8.59a17,17,0,0,0,.1-10.1c-1-3-2.16-5.28-5.43-6.09-.74-4-4.75-6.13-8.39-8a13.57,13.57,0,0,0-11.83-.1c-1.34-1.42-2.4-3.13-4.27-4a3.9,3.9,0,0,0-4.58.82,5.82,5.82,0,0,0-.73,3.85,9,9,0,0,0-4.6.4,4.78,4.78,0,0,0-3,3.35,3.3,3.3,0,0,0,2.06,3.73,2.88,2.88,0,0,0-1,3.26A2.44,2.44,0,0,0,387.93,140.33Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M400.17,157l.15-5.6a2.8,2.8,0,1,0-.15,5.6Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M347.79,213.9l33.53,18,.55.86v.7a1,1,0,0,1-.55.86l-25,14.39a1.94,1.94,0,0,1-1.83,0l-32.93-19V229Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M355.41,248.26a1.92,1.92,0,0,0,.91-.23l25-14.39a1,1,0,0,0,.55-.87,1,1,0,0,0-.55-.86L349,213.22,321.56,229l32.93,19A1.93,1.93,0,0,0,355.41,248.26Z\",\n style: {\n fill: \"#455a64\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M349,211.17,381,229.69l.26.37v2.71h0a.45.45,0,0,1-.26.36l-25,14.39a1.32,1.32,0,0,1-1.25,0L322.72,229v-2.71Z\",\n style: {\n fill: \"#f0f0f0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M322.72,226.29l.31.18,4.12,2.38.77.44,26.86,15.52a1.38,1.38,0,0,0,1.25,0l25-14.39a.39.39,0,0,0,0-.73l-.34-.19L349,211.17,323,226.1l-.08.05Z\",\n style: {\n fill: \"#ebebeb\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M355.41,245v2.72a1.17,1.17,0,0,0,.62-.16l25-14.39a.45.45,0,0,0,.26-.36v-2.72a.45.45,0,0,1-.26.37l-25,14.39A1.26,1.26,0,0,1,355.41,245Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M322.72,225.92l4.55,2.63.72.42,26.79,15.48a1.38,1.38,0,0,0,1.25,0l21.31-12.27.8-.45a7.87,7.87,0,0,0,2.55-2.23l.06-.1a.48.48,0,0,0,.08-.18.56.56,0,0,0-.44-.64,11.78,11.78,0,0,1-2.38-1h0l-29-16.76Z\",\n style: {\n fill: \"#fafafa\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M333.17,227.32l17.77-10.26a.85.85,0,0,1,.79,0l0,0a.24.24,0,0,1,0,.45L334,227.81a.91.91,0,0,1-.79,0l0,0C333,227.65,333,227.45,333.17,227.32Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M334.91,228.31l17.78-10.26a.85.85,0,0,1,.79,0l0,0a.24.24,0,0,1,0,.45L335.75,228.8a.91.91,0,0,1-.79,0l0,0C334.69,228.64,334.69,228.44,334.91,228.31Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M336.66,229.3,354.43,219a.85.85,0,0,1,.79,0l0,0c.22.13.22.33,0,.46l-17.78,10.26a.85.85,0,0,1-.79,0l0,0C336.44,229.63,336.44,229.43,336.66,229.3Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M349.06,236.51l17.77-10.26a.87.87,0,0,1,.8,0l0,0c.22.13.22.33,0,.46L349.9,237a.87.87,0,0,1-.8,0l0,0C348.84,236.84,348.84,236.63,349.06,236.51Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }), /*#__PURE__*/React.createElement(\"text\", {\n transform: \"matrix(0.87, -0.5, 0.87, 0.5, 358.94, 229.1)\",\n style: {\n fontSize: \"2.8363699913024902px\",\n fill: \"#e0e0e0\",\n fontFamily: \"Rubik-Medium, Rubik\",\n fontWeight: 500\n }\n }, \"544\"), /*#__PURE__*/React.createElement(\"text\", {\n transform: \"matrix(0.87, -0.5, 0.87, 0.5, 356.22, 227.23)\",\n style: {\n fontSize: \"2.8363699913024902px\",\n fill: \"#e0e0e0\",\n fontFamily: \"Rubik-Medium, Rubik\",\n fontWeight: 500\n }\n }, \"216\"), /*#__PURE__*/React.createElement(\"text\", {\n transform: \"matrix(0.87, -0.5, 0.87, 0.5, 353.22, 225.73)\",\n style: {\n fontSize: \"2.8363699913024902px\",\n fill: \"#e0e0e0\",\n fontFamily: \"Rubik-Medium, Rubik\",\n fontWeight: 500\n }\n }, \"954\"), /*#__PURE__*/React.createElement(\"text\", {\n transform: \"matrix(0.87, -0.5, 0.87, 0.5, 352.88, 228.19)\",\n style: {\n fontSize: \"2.8363699913024902px\",\n fill: \"#e0e0e0\",\n fontFamily: \"Rubik-Medium, Rubik\",\n fontWeight: 500\n }\n }, \"+\"), /*#__PURE__*/React.createElement(\"text\", {\n transform: \"matrix(0.87, -0.5, 0.87, 0.5, 350.33, 234.08)\",\n style: {\n fontSize: \"2.8363699913024902px\",\n fill: \"#e0e0e0\",\n fontFamily: \"Rubik-Medium, Rubik\",\n fontWeight: 500\n }\n }, \"914\"), /*#__PURE__*/React.createElement(\"text\", {\n transform: \"matrix(0.87, -0.5, 0.87, 0.5, 347.15, 232.47)\",\n style: {\n fontSize: \"2.8363699913024902px\",\n fill: \"#e0e0e0\",\n fontFamily: \"Rubik-Medium, Rubik\",\n fontWeight: 500\n }\n }, \"356\"), /*#__PURE__*/React.createElement(\"text\", {\n transform: \"matrix(0.87, -0.5, 0.87, 0.5, 344.31, 230.88)\",\n style: {\n fontSize: \"2.8363699913024902px\",\n fill: \"#e0e0e0\",\n fontFamily: \"Rubik-Medium, Rubik\",\n fontWeight: 500\n }\n }, \"984\"), /*#__PURE__*/React.createElement(\"text\", {\n transform: \"matrix(0.87, -0.5, 0.87, 0.5, 344.03, 233.31)\",\n style: {\n fontSize: \"2.8363699913024902px\",\n fill: \"#e0e0e0\",\n fontFamily: \"Rubik-Medium, Rubik\",\n fontWeight: 500\n }\n }, \"+\"), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M327.43,225.61a.36.36,0,0,1,0,.68,1.34,1.34,0,0,1-1.17,0c-.33-.19-.33-.5,0-.68A1.27,1.27,0,0,1,327.43,225.61Z\",\n style: {\n opacity: 0.1\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M322.85,225.24a3.77,3.77,0,0,0,0,.58l.41-.23c0-.12,0-.24,0-.35a1.62,1.62,0,0,1,.6-1.46.88.88,0,0,1,.42-.11,1.53,1.53,0,0,1,.72.22,4.39,4.39,0,0,1,1.77,2.53,1.3,1.3,0,0,0,.44,0,4.91,4.91,0,0,0-2-2.85,1.54,1.54,0,0,0-1.58-.11A2,2,0,0,0,322.85,225.24Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M322.93,226.05a.36.36,0,0,1,0,.1l.08-.05Z\",\n style: {\n fill: \"#263238\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M331,223.56a.36.36,0,0,1,0,.68,1.27,1.27,0,0,1-1.17,0c-.33-.18-.33-.49,0-.68A1.33,1.33,0,0,1,331,223.56Z\",\n style: {\n opacity: 0.1\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M326.39,223.19a3.9,3.9,0,0,0,0,.59l.41-.24c0-.11,0-.23,0-.35a1.61,1.61,0,0,1,.6-1.45.85.85,0,0,1,.42-.11,1.56,1.56,0,0,1,.72.22,4.45,4.45,0,0,1,1.77,2.53,1.21,1.21,0,0,0,.43,0,5,5,0,0,0-2-2.86,1.57,1.57,0,0,0-1.58-.11A2,2,0,0,0,326.39,223.19Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M334.51,221.52a.36.36,0,0,1,0,.68,1.29,1.29,0,0,1-1.18,0,.36.36,0,0,1,0-.68A1.29,1.29,0,0,1,334.51,221.52Z\",\n style: {\n opacity: 0.1\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M329.92,221.15a4,4,0,0,0,.05.59l.41-.24a2.06,2.06,0,0,1,0-.35,1.63,1.63,0,0,1,.59-1.45.89.89,0,0,1,.43-.11,1.45,1.45,0,0,1,.72.22,4.42,4.42,0,0,1,1.77,2.53,1.24,1.24,0,0,0,.43-.05,4.89,4.89,0,0,0-2-2.86,1.53,1.53,0,0,0-1.57-.11A2,2,0,0,0,329.92,221.15Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M338,219.48a.36.36,0,0,1,0,.68,1.27,1.27,0,0,1-1.17,0c-.33-.19-.33-.49,0-.68A1.27,1.27,0,0,1,338,219.48Z\",\n style: {\n opacity: 0.1\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M333.46,219.11a4,4,0,0,0,0,.59l.41-.24c0-.12,0-.23,0-.35a1.6,1.6,0,0,1,.6-1.45.78.78,0,0,1,.42-.11,1.42,1.42,0,0,1,.72.22,4.33,4.33,0,0,1,1.77,2.53,1.3,1.3,0,0,0,.44-.05,4.93,4.93,0,0,0-2-2.86,1.54,1.54,0,0,0-1.58-.11A2,2,0,0,0,333.46,219.11Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M341.58,217.44a.36.36,0,0,1,0,.68,1.27,1.27,0,0,1-1.17,0c-.33-.19-.33-.49,0-.68A1.27,1.27,0,0,1,341.58,217.44Z\",\n style: {\n opacity: 0.1\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M337,217.07a4,4,0,0,0,0,.59l.41-.24c0-.12,0-.24,0-.35a1.62,1.62,0,0,1,.6-1.46.85.85,0,0,1,.42-.11,1.47,1.47,0,0,1,.72.23,4.42,4.42,0,0,1,1.77,2.53,1.21,1.21,0,0,0,.43-.06,4.93,4.93,0,0,0-2-2.85,1.54,1.54,0,0,0-1.58-.11A2,2,0,0,0,337,217.07Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M345.12,215.4a.36.36,0,0,1,0,.68,1.36,1.36,0,0,1-1.18,0,.36.36,0,0,1,0-.68A1.29,1.29,0,0,1,345.12,215.4Z\",\n style: {\n opacity: 0.1\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M340.53,215a3.79,3.79,0,0,0,.05.58l.41-.23a2.11,2.11,0,0,1,0-.35,1.64,1.64,0,0,1,.59-1.46.89.89,0,0,1,.43-.11,1.56,1.56,0,0,1,.72.22,4.48,4.48,0,0,1,1.77,2.53,1.21,1.21,0,0,0,.43-.05,4.86,4.86,0,0,0-2-2.85,1.53,1.53,0,0,0-1.57-.11A2,2,0,0,0,340.53,215Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M348.65,213.35a.36.36,0,0,1,0,.68,1.27,1.27,0,0,1-1.17,0c-.33-.18-.33-.49,0-.68A1.33,1.33,0,0,1,348.65,213.35Z\",\n style: {\n opacity: 0.1\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M344.07,213a3.9,3.9,0,0,0,0,.59l.41-.24c0-.11,0-.23,0-.35a1.61,1.61,0,0,1,.6-1.45.88.88,0,0,1,.42-.11,1.53,1.53,0,0,1,.72.22,4.36,4.36,0,0,1,1.77,2.53,1.3,1.3,0,0,0,.44,0,5,5,0,0,0-2-2.86,1.59,1.59,0,0,0-1.58-.11A2,2,0,0,0,344.07,213Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"g\", {\n style: {\n opacity: 0.30000000000000004\n }\n }, _path72 || (_path72 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M322.85,225.24a3.77,3.77,0,0,0,0,.58l.41-.23c0-.12,0-.24,0-.35a1.62,1.62,0,0,1,.6-1.46.88.88,0,0,1,.42-.11,1.53,1.53,0,0,1,.72.22,4.39,4.39,0,0,1,1.77,2.53,1.3,1.3,0,0,0,.44,0,4.91,4.91,0,0,0-2-2.85,1.54,1.54,0,0,0-1.58-.11A2,2,0,0,0,322.85,225.24Z\"\n })), _path73 || (_path73 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M326.39,223.19a3.9,3.9,0,0,0,0,.59l.41-.24c0-.11,0-.23,0-.35a1.61,1.61,0,0,1,.6-1.45.85.85,0,0,1,.42-.11,1.56,1.56,0,0,1,.72.22,4.45,4.45,0,0,1,1.77,2.53,1.21,1.21,0,0,0,.43,0,5,5,0,0,0-2-2.86,1.57,1.57,0,0,0-1.58-.11A2,2,0,0,0,326.39,223.19Z\"\n })), _path74 || (_path74 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M329.92,221.15a4,4,0,0,0,.05.59l.41-.24a2.06,2.06,0,0,1,0-.35,1.63,1.63,0,0,1,.59-1.45.89.89,0,0,1,.43-.11,1.45,1.45,0,0,1,.72.22,4.42,4.42,0,0,1,1.77,2.53,1.24,1.24,0,0,0,.43-.05,4.89,4.89,0,0,0-2-2.86,1.53,1.53,0,0,0-1.57-.11A2,2,0,0,0,329.92,221.15Z\"\n })), _path75 || (_path75 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M333.46,219.11a4,4,0,0,0,0,.59l.41-.24c0-.12,0-.23,0-.35a1.6,1.6,0,0,1,.6-1.45.78.78,0,0,1,.42-.11,1.42,1.42,0,0,1,.72.22,4.33,4.33,0,0,1,1.77,2.53,1.3,1.3,0,0,0,.44-.05,4.93,4.93,0,0,0-2-2.86,1.54,1.54,0,0,0-1.58-.11A2,2,0,0,0,333.46,219.11Z\"\n })), _path76 || (_path76 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M337,217.07a4,4,0,0,0,0,.59l.41-.24c0-.12,0-.24,0-.35a1.62,1.62,0,0,1,.6-1.46.85.85,0,0,1,.42-.11,1.47,1.47,0,0,1,.72.23,4.42,4.42,0,0,1,1.77,2.53,1.21,1.21,0,0,0,.43-.06,4.93,4.93,0,0,0-2-2.85,1.54,1.54,0,0,0-1.58-.11A2,2,0,0,0,337,217.07Z\"\n })), _path77 || (_path77 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M340.53,215a3.79,3.79,0,0,0,.05.58l.41-.23a2.11,2.11,0,0,1,0-.35,1.64,1.64,0,0,1,.59-1.46.89.89,0,0,1,.43-.11,1.56,1.56,0,0,1,.72.22,4.48,4.48,0,0,1,1.77,2.53,1.21,1.21,0,0,0,.43-.05,4.86,4.86,0,0,0-2-2.85,1.53,1.53,0,0,0-1.57-.11A2,2,0,0,0,340.53,215Z\"\n })), _path78 || (_path78 = /*#__PURE__*/React.createElement(\"path\", {\n d: \"M344.07,213a3.9,3.9,0,0,0,0,.59l.41-.24c0-.11,0-.23,0-.35a1.61,1.61,0,0,1,.6-1.45.88.88,0,0,1,.42-.11,1.53,1.53,0,0,1,.72.22,4.36,4.36,0,0,1,1.77,2.53,1.3,1.3,0,0,0,.44,0,5,5,0,0,0-2-2.86,1.59,1.59,0,0,0-1.58-.11A2,2,0,0,0,344.07,213Z\"\n }))), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M353.64,246.6c6.22-.61,28.91-2.32,30.63-6.57,2.12-5.23,11.1-33.61,11.1-33.61s3-19.08-6.25-19.87c-4,.79-7.56,2.88-9.07,10-.78,3.69-4.93,18.55-8.27,35,0,0-24.16,7.47-25.93,6.85s-1.86-2.29-3.27-4.32-2.42-4.63-3.53-3.91-.42,4,0,5.63a4.07,4.07,0,0,1-.61,3s-1.05-.39-2-.67c-.53-.14-8.84-5-8.84-5s-.79,5.28,1.77,7.86c3.21,3.72,7.78,5.1,12,5.71C346.12,247.43,347.42,247.21,353.64,246.6Z\",\n style: {\n fill: \"#ffa8a7\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M390.27,185.23c-5.4,1.14-9.08,2.55-10.93,9.64s-5.95,23.39-5.95,23.39,8.39,6.76,17.18,6.57l5.44-18.5S400.49,189.49,390.27,185.23Z\",\n style: {\n fill: \"#e0e0e0\"\n }\n }))), /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--speech-bubble--inject-87\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--speech-bubble--inject-87\"\n }, /*#__PURE__*/React.createElement(\"g\", {\n id: \"freepik--speech-bubble--inject-87\"\n }, /*#__PURE__*/React.createElement(\"path\", {\n d: \"M412.77,88.13l-10.72,6.21,4.26,9.57a1,1,0,0,0,.41.46l3.68,2.13a1,1,0,0,0,1.44-.58l4.62-15.66Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M412.77,88.13l-10.72,6.21,4.26,9.57a1,1,0,0,0,.41.46l3.68,2.13a1,1,0,0,0,1.44-.58l4.62-15.66Z\",\n style: {\n opacity: 0.15\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M405.74,96.47,410,106a1,1,0,0,0,1.84-.12l4.62-15.66Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M427.9,22.08,383.61,47.64a2.28,2.28,0,0,0-1,1.77v55a2.24,2.24,0,0,0,1,1.76l3.64,2a2.29,2.29,0,0,0,2,0l44.29-25.57a2.26,2.26,0,0,0,1-1.76v-55a2.23,2.23,0,0,0-1-1.75l-3.65-2A2.24,2.24,0,0,0,427.9,22.08Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M434.59,25.67c-.08-.51-.5-.69-1-.4L389.3,50.84a2,2,0,0,0-.72.76l-5.67-3.23a2,2,0,0,1,.7-.73L427.9,22.07a2.29,2.29,0,0,1,2,0l3.64,2A2.27,2.27,0,0,1,434.59,25.67Z\",\n style: {\n fill: \"#fff\",\n opacity: 0.5\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M388.28,107.56v-55a2.23,2.23,0,0,1,1-1.76l44.29-25.57c.56-.32,1-.06,1,.59v55a2.26,2.26,0,0,1-1,1.76l-44.29,25.57C388.73,108.47,388.28,108.21,388.28,107.56Z\",\n style: {\n fill: \"#407BFF\"\n }\n }), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M389.29,108.15a2.35,2.35,0,0,1-2,0l-3.64-2a2.21,2.21,0,0,1-1-1.74v-55a2.17,2.17,0,0,1,.32-1l5.67,3.23a2,2,0,0,0-.3,1v55C388.28,108.15,388.7,108.49,389.29,108.15Z\",\n style: {\n opacity: 0.15\n }\n })), /*#__PURE__*/React.createElement(\"path\", {\n d: \"M406.87,55.52c.05,1,.08,2,.08,2.83s0,1.77-.08,2.81A15.29,15.29,0,0,1,405,67.77a11.36,11.36,0,0,1-4.29,4.54q-2.64,1.53-4.29.41t-1.83-4.49c-.05-1-.07-1.89-.07-2.72s0-1.81.07-2.93A15.16,15.16,0,0,1,396.37,56a11.37,11.37,0,0,1,4.38-4.6c1.86-1.07,3.33-1.23,4.38-.46S406.77,53.21,406.87,55.52Zm10.74-12.31a6.28,6.28,0,0,1,.55-1.13,2.13,2.13,0,0,1,.81-.76l3.93-2.27a.58.58,0,0,1,.66-.06.83.83,0,0,1,.24.7,2.11,2.11,0,0,1,0,.31,3.71,3.71,0,0,1-.12.41L405,89a7,7,0,0,1-.55,1.13,2.29,2.29,0,0,1-.81.76l-3.93,2.27q-.42.24-.66.06a.8.8,0,0,1-.25-.7,2.39,2.39,0,0,1,0-.31c0-.13.06-.27.11-.42ZM399.52,65.72a3.49,3.49,0,0,0,.32,1.44c.18.33.49.36.91.12a2.05,2.05,0,0,0,.91-1.17A6.5,6.5,0,0,0,402,64.3c.1-2.22.1-4.32,0-6.28a3.41,3.41,0,0,0-.32-1.44c-.18-.32-.48-.36-.91-.11a2,2,0,0,0-.91,1.16,7,7,0,0,0-.32,1.81Q399.39,62.56,399.52,65.72Zm28.9-2c.05,1,.08,2,.08,2.83s0,1.77-.08,2.81a15.15,15.15,0,0,1-1.83,6.61,11.42,11.42,0,0,1-4.29,4.54q-2.64,1.53-4.29.41t-1.83-4.49c-.05-1-.07-1.89-.07-2.72s0-1.81.07-2.93a15.16,15.16,0,0,1,1.74-6.61,11.37,11.37,0,0,1,4.38-4.6c1.87-1.07,3.33-1.23,4.38-.46S428.32,61.38,428.42,63.69Zm-7.35,10.2a3.57,3.57,0,0,0,.32,1.44c.18.32.49.36.91.12a2.05,2.05,0,0,0,.91-1.17,6.56,6.56,0,0,0,.32-1.81c.1-2.22.1-4.32,0-6.28a3.41,3.41,0,0,0-.32-1.44c-.18-.32-.48-.36-.91-.12a2.09,2.09,0,0,0-.91,1.17,7,7,0,0,0-.32,1.81C421,69.68,421,71.78,421.07,73.89Z\",\n style: {\n fill: \"#fafafa\"\n }\n }))));\n}\nconst ForwardRef = /*#__PURE__*/React.forwardRef(SvgInvoiceAmico);\nexport default __webpack_public_path__ + \"static/media/Invoice-amico.162d4584a9dcd38d099a6f64daf36c1e.svg\";\nexport { ForwardRef as ReactComponent };","import React from \"react\";\r\nimport BG1 from \"../../Images/New/Activity/Online report-amico.svg\";\r\nimport BG2 from \"../../Images/New/Activity/Invoice-amico.svg\";\r\nimport BG3 from \"../../Images/New/Activity/Inventory.jpg\";\r\n\r\nconst Activites1 = () => {\r\n return (\r\n <>\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n Empowering Your Business with
\r\n \r\n Smart Accounting Solutions\r\n {\" \"}\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n

\r\n
\r\n
\r\n
\r\n
GST REPORTS
\r\n
\r\n Generate comprehensive GST reports seamlessly with GST-enabled\r\n accounting software for easy compliance and accurate\r\n record-keeping\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n Generate Excel Report for GSTR 1, GSTR 3B, ITC-04, CMP-08\r\n \r\n
\r\n \r\n \r\n \r\n Annual Excel Reports for GSTR 9 & GSTR 4\r\n \r\n
\r\n \r\n \r\n \r\n GST Register – comprehensive report\r\n \r\n
\r\n \r\n \r\n \r\n EASYACC's GST - enabled accounting software\r\n \r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
FINAL ACCOUNTS
\r\n
\r\n Generate accurate and comprehensive Final Accounts seamlessly\r\n within the accounting software for efficient financial\r\n reporting\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n Trial Balance\r\n \r\n
\r\n \r\n \r\n \r\n Trading Account\r\n \r\n
\r\n \r\n \r\n \r\n Profit & Loss Account\r\n \r\n
\r\n \r\n \r\n \r\n Balance Sheet & Schedules\r\n \r\n
\r\n \r\n \r\n \r\n Depreciation Statement\r\n \r\n
\r\n
\r\n
\r\n

\r\n
\r\n
\r\n
\r\n
\r\n

\r\n
\r\n
\r\n
\r\n
INVENTORY
\r\n
\r\n Simplify inventory management with tools for tracking and\r\n controlling stock efficiently\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n Goods Ledger & Summary with annexure\r\n \r\n
\r\n \r\n \r\n \r\n Minimum-Maximum stock indication\r\n \r\n
\r\n \r\n \r\n \r\n Stock Reports\r\n \r\n
\r\n \r\n \r\n \r\n Negative Stock Indication\r\n \r\n
\r\n
\r\n
\r\n
\r\n
\r\n >\r\n );\r\n};\r\n\r\nexport default Activites1;\r\n","import React from 'react'\r\nimport Auto from '../../Images/New/ListItem/repair.png'\r\nimport Unit from '../../Images/New/ListItem/unit.png'\r\nimport Cart from '../../Images/New/ListItem/cart.png'\r\nimport Chemical from '../../Images/New/ListItem/chemical.png'\r\nimport Computer from '../../Images/New/ListItem/computer.png'\r\nimport Electric from '../../Images/New/ListItem/electric.png'\r\nimport Furniture from '../../Images/New/ListItem/furniture.png'\r\nimport Mobile from '../../Images/New/ListItem/mobile.png'\r\nimport Paint from '../../Images/New/ListItem/paint.png'\r\nimport Pharma from '../../Images/New/ListItem/pharma.png'\r\nimport Plane from '../../Images/New/ListItem/plane.png'\r\nimport Resturant from '../../Images/New/ListItem/resturant.png'\r\nimport Retail from '../../Images/New/ListItem/retail.png'\r\nimport Stationary from '../../Images/New/ListItem/stationary.png'\r\nimport Tshirt from '../../Images/New/ListItem/tshirt.png'\r\nimport Hardware from '../../Images/New/ListItem/drill.png'\r\nimport Factory from '../../Images/New/ListItem/factory.png'\r\nimport Work from '../../Images/New/ListItem/work.png'\r\n\r\nconst ListItems = () => {\r\n return (\r\n <>\r\n
\r\n
\r\n Accounting Software For Your Industry\r\n
\r\n
\r\n
\r\n

\r\n
Textile
\r\n
\r\n
\r\n

\r\n
\r\n Engineering Unit\r\n
\r\n
\r\n
\r\n

\r\n
Retail
\r\n
\r\n
\r\n

\r\n
Garments
\r\n
\r\n
\r\n

\r\n
Job Work
\r\n
\r\n
\r\n

\r\n
Agency
\r\n
\r\n
\r\n

\r\n
Travel
\r\n
\r\n
\r\n

\r\n
FMCG
\r\n
\r\n
\r\n

\r\n
Electrical
\r\n
\r\n\r\n
\r\n

\r\n
Stationary
\r\n
\r\n\r\n
\r\n

\r\n
Mobile Store
\r\n
\r\n
\r\n

\r\n
\r\n Food & Beverage\r\n
\r\n
\r\n
\r\n

\r\n
Pharma
\r\n
\r\n
\r\n

\r\n
Furniture
\r\n
\r\n
\r\n

\r\n
Chemical
\r\n
\r\n
\r\n

\r\n
Paint
\r\n
\r\n
\r\n

\r\n
Auto Parts
\r\n
\r\n
\r\n

\r\n
Hardware
\r\n
\r\n
\r\n
\r\n >\r\n );\r\n}\r\n\r\nexport default ListItems;","import React, { useState } from \"react\";\r\nimport Button from \"../../Components/ui/button\";\r\nimport Right from '../../Images/RightSvg.svg'\r\nimport EasyOfficeLogo from '../../Images/New/Products/easyOffice.webp'\r\nimport EasyGstLogo from '../../Images/New/Products/easyGst.webp'\r\nimport EO1 from \"../../Images/New/OtherProducts/EO/1.gif\";\r\nimport EO2 from \"../../Images/New/OtherProducts/EO/2.gif\";\r\nimport EO3 from \"../../Images/New/OtherProducts/EO/3.gif\";\r\nimport EO4 from \"../../Images/New/OtherProducts/EO/4.gif\";\r\nimport EO5 from \"../../Images/New/OtherProducts/EO/5.gif\";\r\nimport EO6 from \"../../Images/New/OtherProducts/EO/6.gif\";\r\nimport EO7 from \"../../Images/New/OtherProducts/EO/7.gif\";\r\nimport EO8 from \"../../Images/New/OtherProducts/EO/8.gif\";\r\nimport EA1 from \"../../Images/New/OtherProducts/EA/1.gif\";\r\nimport EA2 from \"../../Images/New/OtherProducts/EA/2.gif\";\r\nimport EA3 from \"../../Images/New/OtherProducts/EA/3.gif\";\r\nimport EA4 from \"../../Images/New/OtherProducts/EA/4.gif\";\r\nimport EA5 from \"../../Images/New/OtherProducts/EA/5.gif\";\r\nimport EA6 from \"../../Images/New/OtherProducts/EA/6.gif\";\r\nimport EA7 from \"../../Images/New/OtherProducts/EA/7.gif\";\r\nimport EA8 from \"../../Images/New/OtherProducts/EA/8.gif\";\r\n\r\nconst OtherProduct = () => {\r\n\r\n const [isExpanded1, setIsExpanded1] = useState(false);\r\n\r\n const toggleExpand1 = () => {\r\n setIsExpanded1(!isExpanded1);\r\n };\r\n\r\n const [isExpanded2, setIsExpanded2] = useState(false);\r\n\r\n const toggleExpand2 = () => {\r\n setIsExpanded2(!isExpanded2);\r\n };\r\n \r\n\r\n return (\r\n <>\r\n
\r\n
\r\n
\r\n
\r\n Our Software Product's\r\n
\r\n
\r\n
\r\n
\r\n {/*

*/}\r\n
\r\n
\r\n

\r\n
\r\n Quick ITR Upload\r\n
\r\n
\r\n
\r\n

\r\n
\r\n TDS & TCS Returns\r\n
\r\n
\r\n\r\n
\r\n

\r\n
\r\n e-Audit Report\r\n
\r\n
\r\n
\r\n

\r\n
\r\n Balance Sheet\r\n
\r\n
\r\n
\r\n

\r\n
\r\n CMA Data Preparation\r\n
\r\n
\r\n
\r\n

\r\n
\r\n Online Tax Payment\r\n
\r\n
\r\n
\r\n

\r\n
\r\n Multiangle Analysis Reports\r\n
\r\n
\r\n
\r\n

\r\n
\r\n Office Management Utilities\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n {/*
\r\n EasyOFFICE\r\n
*/}\r\n

\r\n
\r\n Powerful & Preferred Taxation Software with the Best Price\r\n
\r\n
\r\n EasyOFFICE is an integrated Taxation Software with the motto\r\n of Complete Office Management for Chartered Accountants (CA),\r\n Tax Professionals and Tax Advocates. This flagship product is\r\n a bundle of many software modules & utilities like Income Tax\r\n Software (EasyTax), TDS software (EasyTDS), Audit Report &\r\n Balance Sheet software (EasyAudit), CMA Data software\r\n (EasyCMA), Office Management Utilities & more.\r\n
\r\n {isExpanded1 && (\r\n
\r\n
\r\n EasyOFFICE Tax return filing software is exclusively\r\n designed and developed as per the system specified by the\r\n Income Tax Department of India, Protean and TRACES.\r\n
\r\n
\r\n EasyOFFICE India’s Top Tax Return filing software also\r\n offers Multiple other features like Back up, Restore,\r\n EasyForm, MyInvoice, User Data Access Management, XML /\r\n JSON file import & many more. Calculating your income and\r\n tax liability, self-assessment tax, advance tax, Arrears,\r\n 26AS / AIS / TIS data direct Import and interest as per\r\n sections 234A, 234B, 234C & 234F has been made simple with\r\n EasyTAX software. All such features, Accuracy &\r\n user-friendly operation makes EasyOFFICE as Best Income\r\n Tax Software among tax professionals in India.\r\n
\r\n
\r\n EasyAUDIT software incorporates various forms such as 3CA,\r\n 3CB, 3CD, 3CEB, 29B, 10B allows the preparation of audit\r\n reports & account statements as per Tax Audit and Company\r\n audit Schedules. EasyAudit is the Preferred choice among\r\n CA’s for audit report efiling. Managing TDS quarterly\r\n e-Return for 24Q, 26Q, 27Q, 27EQ, TDS Correction, Data\r\n Import options, Interest calculation, Online data\r\n automation tools & Multiple analysis reports makes it the\r\n Best TDS Return filing software. EasyCMA is the best\r\n software for preparing and calculating CMA Data.\r\n
\r\n
\r\n The software's return filing capability is a key feature\r\n that streamlines the tax preparation and filing process,\r\n ensuring accuracy and compliance with the latest\r\n regulations. With its robust features and Powerful user\r\n interface, Electrocom's EasyOFFICE - A Complete Taxation\r\n Software is a trusted solution and valuable asset for\r\n professionals seeking to optimize their tax preparation &\r\n filing processes with ease.EasyOffice Software demo can be\r\n downloaded free of cost.\r\n
\r\n
\r\n )}\r\n
\r\n
\r\n
\r\n

\r\n
\r\n Income Tax Software\r\n
\r\n
\r\n
\r\n

\r\n
\r\n Balance Sheet Software\r\n
\r\n
\r\n
\r\n

\r\n
\r\n TDS Return Software\r\n
\r\n
\r\n
\r\n

\r\n
\r\n CMA Software\r\n
\r\n
\r\n
\r\n

\r\n
\r\n {\" \"}\r\n Audit e-filing Software\r\n
\r\n
\r\n
\r\n

\r\n
\r\n {\" \"}\r\n Office Utilities\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n\r\n
\r\n
\r\n
\r\n {/*
\r\n EasyACC\r\n
*/}\r\n

\r\n
\r\n Simplify GST Return filing & Reconciliation with EasyGST\r\n Software\r\n
\r\n
\r\n EasyGST is one of the best Goods and Services tax software for\r\n Chartered Accountants (CA), Tax professionals & businesses in\r\n India for the easiest GST return filing. EasyGST is developed\r\n to make GST related workflow quick, smooth & accurate.\r\n Experience the power of simplified GST compliance with EasyGST\r\n Software's free demo download!\r\n
\r\n {isExpanded2 && (\r\n
\r\n
\r\n EasyGST software supports direct uploading of GST returns,\r\n reconciliation module for GSTR 2A, GSTR 2B with accounts,\r\n MIS reports and analysis, data backup & restore, verifying\r\n bulk GSTIN and simplifying GST management with the\r\n comprehensive Dashboard. It further helps to track ITC\r\n (Input Tax Credit) match/mismatch for invoice\r\n reconciliation. It prepares & file GST returns such as\r\n GSTR 1, GSTR 3B, GSTR 4, GST CMP 08, GSTR 7, GSTR 9, GSTR\r\n 9C, etc. with ease.\r\n
\r\n
\r\n EasyGST return filing software provides a single-window\r\n dashboard design with access to all the necessary features\r\n and tax filing capabilities with easy and user-friendly\r\n operations. This return filing software is exclusively\r\n designed and developed as per GST guidelines.\r\n
\r\n
\r\n )}\r\n
\r\n
\r\n
\r\n

\r\n
\r\n Single Window dashboard\r\n
\r\n
\r\n
\r\n

\r\n
\r\n Return Statistics\r\n
\r\n
\r\n
\r\n

\r\n
\r\n E-Invoice & E-way Bill\r\n
\r\n
\r\n
\r\n

\r\n
\r\n Online Activities\r\n
\r\n
\r\n
\r\n

\r\n
\r\n {\" \"}\r\n Import from Tally & Excel\r\n
\r\n
\r\n
\r\n

\r\n
\r\n {\" \"}\r\n Verify Bulk GSTIN\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n {/*

*/}\r\n
\r\n
\r\n

\r\n
\r\n GST Returns e-filing\r\n
\r\n
\r\n
\r\n

\r\n
\r\n Data Import & Export\r\n
\r\n
\r\n
\r\n

\r\n
\r\n ITC Reconciliation
\r\n with Accounts\r\n
\r\n
\r\n
\r\n

\r\n
\r\n Annual Return &
\r\n Audit Report\r\n
\r\n
\r\n\r\n
\r\n

\r\n
\r\n Comprehensive
\r\n Dashboard\r\n
\r\n
\r\n
\r\n

\r\n
\r\n Online Data link
\r\n with GST portal\r\n
\r\n
\r\n
\r\n

\r\n
\r\n Multi-Angle Data
\r\n Analysis & Reports\r\n
\r\n
\r\n
\r\n

\r\n
\r\n Pre-validation to
\r\n rectify errors\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n >\r\n );\r\n};\r\n\r\nexport default OtherProduct;\r\n","import React from 'react';\nimport './output.css';\nimport Header from './feacture/header/Header'\nimport Hero from \"./feacture/hero/Hero\";\nimport About from './feacture/About/About';\nimport Footer from './feacture/Footer/Footer';\nimport ContactForm from './feacture/Contact/Contact';\nimport \"@fortawesome/fontawesome-free/css/all.css\";\nimport FAQ from './feacture/FAQ/FAQ';\nimport ExtraComp from './feacture/ExtraComp/ExtraComp';\nimport AllFeatures from './feacture/AllFeatures/AllFeatures';\nimport RightSoft from './feacture/RightSoft/RightSoft';\nimport Reports from './feacture/Reports/Reports';\nimport Video from './feacture/TutorialVideo/Video';\nimport SecExtra from './feacture/ExtraComp/SecExtra';\nimport MainSecond from './feacture/secModule/MainSecond';\nimport Facilitys from './feacture/Facilitys/Facilitys';\nimport Activites1 from './feacture/Activites/Activites1';\nimport ListItems from './feacture/ListItems/ListItems';\nimport OtherProduct from './feacture/OtherProducts/OtherProduct';\n\n\nfunction App() {\n \n return (\n <>\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n >\n );\n}\n\nexport default App;\n","const reportWebVitals = onPerfEntry => {\n if (onPerfEntry && onPerfEntry instanceof Function) {\n import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {\n getCLS(onPerfEntry);\n getFID(onPerfEntry);\n getFCP(onPerfEntry);\n getLCP(onPerfEntry);\n getTTFB(onPerfEntry);\n });\n }\n};\n\nexport default reportWebVitals;\n","import React from 'react';\nimport ReactDOM from 'react-dom/client';\nimport './output.css';\nimport './index.css'\nimport App from './App';\nimport reportWebVitals from './reportWebVitals';\nimport \"slick-carousel/slick/slick.css\";\nimport \"slick-carousel/slick/slick-theme.css\";\n\n// import { ThemeProvider } from \"@material-tailwind/react\";\n\nconst root = ReactDOM.createRoot(document.getElementById('root'));\nroot.render(\n
\n \n \n);\n\n// If you want to start measuring performance in your app, pass a function\n// to log results (for example: reportWebVitals(console.log))\n// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals\nreportWebVitals();\n"],"names":["FUNC_ERROR_TEXT","NAN","symbolTag","reTrim","reIsBadHex","reIsBinary","reIsOctal","freeParseInt","parseInt","freeGlobal","global","Object","freeSelf","self","root","Function","objectToString","prototype","toString","nativeMax","Math","max","nativeMin","min","now","Date","debounce","func","wait","options","lastArgs","lastThis","maxWait","result","timerId","lastCallTime","lastInvokeTime","leading","maxing","trailing","TypeError","invokeFunc","time","args","thisArg","undefined","apply","shouldInvoke","timeSinceLastCall","timerExpired","trailingEdge","setTimeout","remainingWait","debounced","isInvoking","arguments","this","leadingEdge","toNumber","isObject","cancel","clearTimeout","flush","value","type","isObjectLike","call","isSymbol","other","valueOf","replace","isBinary","test","slice","module","exports","ReactPropTypesSecret","require","emptyFunction","emptyFunctionWithReset","resetWarningCache","shim","props","propName","componentName","location","propFullName","secret","err","Error","name","getShim","isRequired","ReactPropTypes","array","bigint","bool","number","object","string","symbol","any","arrayOf","element","elementType","instanceOf","node","objectOf","oneOf","oneOfType","shape","exact","checkPropTypes","PropTypes","aa","ca","p","a","b","c","length","encodeURIComponent","da","Set","ea","fa","ha","add","ia","window","document","createElement","ja","hasOwnProperty","ka","la","ma","v","d","e","f","g","acceptsBooleans","attributeName","attributeNamespace","mustUseProperty","propertyName","sanitizeURL","removeEmptyString","z","split","forEach","toLowerCase","ra","sa","toUpperCase","ta","pa","isNaN","qa","oa","removeAttribute","setAttribute","setAttributeNS","xlinkHref","ua","__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED","va","Symbol","for","wa","ya","za","Aa","Ba","Ca","Da","Ea","Fa","Ga","Ha","Ia","Ja","iterator","Ka","La","A","assign","Ma","stack","trim","match","Na","Oa","prepareStackTrace","defineProperty","set","Reflect","construct","l","h","k","displayName","includes","Pa","tag","render","Qa","$$typeof","_context","_payload","_init","Ra","Sa","Ta","nodeName","Va","_valueTracker","getOwnPropertyDescriptor","constructor","get","configurable","enumerable","getValue","setValue","stopTracking","Ua","Wa","checked","Xa","activeElement","body","Ya","defaultChecked","defaultValue","_wrapperState","initialChecked","Za","initialValue","controlled","ab","bb","cb","db","ownerDocument","eb","Array","isArray","fb","selected","defaultSelected","disabled","gb","dangerouslySetInnerHTML","children","hb","ib","jb","textContent","kb","lb","mb","nb","namespaceURI","innerHTML","firstChild","removeChild","appendChild","MSApp","execUnsafeLocalFunction","ob","lastChild","nodeType","nodeValue","pb","animationIterationCount","aspectRatio","borderImageOutset","borderImageSlice","borderImageWidth","boxFlex","boxFlexGroup","boxOrdinalGroup","columnCount","columns","flex","flexGrow","flexPositive","flexShrink","flexNegative","flexOrder","gridArea","gridRow","gridRowEnd","gridRowSpan","gridRowStart","gridColumn","gridColumnEnd","gridColumnSpan","gridColumnStart","fontWeight","lineClamp","lineHeight","opacity","order","orphans","tabSize","widows","zIndex","zoom","fillOpacity","floodOpacity","stopOpacity","strokeDasharray","strokeDashoffset","strokeMiterlimit","strokeOpacity","strokeWidth","qb","rb","sb","style","indexOf","setProperty","keys","charAt","substring","tb","menuitem","area","base","br","col","embed","hr","img","input","keygen","link","meta","param","source","track","wbr","ub","vb","is","wb","xb","target","srcElement","correspondingUseElement","parentNode","yb","zb","Ab","Bb","Cb","stateNode","Db","Eb","push","Fb","Gb","Hb","Ib","Jb","Kb","Lb","Mb","addEventListener","removeEventListener","Nb","m","onError","Ob","Pb","Qb","Rb","Sb","Tb","Vb","alternate","return","flags","Wb","memoizedState","dehydrated","Xb","Zb","child","sibling","current","Yb","$b","ac","unstable_scheduleCallback","bc","unstable_cancelCallback","cc","unstable_shouldYield","dc","unstable_requestPaint","B","unstable_now","ec","unstable_getCurrentPriorityLevel","fc","unstable_ImmediatePriority","gc","unstable_UserBlockingPriority","hc","unstable_NormalPriority","ic","unstable_LowPriority","jc","unstable_IdlePriority","kc","lc","oc","clz32","pc","qc","log","LN2","rc","sc","tc","uc","pendingLanes","suspendedLanes","pingedLanes","entangledLanes","entanglements","vc","xc","yc","zc","Ac","eventTimes","Cc","C","Dc","Ec","Fc","Gc","Hc","Ic","Jc","Kc","Lc","Mc","Nc","Oc","Map","Pc","Qc","Rc","Sc","delete","pointerId","Tc","nativeEvent","blockedOn","domEventName","eventSystemFlags","targetContainers","Vc","Wc","priority","isDehydrated","containerInfo","Xc","Yc","dispatchEvent","shift","Zc","$c","ad","bd","cd","ReactCurrentBatchConfig","dd","ed","transition","fd","gd","hd","id","Uc","stopPropagation","jd","kd","ld","md","nd","od","keyCode","charCode","pd","qd","rd","_reactName","_targetInst","currentTarget","isDefaultPrevented","defaultPrevented","returnValue","isPropagationStopped","preventDefault","cancelBubble","persist","isPersistent","wd","xd","yd","sd","eventPhase","bubbles","cancelable","timeStamp","isTrusted","td","ud","view","detail","vd","Ad","screenX","screenY","clientX","clientY","pageX","pageY","ctrlKey","shiftKey","altKey","metaKey","getModifierState","zd","button","buttons","relatedTarget","fromElement","toElement","movementX","movementY","Bd","Dd","dataTransfer","Fd","Hd","animationName","elapsedTime","pseudoElement","Id","clipboardData","Jd","Ld","data","Md","Esc","Spacebar","Left","Up","Right","Down","Del","Win","Menu","Apps","Scroll","MozPrintableKey","Nd","Od","Alt","Control","Meta","Shift","Pd","Qd","key","String","fromCharCode","code","repeat","locale","which","Rd","Td","width","height","pressure","tangentialPressure","tiltX","tiltY","twist","pointerType","isPrimary","Vd","touches","targetTouches","changedTouches","Xd","Yd","deltaX","wheelDeltaX","deltaY","wheelDeltaY","wheelDelta","deltaZ","deltaMode","Zd","$d","ae","be","documentMode","ce","de","ee","fe","ge","he","ie","le","color","date","datetime","email","month","password","range","search","tel","text","url","week","me","ne","oe","event","listeners","pe","qe","re","se","te","ue","ve","we","xe","ye","ze","oninput","Ae","detachEvent","Be","Ce","attachEvent","De","Ee","Fe","He","Ie","Je","Ke","offset","nextSibling","Le","contains","compareDocumentPosition","Me","HTMLIFrameElement","contentWindow","href","Ne","contentEditable","Oe","focusedElem","selectionRange","documentElement","start","end","selectionStart","selectionEnd","defaultView","getSelection","extend","rangeCount","anchorNode","anchorOffset","focusNode","focusOffset","createRange","setStart","removeAllRanges","addRange","setEnd","left","scrollLeft","top","scrollTop","focus","Pe","Qe","Re","Se","Te","Ue","Ve","We","animationend","animationiteration","animationstart","transitionend","Xe","Ye","Ze","animation","$e","af","bf","cf","df","ef","ff","gf","hf","lf","mf","concat","nf","Ub","instance","listener","D","of","has","pf","qf","rf","random","sf","bind","capture","passive","n","t","J","x","u","w","F","tf","uf","parentWindow","vf","wf","na","xa","$a","ba","je","char","ke","unshift","xf","yf","zf","Af","Bf","Cf","Df","Ef","__html","Ff","Gf","Hf","Promise","Jf","queueMicrotask","resolve","then","catch","If","Kf","Lf","Mf","previousSibling","Nf","Of","Pf","Qf","Rf","Sf","Tf","Uf","E","G","Vf","H","Wf","Xf","Yf","contextTypes","__reactInternalMemoizedUnmaskedChildContext","__reactInternalMemoizedMaskedChildContext","Zf","childContextTypes","$f","ag","bg","getChildContext","cg","__reactInternalMemoizedMergedChildContext","dg","eg","fg","gg","hg","jg","kg","lg","mg","ng","og","pg","qg","rg","sg","tg","ug","vg","wg","xg","yg","I","zg","Ag","Bg","deletions","Cg","pendingProps","overflow","treeContext","retryLane","Dg","mode","Eg","Fg","Gg","memoizedProps","Hg","Ig","Jg","Kg","Lg","ref","_owner","_stringRef","refs","Mg","join","Ng","Og","index","Pg","Qg","Rg","implementation","Sg","Tg","q","r","y","next","done","Ug","Vg","Wg","Xg","Yg","Zg","$g","ah","_currentValue","bh","childLanes","ch","dependencies","firstContext","lanes","dh","eh","context","memoizedValue","fh","gh","hh","interleaved","ih","jh","kh","updateQueue","baseState","firstBaseUpdate","lastBaseUpdate","shared","pending","effects","lh","mh","eventTime","lane","payload","callback","nh","K","oh","ph","qh","rh","sh","th","uh","vh","wh","xh","yh","tagName","zh","Ah","Bh","L","Ch","revealOrder","Dh","Eh","_workInProgressVersionPrimary","Fh","ReactCurrentDispatcher","Gh","Hh","M","N","O","Ih","Jh","Kh","Lh","P","Mh","Nh","Oh","Ph","Qh","Rh","Sh","Th","baseQueue","queue","Uh","Vh","Wh","lastRenderedReducer","action","hasEagerState","eagerState","lastRenderedState","dispatch","Xh","Yh","Zh","$h","ai","getSnapshot","bi","ci","Q","di","lastEffect","stores","ei","fi","gi","hi","ii","create","destroy","deps","ji","ki","li","mi","ni","oi","pi","qi","ri","si","ti","ui","vi","wi","xi","yi","zi","Ai","R","Bi","readContext","useCallback","useContext","useEffect","useImperativeHandle","useInsertionEffect","useLayoutEffect","useMemo","useReducer","useRef","useState","useDebugValue","useDeferredValue","useTransition","useMutableSource","useSyncExternalStore","useId","unstable_isNewReconciler","identifierPrefix","Ci","defaultProps","Di","Ei","isMounted","_reactInternals","enqueueSetState","enqueueReplaceState","enqueueForceUpdate","Fi","shouldComponentUpdate","isPureReactComponent","Gi","contextType","state","updater","Hi","componentWillReceiveProps","UNSAFE_componentWillReceiveProps","Ii","getDerivedStateFromProps","getSnapshotBeforeUpdate","UNSAFE_componentWillMount","componentWillMount","componentDidMount","Ji","message","digest","Ki","Li","console","error","Mi","WeakMap","Ni","Oi","Pi","Qi","getDerivedStateFromError","componentDidCatch","Ri","componentStack","Si","pingCache","Ti","Ui","Vi","Wi","ReactCurrentOwner","Xi","Yi","Zi","$i","aj","compare","bj","cj","dj","baseLanes","cachePool","transitions","ej","fj","gj","hj","ij","UNSAFE_componentWillUpdate","componentWillUpdate","componentDidUpdate","jj","kj","pendingContext","lj","zj","Aj","Bj","Cj","mj","nj","oj","fallback","pj","qj","sj","dataset","dgst","tj","uj","_reactRetry","rj","subtreeFlags","vj","wj","isBackwards","rendering","renderingStartTime","last","tail","tailMode","xj","Dj","S","Ej","Fj","wasMultiple","multiple","suppressHydrationWarning","onClick","onclick","size","createElementNS","autoFocus","createTextNode","T","Gj","Hj","Ij","Jj","U","Kj","WeakSet","V","Lj","W","Mj","Nj","Pj","Qj","Rj","Sj","Tj","Uj","Vj","insertBefore","_reactRootContainer","Wj","X","Xj","Yj","Zj","onCommitFiberUnmount","componentWillUnmount","ak","bk","ck","dk","ek","isHidden","fk","gk","display","hk","ik","jk","kk","__reactInternalSnapshotBeforeUpdate","src","Vk","lk","ceil","mk","nk","ok","Y","Z","pk","qk","rk","sk","tk","Infinity","uk","vk","wk","xk","yk","zk","Ak","Bk","Ck","Dk","callbackNode","expirationTimes","expiredLanes","wc","callbackPriority","ig","Ek","Fk","Gk","Hk","Ik","Jk","Kk","Lk","Mk","Nk","Ok","finishedWork","finishedLanes","Pk","timeoutHandle","Qk","Rk","Sk","Tk","Uk","mutableReadLanes","Bc","Oj","onCommitFiberRoot","mc","onRecoverableError","Wk","onPostCommitFiberRoot","Xk","Yk","$k","isReactComponent","pendingChildren","al","mutableSourceEagerHydrationData","bl","cache","pendingSuspenseBoundaries","dl","el","fl","gl","hl","il","yj","Zk","kl","reportError","ll","_internalRoot","ml","nl","ol","pl","rl","ql","unmount","unstable_scheduleHydration","splice","querySelectorAll","JSON","stringify","form","sl","usingClientEntryPoint","Events","tl","findFiberByHostInstance","bundleType","version","rendererPackageName","ul","rendererConfig","overrideHookState","overrideHookStateDeletePath","overrideHookStateRenamePath","overrideProps","overridePropsDeletePath","overridePropsRenamePath","setErrorHandler","setSuspenseHandler","scheduleUpdate","currentDispatcherRef","findHostInstanceByFiber","findHostInstancesForRefresh","scheduleRefresh","scheduleRoot","setRefreshHandler","getCurrentFiber","reconcilerVersion","__REACT_DEVTOOLS_GLOBAL_HOOK__","vl","isDisabled","supportsFiber","inject","createPortal","cl","createRoot","unstable_strictMode","findDOMNode","flushSync","hydrate","hydrateRoot","hydratedSources","_getVersion","_source","unmountComponentAtNode","unstable_batchedUpdates","unstable_renderSubtreeIntoContainer","checkDCE","_createClass","defineProperties","i","descriptor","writable","Constructor","protoProps","staticProps","_react2","_interopRequireDefault","_scrollLink2","obj","__esModule","default","ButtonElement","_React$Component","_classCallCheck","ReferenceError","_possibleConstructorReturn","__proto__","getPrototypeOf","subClass","superClass","setPrototypeOf","_inherits","Component","_extends","_scrollElement2","_propTypes2","ElementWrapper","_this2","newProps","parentBindings","domNode","propTypes","LinkElement","_ref","_temp","_this","_len","_key","_Link2","_Button2","_Element2","_scroller2","_scrollEvents2","_scrollSpy2","_animateScroll2","_Helpers2","React","scrollSpy","defaultScroller","scrollHash","protoTypes","to","containerId","container","activeClass","spy","smooth","delay","isDynamic","duration","absolute","onSetActive","onSetInactive","ignoreCancelEvents","hashSpy","spyThrottle","Helpers","customScroller","warn","scroller","_initialiseProps","active","getElementById","scrollSpyContainer","getScrollSpyContainer","mount","mapContainer","addStateHandler","stateHandler","addSpyHandler","spyHandler","setState","className","prop","handleClick","scrollTo","getActiveLink","isInitialized","elemTopBound","elemBottomBound","containerTop","getBoundingClientRect","cords","offsetY","isInside","floor","isOutside","activeLink","setActiveLink","getHash","changeHash","updateStates","Element","_React$Component2","_this3","childBindings","registerElems","prevProps","unregister","register","_smooth2","_cancelEvents2","getAnimationType","defaultEasing","requestAnimationFrameHelper","requestAnimationFrame","webkitRequestAnimationFrame","currentWindowProperties","getTime","currentPositionX","containerElement","supportPageOffset","pageXOffset","isCSS1Compat","compatMode","currentPositionY","pageYOffset","animateScroll","easing","timestamp","delta","round","targetPosition","startPosition","progress","percent","currentPosition","horizontal","easedAnimate","registered","setContainer","animateTopScroll","scrollOffset","delayTimeout","subscribe","parseFloat","proceedOptions","scrollToTop","scrollToBottom","scrollWidth","offsetWidth","html","clientWidth","scrollContainerWidth","scrollHeight","offsetHeight","clientHeight","scrollContainerHeight","toPosition","scrollMore","_passiveEventListeners","events","cancelEvent","addPassiveEventListener","eventName","listenerName","attachedListeners","supportsPassiveOption","opts","removePassiveEventListener","scrollEvent","evtName","remove","_utils","_utils2","mountFlag","initialized","containers","handleHashChange","initStateFromHash","hash","isInit","saveHashHistory","updateHash","_scrollHash2","activeStyle","Link","_React$PureComponent","PureComponent","elemLeftBound","elemRightBound","containerLeft","offsetX","_cords","_props$saveHashHistor","_props$saveHashHistor2","_saveHashHistory","_lodash","_lodash2","spyCallbacks","spySetState","scrollSpyContainers","throttle","eventHandler","throttleAmount","eventThrottler","scrollHandler","handler","s","update","__mapped","__activeLink","getElementsByName","getElementsByClassName","pow","linear","easeInQuad","easeOutQuad","easeInOutQuad","easeInCubic","easeOutCubic","easeInOutCubic","easeInQuart","easeOutQuart","easeInOutQuart","easeInQuint","easeOutQuint","easeInOutQuint","getElementOffsetInfoUntil","predicate","offsetTop","currentOffsetParent","offsetParent","historyUpdate","hashVal","hashToUpdate","curLoc","urlToPush","pathname","history","pushState","replaceState","filterElementInContainer","scrollX","getComputedStyle","position","offsetLeft","scrollY","_getElementOffsetInfo","isDocument","__self","__source","Fragment","jsx","jsxs","forceUpdate","escape","_status","_result","Children","map","count","toArray","only","Profiler","StrictMode","Suspense","act","cloneElement","createContext","_currentValue2","_threadCount","Provider","Consumer","_defaultValue","_globalName","createFactory","createRef","forwardRef","isValidElement","lazy","memo","startTransition","unstable_act","pop","sortIndex","performance","setImmediate","startTime","expirationTime","priorityLevel","navigator","scheduling","isInputPending","MessageChannel","port2","port1","onmessage","postMessage","unstable_Profiling","unstable_continueExecution","unstable_forceFrameRate","unstable_getFirstCallbackNode","unstable_next","unstable_pauseExecution","unstable_runWithPriority","unstable_wrapCallback","hasOwn","classNames","classes","arg","appendClass","parseValue","newClass","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","__webpack_modules__","getter","leafPrototypes","getProto","ns","def","getOwnPropertyNames","definition","o","chunkId","all","reduce","promises","miniCssF","globalThis","inProgress","dataWebpackPrefix","script","needAttach","scripts","getElementsByTagName","getAttribute","charset","timeout","nc","onScriptComplete","prev","onerror","onload","doneFns","fn","head","toStringTag","installedChunks","j","installedChunkData","promise","reject","errorType","realSrc","request","webpackJsonpCallback","parentChunkLoadingFunction","chunkIds","moreModules","runtime","some","chunkLoadingGlobal","$c87311424ea30a05$var$testUserAgent","_window_navigator_userAgentData","brands","brand","userAgent","$c87311424ea30a05$var$testPlatform","platform","$c87311424ea30a05$export$9ac100e40613ea10","$6a7db85432448f7f$export$60278871457622de","mozInputSource","$431fbd86ca7dc216$export$b204af158042fbac","_el_ownerDocument","$431fbd86ca7dc216$export$f21a1ffae260145a","$507fabe10e71c6fb$var$currentModality","$507fabe10e71c6fb$var$changeHandlers","$507fabe10e71c6fb$export$d90243b58daecda7","$507fabe10e71c6fb$var$hasEventBeforeFocus","$507fabe10e71c6fb$var$hasBlurredWindowRecently","$507fabe10e71c6fb$var$FOCUS_VISIBLE_INPUT_KEYS","Tab","Escape","$507fabe10e71c6fb$var$triggerChangeHandlers","modality","$507fabe10e71c6fb$var$handleKeyboardEvent","$28AnR$isMac","$507fabe10e71c6fb$var$isValidKey","$507fabe10e71c6fb$var$handlePointerEvent","$507fabe10e71c6fb$var$handleClickEvent","$28AnR$isVirtualClick","$507fabe10e71c6fb$var$handleFocusEvent","$507fabe10e71c6fb$var$handleWindowBlur","$507fabe10e71c6fb$var$setupGlobalFocusEvents","$28AnR$getOwnerWindow","windowObject","documentObject","$28AnR$getOwnerDocument","HTMLElement","PointerEvent","$507fabe10e71c6fb$var$tearDownWindowFocusTracking","once","loadListener","$507fabe10e71c6fb$export$b9b3dfddab17db27","readyState","$507fabe10e71c6fb$export$2f1888112f558a7d","$507fabe10e71c6fb$var$nonTextInputTypes","$507fabe10e71c6fb$export$ec71b4b83ac08ec3","$28AnR$useEffect","isTextInput","_e_target","IHTMLInputElement","HTMLInputElement","IHTMLTextAreaElement","HTMLTextAreaElement","IHTMLElement","IKeyboardEvent","KeyboardEvent","isContentEditable","$507fabe10e71c6fb$var$isKeyboardFocusEvent","$f0a04ccd8dbdd83b$export$e5c5a5f917a5871c","$HgANd$react","$8ae05eaa5c114e9c$export$7f54fc3180508a52","$lmaYr$useRef","$lmaYr$useCallback","$8a9cb279dc87e130$export$905e7fc544a71f36","$8a9cb279dc87e130$export$715c682d09d639cc","onBlur","stateRef","$6dfIe$useRef","isFocused","observer","$6dfIe$useLayoutEffect","disconnect","dispatchBlur","$6dfIe$useEffectEvent","$6dfIe$useCallback","HTMLButtonElement","HTMLSelectElement","onBlurHandler","MutationObserver","_stateRef_current_observer","relatedTargetEl","FocusEvent","observe","attributes","attributeFilter","$a1ea59d68270f0dd$export$f8168d8dd8fd66e6","onFocus","onFocusProp","onBlurProp","onFocusChange","$hf0lj$useCallback","onSyntheticFocus","$hf0lj$getOwnerDocument","focusProps","$9ab94262bd0047c7$export$420e68273165f4ec","onBlurWithin","onFocusWithin","onFocusWithinChange","$3b9Q0$useRef","isFocusWithin","$3b9Q0$useCallback","focusWithinProps","$f7dceffc5ad7768b$export$4e328f61c538687f","within","$isWE5$useRef","isFocusVisible","$isWE5$isFocusVisible","setFocused","$isWE5$useState","isFocusVisibleState","setFocusVisible","updateState","$isWE5$useCallback","$isWE5$useFocusVisibleListener","$isWE5$useFocus","$isWE5$useFocusWithin","$6179b936705e76d3$var$globalIgnoreEmulatedMouseEvents","$6179b936705e76d3$var$hoverCount","$6179b936705e76d3$var$setGlobalIgnoreEmulatedMouseEvents","$6179b936705e76d3$var$handleGlobalPointerEvent","$6179b936705e76d3$var$setupGlobalTouchEvents","$6179b936705e76d3$export$ae780daf29e6d456","onHoverStart","onHoverChange","onHoverEnd","isHovered","setHovered","$AWxnT$useState","$AWxnT$useRef","ignoreEmulatedMouseEvents","$AWxnT$useEffect","hoverProps","triggerHoverEnd","$AWxnT$useMemo","triggerHoverStart","onPointerEnter","onPointerLeave","onTouchStart","onMouseEnter","onMouseLeave","detect","handoffState","currentId","reset","nextId","isServer","isClient","handoff","isHandoffComplete","Node","cancelAnimationFrame","nextFrame","microTask","_len2","_key2","getPropertyValue","group","dispose","right","bottom","pressed","pressProps","onPointerDown","onPointerUp","ResizeObserver","IntersectionObserver","captureStackTrace","First","Previous","Next","Last","WrapAround","NoScroll","AutoFocus","Overflow","Success","Underflow","from","sort","sign","tabIndex","Number","MAX_SAFE_INTEGER","Strict","Loose","matches","parentElement","Keyboard","Mouse","preventScroll","headlessuiFocusVisible","sorted","relativeTo","skipElements","DOCUMENT_POSITION_FOLLOWING","DOCUMENT_POSITION_PRECEDING","_","filter","select","maxTouchPoints","getRootNode","isConnected","composed","composedPath","as","hasAttribute","flatMap","Boolean","None","RenderStrategy","Static","Unmount","Hidden","ourProps","theirProps","slot","defaultTag","features","visible","mergeRefs","static","hidden","refName","entries","every","_len3","_key3","startsWith","_len4","_key4","Event","_len5","_key5","Focusable","padding","margin","clip","whiteSpace","borderWidth","defaultContainers","portals","mainTreeNodeRef","host","resolveContainers","MainTreeNode","before","doc","innerWidth","after","_ref2","scrollBehavior","closest","URL","querySelector","headlessuiPortal","scrollIntoView","block","PUSH","POP","SCROLL_PREVENT","_ref3","SCROLL_ALLOW","_ref4","TEARDOWN","_ref5","values","Forwards","Backwards","getUserAgent","uaData","userAgentData","createCoords","oppositeSideMap","oppositeAlignmentMap","clamp","evaluate","getSide","placement","getAlignment","getOppositeAxis","axis","getAxisLength","getSideAxis","getAlignmentAxis","getOppositeAlignmentPlacement","alignment","getOppositePlacement","side","rectToClientRect","rect","computeCoordsFromPlacement","rtl","reference","floating","sideAxis","alignmentAxis","alignLength","isVertical","commonX","commonY","commonAlign","coords","async","detectOverflow","_await$platform$isEle","rects","elements","strategy","boundary","rootBoundary","elementContext","altBoundary","paddingObject","expandPaddingObject","getPaddingObject","clippingClientRect","getClippingRect","isElement","contextElement","getDocumentElement","getOffsetParent","offsetScale","getScale","elementClientRect","convertOffsetParentRelativeRectToViewportRelativeRect","getNodeName","isNode","getWindow","_node$ownerDocument","isHTMLElement","isShadowRoot","ShadowRoot","isOverflowElement","overflowX","overflowY","isTableElement","isContainingBlock","webkit","isWebKit","css","transform","perspective","containerType","backdropFilter","willChange","contain","CSS","supports","isLastTraversableNode","getNodeScroll","getParentNode","assignedSlot","getNearestOverflowAncestor","getOverflowAncestors","list","traverseIframes","_node$ownerDocument2","scrollableAncestor","isBody","win","visualViewport","frameElement","getCssDimensions","hasOffset","shouldFallback","$","unwrapElement","domElement","isFinite","noOffsets","getVisualOffsets","includeScale","isFixedStrategy","clientRect","scale","visualOffsets","isFixed","floatingOffsetParent","shouldAddVisualOffsets","offsetWin","currentWin","currentIFrame","iframeScale","iframeRect","clientLeft","paddingLeft","clientTop","paddingTop","topLayerSelectors","isTopLayer","selector","getWindowScrollBarX","getClientRectFromClippingAncestor","clippingAncestor","visualViewportBased","getViewportRect","scroll","direction","getDocumentRect","getInnerBoundingClientRect","hasFixedPositionAncestor","stopNode","getRectRelativeToOffsetParent","isOffsetParentAnElement","offsets","offsetRect","isStaticPositioned","getTrueOffsetParent","polyfill","svgOffsetParent","currentNode","getContainingBlock","topLayer","clippingAncestors","cachedResult","currentContainingBlockComputedStyle","elementIsFixed","computedStyle","currentNodeIsContaining","ancestor","getClippingElementAncestors","_c","firstClippingAncestor","clippingRect","accRect","getElementRects","getOffsetParentFn","getDimensionsFn","getDimensions","floatingDimensions","getClientRects","isRTL","autoUpdate","ancestorScroll","ancestorResize","elementResize","layoutShift","animationFrame","referenceEl","ancestors","cleanupIo","onMove","timeoutId","io","cleanup","_io","refresh","skip","threshold","rootMargin","isFirstUpdate","handleObserve","ratio","intersectionRatio","observeMove","frameId","reobserveFrame","resizeObserver","firstEntry","unobserve","_resizeObserver","prevRefRect","frameLoop","nextRefRect","_resizeObserver2","detectOverflow$1","_middlewareData$offse","_middlewareData$arrow","middlewareData","diffCoords","mainAxisMulti","crossAxisMulti","rawValue","mainAxis","crossAxis","convertValueToCoords","arrow","alignmentOffset","checkMainAxis","checkCrossAxis","limiter","detectOverflowOptions","mainAxisCoord","crossAxisCoord","maxSide","limitedCoords","flip","_middlewareData$flip","initialPlacement","fallbackPlacements","specifiedFallbackPlacements","fallbackStrategy","fallbackAxisSideDirection","flipAlignment","isBasePlacement","oppositePlacement","getExpandedPlacements","isStart","lr","bt","getSideList","getOppositeAxisPlacements","placements","overflows","overflowsData","sides","mainAlignmentSide","getAlignmentSides","_middlewareData$flip2","_overflowsData$filter","nextIndex","nextPlacement","resetPlacement","_overflowsData$map$so","acc","isYAxis","heightSide","widthSide","maximumClippingHeight","maximumClippingWidth","overflowAvailableHeight","overflowAvailableWidth","noShift","availableHeight","availableWidth","xMin","xMax","yMin","yMax","nextDimensions","computePosition","mergedOptions","platformWithCache","config","middleware","validMiddleware","statefulPlacement","resetCount","nextX","nextY","computePosition$1","deepEqual","getDPR","devicePixelRatio","roundByDPR","dpr","useLatestRef","offset$1","shift$1","flip$1","size$1","SafeReact","useSafeInsertionEffect","useEffectEvent","process","ARROW_UP","ARROW_DOWN","ARROW_LEFT","ARROW_RIGHT","horizontalKeys","verticalKeys","serverHandoffComplete","genId","setId","createPubSub","emit","_map$get","on","off","_map$get2","FloatingNodeContext","FloatingTreeContext","useFloatingParentNodeId","_React$useContext","useFloatingTree","useFloating","nodeId","internalRootContext","open","onOpenChange","onOpenChangeProp","elementsProp","floatingId","dataRef","nested","positionReference","setPositionReference","reason","openEvent","domReference","useFloatingRootContext","rootContext","computedElements","_domReference","setDomReference","_setPositionReference","domReferenceRef","tree","externalReference","externalFloating","whileElementsMounted","setData","isPositioned","latestMiddleware","setLatestMiddleware","_reference","_setReference","_floating","_setFloating","setReference","referenceRef","setFloating","floatingRef","floatingEl","hasWhileElementsMounted","whileElementsMountedRef","platformRef","fullData","isMountedRef","ReactDOM","floatingStyles","initialStyles","useFloating$1","computedPositionReference","floatingContext","nodesRef","find","ACTIVE_KEY","SELECTED_KEY","mergeProps","userProps","propsList","elementKey","isItem","domUserProps","__","validProps","propsOrGetProps","val","getArgsWithCustomFloatingHeight","inner","listRef","overflowRef","onFallbackChange","innerOffset","minItemsVisible","referenceOverflowThreshold","scrollRef","item","nextArgs","refOverflow","diffY","maxHeight","styles","getReferenceProps","getFloatingProps","enabled","gap","scrollPaddingBottom","childElementCount","childNodes","maxWidth","anchor","onChange","unstable_onChange","controlledScrollingRef","prevScrollTopRef","initialOverflowRef","onWheel","dY","isAtTop","isAtBottom","remainingScroll","method","onKeyDown","onPointerMove","onScroll","scrollDiff","getItemProps","exec","marginTop","Open","Closed","Closing","Opening","HTMLFieldSetElement","HTMLLegendElement","previousElementSibling","Space","Enter","Backspace","Delete","ArrowLeft","ArrowUp","ArrowRight","ArrowDown","Home","End","PageUp","PageDown","force","Group","TogglePopover","ClosePopover","SetButton","SetButtonId","SetPanel","SetPanelId","popoverState","__demoMode","buttonId","panel","panelId","tt","pt","it","ct","beforePanelSentinel","afterPanelSentinel","afterButtonSentinel","close","registerPopover","isFocusWithinPopoverGroup","_e","isPortalled","vt","closeOthers","click","hover","autofocus","onKeyUp","onMouseDown","headlessuiFocusGuard","Tt","mt","portal","modal","outerHTML","Ge","yt","unregisterPopover","qt","Button","Overlay","Panel","called","classList","inFlight","enter","leave","enterTo","leaveTo","enterFrom","leaveFrom","prepare","entered","transitionDuration","transitionDelay","onStart","onStop","Visible","findIndex","idle","chains","_ref6","_ref7","show","appear","initial","beforeEnter","beforeLeave","afterEnter","afterLeave","addFlag","hasFlag","removeFlag","toggleFlag","Child","Root","inert","Add","Remove","onUpdate","InitialFocus","TabLock","FocusLock","RestoreFocus","All","initialFocus","initialFocusFallback","previousActiveElement","SetTitleId","titleId","onClose","role","descriptionId","panelRef","allowed","disallowed","blur","dialogState","setTitleId","matchMedia","parent","leaf","_t","Title","Description","ToggleDisclosure","CloseDisclosure","LinkPanel","UnlinkPanel","disclosureState","linkedPanel","defaultOpen","buttonRef","svgRef","title","xmlns","fill","viewBox","stroke","strokeLinecap","strokeLinejoin","fillRule","clipRule","label","_jsx","Header","mobileMenuOpen","setMobileMenuOpen","prevScrollPos","setPrevScrollPos","setVisible","handleScroll","currentScrollPos","help","description","icon","easyOfficeIcon","easyTaxIcon","easyGstIcon","easyAuditIcon","easyAccIcon","easyTdsIcon","easyCmaIcon","class","navigationItems","items","_Fragment","_jsxs","rel","Logo","alt","Bars3Icon","PopoverGroup","Popover","PopoverButton","ChevronDownIcon","Transition","PopoverPanel","subItem","Dialog","DialogPanel","XMarkIcon","Disclosure","DisclosureButton","DisclosurePanel","Hero","isExpanded","setIsExpanded","backgroundImage","WebkitBackgroundClip","backgroundClip","toggleExpand","h1","h2","h3","h4","h6","h7","h5","h8","disc","About","Work","Wallet","Check","Bounding","Time","Video","AboutCard","socialLinks","SocialNavBar","Color","boxShadow","footerData","EASYACC","Footer","category","ContactForm","randomString","captcha","setCaptcha","setText","valid","setEASYACC","mobile","mobile2","address1","address2","city","pin_code","profession","product","handleChange","onSubmit","Authanantication","btoa","requestOptions","headers","Authorization","fetch","response","json","alert","placeholder","extraClass","cols","required","rows","helperText","openIndex","setOpenIndex","question","answer","faq","toggleItem","shapeRendering","ExtraComp","FeatureItem","AllFeatures","expandedIndex","setExpandedIndex","ListItem","faqDataLeft","I1","I2","I3","I4","I5","I6","I7","I8","I9","I10","idx","Reports","frameborder","SecExtra","SecModule","dataStore","selectedCategory","setSelectedCategory","backgroundColor","patternUnits","back","B1","B2","B3","B4","B5","B6","B7","moduleData","Facilitys","BG","Activites1","BG1","BG2","BG3","ListItems","OtherProduct","isExpanded1","setIsExpanded1","isExpanded2","setIsExpanded2","EO1","EO4","EO3","EO2","EO5","EO6","EO7","EO8","EasyOfficeLogo","toggleExpand1","EasyGstLogo","toggleExpand2","EA1","EA8","EA2","EA3","EA4","EA5","EA6","EA7","RightSoft","MainSecond","FAQ","onPerfEntry","getCLS","getFID","getFCP","getLCP","getTTFB","App","reportWebVitals"],"sourceRoot":""}