{"version":3,"file":"static/chunks/70221-7d7b5ac3660eecfc.js","sources":["webpack://_N_E/./node_modules/copy-to-clipboard/index.js","webpack://_N_E/./src/common/icons/biggest-wins.tsx","webpack://_N_E/./src/common/icons/recently.tsx","webpack://_N_E/./src/common/components/home/WelcomSection/components/GamesSliderBox.tsx","webpack://_N_E/./src/common/components/home/WelcomSection/hooks/useGameBox.ts","webpack://_N_E/./src/common/components/home/WelcomSection/WelcomeSectionLoggedIn.tsx","webpack://_N_E/./src/modules/home/context/HomeHeaderContext.ts","webpack://_N_E/./src/common/components/home/WelcomSection/components/Title.tsx","webpack://_N_E/./src/common/methods/extractTextFromStringElement/extractTextFromStringElement.ts","webpack://_N_E/./src/common/components/home/WelcomSection/components/ChatRainPromo.tsx","webpack://_N_E/./src/common/components/home/WelcomSection/components/VipClubPromo.tsx","webpack://_N_E/./src/common/components/home/WelcomSection/components/Promotions.tsx","webpack://_N_E/./src/common/components/home/WelcomSection/WelcomeSectionLoggedOut.tsx","webpack://_N_E/./src/common/components/home/WelcomSection/WelcomeSection.tsx","webpack://_N_E/./src/common/components/home/HomeContent.tsx","webpack://_N_E/./src/modules/home/layouts/Home.layout.tsx","webpack://_N_E/./node_modules/react-copy-to-clipboard/lib/Component.js","webpack://_N_E/./node_modules/react-copy-to-clipboard/lib/index.js","webpack://_N_E/./node_modules/rooks/dist/esm/hooks/useIsomorphicEffect.js","webpack://_N_E/./node_modules/rooks/dist/esm/hooks/useFreshTick.js","webpack://_N_E/./node_modules/rooks/dist/esm/hooks/useFreshRef.js","webpack://_N_E/./node_modules/rooks/dist/esm/hooks/useWindowEventListener.js","webpack://_N_E/./node_modules/rooks/dist/esm/hooks/useGlobalObjectEventListener.js","webpack://_N_E/./node_modules/toggle-selection/index.js","webpack://_N_E/./node_modules/next/dist/compiled/@babel/runtime/helpers/esm/toArray.js"],"sourceRoot":"","sourcesContent":["\"use strict\";\n\nvar deselectCurrent = require(\"toggle-selection\");\n\nvar clipboardToIE11Formatting = {\n \"text/plain\": \"Text\",\n \"text/html\": \"Url\",\n \"default\": \"Text\"\n}\n\nvar defaultMessage = \"Copy to clipboard: #{key}, Enter\";\n\nfunction format(message) {\n var copyKey = (/mac os x/i.test(navigator.userAgent) ? \"⌘\" : \"Ctrl\") + \"+C\";\n return message.replace(/#{\\s*key\\s*}/g, copyKey);\n}\n\nfunction copy(text, options) {\n var debug,\n message,\n reselectPrevious,\n range,\n selection,\n mark,\n success = false;\n if (!options) {\n options = {};\n }\n debug = options.debug || false;\n try {\n reselectPrevious = deselectCurrent();\n\n range = document.createRange();\n selection = document.getSelection();\n\n mark = document.createElement(\"span\");\n mark.textContent = text;\n // avoid screen readers from reading out loud the text\n mark.ariaHidden = \"true\"\n // reset user styles for span element\n mark.style.all = \"unset\";\n // prevents scrolling to the end of the page\n mark.style.position = \"fixed\";\n mark.style.top = 0;\n mark.style.clip = \"rect(0, 0, 0, 0)\";\n // used to preserve spaces and line breaks\n mark.style.whiteSpace = \"pre\";\n // do not inherit user-select (it may be `none`)\n mark.style.webkitUserSelect = \"text\";\n mark.style.MozUserSelect = \"text\";\n mark.style.msUserSelect = \"text\";\n mark.style.userSelect = \"text\";\n mark.addEventListener(\"copy\", function(e) {\n e.stopPropagation();\n if (options.format) {\n e.preventDefault();\n if (typeof e.clipboardData === \"undefined\") { // IE 11\n debug && console.warn(\"unable to use e.clipboardData\");\n debug && console.warn(\"trying IE specific stuff\");\n window.clipboardData.clearData();\n var format = clipboardToIE11Formatting[options.format] || clipboardToIE11Formatting[\"default\"]\n window.clipboardData.setData(format, text);\n } else { // all other browsers\n e.clipboardData.clearData();\n e.clipboardData.setData(options.format, text);\n }\n }\n if (options.onCopy) {\n e.preventDefault();\n options.onCopy(e.clipboardData);\n }\n });\n\n document.body.appendChild(mark);\n\n range.selectNodeContents(mark);\n selection.addRange(range);\n\n var successful = document.execCommand(\"copy\");\n if (!successful) {\n throw new Error(\"copy command was unsuccessful\");\n }\n success = true;\n } catch (err) {\n debug && console.error(\"unable to copy using execCommand: \", err);\n debug && console.warn(\"trying IE specific stuff\");\n try {\n window.clipboardData.setData(options.format || \"text\", text);\n options.onCopy && options.onCopy(window.clipboardData);\n success = true;\n } catch (err) {\n debug && console.error(\"unable to copy using clipboardData: \", err);\n debug && console.error(\"falling back to prompt\");\n message = format(\"message\" in options ? options.message : defaultMessage);\n window.prompt(message, text);\n }\n } finally {\n if (selection) {\n if (typeof selection.removeRange == \"function\") {\n selection.removeRange(range);\n } else {\n selection.removeAllRanges();\n }\n }\n\n if (mark) {\n document.body.removeChild(mark);\n }\n reselectPrevious();\n }\n\n return success;\n}\n\nmodule.exports = copy;\n","import { FC } from 'react';\nimport { IconProps } from '@icons/all-bets';\nimport { Svg } from '@legacyApp/client/components/svg/Svg';\n\nexport const BiggestWins: FC = ({ fill }) => {\n\tconst _fill = fill || 'white';\n\treturn (\n\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t}\n\t\t\twidth={16}\n\t\t\theight={16}\n\t\t/>\n\t);\n};\n","import { FC } from 'react';\nimport { IconProps } from '@icons/all-bets';\nimport { Svg } from '@legacyApp/client/components/svg/Svg';\n\nexport const Recently: FC = ({ fill }) => {\n\tconst _fill = fill || 'white';\n\treturn (\n\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t}\n\t\t\twidth={16}\n\t\t\theight={16}\n\t\t/>\n\t);\n};\n","import React, { FC, ReactNode } from 'react';\nimport styled, { css } from 'styled-components';\n\nimport { calcStyle } from '@legacyApp/client/modules/style/methods/calcStyle';\nimport { chatViewport } from '@legacyApp/client/modules/style/methods/chatViewport';\nimport { trans } from '@legacyApp/client/modules/translation/translate';\n\nimport {\n\tScrollCardsWithTitle,\n\tStyledScrollCardsHeader,\n\tStyledScrollCardsTitle,\n\tStyledScrollCardsWithTitle,\n} from '@common/components/layout/ScrollCards/ScrollCardsWithTitle';\nimport { StyledSlotsScrollCardsTailWrapper } from '@modules/slots/components/SlotsScrollCards';\nimport { SlotTile } from '@modules/slots/components/SlotTile';\n\nexport enum GameSliderId {\n\tRECENTLY_PLAYED = 'recently_played',\n\tBIGGEST_WINS = 'biggest_wins',\n\tTRENDING = 'trending',\n}\n\nexport interface GamesSliderBoxProps {\n\ttitle: ReactNode;\n\tlist: any[];\n\tloaded: boolean;\n}\n\nexport const GamesSliderBox: FC = ({\n\ttitle,\n\tlist,\n\tloaded,\n}) => {\n\tif (!loaded || !list?.length) {\n\t\treturn;\n\t}\n\n\treturn (\n\t\t\n\t\t\t{title}}\n\t\t\t\tloaded={loaded}\n\t\t\t\tnoDataContent={\n\t\t\t\t\t\n\t\t\t\t\t\t{trans({ label: 'No games' })}\n\t\t\t\t\t\n\t\t\t\t}\n\t\t\t\tlist={list?.map?.((slot, index) => {\n\t\t\t\t\treturn {\n\t\t\t\t\t\tname: slot.name,\n\t\t\t\t\t\tcomponent: (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t),\n\t\t\t\t\t};\n\t\t\t\t})}\n\t\t\t/>\n\t\t\n\t);\n};\n\nexport const GameSliderBoxStyled = styled.div`\n\tbackground-color: var(--color-dark-500);\n\tborder-radius: 24px;\n\tpadding: 16px 16px 9px;\n\n\t${StyledScrollCardsWithTitle} {\n\t\tpadding-bottom: 0;\n\n\t\t.scroll-menu-arrow {\n\t\t\ttop: -44px;\n\t\t}\n\n\t\t${StyledScrollCardsHeader} {\n\t\t\tmargin-bottom: 16px;\n\n\t\t\t${StyledScrollCardsTitle} {\n\t\t\t\tmargin-bottom: 0;\n\t\t\t}\n\t\t}\n\t}\n\n\t${chatViewport(\n\t\t(viewportPadding) => css`\n\t\t\t@media (min-width: ${(props) =>\n\t\t\t\t\tcalcStyle({\n\t\t\t\t\t\ta: props.theme.media.minWidthDesktop,\n\t\t\t\t\t\tb: viewportPadding,\n\t\t\t\t\t})}) {\n\t\t\t\t${StyledSlotsScrollCardsTailWrapper} {\n\t\t\t\t\tmargin-right: 26px;\n\t\t\t\t}\n\t\t\t}\n\t\t`,\n\t)};\n`;\n","import { useCallback } from 'react';\nimport { Slot } from '@modules/slots/store/slots.types';\nimport { useFetchGames } from '@modules/slots/hooks/useFetchGames';\nimport { SLOTS_SCROLL_CARD_COUNT } from '@modules/slots/constants/Slots.constants';\nimport { useGetDataArray } from '@legacyApp/hooks/fetch/useGetDataArray';\nimport { GameSliderId } from '../components/GamesSliderBox';\n\ninterface UseGameBox {\n\tid: GameSliderId;\n}\n\nexport const useGameBox = ({ id }: UseGameBox) => {\n\tconst { callback } = useFetchGames();\n\tconst gamesCallback = useCallback(\n\t\t() =>\n\t\t\tcallback({\n\t\t\t\tcount: SLOTS_SCROLL_CARD_COUNT,\n\t\t\t\tfilterType: id,\n\t\t\t}),\n\t\t[callback, id],\n\t);\n\tconst { data: list, loaded } = useGetDataArray(\n\t\tString(id),\n\t\tgamesCallback,\n\t);\n\n\treturn {\n\t\tlist,\n\t\tloaded,\n\t};\n};\n","import { FC } from 'react';\nimport styled, { css } from 'styled-components';\n\nimport { useGameBox } from '@common/components/home/WelcomSection/hooks/useGameBox';\nimport { calcStyle } from '@legacyApp/client/modules/style/methods/calcStyle';\nimport { chatViewport } from '@legacyApp/client/modules/style/methods/chatViewport';\nimport { trans } from '@legacyApp/client/modules/translation/translate';\nimport { TransNamespace } from '@legacyApp/client/modules/translation/TransNamespace';\n\nimport { BiggestWins } from '@icons/biggest-wins';\nimport { Recently } from '@icons/recently';\nimport { Trending } from '@icons/trending';\nimport {\n\tGameSliderBoxStyled,\n\tGameSliderId,\n\tGamesSliderBox,\n} from '@common/components/home/WelcomSection/components/GamesSliderBox';\n\nexport const WelcomeSectionLoggedIn: FC = () => {\n\tconst biggestWinsData = useGameBox({ id: GameSliderId.BIGGEST_WINS });\n\tconst trendingData = useGameBox({ id: GameSliderId.TRENDING });\n\tconst recentlyPlayedData = useGameBox({ id: GameSliderId.RECENTLY_PLAYED });\n\n\tif (\n\t\t!biggestWinsData.list?.length &&\n\t\t!trendingData.list?.length &&\n\t\t!recentlyPlayedData.list?.length\n\t) {\n\t\treturn;\n\t}\n\n\treturn (\n\t\t\n\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{trans({\n\t\t\t\t\t\t\t\tlabel: '<0>Biggest Wins',\n\t\t\t\t\t\t\t\tnamespace: TransNamespace.HOME_PAGE,\n\t\t\t\t\t\t\t\tcomponents: (\n\t\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t\tBiggest Wins\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t}\n\t\t\t/>\n\n\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{trans({\n\t\t\t\t\t\t\t\tlabel: '<0>Trending Right Now',\n\t\t\t\t\t\t\t\tnamespace: TransNamespace.HOME_PAGE,\n\t\t\t\t\t\t\t\tcomponents: (\n\t\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t\tTrending{' '}\n\t\t\t\t\t\t\t\t\t\tRight Now\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t}\n\t\t\t/>\n\n\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{trans({\n\t\t\t\t\t\t\t\tlabel: '<0>Recently Played',\n\t\t\t\t\t\t\t\tnamespace: TransNamespace.HOME_PAGE,\n\t\t\t\t\t\t\t\tcomponents: (\n\t\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t\tRecently{' '}\n\t\t\t\t\t\t\t\t\t\tPlayed\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t}\n\t\t\t/>\n\t\t\n\t);\n};\n\nexport const WelcomeSectionLoggedInStyled = styled.section`\n\tdisplay: grid;\n\tgap: 10px;\n\tgrid-template-columns: repeat(3, calc((100% / 3) - (10px / 3)));\n\tmargin-bottom: 80px;\n\tmargin-top: 60px;\n\n\t${chatViewport(\n\t\t(viewportPadding) => css`\n\t\t\t@media (max-width: ${(props) =>\n\t\t\t\t\tcalcStyle({\n\t\t\t\t\t\ta: props.theme.media_v2.max_tablet_large,\n\t\t\t\t\t\tb: viewportPadding,\n\t\t\t\t\t})}) {\n\t\t\t\tgrid-template-columns: repeat(2, calc((100% / 2) - (10px / 2)));\n\n\t\t\t\t${GameSliderBoxStyled}:nth-of-type(3) {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media (max-width: ${(props) =>\n\t\t\t\t\tcalcStyle({\n\t\t\t\t\t\ta: props.theme.media_v2.max_mobile_large,\n\t\t\t\t\t\tb: viewportPadding,\n\t\t\t\t\t})}) {\n\t\t\t\tgrid-template-columns: 100%;\n\n\t\t\t\t${GameSliderBoxStyled}:nth-of-type(2) {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media (max-width: ${(props) =>\n\t\t\t\t\tcalcStyle({\n\t\t\t\t\t\ta: props.theme.media_v2.max_mobile_medium,\n\t\t\t\t\t\tb: viewportPadding,\n\t\t\t\t\t})}) {\n\t\t\t\tmargin-bottom: 40px;\n\t\t\t\tmargin-top: 30px;\n\t\t\t}\n\t\t`,\n\t)};\n`;\n\nexport const IconBackgroundStyled = styled.div`\n\talign-items: center;\n\tborder-radius: 100%;\n\tdisplay: flex;\n\theight: 28px;\n\tjustify-content: center;\n\twidth: 28px;\n`;\n\nexport const TitleStyled = styled.div`\n\talign-items: center;\n\tdisplay: flex;\n\tgap: 4px;\n\tjustify-content: flex-start;\n`;\n\nexport const BiggestStyled = styled(TitleStyled)`\n\t.game-slider-box-color {\n\t\tcolor: var(--color-other-success);\n\t}\n\n\t${IconBackgroundStyled} {\n\t\tbackground-color: var(--color-other-success);\n\t}\n`;\n\nexport const TrendingStyled = styled(TitleStyled)`\n\t.game-slider-box-color {\n\t\tcolor: var(--color-blue-brand-blue);\n\t}\n\n\t${IconBackgroundStyled} {\n\t\tbackground-color: var(--color-blue-brand-blue);\n\t}\n`;\n\nexport const RecentlyPlayedStyled = styled(TitleStyled)`\n\t.game-slider-box-color {\n\t\tcolor: var(--color-other-pink);\n\t}\n\n\t${IconBackgroundStyled} {\n\t\tbackground-color: var(--color-other-pink);\n\t}\n`;\n","import { createContext } from 'react';\n\nexport const HomeHeaderContext = createContext<{\n\theader: string;\n}>({\n\theader: null,\n});\n","import React, { FC, useContext } from 'react';\nimport styled, { css } from 'styled-components';\n\nimport { Button, CSSClassNameButton } from '@ui/button';\nimport { trans } from '@legacyApp/client/modules/translation/translate';\nimport { calcStyle } from '@legacyApp/client/modules/style/methods/calcStyle';\nimport { chatViewport } from '@legacyApp/client/modules/style/methods/chatViewport';\nimport { TransNamespace } from '@legacyApp/client/modules/translation/TransNamespace';\nimport { Size } from '@uiTypes/Size';\nimport { Redirect } from '@common/components/default/Redirect/Redirect';\nimport { HomeHeaderContext } from '@modules/home/context/HomeHeaderContext';\nimport { extractTextFromStringElement } from '@common/methods/extractTextFromStringElement/extractTextFromStringElement';\n\nexport const TitleStyled = styled.section`\n\tmax-width: 320px;\n\n\th1 {\n\t\tmargin-top: 0;\n\t\tmargin-bottom: 0;\n\t}\n\n\tp {\n\t\tcolor: var(--color-dark-50);\n\t\tmargin-top: 16px;\n\t}\n\n\t.${CSSClassNameButton} {\n\t\tborder-radius: 5px;\n\t\tmargin-top: 40px;\n\t}\n\n\t${chatViewport(\n\t\t(viewportPadding) => css`\n\t\t\t@media (max-width: ${(props) =>\n\t\t\t\t\tcalcStyle({\n\t\t\t\t\t\ta: props.theme.media.maxWidthTablet,\n\t\t\t\t\t\tb: viewportPadding,\n\t\t\t\t\t})}) {\n\t\t\t\tmax-width: unset;\n\t\t\t\twidth: 100%;\n\t\t\t}\n\n\t\t\t@media (max-width: ${(props) =>\n\t\t\t\t\tcalcStyle({\n\t\t\t\t\t\ta: props.theme.media_v2.max_mobile_medium,\n\t\t\t\t\t\tb: viewportPadding,\n\t\t\t\t\t})}) {\n\t\t\t\tp {\n\t\t\t\t\tmargin-top: 8px;\n\t\t\t\t}\n\n\t\t\t\t.${CSSClassNameButton} {\n\t\t\t\t\tmargin-top: 20px;\n\t\t\t\t}\n\t\t\t}\n\t\t`,\n\t)};\n`;\n\nexport const Title: FC = () => {\n\tconst { header } = useContext(HomeHeaderContext);\n\n\treturn (\n\t\t\n\t\t\t

\n\t\t\t\t{header\n\t\t\t\t\t? extractTextFromStringElement(header)\n\t\t\t\t\t: trans({\n\t\t\t\t\t\t\tlabel: 'Crypto casino Wolfbet',\n\t\t\t\t\t\t\tnamespace: TransNamespace.HOME_PAGE,\n\t\t\t\t\t })}\n\t\t\t

\n\n\t\t\t

\n\t\t\t\t{trans({\n\t\t\t\t\tlabel:\n\t\t\t\t\t\t'Enjoy 5000+ crypto games, fast payouts and 24/7 support. Make the best of superior Bitcoin Casino',\n\t\t\t\t\tnamespace: TransNamespace.HOME_PAGE,\n\t\t\t\t})}\n\t\t\t\t.\n\t\t\t

\n\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t
\n\t);\n};\n","export const extractTextFromStringElement = (\n\thtmlStringElement: string,\n): string => {\n\tconst tagRegex = /<[^>]+>/g;\n\n\treturn htmlStringElement.replace(tagRegex, '').trim();\n};\n","import React, { FC, PropsWithChildren } from 'react';\nimport styled from 'styled-components';\nimport { Trans } from '@legacyApp/client/modules/translation/translate';\nimport { ROUTING_ID } from '@common/constants/routing/ids.routing.constants';\nimport { LinkTo } from '../../../default/LinkTo/LinkTo';\nimport routingService from '../../../../../LegacyApp/client/modules/app/routingService';\nimport { Image, parseImageSrc } from '../../../default/Image/Image';\nimport { MediumPromoStyled } from './Promotions.styled';\n\nexport const ChatRainOnClickWrapper: FC> = ({\n\tchildren,\n}) => {\n\treturn (\n\t\t\n\t\t\t{children}\n\t\t\n\t);\n};\n\nexport const ChatRainPromo: FC = () => {\n\treturn (\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t
\n\t\t\t\t giveaways'}\n\t\t\t\t\tcomponents={\n\t\t\t\t\t\t<>\n\t\t\t\t\t\t\tchat rain &
\n\t\t\t\t\t\t\tgiveaways\n\t\t\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t/>\n\t\t\t
\n\t\t
\n\t);\n};\n\nexport const PopupImage = styled(Image).attrs({\n\tsrc: '/img/promosection/chatrain/popup.png',\n\talt: 'Chat message pop ups',\n})`\n\ttop: 22%;\n\tposition: absolute;\n\theight: 99%;\n\tright: 1px;\n\ttransition: 300ms ease-out;\n\tz-index: 1;\n`;\n\nexport const ChatRainPromoStyled = styled(MediumPromoStyled)`\n\tbackground-image: url(${parseImageSrc('/img/promosection/chatrain/bg.svg')});\n\tbackground-repeat: no-repeat;\n\tbackground-size: cover;\n\n\th4,\n\th6 {\n\t\tz-index: 3;\n\t}\n\n\t@media (hover: hover) and (pointer: fine) {\n\t\t&:hover {\n\t\t\t${PopupImage} {\n\t\t\t\ttransform: translate(0, -13px);\n\t\t\t}\n\t\t}\n\t}\n`;\n","import React, { FC, PropsWithChildren } from 'react';\nimport styled, { css } from 'styled-components';\nimport { Trans, trans } from '@legacyApp/client/modules/translation/translate';\nimport { TransNamespace } from '@legacyApp/client/modules/translation/TransNamespace';\nimport { ROUTING_ID } from '@common/constants/routing/ids.routing.constants';\nimport { chatViewport } from '@legacyApp/client/modules/style/methods/chatViewport';\nimport { calcStyle } from '@legacyApp/client/modules/style/methods/calcStyle';\nimport { Image, parseImageSrc } from '../../../default/Image/Image';\nimport { LinkTo } from '../../../default/LinkTo/LinkTo';\nimport routingService from '../../../../../LegacyApp/client/modules/app/routingService';\nimport { BigPromoStyled } from './Promotions.styled';\n\nexport const VipClubOnClickWrapper: FC> = ({\n\tchildren,\n}) => {\n\treturn (\n\t\t\n\t\t\t{children}\n\t\t\n\t);\n};\n\nexport const VipClubPromo: FC = () => {\n\treturn (\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t

\n\t\t\t\t{trans({\n\t\t\t\t\tlabel: 'vip <1/>club',\n\t\t\t\t\tnamespace: TransNamespace.COMMON,\n\t\t\t\t\tcomponents: (\n\t\t\t\t\t\t<>\n\t\t\t\t\t\t\tvip\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\tclub\n\t\t\t\t\t\t\n\t\t\t\t\t),\n\t\t\t\t})}\n\t\t\t

\n\t\t\t
\n\t\t\t\t\n\t\t\t
\n\t\t
\n\t);\n};\n\nexport const DiamondsImage = styled(Image).attrs({\n\tsrc: '/img/promosection/vipclub/diamonds.png',\n\talt: 'Coins',\n})`\n\ttop: 0;\n\tposition: absolute;\n\theight: 100%;\n\tright: -110px;\n\tz-index: 2;\n\n\t${chatViewport(\n\t\t(viewportPadding) => css`\n\t\t\t@media (max-width: ${calcStyle({ a: '1060px', b: viewportPadding })}) {\n\t\t\t\tright: -90px;\n\t\t\t}\n\t\t`,\n\t)}\n`;\n\nexport const VipClubPromoStyled = styled(BigPromoStyled)`\n\tbackground-image: url(${parseImageSrc('/img/promosection/vipclub/bg.svg')});\n\tbackground-repeat: no-repeat;\n\tbackground-size: cover;\n\n\th4,\n\th6 {\n\t\tz-index: 3;\n\t}\n`;\n","import { FC } from 'react';\nimport styled, { css } from 'styled-components';\nimport { calcStyle } from '@legacyApp/client/modules/style/methods/calcStyle';\nimport { chatViewport } from '@legacyApp/client/modules/style/methods/chatViewport';\nimport { VipWheelPromo } from './VipWheelPromo';\nimport { RakebackPromo, RakebackPromoStyled } from './RakebackPromo';\nimport { ChatRainPromo, ChatRainPromoStyled } from './ChatRainPromo';\nimport { BonusCodesPromo } from './BonusCodesPromo';\nimport { WolfRacePromo } from './WolfRacePromo';\nimport { BigPromoStyled, MediumPromoStyled } from './Promotions.styled';\nimport { VipClubPromo } from './VipClubPromo';\n\nexport const Promotions: FC = () => {\n\treturn (\n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t);\n};\n\nexport const PromotionsStyled = styled.section`\n\tdisplay: flex;\n\tflex-wrap: wrap;\n\tgap: 16px;\n\tjustify-content: flex-end;\n\tmax-width: 896px;\n\tmin-width: 896px;\n\n\t.onclick-wrapper {\n\t\theight: 100%;\n\t\tleft: 0;\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\twidth: 100%;\n\t\tz-index: 99;\n\t}\n\n\t${chatViewport(\n\t\t(viewportPadding) => css`\n\t\t\t@media (max-width: ${(props) =>\n\t\t\t\t\tcalcStyle({\n\t\t\t\t\t\ta: props.theme.media_v2.max_desktop_small,\n\t\t\t\t\t\tb: viewportPadding,\n\t\t\t\t\t})}) {\n\t\t\t\tmax-width: 668px;\n\t\t\t\tmin-width: 668px;\n\n\t\t\t\t${ChatRainPromoStyled},\n\t\t\t\t${RakebackPromoStyled} {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media (max-width: ${calcStyle({ a: '1060px', b: viewportPadding })}) {\n\t\t\t\tmax-width: 578px;\n\t\t\t\tmin-width: 578px;\n\n\t\t\t\t${BigPromoStyled} {\n\t\t\t\t\twidth: 350px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media (max-width: ${(props) =>\n\t\t\t\t\tcalcStyle({\n\t\t\t\t\t\ta: props.theme.media_v2.max_tablet_large,\n\t\t\t\t\t\tb: viewportPadding,\n\t\t\t\t\t})}) {\n\t\t\t\tmax-width: 534px;\n\t\t\t\tmin-width: unset;\n\n\t\t\t\t${BigPromoStyled},\n\t\t\t\t${MediumPromoStyled} {\n\t\t\t\t\theight: 168px;\n\t\t\t\t}\n\n\t\t\t\t${MediumPromoStyled} {\n\t\t\t\t\twidth: 168px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media (max-width: ${(props) =>\n\t\t\t\t\tcalcStyle({\n\t\t\t\t\t\ta: props.theme.media.maxWidthTablet,\n\t\t\t\t\t\tb: viewportPadding,\n\t\t\t\t\t})}) {\n\t\t\t\tmax-width: unset;\n\t\t\t\tjustify-content: flex-start;\n\n\t\t\t\t${BigPromoStyled} {\n\t\t\t\t\twidth: calc(100% - 16px - 168px);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media (max-width: ${(props) =>\n\t\t\t\t\tcalcStyle({\n\t\t\t\t\t\ta: props.theme.media_v2.max_mobile_large,\n\t\t\t\t\t\tb: viewportPadding,\n\t\t\t\t\t})}) {\n\t\t\t\t${BigPromoStyled} {\n\t\t\t\t\twidth: 100%;\n\t\t\t\t}\n\n\t\t\t\t${MediumPromoStyled} {\n\t\t\t\t\twidth: calc(50% - 8px);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media (max-width: ${(props) =>\n\t\t\t\t\tcalcStyle({\n\t\t\t\t\t\ta: props.theme.media_v2.max_mobile_medium,\n\t\t\t\t\t\tb: viewportPadding,\n\t\t\t\t\t})}) {\n\t\t\t\tgap: 8px;\n\n\t\t\t\t${BigPromoStyled},\n\t\t\t\t${MediumPromoStyled} {\n\t\t\t\t\theight: 140px;\n\t\t\t\t}\n\n\t\t\t\t${MediumPromoStyled} {\n\t\t\t\t\twidth: calc(50% - 4px);\n\t\t\t\t}\n\t\t\t}\n\t\t`,\n\t)};\n`;\n","import { FC } from 'react';\nimport styled, { css } from 'styled-components';\nimport { calcStyle } from '@legacyApp/client/modules/style/methods/calcStyle';\nimport { chatViewport } from '@legacyApp/client/modules/style/methods/chatViewport';\nimport { Title } from './components/Title';\nimport { Promotions } from './components/Promotions';\n\nexport const WelcomeSectionLoggedOut: FC = () => {\n\treturn (\n\t\t\n\t\t\t\n\t\t\t<Promotions />\n\t\t</WelcomeSectionLoggedOutStyled>\n\t);\n};\n\nexport const WelcomeSectionLoggedOutStyled = styled.div`\n\talign-items: center;\n\tdisplay: flex;\n\tflex-direction: row;\n\tgap: 16px;\n\tjustify-content: space-between;\n\tmargin-bottom: 80px;\n\tmargin-top: 60px;\n\n\t${chatViewport(\n\t\t(viewportPadding) => css`\n\t\t\t@media (max-width: ${(props) =>\n\t\t\t\t\tcalcStyle({\n\t\t\t\t\t\ta: props.theme.media.maxWidthTablet,\n\t\t\t\t\t\tb: viewportPadding,\n\t\t\t\t\t})}) {\n\t\t\t\tflex-direction: column;\n\t\t\t\talign-items: flex-start;\n\t\t\t\tgap: 64px;\n\t\t\t}\n\n\t\t\t@media (max-width: ${(props) =>\n\t\t\t\t\tcalcStyle({\n\t\t\t\t\t\ta: props.theme.media_v2.max_mobile_medium,\n\t\t\t\t\t\tb: viewportPadding,\n\t\t\t\t\t})}) {\n\t\t\t\tgap: 32px;\n\t\t\t\tmargin-bottom: 40px;\n\t\t\t\tmargin-top: 30px;\n\t\t\t}\n\t\t`,\n\t)};\n`;\n","import { FC } from 'react';\n\nimport { useUserIsLogged } from '@common/selectors/user.selectors';\n\nimport { WelcomeSectionLoggedIn } from '@common/components/home/WelcomSection/WelcomeSectionLoggedIn';\nimport { WelcomeSectionLoggedOut } from '@common/components/home/WelcomSection/WelcomeSectionLoggedOut';\n\nexport const WelcomeSection: FC = () => {\n\tconst isLogged = useUserIsLogged();\n\n\tif (isLogged) {\n\t\treturn <WelcomeSectionLoggedIn />;\n\t}\n\n\treturn <WelcomeSectionLoggedOut />;\n};\n","import React from 'react';\nimport { MainLayout } from '@legacyApp/client/components/mainLayout';\nimport { StyledHomeGlobal } from './Home.global.styled';\nimport { SectionsTabNav } from './SectionsTabNav/SectionsTabNav';\nimport { WelcomeSection } from './WelcomSection/WelcomeSection';\n\nexport const HomeContent = () => {\n\treturn (\n\t\t<>\n\t\t\t<StyledHomeGlobal />\n\t\t\t<MainLayout v2>\n\t\t\t\t<WelcomeSection />\n\t\t\t\t<SectionsTabNav defaultTabId=\"lobby\" />\n\t\t\t</MainLayout>\n\t\t</>\n\t);\n};\n","import { useState } from 'react';\n\nimport { HomeContent } from '@common/components/home/HomeContent';\nimport { SlotsBottomSectionsContext } from '@modules/slots/context/SlotsBottomSectionsContext';\nimport { SlotsCategoriesContext } from '@modules/slots/context/SlotsCategoriesContext';\nimport { SlotsFirstSectionContext } from '@modules/slots/context/SlotsFirstSectionContext';\nimport { SlotsProvidersContext } from '@modules/slots/context/SlotsProvidersContext';\nimport { HomeHeaderContext } from '@modules/home/context/HomeHeaderContext';\n\nexport const HomeLayout = (context) => {\n\tconst { params } = context;\n\n\tconst {\n\t\tfirstSection,\n\t\tbottomSections,\n\t\tproviders,\n\t\tcategories,\n\t\tpage_content,\n\t\tuseCMSHeaderOnTop,\n\t} = params;\n\n\tconst [providers_, setProviders_] = useState(providers);\n\n\tconst [categories_, setCategories_] = useState(categories);\n\n\tconst [firstSection_, setFirstSection_] = useState(firstSection);\n\n\tconst [bottomSections_, setBottomSections_] = useState(bottomSections);\n\n\treturn (\n\t\t<SlotsBottomSectionsContext.Provider\n\t\t\tvalue={{\n\t\t\t\tbottomSections: bottomSections_,\n\t\t\t\tsetBottomSections: setBottomSections_,\n\t\t\t}}\n\t\t>\n\t\t\t<SlotsFirstSectionContext.Provider\n\t\t\t\tvalue={{\n\t\t\t\t\tfirstSection: firstSection_,\n\t\t\t\t\tsetFirstSection: setFirstSection_,\n\t\t\t\t}}\n\t\t\t>\n\t\t\t\t<SlotsProvidersContext.Provider\n\t\t\t\t\tvalue={{ providers: providers_, setProviders: setProviders_ }}\n\t\t\t\t>\n\t\t\t\t\t<SlotsCategoriesContext.Provider\n\t\t\t\t\t\tvalue={{ categories: categories_, setCategories: setCategories_ }}\n\t\t\t\t\t>\n\t\t\t\t\t\t<HomeHeaderContext.Provider\n\t\t\t\t\t\t\tvalue={{\n\t\t\t\t\t\t\t\theader:\n\t\t\t\t\t\t\t\t\tuseCMSHeaderOnTop && page_content?.header\n\t\t\t\t\t\t\t\t\t\t? page_content.header\n\t\t\t\t\t\t\t\t\t\t: null,\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t<HomeContent />\n\t\t\t\t\t\t</HomeHeaderContext.Provider>\n\t\t\t\t\t</SlotsCategoriesContext.Provider>\n\t\t\t\t</SlotsProvidersContext.Provider>\n\t\t\t</SlotsFirstSectionContext.Provider>\n\t\t</SlotsBottomSectionsContext.Provider>\n\t);\n};\n","\"use strict\";\n\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && \"function\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }, _typeof(obj); }\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.CopyToClipboard = void 0;\n\nvar _react = _interopRequireDefault(require(\"react\"));\n\nvar _copyToClipboard = _interopRequireDefault(require(\"copy-to-clipboard\"));\n\nvar _excluded = [\"text\", \"onCopy\", \"options\", \"children\"];\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { \"default\": obj }; }\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, \"prototype\", { writable: false }); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, \"prototype\", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } else if (call !== void 0) { throw new TypeError(\"Derived constructors may only return object or undefined\"); } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar CopyToClipboard = /*#__PURE__*/function (_React$PureComponent) {\n _inherits(CopyToClipboard, _React$PureComponent);\n\n var _super = _createSuper(CopyToClipboard);\n\n function CopyToClipboard() {\n var _this;\n\n _classCallCheck(this, CopyToClipboard);\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this = _super.call.apply(_super, [this].concat(args));\n\n _defineProperty(_assertThisInitialized(_this), \"onClick\", function (event) {\n var _this$props = _this.props,\n text = _this$props.text,\n onCopy = _this$props.onCopy,\n children = _this$props.children,\n options = _this$props.options;\n\n var elem = _react[\"default\"].Children.only(children);\n\n var result = (0, _copyToClipboard[\"default\"])(text, options);\n\n if (onCopy) {\n onCopy(text, result);\n } // Bypass onClick if it was present\n\n\n if (elem && elem.props && typeof elem.props.onClick === 'function') {\n elem.props.onClick(event);\n }\n });\n\n return _this;\n }\n\n _createClass(CopyToClipboard, [{\n key: \"render\",\n value: function render() {\n var _this$props2 = this.props,\n _text = _this$props2.text,\n _onCopy = _this$props2.onCopy,\n _options = _this$props2.options,\n children = _this$props2.children,\n props = _objectWithoutProperties(_this$props2, _excluded);\n\n var elem = _react[\"default\"].Children.only(children);\n\n return /*#__PURE__*/_react[\"default\"].cloneElement(elem, _objectSpread(_objectSpread({}, props), {}, {\n onClick: this.onClick\n }));\n }\n }]);\n\n return CopyToClipboard;\n}(_react[\"default\"].PureComponent);\n\nexports.CopyToClipboard = CopyToClipboard;\n\n_defineProperty(CopyToClipboard, \"defaultProps\", {\n onCopy: undefined,\n options: undefined\n});","\"use strict\";\n\nvar _require = require('./Component'),\n CopyToClipboard = _require.CopyToClipboard;\n\nCopyToClipboard.CopyToClipboard = CopyToClipboard;\nmodule.exports = CopyToClipboard;","import { useEffect, useLayoutEffect } from 'react';\n/**\n * useIsomorphicEffect\n * Resolves to useEffect when \"window\" is not in scope and useLayout effect in the browser\n *\n * @param {Function} callback Callback function to be called on mount\n */\nvar useIsomorphicEffect = typeof window === 'undefined' ? useEffect : useLayoutEffect;\nexport { useIsomorphicEffect };\n","import { useFreshRef } from \"./useFreshRef\";\nfunction useFreshTick(callback) {\n var freshRef = useFreshRef(callback);\n function tick() {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n if (typeof freshRef.current === \"function\") {\n freshRef.current.apply(freshRef, args);\n }\n }\n return tick;\n}\nexport { useFreshTick };\n","import { useEffect, useRef } from \"react\";\nimport { useIsomorphicEffect } from \"./useIsomorphicEffect\";\n/**\n * useFreshRef\n *\n * @param value The value which needs to be fresh at all times. Probably\n * best used with functions\n * @param preferLayoutEffect Should the value be updated using a layout effect\n * or a passive effect. Defaults to false.\n * @returns A ref containing the fresh value\n */\nfunction useFreshRef(value, preferLayoutEffect) {\n if (preferLayoutEffect === void 0) { preferLayoutEffect = false; }\n var useEffectToUse = preferLayoutEffect ? useIsomorphicEffect : useEffect;\n var ref = useRef(value);\n useEffectToUse(function () {\n ref.current = value;\n });\n return ref;\n}\nexport { useFreshRef };\n","import { useGlobalObjectEventListener } from \"./useGlobalObjectEventListener\";\n/**\n * useWindowEventListener hook\n *\n * A react hook to an event listener to the window\n *\n * @param {string} eventName The event to track\n * @param {Function} callback The callback to be called on event\n * @param {ListenerOptions} listenerOptions The options to be passed to the event listener\n * @param {boolean} isLayoutEffect Should it use layout effect. Defaults to false\n * @returns {undefined}\n */\nfunction useWindowEventListener(eventName, callback, listenerOptions, isLayoutEffect) {\n if (listenerOptions === void 0) { listenerOptions = {}; }\n if (isLayoutEffect === void 0) { isLayoutEffect = false; }\n useGlobalObjectEventListener(window, eventName, callback, listenerOptions, true, isLayoutEffect);\n}\nexport { useWindowEventListener };\n","import { useEffect } from \"react\";\nimport { useFreshTick } from \"./useFreshTick\";\nimport { useIsomorphicEffect } from \"./useIsomorphicEffect\";\nimport { warning } from \"./warning\";\n/**\n * useGlobalObjectEventListener hook\n *\n * A react hook to an event listener to a global object\n *\n * @param {Window|Document} globalObject The global object to add event onto\n * @param {string} eventName The event to track\n * @param {Function} callback The callback to be called on event\n * @param {ListenerOptions} listenerOptions The options to be passed to the event listener\n * @param {boolean} when Should the event listener be active\n * @param {boolean} isLayoutEffect Should it use layout effect. Defaults to false\n * @returns {undefined}\n */\nfunction useGlobalObjectEventListener(globalObject, eventName, callback, listenerOptions, when, isLayoutEffect) {\n if (listenerOptions === void 0) { listenerOptions = {}; }\n if (when === void 0) { when = true; }\n if (isLayoutEffect === void 0) { isLayoutEffect = false; }\n var freshCallback = useFreshTick(callback);\n var useEffectToRun = isLayoutEffect ? useIsomorphicEffect : useEffect;\n useEffectToRun(function () {\n warning(typeof globalObject !== \"undefined\", \"[useGlobalObjectEventListener]: Cannot attach event handlers to undefined.\");\n if (typeof globalObject !== \"undefined\" && when) {\n globalObject.addEventListener(eventName, freshCallback, listenerOptions);\n return function () {\n globalObject.removeEventListener(eventName, freshCallback, listenerOptions);\n };\n }\n return function () { };\n }, [eventName, listenerOptions]);\n}\nexport { useGlobalObjectEventListener };\n","\nmodule.exports = function () {\n var selection = document.getSelection();\n if (!selection.rangeCount) {\n return function () {};\n }\n var active = document.activeElement;\n\n var ranges = [];\n for (var i = 0; i < selection.rangeCount; i++) {\n ranges.push(selection.getRangeAt(i));\n }\n\n switch (active.tagName.toUpperCase()) { // .toUpperCase handles XHTML\n case 'INPUT':\n case 'TEXTAREA':\n active.blur();\n break;\n\n default:\n active = null;\n break;\n }\n\n selection.removeAllRanges();\n return function () {\n selection.type === 'Caret' &&\n selection.removeAllRanges();\n\n if (!selection.rangeCount) {\n ranges.forEach(function(range) {\n selection.addRange(range);\n });\n }\n\n active &&\n active.focus();\n };\n};\n","import arrayWithHoles from \"./arrayWithHoles.js\";\nimport iterableToArray from \"./iterableToArray.js\";\nimport unsupportedIterableToArray from \"./unsupportedIterableToArray.js\";\nimport nonIterableRest from \"./nonIterableRest.js\";\nexport default function _toArray(arr) {\n return arrayWithHoles(arr) || iterableToArray(arr) || unsupportedIterableToArray(arr) || nonIterableRest();\n}"],"names":["deselectCurrent","clipboardToIE11Formatting","module","exports","text","options","debug","message","reselectPrevious","range","selection","mark","success","document","createRange","getSelection","createElement","textContent","ariaHidden","style","all","position","top","clip","whiteSpace","webkitUserSelect","MozUserSelect","msUserSelect","userSelect","addEventListener","e","stopPropagation","format","preventDefault","clipboardData","console","warn","window","clearData","setData","onCopy","body","appendChild","selectNodeContents","addRange","execCommand","Error","err","error","copyKey","test","navigator","userAgent","replace","prompt","removeRange","removeAllRanges","removeChild","BiggestWins","_fill","fill","content","d","stroke","strokeLinecap","strokeLinejoin","width","height","Recently","strokeWidth","strokeMiterlimit","GameSliderId","useGameBox","id","callback","useFetchGames","gamesCallback","useCallback","count","SLOTS_SCROLL_CARD_COUNT","filterType","useGetDataArray","String","list","data","loaded","GamesSliderBox","title","length","GameSliderBoxStyled","ScrollCardsWithTitle","name","className","noDataContent","trans","label","map","slot","index","component","SlotTile","slug","styled","StyledScrollCardsWithTitle","StyledScrollCardsHeader","StyledScrollCardsTitle","chatViewport","viewportPadding","css","props","calcStyle","a","theme","media","minWidthDesktop","b","StyledSlotsScrollCardsTailWrapper","WelcomeSectionLoggedIn","biggestWinsData","BIGGEST_WINS","trendingData","TRENDING","recentlyPlayedData","RECENTLY_PLAYED","WelcomeSectionLoggedInStyled","BiggestStyled","IconBackgroundStyled","namespace","TransNamespace","components","TrendingStyled","Trending","RecentlyPlayedStyled","media_v2","max_tablet_large","max_mobile_large","max_mobile_medium","TitleStyled","HomeHeaderContext","createContext","header","CSSClassNameButton","maxWidthTablet","Title","htmlStringElement","useContext","trim","Redirect","href","rel","size","Size","ChatRainOnClickWrapper","children","LinkTo","routingService","ROUTING_ID","forceATag","ChatRainPromo","ChatRainPromoStyled","PopupImage","Image","attrs","src","alt","MediumPromoStyled","parseImageSrc","VipClubOnClickWrapper","VipClubPromo","VipClubPromoStyled","DiamondsImage","BigPromoStyled","Promotions","PromotionsStyled","VipWheelPromo","RakebackPromo","BonusCodesPromo","WolfRacePromo","max_desktop_small","RakebackPromoStyled","WelcomeSectionLoggedOut","WelcomeSectionLoggedOutStyled","WelcomeSection","useUserIsLogged","HomeContent","v2","SectionsTabNav","defaultTabId","HomeLayout","context","params","firstSection","bottomSections","providers","categories","page_content","useCMSHeaderOnTop","useState","providers_","setProviders_","categories_","setCategories_","firstSection_","setFirstSection_","bottomSections_","setBottomSections_","SlotsBottomSectionsContext","value","setBottomSections","SlotsFirstSectionContext","setFirstSection","SlotsProvidersContext","setProviders","SlotsCategoriesContext","setCategories","Provider","_typeof","obj","Symbol","iterator","constructor","prototype","Object","defineProperty","CopyToClipboard","_react","_interopRequireDefault","_copyToClipboard","_excluded","__esModule","ownKeys","object","enumerableOnly","keys","getOwnPropertySymbols","symbols","filter","sym","getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread","target","i","arguments","source","forEach","key","_defineProperty","getOwnPropertyDescriptors","defineProperties","_objectWithoutProperties","excluded","sourceKeys","indexOf","_objectWithoutPropertiesLoose","sourceSymbolKeys","propertyIsEnumerable","call","_classCallCheck","instance","Constructor","TypeError","_defineProperties","descriptor","configurable","writable","_setPrototypeOf","o","p","setPrototypeOf","__proto__","_createSuper","Derived","hasNativeReflectConstruct","Reflect","construct","sham","Proxy","Boolean","valueOf","_isNativeReflectConstruct","result","Super","_getPrototypeOf","NewTarget","this","_possibleConstructorReturn","self","_assertThisInitialized","ReferenceError","getPrototypeOf","_React$PureComponent","subClass","superClass","create","_inherits","protoProps","staticProps","_super","_this","_len","args","Array","_key","concat","event","_this$props","elem","Children","only","onClick","_this$props2","cloneElement","PureComponent","undefined","useIsomorphicEffect","useEffect","useLayoutEffect","useFreshTick","freshRef","preferLayoutEffect","useEffectToUse","ref","useRef","current","useFreshRef","_i","useWindowEventListener","eventName","listenerOptions","isLayoutEffect","globalObject","when","freshCallback","warning","removeEventListener","useGlobalObjectEventListener","rangeCount","active","activeElement","ranges","getRangeAt","tagName","toUpperCase","blur","type","focus","_toArray","arr"],"mappings":";;gHAEA,IAAIA,EAAkB,EAAQ,OAE1BC,EAA4B,CAC9B,aAAc,OACd,YAAa,MACb,QAAW,QA2GbC,EAAOC,QAjGP,SAAcC,EAAMC,GAClB,IAAIC,EACFC,EACAC,EACAC,EACAC,EACAC,EACAC,GAAU,EACPP,IACHA,EAAU,IAEZC,EAAQD,EAAQC,QAAS,EACzB,IAkDE,GAjDAE,EAAmBR,IAEnBS,EAAQI,SAASC,cACjBJ,EAAYG,SAASE,gBAErBJ,EAAOE,SAASG,cAAc,SACzBC,YAAcb,EAEnBO,EAAKO,WAAa,OAElBP,EAAKQ,MAAMC,IAAM,QAEjBT,EAAKQ,MAAME,SAAW,QACtBV,EAAKQ,MAAMG,IAAM,EACjBX,EAAKQ,MAAMI,KAAO,mBAElBZ,EAAKQ,MAAMK,WAAa,MAExBb,EAAKQ,MAAMM,iBAAmB,OAC9Bd,EAAKQ,MAAMO,cAAgB,OAC3Bf,EAAKQ,MAAMQ,aAAe,OAC1BhB,EAAKQ,MAAMS,WAAa,OACxBjB,EAAKkB,iBAAiB,QAAQ,SAASC,GAErC,GADAA,EAAEC,kBACE1B,EAAQ2B,OAEV,GADAF,EAAEG,iBAC6B,qBAApBH,EAAEI,cAA+B,CAC1C5B,GAAS6B,QAAQC,KAAK,iCACtB9B,GAAS6B,QAAQC,KAAK,4BACtBC,OAAOH,cAAcI,YACrB,IAAIN,EAAS/B,EAA0BI,EAAQ2B,SAAW/B,EAAmC,QAC7FoC,OAAOH,cAAcK,QAAQP,EAAQ5B,QAErC0B,EAAEI,cAAcI,YAChBR,EAAEI,cAAcK,QAAQlC,EAAQ2B,OAAQ5B,GAGxCC,EAAQmC,SACVV,EAAEG,iBACF5B,EAAQmC,OAAOV,EAAEI,mBAIrBrB,SAAS4B,KAAKC,YAAY/B,GAE1BF,EAAMkC,mBAAmBhC,GACzBD,EAAUkC,SAASnC,IAEFI,SAASgC,YAAY,QAEpC,MAAM,IAAIC,MAAM,iCAElBlC,GAAU,EACV,MAAOmC,GACPzC,GAAS6B,QAAQa,MAAM,qCAAsCD,GAC7DzC,GAAS6B,QAAQC,KAAK,4BACtB,IACEC,OAAOH,cAAcK,QAAQlC,EAAQ2B,QAAU,OAAQ5B,GACvDC,EAAQmC,QAAUnC,EAAQmC,OAAOH,OAAOH,eACxCtB,GAAU,EACV,MAAOmC,GACPzC,GAAS6B,QAAQa,MAAM,uCAAwCD,GAC/DzC,GAAS6B,QAAQa,MAAM,0BACvBzC,EAjFN,SAAgBA,GACd,IAAI0C,GAAW,YAAYC,KAAKC,UAAUC,WAAa,SAAM,QAAU,KACvE,OAAO7C,EAAQ8C,QAAQ,gBAAiBJ,GA+E1BjB,CAAO,YAAa3B,EAAUA,EAAQE,QAnFjC,oCAoFf8B,OAAOiB,OAAO/C,EAASH,IAEzB,QACIM,IACkC,mBAAzBA,EAAU6C,YACnB7C,EAAU6C,YAAY9C,GAEtBC,EAAU8C,mBAIV7C,GACFE,SAAS4B,KAAKgB,YAAY9C,GAE5BH,IAGF,OAAOI,I,8GC3GI8C,EAA6B,SAAC,GAAa,IACjDC,EADiD,EAAXC,MACtB,QACtB,OACC,SAAC,IAAD,CACCC,SACC,iCACC,iBACCC,EAAE,cACFC,OAAQJ,EACRC,KAAK,cACLI,cAAc,QACdC,eAAe,WAEhB,iBACCH,EAAE,+jBACFC,OAAQJ,EACRC,KAAK,cACLI,cAAc,QACdC,eAAe,aAIlBC,MAAO,GACPC,OAAQ,O,2GCvBEC,EAA0B,SAAC,GAAa,IAC9CT,EAD8C,EAAXC,MACnB,QACtB,OACC,SAAC,IAAD,CACCC,SACC,iCACC,iBACCC,EAAE,oNACFC,OAAQJ,EACRC,KAAK,cACLS,YAAY,MACZC,iBAAiB,QAElB,iBACCR,EAAE,YACFC,OAAQJ,EACRC,KAAK,cACLS,YAAY,MACZL,cAAc,QACdC,eAAe,WAEhB,iBACCH,EAAE,qBACFC,OAAQJ,EACRC,KAAK,cACLS,YAAY,MACZL,cAAc,QACdC,eAAe,aAIlBC,MAAO,GACPC,OAAQ,O,uECpBCI,E,mGCLCC,EAAa,SAAC,GAAuB,IAArBC,EAAqB,EAArBA,GACpBC,GAAaC,EAAAA,EAAAA,KAAbD,SACFE,GAAgBC,EAAAA,EAAAA,cACrB,kBACCH,EAAS,CACRI,MAAOC,EAAAA,EACPC,WAAYP,MAEd,CAACC,EAAUD,IAEZ,GAA+BQ,EAAAA,EAAAA,GAC9BC,OAAOT,GACPG,GAGD,MAAO,CACNO,KAND,EAAQC,KAOPC,OAPD,EAAoBA,S,itBDLTd,GAAAA,EAAAA,gBAAAA,kBAAAA,EAAAA,aAAAA,eAAAA,EAAAA,SAAAA,W,CAAAA,IAAAA,EAAAA,KAYL,IAAMe,EAA0C,SAAC,GAIlD,MAHLC,EAGK,EAHLA,MACAJ,EAEK,EAFLA,KACAE,EACK,EADLA,OAEA,GAAKA,GAAU,OAACF,QAAD,IAACA,GAAAA,EAAMK,OAItB,OACC,SAACC,EAAD,WACC,SAACC,EAAA,GAAD,CACCC,MAAM,iBAAMC,UAAU,yBAAhB,SAA0CL,IAChDF,OAAQA,EACRQ,eACC,iBAAMD,UAAU,uBAAhB,UACEE,EAAAA,EAAAA,IAAM,CAAEC,MAAO,eAGlBZ,KAAI,OAAEA,QAAF,IAAEA,GAAF,UAAEA,EAAMa,WAAR,aAAE,OAAAb,GAAY,SAACc,EAAMC,GACxB,MAAO,CACNP,KAAMM,EAAKN,KACXQ,WACC,SAAC,IAAD,WACC,SAACC,EAAA,EAAD,KAAcH,KADf,UAA2CC,EAA3C,YAAoDD,EAAKI,gBAWnDZ,EAAsBa,EAAAA,GAAAA,IAAAA,WAAH,2DAAGA,CAAH,0LAK7BC,EAAAA,GAOCC,EAAAA,GAGCC,EAAAA,IAMFC,EAAAA,EAAAA,IACD,SAACC,GAAD,OAAqBC,EAAAA,EAAAA,IAApB,CAAD,oDACsB,SAACC,GAAD,OACnBC,EAAAA,EAAAA,GAAU,CACTC,EAAGF,EAAMG,MAAMC,MAAMC,gBACrBC,EAAGR,MAEHS,EAAAA,OExEOC,EAA6B,WAAM,UACzCC,EAAkB9C,EAAW,CAAEC,GAAIF,EAAagD,eAChDC,EAAehD,EAAW,CAAEC,GAAIF,EAAakD,WAC7CC,EAAqBlD,EAAW,CAAEC,GAAIF,EAAaoD,kBAEzD,GACC,UAACL,EAAgBnC,YAAjB,OAAC,EAAsBK,QACvB,UAACgC,EAAarC,YAAd,OAAC,EAAmBK,QACpB,UAACkC,EAAmBvC,YAApB,OAAC,EAAyBK,OAK3B,OACC,UAACoC,EAAD,YACC,SAACtC,EAAD,CACCH,KAAMmC,EAAgBnC,KACtBE,OAAQiC,EAAgBjC,OACxBE,OACC,UAACsC,EAAD,YACC,SAACC,EAAD,WACC,SAAC,EAAApE,YAAD,OAGD,2BACEoC,EAAAA,EAAAA,IAAM,CACNC,MAAO,sBACPgC,UAAWC,EAAAA,EAAAA,UACXC,YACC,iCACC,iBAAMrC,UAAU,wBAAhB,qBADD,qBAUN,SAACN,EAAD,CACCH,KAAMqC,EAAarC,KACnBE,OAAQmC,EAAanC,OACrBE,OACC,UAAC2C,EAAD,YACC,SAACJ,EAAD,WACC,SAAC,EAAAK,SAAD,OAGD,2BACErC,EAAAA,EAAAA,IAAM,CACNC,MAAO,4BACPgC,UAAWC,EAAAA,EAAAA,UACXC,YACC,iCACC,iBAAMrC,UAAU,wBAAhB,sBAAwD,IADzD,yBAWN,SAACN,EAAD,CACCH,KAAMuC,EAAmBvC,KACzBE,OAAQqC,EAAmBrC,OAC3BE,OACC,UAAC6C,EAAD,YACC,SAACN,EAAD,WACC,SAAC,EAAA1D,SAAD,OAGD,2BACE0B,EAAAA,EAAAA,IAAM,CACNC,MAAO,yBACPgC,UAAWC,EAAAA,EAAAA,UACXC,YACC,iCACC,iBAAMrC,UAAU,wBAAhB,sBAAwD,IADzD,yBAcIgC,EAA+BtB,EAAAA,GAAAA,QAAAA,WAAH,oEAAGA,CAAH,iIAOtCI,EAAAA,EAAAA,IACD,SAACC,GAAD,OAAqBC,EAAAA,EAAAA,IAApB,CAAD,2QACsB,SAACC,GAAD,OACnBC,EAAAA,EAAAA,GAAU,CACTC,EAAGF,EAAMG,MAAMqB,SAASC,iBACxBnB,EAAGR,MAIHlB,GAKkB,SAACoB,GAAD,OACnBC,EAAAA,EAAAA,GAAU,CACTC,EAAGF,EAAMG,MAAMqB,SAASE,iBACxBpB,EAAGR,MAIHlB,GAKkB,SAACoB,GAAD,OACnBC,EAAAA,EAAAA,GAAU,CACTC,EAAGF,EAAMG,MAAMqB,SAASG,kBACxBrB,EAAGR,WASImB,EAAuBxB,EAAAA,GAAAA,IAAAA,WAAH,4DAAGA,CAAH,uGASpBmC,EAAcnC,EAAAA,GAAAA,IAAAA,WAAH,mDAAGA,CAAH,yEAOXuB,GAAgBvB,EAAAA,EAAAA,IAAOmC,GAAV,gEAAGnC,CAAH,+GAKvBwB,GAKUI,GAAiB5B,EAAAA,EAAAA,IAAOmC,GAAV,iEAAGnC,CAAH,mHAKxBwB,GAKUM,GAAuB9B,EAAAA,EAAAA,IAAOmC,GAAV,uEAAGnC,CAAH,yGAK9BwB,G,iCClMUY,GAAoBC,EAAAA,EAAAA,eAE9B,CACFC,OAAQ,OCQIH,EAAcnC,EAAAA,GAAAA,QAAAA,WAAH,mDAAGA,CAAH,gJAapBuC,EAAAA,IAKDnC,EAAAA,EAAAA,IACD,SAACC,GAAD,OAAqBC,EAAAA,EAAAA,IAApB,CAAD,wHACsB,SAACC,GAAD,OACnBC,EAAAA,EAAAA,GAAU,CACTC,EAAGF,EAAMG,MAAMC,MAAM6B,eACrB3B,EAAGR,OAMe,SAACE,GAAD,OACnBC,EAAAA,EAAAA,GAAU,CACTC,EAAGF,EAAMG,MAAMqB,SAASG,kBACxBrB,EAAGR,MAMFkC,EAAAA,QAQME,EAAY,WACxB,IC3DAC,ED2DQJ,GAAWK,EAAAA,EAAAA,YAAWP,GAAtBE,OAER,OACC,UAAC,EAAD,YACC,eAAIhD,UAAU,iBAAd,SACEgD,GChEJI,EDiEmCJ,EC7D5BI,EAAkB3F,QAFR,WAE0B,IAAI6F,SD8DzCpD,EAAAA,EAAAA,IAAM,CACNC,MAAO,wBACPgC,UAAWC,EAAAA,EAAAA,eAIf,eAAGpC,UAAU,uBAAb,WACEE,EAAAA,EAAAA,IAAM,CACNC,MACC,oGACDgC,UAAWC,EAAAA,EAAAA,YAJb,QASA,SAACmB,EAAA,EAAD,CAAUC,KAAM,YAAaC,IAAI,WAAjC,UACC,SAAC,KAAD,CACCtD,OAAOD,EAAAA,EAAAA,IAAM,CACZC,MAAO,iBACPgC,UAAWC,EAAAA,EAAAA,YAEZsB,KAAMC,EAAAA,EAAAA,c,4EE/EEC,EAAqD,SAAC,GAE7D,IADLC,EACK,EADLA,SAEA,OACC,SAACC,EAAA,EAAD,CACC9D,UAAW,2CACXwD,KAAMO,EAAAA,EAAAA,GAAkBC,EAAAA,EAAAA,YACxBC,WAAS,EAHV,SAKEJ,KAKSK,EAAoB,WAChC,OACC,UAACC,EAAD,YACC,SAACP,EAAD,KACA,SAACQ,EAAD,KACA,eAAIpE,UAAU,iBAAd,UACC,SAAC,KAAD,CACCG,MAAO,4BACPkC,YACC,+CACY,kBADZ,uBAWO+B,GAAa1D,EAAAA,EAAAA,IAAO2D,EAAAA,IAAOC,MAAM,CAC7CC,IAAK,uCACLC,IAAK,yBAFiB,iEAAG9D,CAAH,yFAYVyD,GAAsBzD,EAAAA,EAAAA,IAAO+D,EAAAA,GAAV,0EAAG/D,CAAH,uLACPgE,EAAAA,EAAAA,IAAc,qCAWlCN,G,wBCvDQO,GAAoD,SAAC,GAE5D,IADLd,EACK,EADLA,SAEA,OACC,SAACC,EAAA,EAAD,CACC9D,UAAW,0CACXwD,KAAMO,EAAAA,EAAAA,GAAkBC,EAAAA,EAAAA,UACxBC,WAAS,EAHV,SAKEJ,KAKSe,GAAmB,WAC/B,OACC,UAACC,GAAD,YACC,SAACF,GAAD,KACA,SAACG,GAAD,KACA,eAAI9E,UAAU,iBAAd,UACEE,EAAAA,EAAAA,IAAM,CACNC,MAAO,eACPgC,UAAWC,EAAAA,EAAAA,OACXC,YACC,uCAEC,kBAFD,eAQH,eAAIrC,UAAU,iBAAd,UACC,SAAC,KAAD,CAAOG,MAAO,mCAML2E,IAAgBpE,EAAAA,EAAAA,IAAO2D,EAAAA,IAAOC,MAAM,CAChDC,IAAK,yCACLC,IAAK,UAFoB,oEAAG9D,CAAH,oEAUvBI,EAAAA,EAAAA,IACD,SAACC,GAAD,OAAqBC,EAAAA,EAAAA,IAApB,CAAD,yCACsBE,EAAAA,EAAAA,GAAU,CAAEC,EAAG,SAAUI,EAAGR,SAOvC8D,IAAqBnE,EAAAA,EAAAA,IAAOqE,EAAAA,GAAV,yEAAGrE,CAAH,mGACNgE,EAAAA,EAAAA,IAAc,qCC3D1BM,GAAiB,WAC7B,OACC,UAACC,GAAD,YACC,SAACL,GAAD,KACA,SAACM,EAAA,GAAD,KACA,SAACC,EAAA,GAAD,KACA,SAACC,GAAA,GAAD,KACA,SAAClB,EAAD,KACA,SAACmB,GAAA,GAAD,QAKUJ,GAAmBvE,EAAAA,GAAAA,QAAAA,WAAH,wDAAGA,CAAH,2LAiB1BI,EAAAA,EAAAA,IACD,SAACC,GAAD,OAAqBC,EAAAA,EAAAA,IAApB,CAAD,ufACsB,SAACC,GAAD,OACnBC,EAAAA,EAAAA,GAAU,CACTC,EAAGF,EAAMG,MAAMqB,SAAS6C,kBACxB/D,EAAGR,MAKHoD,EACAoB,EAAAA,IAKkBrE,EAAAA,EAAAA,GAAU,CAAEC,EAAG,SAAUI,EAAGR,IAI9CgE,EAAAA,GAKkB,SAAC9D,GAAD,OACnBC,EAAAA,EAAAA,GAAU,CACTC,EAAGF,EAAMG,MAAMqB,SAASC,iBACxBnB,EAAGR,MAKHgE,EAAAA,EACAN,EAAAA,EAIAA,EAAAA,GAKkB,SAACxD,GAAD,OACnBC,EAAAA,EAAAA,GAAU,CACTC,EAAGF,EAAMG,MAAMC,MAAM6B,eACrB3B,EAAGR,MAKHgE,EAAAA,GAKkB,SAAC9D,GAAD,OACnBC,EAAAA,EAAAA,GAAU,CACTC,EAAGF,EAAMG,MAAMqB,SAASE,iBACxBpB,EAAGR,MAEHgE,EAAAA,EAIAN,EAAAA,GAKkB,SAACxD,GAAD,OACnBC,EAAAA,EAAAA,GAAU,CACTC,EAAGF,EAAMG,MAAMqB,SAASG,kBACxBrB,EAAGR,MAIHgE,EAAAA,EACAN,EAAAA,EAIAA,EAAAA,OCrHOe,GAA8B,WAC1C,OACC,UAACC,GAAD,YACC,SAACtC,EAAD,KACA,SAAC6B,GAAD,QAKUS,GAAgC/E,EAAAA,GAAAA,IAAAA,WAAH,yEAAGA,CAAH,uIASvCI,EAAAA,EAAAA,IACD,SAACC,GAAD,OAAqBC,EAAAA,EAAAA,IAApB,CAAD,uJACsB,SAACC,GAAD,OACnBC,EAAAA,EAAAA,GAAU,CACTC,EAAGF,EAAMG,MAAMC,MAAM6B,eACrB3B,EAAGR,OAOe,SAACE,GAAD,OACnBC,EAAAA,EAAAA,GAAU,CACTC,EAAGF,EAAMG,MAAMqB,SAASG,kBACxBrB,EAAGR,WCjCI2E,GAAqB,WAGjC,OAFiBC,EAAAA,EAAAA,OAGT,SAAClE,EAAD,KAGD,SAAC+D,GAAD,KCRKI,GAAc,WAC1B,OACC,iCACC,SAAC,IAAD,KACA,UAAC,IAAD,CAAYC,IAAE,EAAd,WACC,SAACH,GAAD,KACA,SAACI,EAAA,EAAD,CAAgBC,aAAa,iB,gDCHpBC,GAAa,SAACC,GAC1B,IAAQC,EAAWD,EAAXC,OAGPC,EAMGD,EANHC,aACAC,EAKGF,EALHE,eACAC,EAIGH,EAJHG,UACAC,EAGGJ,EAHHI,WACAC,EAEGL,EAFHK,aACAC,EACGN,EADHM,kBAGD,GAAoCC,EAAAA,EAAAA,UAASJ,GAAtCK,EAAP,KAAmBC,EAAnB,KAEA,GAAsCF,EAAAA,EAAAA,UAASH,GAAxCM,EAAP,KAAoBC,EAApB,KAEA,GAA0CJ,EAAAA,EAAAA,UAASN,GAA5CW,EAAP,KAAsBC,EAAtB,KAEA,GAA8CN,EAAAA,EAAAA,UAASL,GAAhDY,EAAP,KAAwBC,EAAxB,KAEA,OACC,SAACC,GAAA,WAAD,CACCC,MAAO,CACNf,eAAgBY,EAChBI,kBAAmBH,GAHrB,UAMC,SAACI,GAAA,WAAD,CACCF,MAAO,CACNhB,aAAcW,EACdQ,gBAAiBP,GAHnB,UAMC,SAACQ,GAAA,WAAD,CACCJ,MAAO,CAAEd,UAAWK,EAAYc,aAAcb,GAD/C,UAGC,SAACc,GAAA,WAAD,CACCN,MAAO,CAAEb,WAAYM,EAAac,cAAeb,GADlD,UAGC,SAAC/D,EAAkB6E,SAAnB,CACCR,MAAO,CACNnE,OACCwD,GAAiB,OAAID,QAAJ,IAAIA,GAAAA,EAAcvD,OAChCuD,EAAavD,OACb,MALN,UAQC,SAAC4C,GAAD,gB,mCCtDP,SAASgC,EAAQC,GAAkC,OAAOD,EAAU,mBAAqBE,QAAU,iBAAmBA,OAAOC,SAAW,SAAUF,GAAO,cAAcA,GAAS,SAAUA,GAAO,OAAOA,GAAO,mBAAqBC,QAAUD,EAAIG,cAAgBF,QAAUD,IAAQC,OAAOG,UAAY,gBAAkBJ,GAAQD,EAAQC,GAEzUK,OAAOC,eAAe5N,EAAS,aAAc,CAC3C4M,OAAO,IAET5M,EAAQ6N,qBAAkB,EAE1B,IAAIC,EAASC,EAAuB,EAAQ,QAExCC,EAAmBD,EAAuB,EAAQ,QAElDE,EAAY,CAAC,OAAQ,SAAU,UAAW,YAE9C,SAASF,EAAuBT,GAAO,OAAOA,GAAOA,EAAIY,WAAaZ,EAAM,CAAE,QAAWA,GAEzF,SAASa,EAAQC,EAAQC,GAAkB,IAAIC,EAAOX,OAAOW,KAAKF,GAAS,GAAIT,OAAOY,sBAAuB,CAAE,IAAIC,EAAUb,OAAOY,sBAAsBH,GAASC,IAAmBG,EAAUA,EAAQC,QAAO,SAAUC,GAAO,OAAOf,OAAOgB,yBAAyBP,EAAQM,GAAKE,eAAiBN,EAAKO,KAAKC,MAAMR,EAAME,GAAY,OAAOF,EAE9U,SAASS,EAAcC,GAAU,IAAK,IAAIC,EAAI,EAAGA,EAAIC,UAAU7J,OAAQ4J,IAAK,CAAE,IAAIE,EAAS,MAAQD,UAAUD,GAAKC,UAAUD,GAAK,GAAIA,EAAI,EAAId,EAAQR,OAAOwB,IAAS,GAAIC,SAAQ,SAAUC,GAAOC,EAAgBN,EAAQK,EAAKF,EAAOE,OAAY1B,OAAO4B,0BAA4B5B,OAAO6B,iBAAiBR,EAAQrB,OAAO4B,0BAA0BJ,IAAWhB,EAAQR,OAAOwB,IAASC,SAAQ,SAAUC,GAAO1B,OAAOC,eAAeoB,EAAQK,EAAK1B,OAAOgB,yBAAyBQ,EAAQE,OAAa,OAAOL,EAEjf,SAASS,EAAyBN,EAAQO,GAAY,GAAc,MAAVP,EAAgB,MAAO,GAAI,IAAkEE,EAAKJ,EAAnED,EAEzF,SAAuCG,EAAQO,GAAY,GAAc,MAAVP,EAAgB,MAAO,GAAI,IAA2DE,EAAKJ,EAA5DD,EAAS,GAAQW,EAAahC,OAAOW,KAAKa,GAAqB,IAAKF,EAAI,EAAGA,EAAIU,EAAWtK,OAAQ4J,IAAOI,EAAMM,EAAWV,GAAQS,EAASE,QAAQP,IAAQ,IAAaL,EAAOK,GAAOF,EAAOE,IAAQ,OAAOL,EAFxMa,CAA8BV,EAAQO,GAAuB,GAAI/B,OAAOY,sBAAuB,CAAE,IAAIuB,EAAmBnC,OAAOY,sBAAsBY,GAAS,IAAKF,EAAI,EAAGA,EAAIa,EAAiBzK,OAAQ4J,IAAOI,EAAMS,EAAiBb,GAAQS,EAASE,QAAQP,IAAQ,GAAkB1B,OAAOD,UAAUqC,qBAAqBC,KAAKb,EAAQE,KAAgBL,EAAOK,GAAOF,EAAOE,IAAU,OAAOL,EAIne,SAASiB,EAAgBC,EAAUC,GAAe,KAAMD,aAAoBC,GAAgB,MAAM,IAAIC,UAAU,qCAEhH,SAASC,EAAkBrB,EAAQtI,GAAS,IAAK,IAAIuI,EAAI,EAAGA,EAAIvI,EAAMrB,OAAQ4J,IAAK,CAAE,IAAIqB,EAAa5J,EAAMuI,GAAIqB,EAAW1B,WAAa0B,EAAW1B,aAAc,EAAO0B,EAAWC,cAAe,EAAU,UAAWD,IAAYA,EAAWE,UAAW,GAAM7C,OAAOC,eAAeoB,EAAQsB,EAAWjB,IAAKiB,IAM7S,SAASG,EAAgBC,EAAGC,GAA+G,OAA1GF,EAAkB9C,OAAOiD,gBAAkB,SAAyBF,EAAGC,GAAsB,OAAjBD,EAAEG,UAAYF,EAAUD,GAAaD,EAAgBC,EAAGC,GAErK,SAASG,EAAaC,GAAW,IAAIC,EAMrC,WAAuC,GAAuB,qBAAZC,UAA4BA,QAAQC,UAAW,OAAO,EAAO,GAAID,QAAQC,UAAUC,KAAM,OAAO,EAAO,GAAqB,oBAAVC,MAAsB,OAAO,EAAM,IAAsF,OAAhFC,QAAQ3D,UAAU4D,QAAQtB,KAAKiB,QAAQC,UAAUG,QAAS,IAAI,iBAAyB,EAAQ,MAAO1P,GAAK,OAAO,GAN9P4P,GAA6B,OAAO,WAAkC,IAAsCC,EAAlCC,EAAQC,EAAgBX,GAAkB,GAAIC,EAA2B,CAAE,IAAIW,EAAYD,EAAgBE,MAAMnE,YAAa+D,EAASP,QAAQC,UAAUO,EAAOvC,UAAWyC,QAAqBH,EAASC,EAAM3C,MAAM8C,KAAM1C,WAAc,OAAO2C,EAA2BD,KAAMJ,IAE5Z,SAASK,EAA2BC,EAAM9B,GAAQ,GAAIA,IAA2B,WAAlB3C,EAAQ2C,IAAsC,oBAATA,GAAwB,OAAOA,EAAa,QAAa,IAATA,EAAmB,MAAM,IAAII,UAAU,4DAA+D,OAAO2B,EAAuBD,GAExR,SAASC,EAAuBD,GAAQ,QAAa,IAATA,EAAmB,MAAM,IAAIE,eAAe,6DAAgE,OAAOF,EAI/J,SAASJ,EAAgBhB,GAAwJ,OAAnJgB,EAAkB/D,OAAOiD,eAAiBjD,OAAOsE,eAAiB,SAAyBvB,GAAK,OAAOA,EAAEG,WAAalD,OAAOsE,eAAevB,IAAcgB,EAAgBhB,GAExM,SAASpB,EAAgBhC,EAAK+B,EAAKzC,GAAiK,OAApJyC,KAAO/B,EAAOK,OAAOC,eAAeN,EAAK+B,EAAK,CAAEzC,MAAOA,EAAOgC,YAAY,EAAM2B,cAAc,EAAMC,UAAU,IAAkBlD,EAAI+B,GAAOzC,EAAgBU,EAE3M,IAAIO,EAA+B,SAAUqE,IAhB7C,SAAmBC,EAAUC,GAAc,GAA0B,oBAAfA,GAA4C,OAAfA,EAAuB,MAAM,IAAIhC,UAAU,sDAAyD+B,EAASzE,UAAYC,OAAO0E,OAAOD,GAAcA,EAAW1E,UAAW,CAAED,YAAa,CAAEb,MAAOuF,EAAU3B,UAAU,EAAMD,cAAc,KAAW5C,OAAOC,eAAeuE,EAAU,YAAa,CAAE3B,UAAU,IAAc4B,GAAY3B,EAAgB0B,EAAUC,GAiBpbE,CAAUzE,EAAiBqE,GAE3B,IArBoB/B,EAAaoC,EAAYC,EAqBzCC,EAAS3B,EAAajD,GAE1B,SAASA,IACP,IAAI6E,EAEJzC,EAAgB2B,KAAM/D,GAEtB,IAAK,IAAI8E,EAAOzD,UAAU7J,OAAQuN,EAAO,IAAIC,MAAMF,GAAOG,EAAO,EAAGA,EAAOH,EAAMG,IAC/EF,EAAKE,GAAQ5D,UAAU4D,GA0BzB,OArBAxD,EAAgByC,EAFhBW,EAAQD,EAAOzC,KAAKlB,MAAM2D,EAAQ,CAACb,MAAMmB,OAAOH,KAED,WAAW,SAAUI,GAClE,IAAIC,EAAcP,EAAMhM,MACpBzG,EAAOgT,EAAYhT,KACnBoC,EAAS4Q,EAAY5Q,OACrBiH,EAAW2J,EAAY3J,SACvBpJ,EAAU+S,EAAY/S,QAEtBgT,EAAOpF,EAAgB,QAAEqF,SAASC,KAAK9J,GAEvCkI,GAAS,EAAIxD,EAA0B,SAAG/N,EAAMC,GAEhDmC,GACFA,EAAOpC,EAAMuR,GAIX0B,GAAQA,EAAKxM,OAAuC,oBAAvBwM,EAAKxM,MAAM2M,SAC1CH,EAAKxM,MAAM2M,QAAQL,MAIhBN,EAqBT,OA5EoBvC,EA0DPtC,GA1DoB0E,EA0DH,CAAC,CAC7BlD,IAAK,SACLzC,MAAO,WACL,IAAI0G,EAAe1B,KAAKlL,MAIpB4C,GAHQgK,EAAarT,KACXqT,EAAajR,OACZiR,EAAapT,QACboT,EAAahK,UACxB5C,EAAQ+I,EAAyB6D,EAAcrF,GAE/CiF,EAAOpF,EAAgB,QAAEqF,SAASC,KAAK9J,GAE3C,OAAoBwE,EAAgB,QAAEyF,aAAaL,EAAMnE,EAAcA,EAAc,GAAIrI,GAAQ,GAAI,CACnG2M,QAASzB,KAAKyB,gBAvEwDhD,EAAkBF,EAAYzC,UAAW6E,GAAiBC,GAAanC,EAAkBF,EAAaqC,GAAc7E,OAAOC,eAAeuC,EAAa,YAAa,CAAEK,UAAU,IA4ErP3C,EA1D0B,CA2DjCC,EAAgB,QAAE0F,eAEpBxT,EAAQ6N,gBAAkBA,EAE1ByB,EAAgBzB,EAAiB,eAAgB,CAC/CxL,YAAQoR,EACRvT,aAASuT,K,mCC9GX,IACI5F,EADW,EAAQ,OACQA,gBAE/BA,EAAgBA,gBAAkBA,EAClC9N,EAAOC,QAAU6N,G,kFCCb6F,EAAwC,qBAAXxR,OAAyB,EAAAyR,UAAY,EAAAC,gBCNtE,SAASC,EAAatP,GAClB,IAAIuP,ECSR,SAAqBlH,EAAOmH,QACG,IAAvBA,IAAiCA,GAAqB,GAC1D,IAAIC,EAAiBD,EAAqBL,EAAsB,EAAAC,UAC5DM,GAAM,IAAAC,QAAOtH,GAIjB,OAHAoH,GAAe,WACXC,EAAIE,QAAUvH,KAEXqH,EDhBQG,CAAY7P,GAU3B,OATA,WAEI,IADA,IAAIqO,EAAO,GACFyB,EAAK,EAAGA,EAAKnF,UAAU7J,OAAQgP,IACpCzB,EAAKyB,GAAMnF,UAAUmF,GAEO,oBAArBP,EAASK,SAChBL,EAASK,QAAQrF,MAAMgF,EAAUlB,I,eEG7C,SAAS0B,EAAuBC,EAAWhQ,EAAUiQ,EAAiBC,QAC1C,IAApBD,IAA8BA,EAAkB,SAC7B,IAAnBC,IAA6BA,GAAiB,GCGtD,SAAsCC,EAAcH,EAAWhQ,EAAUiQ,EAAiBG,EAAMF,QACpE,IAApBD,IAA8BA,EAAkB,SACvC,IAATG,IAAmBA,GAAO,QACP,IAAnBF,IAA6BA,GAAiB,GAClD,IAAIG,EAAgBf,EAAatP,IACZkQ,EAAiBf,EAAsB,EAAAC,YAC7C,WAEX,OADA,EAAAkB,EAAA,GAAgC,qBAAjBH,EAA8B,8EACjB,qBAAjBA,GAAgCC,GACvCD,EAAahT,iBAAiB6S,EAAWK,EAAeJ,GACjD,WACHE,EAAaI,oBAAoBP,EAAWK,EAAeJ,KAG5D,eACR,CAACD,EAAWC,IDjBfO,CAA6B7S,OAAQqS,EAAWhQ,EAAUiQ,GAAiB,EAAMC,K,kBEdrF1U,EAAOC,QAAU,WACf,IAAIO,EAAYG,SAASE,eACzB,IAAKL,EAAUyU,WACb,OAAO,aAKT,IAHA,IAAIC,EAASvU,SAASwU,cAElBC,EAAS,GACJlG,EAAI,EAAGA,EAAI1O,EAAUyU,WAAY/F,IACxCkG,EAAOtG,KAAKtO,EAAU6U,WAAWnG,IAGnC,OAAQgG,EAAOI,QAAQC,eACrB,IAAK,QACL,IAAK,WACHL,EAAOM,OACP,MAEF,QACEN,EAAS,KAKb,OADA1U,EAAU8C,kBACH,WACc,UAAnB9C,EAAUiV,MACVjV,EAAU8C,kBAEL9C,EAAUyU,YACbG,EAAO/F,SAAQ,SAAS9O,GACtBC,EAAUkC,SAASnC,MAIvB2U,GACAA,EAAOQ,W,kHChCI,SAASC,EAASC,GAC/B,OAAO,OAAeA,KAAQ,OAAgBA,KAAQ,OAA2BA,KAAQ","debug_id":"18851528-7616-5c61-b23c-e5b90c79cf71"}