{"version":3,"file":"static/chunks/28376-64f283ad8f6c08c7.js","sources":["webpack://_N_E/./src/LegacyApp/client/components/dropdown/dropdown.style.ts","webpack://_N_E/./src/LegacyApp/client/store/dropdown/thunks/dropdownGet.thunk.ts","webpack://_N_E/./src/LegacyApp/client/components/dropdown/dropdown.tsx","webpack://_N_E/./src/LegacyApp/client/components/provablyFair/implementation/implementation.style.js","webpack://_N_E/./src/LegacyApp/client/components/provablyFair/serverSeedInput/serverSeedInput.jsx","webpack://_N_E/./src/LegacyApp/client/components/provablyFair/serverSeedInput/serverSeedInput.container.ts","webpack://_N_E/./src/LegacyApp/client/components/settingsLayout/SettingsLayout.context.ts","webpack://_N_E/./src/LegacyApp/client/components/settingsLayout/SettingsLayout.desktop.tsx","webpack://_N_E/./src/LegacyApp/client/components/settingsLayout/SettingsLayout.mobile.tsx","webpack://_N_E/./src/LegacyApp/client/components/settingsLayout/settingsLayout.tsx","webpack://_N_E/./src/LegacyApp/client/components/slideDownBox/slideDownBox.style.ts","webpack://_N_E/./src/LegacyApp/client/components/slideDownBox/slideDownBox.tsx","webpack://_N_E/./src/LegacyApp/client/modules/app/checkHotkeysAllowed.ts","webpack://_N_E/./src/LegacyApp/client/components/provablyFair/clientSeedInput/clientSeedInput.jsx","webpack://_N_E/./src/LegacyApp/client/components/provablyFair/clientSeedInput/clientSeedInput.container.ts","webpack://_N_E/./src/LegacyApp/client/pages/provablyFair.page/provablyFair.page.tsx","webpack://_N_E/./src/LegacyApp/client/components/provablyFair/session/session.jsx","webpack://_N_E/./src/LegacyApp/client/components/provablyFair/session/session.container.ts","webpack://_N_E/./src/LegacyApp/client/components/provablyFair/implementation/config.ts","webpack://_N_E/./src/LegacyApp/client/components/provablyFair/implementation/GAMES_LIST.tsx","webpack://_N_E/./src/LegacyApp/client/components/provablyFair/implementation/implementation.container.ts","webpack://_N_E/./src/LegacyApp/client/components/provablyFair/implementation/implementation.tsx","webpack://_N_E/./src/LegacyApp/client/components/provablyFair/overview/index.tsx","webpack://_N_E/./src/LegacyApp/client/components/provablyFair/verification/verification.container.ts","webpack://_N_E/./src/LegacyApp/client/components/provablyFair/verification/verification.tsx","webpack://_N_E/./src/LegacyApp/client/components/provablyFair/verification/getResultFunction.tsx","webpack://_N_E/./src/LegacyApp/client/pages/provablyFair.page/ProvablyFair.global.styled.ts","webpack://_N_E/./src/LegacyApp/client/store.async/seed/seed.actions.ts","webpack://_N_E/./src/LegacyApp/client/store.async/seed/seed.constants.ts","webpack://_N_E/./src/LegacyApp/client/store/dropdown/dropdown.actions.ts","webpack://_N_E/./src/LegacyApp/client/store/dropdown/methods/dropdownContentEqualityFn.ts","webpack://_N_E/./src/LegacyApp/client/store/dropdown/selectors/useDropdownActiveSelector.ts","webpack://_N_E/./src/common/components/storeControllers/GamesStoreController.tsx","webpack://_N_E/./src/common/components/storeControllers/SeedStoreController.tsx","webpack://_N_E/./src/common/hooks/useOnUnmount.ts","webpack://_N_E/./src/common/methods/pageScrollTo.ts","webpack://_N_E/./src/modules/games/Game/store/gameAutobet/gameAutobet.selectors.ts","webpack://_N_E/./src/modules/games/KenoGame/components/KenoNumberPanel/KenoAutoBetNumberPanel.tsx","webpack://_N_E/./src/modules/games/KenoGame/components/KenoResult/KenoResult.tsx","webpack://_N_E/./src/modules/games/LimboGame/LimboCounter/LimboCounter.jsx","webpack://_N_E/./src/modules/games/PlinkoGame/components/MuliplierBoxes/MultiplierBox.tsx","webpack://_N_E/./src/modules/games/PlinkoGame/components/MuliplierBoxes/MultiplierBoxes.tsx","webpack://_N_E/./src/modules/games/PlinkoGame/components/MuliplierBoxes/multipliers.ts","webpack://_N_E/./src/modules/games/PlinkoGame/components/PlinkoResult/index.tsx","webpack://_N_E/./src/modules/games/PlinkoGame/components/playground/PixiJS/methods/getBallColor.ts","webpack://_N_E/./src/modules/games/PlinkoGame/components/playground/config/constants.ts","webpack://_N_E/./src/modules/games/PlinkoGame/components/playground/config/index.ts"],"sourceRoot":"","sourcesContent":["import styled, { css } from 'styled-components';\nimport { DropdownProps } from '@legacyApp/client/components/dropdown/dropdown';\nimport classnames from 'classnames';\nimport { boxNoHeight } from '../../modules/style/defaults';\n\nconst getProps = (props: { localTheme: DropdownProps['localTheme'] }) => {\n\tif (!props.localTheme || !Object.keys(props.localTheme).length) {\n\t\treturn '';\n\t}\n\tif (props.localTheme && props.localTheme.default) {\n\t\treturn css`\n\t\t\t.button {\n\t\t\t\tfont-family: ${(props) => props.theme.text.fonts.Bold};\n\t\t\t\theight: unset;\n\t\t\t\tmargin: 0 !important;\n\t\t\t\tpadding: 7px 15px;\n\n\t\t\t\t&.icon-wrapper {\n\t\t\t\t\tpadding-right: 30px;\n\n\t\t\t\t\ti,\n\t\t\t\t\tsvg {\n\t\t\t\t\t\tright: 10px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t`;\n\t}\n};\n\nexport const DropdownStyle = styled.div.attrs<{\n\tclassName: string;\n\tlocalTheme: DropdownProps['localTheme'];\n}>((props) => ({\n\tclassName: classnames('dropdown', props.className),\n}))<{\n\tclassName: string;\n\tlocalTheme: DropdownProps['localTheme'];\n}>`\n\t${boxNoHeight};\n\tposition: relative;\n\twidth: unset;\n\tpadding-bottom: 7px;\n\tmargin-bottom: -7px;\n\n\t* {\n\t\tcursor: pointer !important;\n\t}\n\n\t&[data-id*='when-name'] {\n\t\t* {\n\t\t\ttext-transform: capitalize;\n\t\t}\n\t}\n\n\t${(props) =>\n\t\tprops.localTheme?.error\n\t\t\t? css`\n\t\t\t\t\tbutton:first-of-type {\n\t\t\t\t\t\tborder: 1px solid red;\n\t\t\t\t\t}\n\t\t\t  `\n\t\t\t: null}\n\n\t${getProps}\n`;\n","import { AppThunk } from '@legacyApp/types/store/ThunkAction';\nimport { DropdownContentData } from '@legacyApp/client/store/dropdown/dropdown.reducer';\n\nexport const dropdownGetThunk = (id: string): AppThunk<DropdownContentData> => {\n\treturn (dispatch, getState) => {\n\t\tconst state = getState();\n\t\treturn state.dropdown.content[id];\n\t};\n};\n","import React, { FC, PropsWithChildren, useCallback, useEffect } from 'react';\nimport { Button } from '@ui/button';\nimport { DropdownArrow } from '@ui/dropdown/DropdownArrow';\nimport { InputStyleType } from '@uiTypes/InputStyleType';\nimport { ButtonStyleType } from '@uiTypes/ButtonStyleType';\nimport { dropdownGetThunk } from '@legacyApp/client/store/dropdown/thunks/dropdownGet.thunk';\nimport { useOnUnmount } from '@common/hooks/useOnUnmount';\nimport { useDispatchCallback } from '@legacyApp/hooks/store/useAppDispatch';\nimport { DropdownContentData } from '@legacyApp/client/store/dropdown/dropdown.reducer';\nimport { useDropdownActiveSelector } from '@legacyApp/client/store/dropdown/selectors/useDropdownActiveSelector';\nimport { dropdownContentEqualityFn } from '@legacyApp/client/store/dropdown/methods/dropdownContentEqualityFn';\nimport {\n\tdropdownAdd,\n\tdropdownDelete,\n\tdropdownToggle,\n} from '../../store/dropdown/dropdown.actions';\nimport { Trans } from '../../modules/translation/translate';\nimport { DropdownStyle } from './dropdown.style';\n\nexport interface DropdownProps extends DropdownContentData {\n\tactive?: string;\n\tid: string; // isRequired\n\thelp?: any;\n\tlocalTheme?: {\n\t\terror?: boolean;\n\t\tdefault?: boolean;\n\t};\n}\n\nexport const Dropdown: FC<PropsWithChildren<DropdownProps>> = (props) => {\n\tconst active = useDropdownActiveSelector(props.id);\n\tconst close = useDispatchCallback(dropdownDelete);\n\tconst add = useDispatchCallback(dropdownAdd);\n\tconst toggle = useDispatchCallback(dropdownToggle);\n\tconst get = useDispatchCallback(dropdownGetThunk);\n\n\tconst addContent = useCallback(() => {\n\t\tif (!props.items) {\n\t\t\treturn;\n\t\t}\n\t\tconst lastContent: DropdownContentData = get(props.id);\n\t\tconst content: DropdownContentData = {\n\t\t\tscrollElement: props.scrollElement,\n\t\t\titems: props.items,\n\t\t\ttitle: props.title,\n\t\t\tonClick: props.onClick,\n\t\t\twidth: props.width,\n\t\t\tclassName: props.className,\n\t\t\tcss: props.css,\n\t\t\ttrans: props.trans,\n\t\t\titemElement: props.itemElement,\n\t\t};\n\t\tif (lastContent && dropdownContentEqualityFn(content, lastContent)) {\n\t\t\treturn;\n\t\t}\n\t\tadd({\n\t\t\tid: props.id,\n\t\t\tcontent: content,\n\t\t});\n\t}, [add, get, props]);\n\n\tconst toggleList = () => {\n\t\tif (props.items) {\n\t\t\ttoggle({\n\t\t\t\tid: props.id,\n\t\t\t\tbool: !active,\n\t\t\t});\n\t\t}\n\t};\n\n\tuseOnUnmount(() => {\n\t\tif (props.items) {\n\t\t\tclose(props.id);\n\t\t}\n\t});\n\n\tuseEffect(() => {\n\t\taddContent();\n\t}, [addContent]);\n\n\treturn (\n\t\t<DropdownStyle\n\t\t\tlocalTheme={props.localTheme}\n\t\t\tdata-id={props.id}\n\t\t\tonClick={!props.children ? undefined : toggleList}\n\t\t\tclassName={props.className}\n\t\t>\n\t\t\t{props.children ? (\n\t\t\t\tprops.children\n\t\t\t) : (\n\t\t\t\t<Button\n\t\t\t\t\tonClick={toggleList}\n\t\t\t\t\tname=\"dropdown-active\"\n\t\t\t\t\tstyleType={ButtonStyleType.SECONDARY}\n\t\t\t\t\tborderType={InputStyleType.SQUARE}\n\t\t\t\t\tclassName=\"icon-wrapper\"\n\t\t\t\t\tlabel={\n\t\t\t\t\t\tprops.trans ? (\n\t\t\t\t\t\t\t<Trans\n\t\t\t\t\t\t\t\tlabel={props.active}\n\t\t\t\t\t\t\t\tnamespace={\n\t\t\t\t\t\t\t\t\ttypeof props.trans === 'boolean' ? undefined : props.trans\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\t\tprops.active\n\t\t\t\t\t\t)\n\t\t\t\t\t}\n\t\t\t\t>\n\t\t\t\t\t{!!props.items && <DropdownArrow />}\n\t\t\t\t</Button>\n\t\t\t)}\n\t\t\t{props.help}\n\t\t</DropdownStyle>\n\t);\n};\n","import styled from 'styled-components';\nimport { PrismLight as SyntaxHighlighter } from 'react-syntax-highlighter';\nimport { borderRadius } from '../../../modules/style/defaults';\nimport { fontSize } from '../../../modules/style/mixins/fontSize';\n\nexport const SyntaxStyle = styled(SyntaxHighlighter)`\n\tbackground: rgb(13 20 33) !important;\n\tborder: 3px solid rgb(8 35 72) !important;\n\tborder-radius: ${(props) => props.theme.layout.borderRadius}!important;\n\tbox-shadow: unset !important;\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n\t${fontSize({\n\t\timportant: true,\n\t\tsize: '10px',\n\t\tsizeDesktop: '12px',\n\t})};\n\n\tcode {\n\t\t${fontSize({\n\t\t\timportant: true,\n\t\t\tsize: '10px',\n\t\t\tsizeDesktop: '12px',\n\t\t})};\n\t\t${borderRadius};\n\t\tmargin-left: -20px;\n\t\tpadding: 10px;\n\n\t\t@media (min-width: ${(props) => props.theme.media.minWidthDesktop}) {\n\t\t\tpadding: 15px;\n\t\t}\n\t}\n`;\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport { Button } from '@ui/button';\nimport { InputWrapperContainer } from '../../input/inputWrapper.container';\nimport { trans } from '../../../modules/translation/translate';\nimport SeedStoreController from '../../../../../common/components/storeControllers/SeedStoreController';\nimport { Loader } from '../../loader/loader';\n\nclass ServerSeedInput extends React.PureComponent {\n\tstatic propTypes = {\n\t\tvalue: PropTypes.any,\n\t\tonClick: PropTypes.func,\n\t\tchangeAsRedirect: PropTypes.bool,\n\t\tpauseAutobet: PropTypes.func,\n\t\tautobetPaused: PropTypes.bool,\n\t\tsetConfirm: PropTypes.func,\n\t\tgoTo: PropTypes.func,\n\t};\n\n\tcomponentDidMount() {\n\t\tthis.props.pauseAutobet(true);\n\t}\n\n\tcomponentWillUnmount() {\n\t\tthis.props.pauseAutobet(false);\n\t}\n\n\tonClick = () => {\n\t\tif (this.props.changeAsRedirect) {\n\t\t\treturn this.props.goTo('provablyFair?tab=session');\n\t\t}\n\t\tif (this.props.autobetPaused) {\n\t\t\treturn this.props.setConfirm({\n\t\t\t\tcallback: this.props.onClick,\n\t\t\t\tquestion: trans({\n\t\t\t\t\tlabel:\n\t\t\t\t\t\t'I am aware that changing my server seed hashed will affect next bets in current autobet session',\n\t\t\t\t}),\n\t\t\t});\n\t\t}\n\t\tthis.props.onClick();\n\t};\n\n\trender() {\n\t\treturn (\n\t\t\t<>\n\t\t\t\t<SeedStoreController />\n\t\t\t\t<InputWrapperContainer\n\t\t\t\t\tvalue={this.props.value}\n\t\t\t\t\tname={'server-seed-hashed'}\n\t\t\t\t\tlabel={trans({ label: 'Current server seed (hashed)' })}\n\t\t\t\t\tisDisabled={true}\n\t\t\t\t\tinputButtons={[\n\t\t\t\t\t\t<Button\n\t\t\t\t\t\t\tkey={1}\n\t\t\t\t\t\t\tname=\"generate-new-server-seed\"\n\t\t\t\t\t\t\tonClick={this.onClick}\n\t\t\t\t\t\t\tlabel={trans({ label: 'Change' })}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t<Loader loader=\"reloadServerSeed\" />\n\t\t\t\t\t\t</Button>,\n\t\t\t\t\t]}\n\t\t\t\t/>\n\t\t\t</>\n\t\t);\n\t}\n}\n\nexport { ServerSeedInput };\n","import { connect } from 'react-redux';\nimport { autobetPause } from '@modules/games/Game/store/gameAutobet/gameAutobet.actions';\nimport { closeModal } from '@modules/modals/store/modal.actions';\nimport { setConfirm } from '../../../store/confirm/confirm.actions';\nimport { appGoTo } from '../../../store/app/app.actions';\nimport { seedRefreshServer } from '../../../store.async/seed/seed.actions';\nimport { ServerSeedInput } from './serverSeedInput';\n\nconst mapStateToProps = (state) => {\n\treturn {\n\t\tvalue: state.seed && state.seed.serverHashed,\n\t\tautobetPaused: state.gameAutobet?.pause,\n\t};\n};\n\nconst mapDispatchToProps = (dispatch) => {\n\treturn {\n\t\tonClick: () => dispatch(seedRefreshServer()),\n\t\tpauseAutobet: (bool) => dispatch(autobetPause(bool)),\n\t\tsetConfirm: (data) => dispatch(setConfirm(data)),\n\t\tgoTo: (id, validUrl) => dispatch([closeModal(), appGoTo(id, validUrl)]),\n\t};\n};\n\nconst ServerSeedInputContainer = connect(\n\tmapStateToProps,\n\tmapDispatchToProps,\n)(ServerSeedInput);\n\nexport default ServerSeedInputContainer;\n","import { createContext } from 'react';\nimport { SettingsLayoutSection } from './settingsLayout';\n\nexport type SettingsLayoutContextGetSectionContent = (\n\tid: string,\n\tpanelName: () => string,\n\tisNarrow?: boolean,\n) => JSX.Element;\n\nexport const SettingsLayoutContext = createContext<{\n\tsections: SettingsLayoutSection[];\n\tactiveId: string;\n\tactiveTabData: SettingsLayoutSection;\n\thandleChangeSection: (section: SettingsLayoutSection) => void;\n\tgetSectionContent: SettingsLayoutContextGetSectionContent;\n}>({\n\tsections: [],\n\tactiveId: '',\n\tactiveTabData: null,\n\thandleChangeSection: null,\n\tgetSectionContent: null,\n});\n","import { FC, useContext } from 'react';\nimport { useUserIsLogged } from '@common/selectors/user.selectors';\nimport { trans } from '../../modules/translation/translate';\nimport { NotificationIcon } from '../notificationIcon/NotificationIcon';\nimport { SettingsLayoutContext } from './SettingsLayout.context';\n\nexport const SettingsLayoutDesktop: FC = () => {\n\tconst {\n\t\tsections,\n\t\tactiveId,\n\t\tactiveTabData,\n\t\tgetSectionContent,\n\t\thandleChangeSection,\n\t} = useContext(SettingsLayoutContext);\n\tconst isLogged = useUserIsLogged();\n\n\treturn (\n\t\t<div className=\"settings\">\n\t\t\t<div className=\"settings__menu\">\n\t\t\t\t{sections.map((el) => {\n\t\t\t\t\tif ((el.isActive && !el.isActive()) || (!isLogged && el.isLogged)) {\n\t\t\t\t\t\treturn null;\n\t\t\t\t\t}\n\t\t\t\t\tconst className =\n\t\t\t\t\t\tactiveId === el.id ? 'active settings__button' : 'settings__button';\n\t\t\t\t\treturn (\n\t\t\t\t\t\t<span\n\t\t\t\t\t\t\tkey={el.id}\n\t\t\t\t\t\t\tclassName={`${className} ${el.id}`}\n\t\t\t\t\t\t\tonClick={() => handleChangeSection(el)}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t<span className=\"relative\">\n\t\t\t\t\t\t\t\t{el.name && <>{trans({ label: el.name() })} </>}\n\t\t\t\t\t\t\t\t{el.nameComponent && <>{el.nameComponent()} </>}\n\t\t\t\t\t\t\t\t{!!el.notification && (\n\t\t\t\t\t\t\t\t\t<NotificationIcon notification={el.notification} />\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t</span>\n\t\t\t\t\t\t</span>\n\t\t\t\t\t);\n\t\t\t\t})}\n\t\t\t</div>\n\t\t\t{activeId &&\n\t\t\t\tgetSectionContent(\n\t\t\t\t\tactiveId,\n\t\t\t\t\tactiveTabData?.panelTitle,\n\t\t\t\t\tactiveTabData?.isNarrow,\n\t\t\t\t)}\n\t\t</div>\n\t);\n};\n","import { FC, useCallback, useContext } from 'react';\nimport { useUserIsLogged } from '@common/selectors/user.selectors';\nimport { SlideDownBox } from '../slideDownBox/slideDownBox';\nimport { trans } from '../../modules/translation/translate';\nimport { NotificationIcon } from '../notificationIcon/NotificationIcon';\nimport { SettingsLayoutContext } from './SettingsLayout.context';\nimport { SettingsLayoutSection } from './settingsLayout';\n\nconst SlideDownBoxElement: FC<SettingsLayoutSection> = (section) => {\n\tconst {\n\t\tid,\n\t\tname,\n\t\tnameComponent,\n\t\tnotification,\n\t\tisActive,\n\t\tisLogged,\n\t\tisNarrow,\n\t} = section;\n\n\tconst { activeId, getSectionContent, handleChangeSection } = useContext(\n\t\tSettingsLayoutContext,\n\t);\n\n\tconst isLogged_ = useUserIsLogged();\n\n\tconst content = useCallback(\n\t\t() => getSectionContent(id, undefined, isNarrow),\n\t\t[getSectionContent, id, isNarrow],\n\t);\n\n\tconst callback = useCallback(\n\t\t(isVisible) => {\n\t\t\tif (isVisible) {\n\t\t\t\thandleChangeSection(section);\n\t\t\t}\n\t\t},\n\t\t[section, handleChangeSection],\n\t);\n\n\treturn (isActive && !isActive()) || (!isLogged_ && isLogged) ? null : (\n\t\t<SlideDownBox\n\t\t\tkey={id}\n\t\t\tname={`settings-${id}`}\n\t\t\tTitle={() => (\n\t\t\t\t<span\n\t\t\t\t\tclassName={`settings__button ${id} ${\n\t\t\t\t\t\tid === activeId ? 'active' : ''\n\t\t\t\t\t}`}\n\t\t\t\t>\n\t\t\t\t\t<span className=\"relative\">\n\t\t\t\t\t\t{name && <>{trans({ label: name() })} </>}\n\t\t\t\t\t\t{nameComponent && <>{nameComponent()} </>}\n\t\t\t\t\t\t{!!notification && <NotificationIcon notification={notification} />}\n\t\t\t\t\t</span>\n\t\t\t\t</span>\n\t\t\t)}\n\t\t\tContent={content}\n\t\t\tcallback={callback}\n\t\t\tisContentInitVisible={id === activeId}\n\t\t\tisContentVisible={id === activeId}\n\t\t/>\n\t);\n};\n\nexport const SettingsLayoutMobile: FC = () => {\n\tconst { sections } = useContext(SettingsLayoutContext);\n\treturn <>{sections.map(SlideDownBoxElement)}</>;\n};\n","import { FC, useCallback, useEffect, useState } from 'react';\nimport classnames from 'classnames';\nimport { useUserIsLogged } from '@common/selectors/user.selectors';\nimport {\n\tuseAppInitialized,\n\tuseAppMobile,\n} from '@common/selectors/app.selectors';\nimport { useRouterQueryTab } from '@common/selectors/router.selectors';\nimport { openModal } from '@modules/modals/store/modal.actions';\nimport { ModalIdType } from '@common/constants/modal/ids.modal.constants';\nimport { useAppDispatch } from '../../../hooks/store/useAppDispatch';\nimport { updateUrlQuery } from '../../store/app/app.actions';\nimport { trans } from '../../modules/translation/translate';\nimport { SettingsLayoutDesktop } from './SettingsLayout.desktop';\nimport { SettingsLayoutMobile } from './SettingsLayout.mobile';\nimport { SettingsLayoutContext } from './SettingsLayout.context';\n\nexport interface SettingsLayoutSection {\n\tid: string;\n\tname?: () => string;\n\tnameComponent?: any;\n\tnotification?: string;\n\tisActive?: () => boolean;\n\tisLogged?: boolean;\n\tisNarrow?: boolean;\n\tonClick?: ({ el }: { el: SettingsLayoutSection }) => void;\n\tmodal?: boolean;\n\tpanelTitle?: () => string;\n}\n\nexport interface SettingsLayoutProps {\n\tsections: SettingsLayoutSection[];\n\tdefaultTab?: string;\n\tgetSectionContent: any;\n}\n\nexport const SettingsLayout: FC<SettingsLayoutProps> = ({\n\tsections,\n\tdefaultTab,\n\tgetSectionContent,\n}) => {\n\tconst [activeId, setActiveId] = useState('');\n\tconst [activeTabData, setActiveTabData] =\n\t\tuseState<SettingsLayoutSection>(null);\n\n\tconst dispatch = useAppDispatch();\n\n\tconst isLogged = useUserIsLogged();\n\tconst isMobile = useAppMobile();\n\tconst routerQueryTab = useRouterQueryTab();\n\tconst isInitialized = useAppInitialized();\n\n\tconst checkActiveTab_ = useCallback(() => {\n\t\tif (!sections.some((section) => section.id === routerQueryTab)) {\n\t\t\tdispatch(updateUrlQuery({ tab: defaultTab || sections?.[0]?.id }));\n\t\t}\n\t}, [defaultTab, dispatch, routerQueryTab, sections]);\n\n\tconst getSectionContent_ = useCallback(\n\t\t(id: string, panelName: () => string, isNarrow?: boolean) => {\n\t\t\tconst panelName_ = panelName ? (\n\t\t\t\t<h3 className=\"text-style-xl-medium\">\n\t\t\t\t\t{trans({ label: panelName() })}\n\t\t\t\t</h3>\n\t\t\t) : null;\n\t\t\tconst content = getSectionContent(id);\n\t\t\tif (!content) {\n\t\t\t\treturn null;\n\t\t\t}\n\t\t\treturn (\n\t\t\t\t<div\n\t\t\t\t\tkey={id}\n\t\t\t\t\tclassName={classnames(`settings__panel settings__panel--${id}`, {\n\t\t\t\t\t\t'settings__panel--narrow-padding': isNarrow,\n\t\t\t\t\t})}\n\t\t\t\t>\n\t\t\t\t\t{panelName_}\n\t\t\t\t\t{content}\n\t\t\t\t</div>\n\t\t\t);\n\t\t},\n\t\t[getSectionContent],\n\t);\n\n\tconst handleChangeSection_ = useCallback(\n\t\t(section: SettingsLayoutSection) => {\n\t\t\tif (section.onClick) {\n\t\t\t\treturn section.onClick({ el: section });\n\t\t\t}\n\t\t\tif (section.modal) {\n\t\t\t\tdispatch(openModal(section.id as ModalIdType, 'SettingsLayout'));\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tdispatch(updateUrlQuery({ tab: section.id }));\n\t\t\treturn;\n\t\t},\n\t\t[dispatch],\n\t);\n\n\tconst getSectionData_ = useCallback(\n\t\t(id) => {\n\t\t\t// console.log('settingsLayout - getSectionData_', { sections, id });\n\t\t\treturn sections.find((section) => section.id === id);\n\t\t},\n\t\t[sections],\n\t);\n\n\tconst getSections_ = useCallback(() => {\n\t\tlet activeId_ = '';\n\t\tlet activeTabData_: SettingsLayoutSection = null;\n\t\tif (isInitialized) {\n\t\t\tactiveTabData_ = getSectionData_(routerQueryTab);\n\t\t\tactiveId_ = activeTabData_?.id;\n\t\t\tif (!activeTabData_ || (activeTabData_?.isLogged && !isLogged)) {\n\t\t\t\tactiveTabData_ = getSectionData_(defaultTab || sections?.[0]?.id);\n\t\t\t\tactiveId_ = activeTabData_?.id;\n\t\t\t\tupdateUrlQuery({ tab: activeId_ });\n\t\t\t}\n\t\t\t// console.log('settingsLayout - getSections', {\n\t\t\t// \tactiveTabData_,\n\t\t\t// \tactiveTabData,\n\t\t\t// \tactiveId_,\n\t\t\t// \tdefaultTab,\n\t\t\t// \trouterQueryTab,\n\t\t\t// \tsections,\n\t\t\t// });\n\t\t}\n\t\treturn {\n\t\t\tactiveId: activeId_,\n\t\t\tactiveTabData: activeTabData_,\n\t\t};\n\t}, [\n\t\tdefaultTab,\n\t\tgetSectionData_,\n\t\tisInitialized,\n\t\tisLogged,\n\t\trouterQueryTab,\n\t\tsections,\n\t]);\n\n\tuseEffect(() => {\n\t\tcheckActiveTab_();\n\t}, [checkActiveTab_, dispatch, isInitialized]);\n\n\tuseEffect(() => {\n\t\tconst { activeId: activeId_, activeTabData: activeTabData_ } =\n\t\t\tgetSections_();\n\t\tif (activeId !== activeId_) {\n\t\t\tsetActiveId(activeId_);\n\t\t\tsetActiveTabData(activeTabData_);\n\t\t}\n\t}, [activeId, getSections_]);\n\n\t// console.log('SettingsLayout', { sections, activeId, activeTabData });\n\n\treturn (\n\t\t<SettingsLayoutContext.Provider\n\t\t\tvalue={{\n\t\t\t\tsections,\n\t\t\t\tactiveId,\n\t\t\t\tactiveTabData,\n\t\t\t\thandleChangeSection: handleChangeSection_,\n\t\t\t\tgetSectionContent: getSectionContent_,\n\t\t\t}}\n\t\t>\n\t\t\t{isMobile ? <SettingsLayoutMobile /> : <SettingsLayoutDesktop />}\n\t\t</SettingsLayoutContext.Provider>\n\t);\n};\n","import styled, { css } from 'styled-components';\nimport classnames from 'classnames';\nimport { boxNoHeight } from '../../modules/style/defaults';\nimport { dashboard } from '../../modules/style/mixins/dashboard';\nimport { calcStyle } from '../../modules/style/methods/calcStyle';\n\nexport const SlideDownBoxStyle = styled.div.attrs((props) => ({\n\tclassName: classnames(props.className, 'slide-down__box'),\n}))<{\n\ttype?: string;\n\tnoDashboard?: boolean;\n}>`\n\t${boxNoHeight};\n\t${(props) =>\n\t\tprops.noDashboard\n\t\t\t? ''\n\t\t\t: dashboard(\n\t\t\t\t\t(padding) => css`\n\t\t\t\t\t\tmargin: 0 -${padding};\n\t\t\t\t\t\twidth: calc(100% + ${calcStyle({ a: padding, b: 2, mode: '*' })});\n\t\t\t\t\t`,\n\t\t\t  )}\n\n\t&:last-of-type {\n\t\tmargin-bottom: -7px;\n\t}\n`;\n\nexport const SlideDownTitleStyle = styled.div.attrs((props) => ({\n\tclassName: classnames(props.className, 'slide-down__title'),\n}))<{\n\tisColor?: boolean;\n\tname: string;\n}>`\n\t${boxNoHeight};\n\tcursor: pointer;\n\tmargin-bottom: 0;\n\tmargin-top: 15px;\n\n\t&.icon-wrapper {\n\t\tpadding-right: 30px !important;\n\n\t\t[class*='icon'] {\n\t\t\tright: 13px;\n\t\t}\n\t}\n\n\t${(props) =>\n\t\tprops.isColor\n\t\t\t? `\n    border-radius: ${props.theme.layout.borderRadius};\n    background-color: ${props.theme.colors.inputButton};\n    padding: 10px;\n  `\n\t\t\t: ''}\n`;\n\nexport const SlideDownContentStyle = styled.div.attrs((props) => ({\n\tclassName: classnames(props.className, 'slide-down__content'),\n}))<{\n\tisActive: boolean;\n}>`\n\t${boxNoHeight};\n\tmax-height: ${(props) => (props.isActive ? '300vh' : '0')};\n\ttransition: ${(props) => (props.isActive ? '0.2s ease-in' : '0')};\n\toverflow: ${(props) => (props.isActive ? 'unset' : 'hidden')};\n\theight: auto;\n`;\n","import { FC, useCallback, useEffect, useRef, useState } from 'react';\nimport classnames from 'classnames';\nimport { useAppMobile } from '@common/selectors/app.selectors';\nimport { pageScrollTo } from '@common/methods/pageScrollTo';\nimport { isTrueOrZero } from '@common/methods/isTrueOrZero';\nimport { usePrevious } from '../../../hooks/render/usePrevious';\nimport {\n\tSlideDownBoxStyle,\n\tSlideDownContentStyle,\n\tSlideDownTitleStyle,\n} from './slideDownBox.style';\n\nexport const SlideDownBox: FC<{\n\tTitle?: FC<{ active: boolean }>;\n\tContent?: FC;\n\tisColor?: boolean;\n\ttitleClasses?: string;\n\tcontentClasses?: string;\n\tisContentInitVisible?: boolean;\n\tisContentVisible?: boolean;\n\tcallback?: (isVisible: boolean) => void;\n\tnoScrollTo?: boolean;\n\tboxClasses?: string;\n\tnoDashboard?: boolean;\n\tname: string;\n}> = ({\n\tTitle,\n\tContent,\n\tisColor,\n\ttitleClasses,\n\tcontentClasses,\n\tisContentInitVisible,\n\tisContentVisible,\n\tcallback,\n\tboxClasses,\n\tnoDashboard,\n\tname,\n\tnoScrollTo,\n}) => {\n\tconst [_isVisible, setIsVisible] = useState<boolean>(\n\t\tisTrueOrZero(isContentInitVisible) ? isContentInitVisible : false,\n\t);\n\tconst ref = useRef<HTMLDivElement>(null);\n\tconst timeoutRef = useRef(null);\n\tconst prevIsContentVisible = usePrevious(isContentVisible);\n\tconst isMobile = useAppMobile();\n\n\tconst handleClickTitle = useCallback(\n\t\t(event?: MouseEvent, isVisible?: boolean) => {\n\t\t\tif (isVisible === undefined) {\n\t\t\t\tisVisible = !_isVisible;\n\t\t\t}\n\t\t\tif (callback) {\n\t\t\t\tcallback(isVisible);\n\t\t\t}\n\t\t\tsetIsVisible(isVisible);\n\t\t\tif (isVisible && isMobile && ref?.current && !noScrollTo) {\n\t\t\t\tif (timeoutRef.current) {\n\t\t\t\t\tclearTimeout(timeoutRef.current);\n\t\t\t\t}\n\t\t\t\ttimeoutRef.current = setTimeout(() => {\n\t\t\t\t\tpageScrollTo({ top: ref?.current?.offsetTop - 50 });\n\t\t\t\t}, 300);\n\t\t\t}\n\t\t},\n\t\t[_isVisible, callback, isMobile, noScrollTo],\n\t);\n\n\tuseEffect(() => {\n\t\tif (isContentVisible !== prevIsContentVisible) {\n\t\t\thandleClickTitle(undefined, isContentVisible);\n\t\t}\n\t}, [isContentVisible, handleClickTitle, prevIsContentVisible]);\n\n\treturn (\n\t\t<SlideDownBoxStyle\n\t\t\tref={ref}\n\t\t\tclassName={boxClasses}\n\t\t\tnoDashboard={noDashboard}\n\t\t>\n\t\t\t<SlideDownTitleStyle\n\t\t\t\tname={`slide-down-title-${name}`}\n\t\t\t\tonClick={() => handleClickTitle()}\n\t\t\t\tisColor={isColor}\n\t\t\t\tclassName={classnames('icon-wrapper', titleClasses)}\n\t\t\t>\n\t\t\t\t{Title && <Title active={_isVisible} />}\n\t\t\t\t{Content && (\n\t\t\t\t\t<i\n\t\t\t\t\t\tclassName={classnames('icon__arrow-down', {\n\t\t\t\t\t\t\topened: _isVisible,\n\t\t\t\t\t\t})}\n\t\t\t\t\t/>\n\t\t\t\t)}\n\t\t\t</SlideDownTitleStyle>\n\t\t\t{Content && (\n\t\t\t\t<SlideDownContentStyle isActive={_isVisible} className={contentClasses}>\n\t\t\t\t\t{(_isVisible || !process.browser) && <Content />}\n\t\t\t\t</SlideDownContentStyle>\n\t\t\t)}\n\t\t</SlideDownBoxStyle>\n\t);\n};\n","export const checkHotkeysAllowed = (disableHotKeys: boolean): boolean => {\n\tif (disableHotKeys) {\n\t\treturn false;\n\t}\n\tif (!process.browser) {\n\t\treturn false;\n\t}\n\treturn !(\n\t\tdocument.activeElement &&\n\t\t['input', 'textarea'].indexOf(document.activeElement.localName) > -1\n\t);\n};\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport { InputWrapperContainer } from '../../input/inputWrapper.container';\nimport { trans } from '../../../modules/translation/translate';\nimport SeedStoreController from '../../../../../common/components/storeControllers/SeedStoreController';\nimport { Loader } from '../../loader/loader';\nimport { Button } from '../../../../../ui/components/button';\n\nclass ClientSeedInput extends React.PureComponent {\n\tstatic propTypes = {\n\t\tvalue: PropTypes.any,\n\t\tonClick: PropTypes.func,\n\t};\n\n\trender() {\n\t\treturn (\n\t\t\t<>\n\t\t\t\t<SeedStoreController />\n\t\t\t\t<InputWrapperContainer\n\t\t\t\t\tvalue={this.props.value}\n\t\t\t\t\tname={'client-seed'}\n\t\t\t\t\tlabel={trans({ label: 'Current client seed' })}\n\t\t\t\t\tisDisabled={true}\n\t\t\t\t\tinputButtons={[\n\t\t\t\t\t\t<Button\n\t\t\t\t\t\t\tkey={1}\n\t\t\t\t\t\t\tname=\"provably-fair-generate-new-client-seed\"\n\t\t\t\t\t\t\tonClick={this.props.onClick}\n\t\t\t\t\t\t\tlabel={trans({ label: 'Change' })}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t<Loader loader=\"reloadClientSeed\" />\n\t\t\t\t\t\t</Button>,\n\t\t\t\t\t]}\n\t\t\t\t/>\n\t\t\t</>\n\t\t);\n\t}\n}\n\nexport { ClientSeedInput };\n","import { connect } from 'react-redux';\nimport { openModal } from '../../../../../modules/modals/store/modal.actions';\nimport { MODAL_ID } from '../../../../../common/constants/modal/ids.modal.constants';\nimport { ClientSeedInput } from './clientSeedInput';\n\nconst mapStateToProps = (state) => {\n\treturn {\n\t\tvalue: state.seed && state.seed.client,\n\t};\n};\n\nconst mapDispatchToProps = (dispatch) => {\n\treturn {\n\t\tonClick: () =>\n\t\t\tdispatch(\n\t\t\t\topenModal(MODAL_ID.CHANGE_CLIENT_SEED, 'clientSeedInput.container'),\n\t\t\t),\n\t};\n};\n\nconst ClientSeedInputContainer = connect(\n\tmapStateToProps,\n\tmapDispatchToProps,\n)(ClientSeedInput);\n\nexport { ClientSeedInputContainer };\n","import React, { FC, useCallback } from 'react';\nimport { SessionContainer } from '@legacyApp/client/components/provablyFair/session';\nimport {\n\tSettingsLayout,\n\tSettingsLayoutSection,\n} from '../../components/settingsLayout/settingsLayout';\nimport { createNamespaceTrans } from '../../modules/translation/translate';\nimport { ImplementationContainer } from '../../components/provablyFair/implementation';\nimport { StyledMainDashboardV2 } from '../../modules/style/components/MainDashboard.styled';\nimport { TransNamespace } from '../../modules/translation/TransNamespace';\nimport { ProvableFairOverview } from '../../components/provablyFair/overview';\nimport { VerificationContainer } from '../../components/provablyFair/verification/verification.container';\nimport { StyledProvablyFairGlobal } from './ProvablyFair.global.styled';\n\nexport const transProvablyFair = createNamespaceTrans(\n\tTransNamespace.PROVABLY_FAIR_PAGE,\n);\n\nenum SECTIONS {\n\tOVERVIEW = 'overview',\n\tSESSION = 'session',\n\tVERIFICATION = 'verification',\n\tIMPLEMENTATION = 'implementation',\n}\n\nconst SECTIONS_CONFIG: SettingsLayoutSection[] = [\n\t{\n\t\tid: SECTIONS.OVERVIEW,\n\t\tname: () => 'Overview',\n\t},\n\t{\n\t\tid: SECTIONS.SESSION,\n\t\tname: () => 'Session',\n\t\tisLogged: true,\n\t},\n\t{\n\t\tid: SECTIONS.VERIFICATION,\n\t\tname: () => 'Verification',\n\t},\n\t{\n\t\tid: SECTIONS.IMPLEMENTATION,\n\t\tname: () => 'Implementation',\n\t},\n];\n\nconst SECTIONS_CONTENT = {\n\t[SECTIONS.OVERVIEW]: <ProvableFairOverview />,\n\t[SECTIONS.SESSION]: <SessionContainer />,\n\t[SECTIONS.VERIFICATION]: <VerificationContainer />,\n\t[SECTIONS.IMPLEMENTATION]: <ImplementationContainer />,\n};\n\nexport const ProvablyFairPage: FC = () => {\n\tconst getSectionContent = useCallback((id) => {\n\t\treturn SECTIONS_CONTENT[id] || null;\n\t}, []);\n\n\treturn (\n\t\t<StyledMainDashboardV2>\n\t\t\t<StyledProvablyFairGlobal />\n\t\t\t<h1 className=\"page-title\">\n\t\t\t\t{transProvablyFair({ label: 'Provably fair' })}\n\t\t\t</h1>\n\t\t\t<SettingsLayout\n\t\t\t\tgetSectionContent={getSectionContent}\n\t\t\t\tsections={SECTIONS_CONFIG}\n\t\t\t\tdefaultTab={SECTIONS.OVERVIEW}\n\t\t\t/>\n\t\t</StyledMainDashboardV2>\n\t);\n};\n","import { PureComponent } from 'react';\nimport PropTypes from 'prop-types';\nimport { InputWrapperContainer } from '../../input/inputWrapper.container';\nimport { trans } from '../../../modules/translation/translate';\nimport { ServerSeedInputContainer } from '../serverSeedInput';\nimport { ClientSeedInputContainer } from '../clientSeedInput';\nimport SeedStoreController from '../../../../../common/components/storeControllers/SeedStoreController';\nimport { transProvablyFair } from '../../../pages/provablyFair.page/provablyFair.page';\n\nclass Session extends PureComponent {\n\tstatic propTypes = {\n\t\tnonce: PropTypes.any,\n\t\tautobetPaused: PropTypes.bool,\n\t\tfetch: PropTypes.func,\n\t};\n\n\tcomponentDidMount() {\n\t\tthis.props.fetch();\n\t}\n\n\trender() {\n\t\treturn (\n\t\t\t<>\n\t\t\t\t<SeedStoreController />\n\t\t\t\t{this.props.autobetPaused && (\n\t\t\t\t\t<p className=\"text-style-md-medium text-negative margin-bottom\">\n\t\t\t\t\t\t{trans({\n\t\t\t\t\t\t\tlabel:\n\t\t\t\t\t\t\t\t'Current autobet session is paused, changing seeds will affect your next bets',\n\t\t\t\t\t\t})}\n\t\t\t\t\t</p>\n\t\t\t\t)}\n\t\t\t\t<ClientSeedInputContainer />\n\t\t\t\t<ServerSeedInputContainer />\n\t\t\t\t<InputWrapperContainer\n\t\t\t\t\tname={'nonce'}\n\t\t\t\t\tvalue={this.props.nonce}\n\t\t\t\t\tlabel={transProvablyFair({ label: 'Nonce' })}\n\t\t\t\t\tisDisabled={true}\n\t\t\t\t/>\n\t\t\t</>\n\t\t);\n\t}\n}\n\nexport { Session };\n","import { connect } from 'react-redux';\nimport { seedFetch } from '../../../store.async/seed/seed.actions';\nimport { Session } from './session';\n\nconst mapStateToProps = (state) => {\n\treturn {\n\t\tnonce: state.seed && state.seed.nonce,\n\t\tautobetPaused: state.gameAutobet?.pause,\n\t};\n};\n\nconst mapDispatchToProps = (dispatch) => {\n\treturn {\n\t\tfetch: () => dispatch(seedFetch()),\n\t};\n};\n\nconst SessionContainer = connect(mapStateToProps, mapDispatchToProps)(Session);\n\nexport { SessionContainer };\n","import { GameType } from '@modules/games/Game/constants/availableGames';\n\nimport { multiplyBlocksByLinesQnt } from '@modules/games/PlinkoGame/components/MuliplierBoxes/multipliers';\nimport { cardsArray } from '@legacyApp/client/modules/app/cardsService';\n\nexport const IMPLEMENTATION_CONFIG: Partial<\n\tRecord<\n\t\tGameType,\n\t\t{\n\t\t\tcode: string;\n\t\t\tdescription: Array<string>;\n\t\t\timplementation: string;\n\t\t}\n\t>\n> = {\n\t[GameType.DICE]: {\n\t\tcode: '5yrj0Lsw',\n\t\tdescription: [\n\t\t\t'To create a roll number, Wolfbet uses a multi-step process to create a roll number 0-99.99. Both client and server seeds and a nonce are combined with hmac-sha256(serverSeed, clientSeed_nonce) which will generate a hex string.',\n\t\t\t'The nonce is the # of rolls you made with the current seed pair. First five characters are taken from the hex string to create a roll number that is 0-1,048,575. If the roll number is over 999,999, the process is repeated with the next five characters skipping the previous set. This is done until a number less than 1,000,000 is achieved.',\n\t\t\t'In the astronomically unlikely event that all possible 5 character combinations are greater, 99.99 is used as the roll number. The resulting number 0-999,999 is applied a modulus of 10^4, to obtain a roll number 0-9999, and divided by 10^2 to result in a 0-99.99 number.',\n\t\t],\n\t\timplementation: `\n        const verify = (server_seed, client_seed, nonce) => {\n          const hash = CryptoJS.HmacSHA256('\n            server_seed,\n            \\`\\${client_seed}_\\${nonce}\\`,\n          ).toString();\n          let index = 0;\n          let lucky = parseInt(hash.substr(index, 5), 16);\n          while (lucky >= 1000000) {\n            lucky = parseInt(hash.substr(index, 5), 16);\n            index += 5;\n          }\n          return (lucky % 10000 / 100).toFixed(2);\n        }\n      `,\n\t},\n\n\t[GameType.HILO]: {\n\t\tcode: 'apmw5qkL',\n\t\tdescription: [\n\t\t\t'To generate series of cards, Wolfbet uses a multi-step process to draw randomized cards stream. Both client and server seeds with a nonce and subnonce are combined with hmac-sha256(serverSeed, clientSeed_nonce_subNonce) which will generate a hex string.',\n\t\t\t'The nonce is the # of every bet you made with the current seed pair. Subnocne is number which represents the position of the card in the stream. First eight characters are taken from the hex string to create a sum number that is 0-1. Then sum is multiplied by number of cards in tile, which is 52. Result rounded with floor function indicates card position from cards array.',\n\t\t],\n\t\timplementation: `\n        const cards = [${cardsArray.map((el) => `'${el}'`).join(',')}];\n        const verify = (server_seed, client_seed, nonce, sub_nonce) => {\n          const betHash = CryptoJS.HmacSHA256(\n            server_seed,\n            \\`\\${client_seed}_\\${nonce}_\\${sub_nonce}\\`,\n          ).toString();\n          const floats = new Array(4).fill(0).map((el, index) => {\n            return parseInt(betHash.substr(index * 2, 2), 16);\n          });\n          let sum = 0;\n          floats.forEach((float, index) => {\n            sum += round((float / Math.pow(256, index + 1)), 10);\n          });\n          return cards[round(sum * 52, 0, 'floor')];\n        }\n      `,\n\t},\n\n\t[GameType.LIMBO]: {\n\t\tcode: 'to75pgd9',\n\t\tdescription: [\n\t\t\t'To create a bet result, Wolfbet uses a multi-step process. Both client and server seeds and a nonce are combined with hmac-sha256(serverSeed, clientSeed_nonce_0) which will generate a hex string.',\n\t\t\t'The nonce is the # of every bet you made with the current seed pair. First eight characters are taken from the hex string to create a sum number that is 0-1. Then sum is multiplied by maximum possible multiplier to create float number which is normalized. Normalized float is multiplied by the house edge. Then, in order to generate a game event that has probability distribution, we divide the maximum possible multiplier by the result of the first step to create the crash point.',\n\t\t],\n\t\timplementation: `\n        const verify = (server_seed, client_seed, nonce, sub_nonce) => {\n          const betHash = CryptoJS.HmacSHA256(\n            server_seed,\n            \\`\\${client_seed}_\\${nonce}_0,\n          ).toString();\n          const floats = new Array(4).fill(0).map((el, index) => {\n            return parseInt(betHash.substr(index * 2, 2), 16);\n          });\n          let sum = 0;\n          floats.forEach((float, index) => {\n            sum += round((float / Math.pow(256, index + 1)), 10);\n          });\n\n          // Sum multiplied by the maximum possible multiplier\n          const float = sum * 1e8;\n          // Make sure float is not zero\n          const normalizedFloat = Math.max(float, 0.01)\n          const floatPoint = 1e8 / normalizedFloat * 0.99\n          // Make sure floatPoint is not higher than required\n          const clampedFloatPoint = Math.min(floatPoint, 9900000)\n          // Crash point rounded down to required denominator\n          const crashPoint = Math.floor(clampedFloatPoint * 100) / 100;\n          // Consolidate all crash points below 1\n          return Math.max(crashPoint, 1);\n        }\n      `,\n\t},\n\n\t[GameType.PLINKO]: {\n\t\tcode: '3hrz4gam',\n\t\tdescription: [\n\t\t\t'To generate a plinko ball path, Wolfbet uses a multi-step process. Both client and server seeds with a nonce and subnonce are combined with hmac-sha256(serverSeed, clientSeed_nonce_subNonce) which will generate a hex string.',\n\t\t\t'The nonce is the # of every bet you made with the current seed pair. Subnocne is an index which represents the next row in plinko pyramid. First eight characters are taken from the hex string to create a sum number that is 0-1. Then sum is multiplied by number of possible directions which is 2. All row results rounded with floor function are summed and indicates payout index of box on which ball will land.',\n\t\t],\n\t\timplementation: `\n\t\tconst multipliers = {\n\t\t\t\t\t${Object.keys(multiplyBlocksByLinesQnt)\n\t\t\t\t\t\t.map((risk) => {\n\t\t\t\t\t\t\treturn `${risk}: {\n\t\t\t\t\t\t\t${Object.keys(multiplyBlocksByLinesQnt[risk]).map((lines) => {\n\t\t\t\t\t\t\t\treturn `${lines}: [${multiplyBlocksByLinesQnt[risk][lines].join(\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}).join(`\n\t\t\t\t\t\t\t`)}\n\t\t\t\t\t},\n\t\t\t\t\t`;\n\t\t\t\t\t\t})\n\t\t\t\t\t\t.join('')}\n\t\t}\n\n\t\t\t\tconst verify = (server_seed, client_seed, nonce, sub_nonce) => {\n          const betHash = CryptoJS.HmacSHA256(\n            server_seed,\n            \\`\\${client_seed}_\\${nonce}_\\${sub_nonce}\\`,\n          ).toString();\n          const floats = new Array(4).fill(0).map((el, index) => {\n            return parseInt(betHash.substr(index * 2, 2), 16);\n          });\n          let sum = 0;\n          floats.forEach((float, index) => {\n            sum += round((float / Math.pow(256, index + 1)), 10);\n          });\n          return round(sum * 2, 0, 'floor');\n        }\n\n        const generatePath = (server_seed, client_seed, nonce, rows, risk) => {\n\t\t\t\t\tconst path = [];\n\t\t\t\t\tlet outcome = rows;\n\t\t\t\t\tfor (let i = 0; i < rows; i++) {\n\t\t\t\t\t\tpath.push(verify(server_seed, client_seed, nonce, i));\n\t\t\t\t\t}\n\t\t\t\t\tconst payoutIndex = path.reduce((acc, el) => acc + el, 0);\n\t\t\t\t\treturn multipliers[risk][rows][payoutIndex];\n\t\t\t\t}\n      `,\n\t},\n\n\t[GameType.KENO]: {\n\t\tcode: 'hd456yzm',\n\t\tdescription: [\n\t\t\t'To generate a Keno result, Wolfbet uses a multi-step process. Both client and server seeds with a nonce and subnonce are combined with hmac-sha256(serverSeed, clientSeed_nonce_subNonce) which will generate a hex string.',\n\t\t\t'The nonce is the # of every bet you made with the current seed pair. Subnocne is an index which represents the tile in Keno board. First eight characters are taken from the hex string to create a sum number that is 0-1. Then sum is multiplied by number of possible directions which is 40. This sum represents result number position in array which on every subNonce is shiffled with fisher-yates implementation is utilised to prevent duplicates of possible hits being generated.',\n\t\t],\n\t\timplementation: `\n      const RESULTS_COUNT = 40;\n      const DRAW_COUNT = 10;\n      const generateResult = (server_seed: string, client_seed: string, nonce: number, sub_nonce: number, resultsCount: number): number => {\n        const betHash = CryptoJS.HmacSHA256(\n          server_seed,\n          \\`\\${client_seed}_\\${nonce}\\${sub_nonce},\n                ).toString();\n        const floats = new Array(4).fill(0).map((el, index) => {\n          return parseInt(betHash.substr(index * 2, 2), 16);\n        });\n        let sum = 0;\n        floats.forEach((float, index) => {\n          sum += round((float / Math.pow(256, index + 1)), 10);\n        });\n        console.log({floats,sum});\n        return round(sum * resultsCount, 0, 'floor');\n      }\n\n      const round = (oldAmount: number, decimal: number, direction: string = 'round'): number => {\n          if (!oldAmount && oldAmount !== 0) return oldAmount;\n          let amount = parseFloat(oldAmount);\n          decimal = Math.pow(10, decimal);\n          let result = Math[direction](amount * decimal) / decimal;\n          return (result === 0) ? 0 : result;\n      };\n\n      const generateSquares = (length: number): Array<number> => {\n        return new Array(length).fill(0).map((el, index) => index + 1);\n      }\n\n      const generateResults = (server_seed: string, client_seed: string, nonce: number, drawCount: number): Array<number> => {\n        const results = [];\n        const squareArray = generateSquares(RESULTS_COUNT);\n        for (let i = 0; i < drawCount; i++) {\n          console.log(squareArray.length, squareArray);\n          const maxIndex = squareArray.length - 1;\n          const hitIndex = generateResult(server_seed, client_seed, nonce, i, squareArray.length);\n          const hit = squareArray[hitIndex];\n          squareArray[hitIndex] = squareArray[maxIndex];\n          squareArray.pop();\n          results.push(hit);\n        }\n        console.log('generateResults', {server_seed, client_seed, nonce, results});\n        return results;\n      }\n    `,\n\t},\n};\n","import { getGamesList } from '@modules/games/Game/methods/getGamesList';\n\nexport const GAMES_LIST = getGamesList().map((el) => el.toUpperCase());\n","import { connect } from 'react-redux';\nimport { formVerificationSetGame } from '../../../store/forms/forms.actions';\nimport { Implementation } from './implementation';\n\nconst mapStateToProps = (state) => {\n\treturn {\n\t\tgame: state.forms.bet_verification.game,\n\t};\n};\n\nconst mapDispatchToProps = (dispatch) => {\n\treturn {\n\t\tsetGame: (game) => dispatch(formVerificationSetGame(game)),\n\t};\n};\n\nconst ImplementationContainer = connect(\n\tmapStateToProps,\n\tmapDispatchToProps,\n)(Implementation);\n\nexport { ImplementationContainer };\n","import React, { FC, useCallback } from 'react';\nimport { dark } from 'react-syntax-highlighter/dist/cjs/styles/prism';\nimport { Redirect } from '@common/components/default/Redirect/Redirect';\nimport { trans } from '../../../modules/translation/translate';\nimport { Dropdown } from '../../dropdown/dropdown';\nimport { transProvablyFair } from '../../../pages/provablyFair.page/provablyFair.page';\nimport { SyntaxStyle } from './implementation.style';\nimport { IMPLEMENTATION_CONFIG } from './config';\nimport { GAMES_LIST } from './GAMES_LIST';\n\nexport const Implementation: FC<{\n\tgame: string;\n\tsetGame: (game: string) => void;\n}> = ({ game, setGame }) => {\n\tconst setGame_ = useCallback(\n\t\t(game) => setGame(game.toLowerCase()),\n\t\t[setGame],\n\t);\n\tconst { code, description, implementation } = IMPLEMENTATION_CONFIG[game] || {\n\t\tcode: null,\n\t\tdescription: null,\n\t\timplementation: null,\n\t};\n\n\treturn (\n\t\t<>\n\t\t\t<Dropdown\n\t\t\t\tid={'provablyFairVerification'}\n\t\t\t\tlocalTheme={{\n\t\t\t\t\tdefault: true,\n\t\t\t\t}}\n\t\t\t\titems={GAMES_LIST}\n\t\t\t\tactive={game.toUpperCase()}\n\t\t\t\tonClick={setGame_}\n\t\t\t/>\n\t\t\t{!!description?.length && (\n\t\t\t\t<div className=\"box-no-height\">\n\t\t\t\t\t{description.map((el, index) => {\n\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t<p\n\t\t\t\t\t\t\t\tkey={index}\n\t\t\t\t\t\t\t\tclassName=\"user-select-text margin-bottom text-style-sm-regular\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{transProvablyFair({ label: el })}\n\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t);\n\t\t\t\t\t})}\n\t\t\t\t</div>\n\t\t\t)}\n\t\t\t{implementation && (\n\t\t\t\t<div className=\"box-no-height user-select-text\">\n\t\t\t\t\t<SyntaxStyle language=\"javascript\" style={dark}>\n\t\t\t\t\t\t{implementation}\n\t\t\t\t\t</SyntaxStyle>\n\t\t\t\t</div>\n\t\t\t)}\n\t\t\t<div className=\"box-no-height\">\n\t\t\t\t{code && (\n\t\t\t\t\t<p className=\"user-select-text margin-top text-style-sm-regular\">\n\t\t\t\t\t\t{trans({ label: 'Example' })}:{' '}\n\t\t\t\t\t\t<Redirect\n\t\t\t\t\t\t\ttarget=\"_blank\"\n\t\t\t\t\t\t\trel=\"noreferrer noopener\"\n\t\t\t\t\t\t\thref={`https://jsfiddle.net/suchijs/${code}/`}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\thttps://jsfiddle.net/{game}Verify/\n\t\t\t\t\t\t</Redirect>\n\t\t\t\t\t</p>\n\t\t\t\t)}\n\t\t\t\t<p className=\"hint text-style-caption-regular\">\n\t\t\t\t\t<span>\n\t\t\t\t\t\t{transProvablyFair({\n\t\t\t\t\t\t\tlabel: 'CryptoJS is a JavaScript package installed from',\n\t\t\t\t\t\t})}{' '}\n\t\t\t\t\t</span>\n\t\t\t\t\t<Redirect\n\t\t\t\t\t\thref=\"https://npmjs.com/package/crypto-js\"\n\t\t\t\t\t\tclassName=\"text-underline\"\n\t\t\t\t\t\ttarget=\"_blank\"\n\t\t\t\t\t\trel=\"noopener noreferrer\"\n\t\t\t\t\t>\n\t\t\t\t\t\tnpmjs.com/package/crypto-js\n\t\t\t\t\t</Redirect>\n\t\t\t\t</p>\n\t\t\t</div>\n\t\t</>\n\t);\n};\n","import React, { FC } from 'react';\nimport styled from 'styled-components';\nimport { transProvablyFair } from '../../../pages/provablyFair.page/provablyFair.page';\n\nexport const ProvableFairOverview: FC = () => {\n\treturn (\n\t\t<>\n\t\t\t<ProvableFairOverviewTitleStyled>\n\t\t\t\t{transProvablyFair({ label: 'Fairness' })}\n\t\t\t</ProvableFairOverviewTitleStyled>\n\t\t\t<ProvableFairOverviewParagraphStyled>\n\t\t\t\t{transProvablyFair({\n\t\t\t\t\tlabel:\n\t\t\t\t\t\t'Wolfbet uses a cryptographic provably fair algorithm which allows users to check and analyze the legitimacy of every bet and confirm they are not manipulated. Our random numbers are generated through the use of two seeds (a server seed and a client seed) and nonce number.',\n\t\t\t\t})}\n\t\t\t</ProvableFairOverviewParagraphStyled>\n\t\t\t<ProvableFairOverviewTitleStyled>\n\t\t\t\t{transProvablyFair({ label: 'Server seed' })}\n\t\t\t</ProvableFairOverviewTitleStyled>\n\t\t\t<ProvableFairOverviewParagraphStyled>\n\t\t\t\t{transProvablyFair({\n\t\t\t\t\tlabel:\n\t\t\t\t\t\t'After registration user is provided with an encrypted hash of that generated server seed. We provide you the hashed server seed to ensure that it cannot be changed by casino provider and that the player cannot calculate result beforehand. To verify your previous bets you have to reveal the server seed from its hashed version by generating new server seed in \"Session\" menu.',\n\t\t\t\t})}\n\t\t\t</ProvableFairOverviewParagraphStyled>\n\t\t\t<ProvableFairOverviewTitleStyled>\n\t\t\t\t{transProvablyFair({ label: 'Client seed' })}\n\t\t\t</ProvableFairOverviewTitleStyled>\n\t\t\t<ProvableFairOverviewParagraphStyled>\n\t\t\t\t{transProvablyFair({\n\t\t\t\t\tlabel:\n\t\t\t\t\t\t'The client seed is used to ensure the player also has influence on the randomness of the bets results. Player is free to  change their client seed anytime to create a new chain of random upcoming results. This ensures the player has absolute control over the generation of the result.',\n\t\t\t\t})}\n\t\t\t</ProvableFairOverviewParagraphStyled>\n\t\t\t<ProvableFairOverviewTitleStyled>\n\t\t\t\t{transProvablyFair({ label: 'Nonce' })}\n\t\t\t</ProvableFairOverviewTitleStyled>\n\t\t\t<ProvableFairOverviewParagraphStyled>\n\t\t\t\t{transProvablyFair({\n\t\t\t\t\tlabel:\n\t\t\t\t\t\t'The nonce is simply a number that increments every new bet and it is reset back while the server seed is changed. This value allows to create a completely new result each time, without having to generate a new client seed and server seed.',\n\t\t\t\t})}\n\t\t\t</ProvableFairOverviewParagraphStyled>\n\t\t</>\n\t);\n};\n\nexport const ProvableFairOverviewTitleStyled = styled.h4.attrs({\n\tclassName: 'user-select-text text-style-md-medium',\n})``;\nexport const ProvableFairOverviewParagraphStyled = styled.p.attrs({\n\tclassName: 'user-select-text text-style-md-regular',\n})``;\n","import { connect } from 'react-redux';\nimport {\n\tformVerificationSetGame,\n\tresetVerificationForm,\n\tsetClientSeed,\n\tsetNonce,\n\tsetServerSeed,\n} from '../../../store/forms/forms.actions';\nimport { RootState } from '../../../store/configure.store';\nimport { Verification } from './verification';\n\nconst mapStateToProps = (state: RootState) => {\n\treturn {\n\t\tbet_verification: state.forms.bet_verification,\n\t};\n};\n\nconst mapDispatchToProps = (dispatch) => {\n\treturn {\n\t\tsetClientSeed: (payload) => dispatch(setClientSeed(payload)),\n\t\tsetServerSeed: (payload) => dispatch(setServerSeed(payload)),\n\t\tsetNonce: (payload) => dispatch(setNonce(payload)),\n\t\tresetVerificationForm: () => dispatch(resetVerificationForm()),\n\t\tsetGame: (game) => dispatch(formVerificationSetGame(game)),\n\t};\n};\n\nconst VerificationContainer = connect(\n\tmapStateToProps,\n\tmapDispatchToProps,\n)(Verification);\n\nexport { VerificationContainer };\n","import React, { FC, useCallback, useEffect } from 'react';\n\nimport { useStateEffect } from '@common/hooks/useStateEffect';\nimport { GAMES_LIST } from '@legacyApp/client/components/provablyFair/implementation/GAMES_LIST';\nimport {\n\thiloResult,\n\tkenoResult,\n\tlimboResult,\n\tplinkoResult,\n\tsha256,\n} from '@legacyApp/client/modules/app/verificationServcie';\nimport { trans } from '@legacyApp/client/modules/translation/translate';\nimport { useDispatchCallback } from '@legacyApp/hooks/store/useAppDispatch';\nimport { updateForm } from '@legacyApp/client/store/forms/forms.actions';\nimport { formsReducer } from '@legacyApp/client/store/forms/forms.reducer';\nimport { GameType } from '@modules/games/Game/constants/availableGames';\nimport { LinesType } from '@modules/games/PlinkoGame/types';\nimport { Risk } from '@modules/games/Game/types/GameRisk';\nimport transactionService from '@modules/transactions/transactionsService';\n\nimport GamesStoreController from '@common/components/storeControllers/GamesStoreController';\nimport { Dropdown } from '@legacyApp/client/components/dropdown/dropdown';\nimport { InputWrapperContainer } from '@legacyApp/client/components/input/inputWrapper.container';\nimport { transProvablyFair } from '@legacyApp/client/pages/provablyFair.page/provablyFair.page';\nimport { GameSlider } from '@modules/games/DiceGame/components/GameSlider';\nimport { HiloSession } from '@modules/games/HiloGame/HiloSession';\nimport KenoResult from '@modules/games/KenoGame/components/KenoResult/KenoResult';\nimport { LimboCounter } from '@modules/games/LimboGame/LimboCounter';\nimport { LinesSwitch } from '@modules/games/PlinkoGame/components/LinesSwitch/LinesSwitch';\nimport { RiskSwitch } from '@modules/games/PlinkoGame/components/playground/components/RiskSwitch/RiskSwitch';\nimport PlinkoResult from '@modules/games/PlinkoGame/components/PlinkoResult';\nimport { getResultFunction } from '@legacyApp/client/components/provablyFair/verification/getResultFunction';\n\nexport const Verification: FC<{\n\tbet_verification: ReturnType<typeof formsReducer>['bet_verification'];\n\tsetClientSeed: (value: any) => void;\n\tsetServerSeed: (value: any) => void;\n\tsetNonce: (value: any) => void;\n\tsetGame: (value: GameType) => void;\n\tresetVerificationForm: () => void;\n}> = ({\n\tbet_verification,\n\tsetClientSeed,\n\tsetServerSeed,\n\tsetNonce,\n\tsetGame,\n\tresetVerificationForm,\n}) => {\n\tconst {\n\t\tclient_seed,\n\t\tserver_seed,\n\t\tnonce,\n\t\tgame,\n\t\trows: rows_,\n\t\trisk,\n\t} = bet_verification;\n\n\tconst rows = rows_ as LinesType;\n\n\tconst updateFormDispatch = useDispatchCallback(updateForm);\n\n\tconst setRows = useCallback(\n\t\t(value: LinesType) => {\n\t\t\tupdateFormDispatch({ section: 'bet_verification', field: 'rows', value });\n\t\t},\n\t\t[updateFormDispatch],\n\t);\n\n\tconst setRisk = useCallback(\n\t\t(value: Risk) => {\n\t\t\tupdateFormDispatch({ section: 'bet_verification', field: 'risk', value });\n\t\t},\n\t\t[updateFormDispatch],\n\t);\n\n\tconst result = useStateEffect(\n\t\tuseCallback(() => {\n\t\t\tconst callback = getResultFunction(game);\n\n\t\t\tif (!callback) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\treturn callback(client_seed, server_seed, nonce);\n\t\t}, [game, client_seed, server_seed, nonce]),\n\t\ttransactionService.isDataDifferent,\n\t);\n\n\tconst setGame_ = useCallback(\n\t\t(game: GameType) => setGame(game.toLowerCase() as GameType),\n\t\t[setGame],\n\t);\n\n\tuseEffect(\n\t\t() => () => {\n\t\t\tresetVerificationForm();\n\t\t},\n\t\t[resetVerificationForm],\n\t);\n\n\tconst server_seed_hashed = server_seed?.length ? sha256(server_seed) : '';\n\n\treturn (\n\t\t<>\n\t\t\t<GamesStoreController />\n\t\t\t<Dropdown\n\t\t\t\tlocalTheme={{\n\t\t\t\t\tdefault: true,\n\t\t\t\t}}\n\t\t\t\tid={'provablyFairVerification'}\n\t\t\t\tclassName=\"margin-bottom\"\n\t\t\t\titems={GAMES_LIST}\n\t\t\t\tactive={game.toUpperCase()}\n\t\t\t\tonClick={setGame_}\n\t\t\t/>\n\n\t\t\t<InputWrapperContainer\n\t\t\t\tname={'client-seed'}\n\t\t\t\tvalue={client_seed}\n\t\t\t\tlabel={transProvablyFair({ label: 'Client seed' })}\n\t\t\t\tonChange={setClientSeed}\n\t\t\t\tplaceholder={'Type client seed'}\n\t\t\t/>\n\n\t\t\t<InputWrapperContainer\n\t\t\t\tname={'nonce'}\n\t\t\t\tvalue={nonce}\n\t\t\t\tlabel={transProvablyFair({ label: 'Nonce' })}\n\t\t\t\tonChange={setNonce}\n\t\t\t\tplaceholder={'Type nonce'}\n\t\t\t/>\n\n\t\t\t<InputWrapperContainer\n\t\t\t\tname={'server-seed'}\n\t\t\t\tvalue={server_seed}\n\t\t\t\tlabel={transProvablyFair({ label: 'Server seed' })}\n\t\t\t\tonChange={setServerSeed}\n\t\t\t\tplaceholder={'Type server seed'}\n\t\t\t/>\n\n\t\t\t{server_seed && typeof server_seed_hashed === 'string' && (\n\t\t\t\t<InputWrapperContainer\n\t\t\t\t\tname={'server-seed-hashed'}\n\t\t\t\t\tvalue={server_seed_hashed}\n\t\t\t\t\tlabel={trans({ label: 'Server seed (hashed)' })}\n\t\t\t\t\tplaceholder={''}\n\t\t\t\t\tisDisabled={true}\n\t\t\t\t/>\n\t\t\t)}\n\n\t\t\t{game === GameType.PLINKO && (\n\t\t\t\t<div className=\"box-no-height\">\n\t\t\t\t\t<LinesSwitch compactView value={rows} update={setRows} />\n\t\t\t\t\t<RiskSwitch compactView value={risk} update={setRisk} />\n\t\t\t\t</div>\n\t\t\t)}\n\n\t\t\t{result && typeof result.data !== 'object' && game === GameType.DICE && (\n\t\t\t\t<div className=\"box-no-height margin-top\">\n\t\t\t\t\t<GameSlider\n\t\t\t\t\t\trule={null}\n\t\t\t\t\t\tgame={game}\n\t\t\t\t\t\tdisable\n\t\t\t\t\t\tbetValues={[]}\n\t\t\t\t\t\tclassName=\"width-100 no-padding no-margin small-margin-bottom\"\n\t\t\t\t\t\tresult={{\n\t\t\t\t\t\t\tvalue: result.data,\n\t\t\t\t\t\t\tstate: 'win',\n\t\t\t\t\t\t}}\n\t\t\t\t\t/>\n\t\t\t\t</div>\n\t\t\t)}\n\n\t\t\t{result &&\n\t\t\t\tresult.data.length &&\n\t\t\t\ttypeof result.data === 'object' &&\n\t\t\t\tgame &&\n\t\t\t\tgame.indexOf(GameType.HILO) > -1 && (\n\t\t\t\t\t<div className=\"game--hilo box-no-height no-padding margin-top\">\n\t\t\t\t\t\t<HiloSession\n\t\t\t\t\t\t\tclassName=\"width-100 no-margin\"\n\t\t\t\t\t\t\tstatic={true}\n\t\t\t\t\t\t\tnoScroll={true}\n\t\t\t\t\t\t\tsession={result.data.map((el, index) => ({\n\t\t\t\t\t\t\t\tresult_value: hiloResult(el),\n\t\t\t\t\t\t\t\tsub_nonce: index,\n\t\t\t\t\t\t\t}))}\n\t\t\t\t\t\t/>\n\t\t\t\t\t</div>\n\t\t\t\t)}\n\n\t\t\t{result && typeof result.data !== 'object' && game === GameType.LIMBO && (\n\t\t\t\t<div className=\"game--limbo box-no-height no-padding margin-top\">\n\t\t\t\t\t<LimboCounter result={limboResult(result.data)} animation={true} />\n\t\t\t\t</div>\n\t\t\t)}\n\n\t\t\t{result &&\n\t\t\t\tresult.data.length &&\n\t\t\t\ttypeof result.data === 'object' &&\n\t\t\t\tgame === GameType.PLINKO && (\n\t\t\t\t\t<div className=\"box-no-height no-padding margin-top\">\n\t\t\t\t\t\t<span className=\"text-style-sm-medium\">\n\t\t\t\t\t\t\tPayout index:{' '}\n\t\t\t\t\t\t\t{plinkoResult(result.data, risk, rows).path.join('+')}={''}\n\t\t\t\t\t\t\t{plinkoResult(result.data, risk, rows).result}\n\t\t\t\t\t\t</span>\n\n\t\t\t\t\t\t<PlinkoResult\n\t\t\t\t\t\t\tresult={plinkoResult(result.data, risk, rows).result}\n\t\t\t\t\t\t\trisk={risk}\n\t\t\t\t\t\t\trows={rows}\n\t\t\t\t\t\t/>\n\t\t\t\t\t</div>\n\t\t\t\t)}\n\n\t\t\t{result &&\n\t\t\t\tresult.data.length &&\n\t\t\t\ttypeof result.data === 'object' &&\n\t\t\t\tgame === GameType.KENO && (\n\t\t\t\t\t<div className=\"box-no-height mt-[20px]\">\n\t\t\t\t\t\t<KenoResult\n\t\t\t\t\t\t\tdata={{\n\t\t\t\t\t\t\t\thash: null,\n\t\t\t\t\t\t\t\trisk: Risk.LOW,\n\t\t\t\t\t\t\t\tselected: kenoResult(result.data),\n\t\t\t\t\t\t\t\thits: kenoResult(result.data),\n\t\t\t\t\t\t\t\tdataType: null,\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tfullPanel\n\t\t\t\t\t\t/>\n\t\t\t\t\t</div>\n\t\t\t\t)}\n\t\t</>\n\t);\n};\n","import { GameType } from '@modules/games/Game/constants/availableGames';\nimport { ResultFunction } from '@legacyApp/client/components/provablyFair/verification/ResultFunction.type';\nimport {\n\tdiceVerification,\n\tgameVerification,\n\thiloFullTailVerification,\n} from '@legacyApp/client/modules/app/verificationServcie';\n\nexport const getResultFunction = (game: GameType): ResultFunction => {\n\t// TODO: NEW GAME FLAG\n\tswitch (game) {\n\t\tcase GameType.DICE: {\n\t\t\treturn diceVerification;\n\t\t}\n\n\t\tcase GameType.HILO: {\n\t\t\treturn (client_seed, server_seed, nonce) => {\n\t\t\t\thiloFullTailVerification(client_seed, server_seed, nonce);\n\n\t\t\t\treturn gameVerification(client_seed, server_seed, nonce, 52, 100);\n\t\t\t};\n\t\t}\n\n\t\tcase GameType.LIMBO: {\n\t\t\treturn (client_seed, server_seed, nonce) => {\n\t\t\t\treturn gameVerification(client_seed, server_seed, nonce, 100000000);\n\t\t\t};\n\t\t}\n\n\t\tcase GameType.PLINKO: {\n\t\t\treturn (client_seed, server_seed, nonce) => {\n\t\t\t\treturn gameVerification(client_seed, server_seed, nonce, 2, 16);\n\t\t\t};\n\t\t}\n\n\t\tcase GameType.KENO: {\n\t\t\treturn (client_seed, server_seed, nonce) => {\n\t\t\t\treturn gameVerification(\n\t\t\t\t\tclient_seed,\n\t\t\t\t\tserver_seed,\n\t\t\t\t\tnonce,\n\t\t\t\t\t(nonce: number) => {\n\t\t\t\t\t\treturn 40 - nonce;\n\t\t\t\t\t},\n\t\t\t\t\t10,\n\t\t\t\t);\n\t\t\t};\n\t\t}\n\n\t\tdefault: {\n\t\t\tthrow new Error('Game not found get result function');\n\t\t}\n\t}\n};\n","import { createGlobalStyle } from 'styled-components';\nimport { ThemeType } from '../../modules/style/theme';\n\nexport const StyledProvablyFairGlobal = createGlobalStyle<{ theme: ThemeType }>`\n\t.page-provablyFair {\n\t\t.settings__panel {\n\t\t\t&--overview,\n\t\t\t&--implementation {\n\t\t\t\tfont-family: ${(props) => props.theme.text.fonts.Regular};\n\t\t\t\tline-height: ${(props) => props.theme.text.height.regular};\n\t\t\t}\n\t\t}\n\t}\n`;\n","import { actionSimple } from '../../modules/app/actionService';\nimport {\n\tSEED_FETCH,\n\tSEED_REFRESH_CLIENT,\n\tSEED_REFRESH_SERVER,\n\tSEED_SET_CLIENT,\n\tSEED_SET_NONCE,\n\tSEED_SET_SERVER_HASHED,\n} from './seed.constants';\n\nexport const seedSetServerHashed = actionSimple(SEED_SET_SERVER_HASHED);\nexport const seedSetClient = actionSimple(SEED_SET_CLIENT);\nexport const seedSetNonce = actionSimple(SEED_SET_NONCE);\nexport const seedFetch = actionSimple(SEED_FETCH);\nexport const seedRefreshClient = actionSimple(SEED_REFRESH_CLIENT);\nexport const seedRefreshServer = actionSimple(SEED_REFRESH_SERVER);\n","export const SEED_SET_SERVER_HASHED = 'SEED_SET_SERVER_HASHED';\nexport const SEED_SET_CLIENT = 'SEED_SET_CLIENT';\nexport const SEED_SET_NONCE = 'SEED_SET_NONCE';\nexport const SEED_FETCH = 'SEED_FETCH';\nexport const SEED_REFRESH_CLIENT = 'SEED_REFRESH_CLIENT';\nexport const SEED_REFRESH_SERVER = 'SEED_REFRESH_SERVER';\n","import { DropdownContentData } from '@legacyApp/client/store/dropdown/dropdown.reducer';\nimport { actionSimple } from '../../modules/app/actionService';\nimport {\n\tDROPDOWN_ADD,\n\tDROPDOWN_DELETE,\n\tDROPDOWN_SET_ACTIVE,\n\tDROPDOWN_SET_CONTENT,\n\tDROPDOWN_TOGGLE,\n} from './dropdown.constants';\n\nexport const dropdownSetActive = actionSimple<{\n\tid: string;\n}>(DROPDOWN_SET_ACTIVE);\nexport const dropdownSetContent = actionSimple<{\n\tid: string;\n\tcontent: DropdownContentData;\n}>(DROPDOWN_SET_CONTENT);\nexport const dropdownDelete = actionSimple<string>(DROPDOWN_DELETE);\nexport const dropdownAdd = actionSimple<{\n\tid: string;\n\tcontent: DropdownContentData;\n}>(DROPDOWN_ADD);\nexport const dropdownToggle = actionSimple<{\n\tid: string;\n\tbool: boolean;\n}>(DROPDOWN_TOGGLE);\n","import { DropdownContentData } from '@legacyApp/client/store/dropdown/dropdown.reducer';\nimport transactionService from '@modules/transactions/transactionsService';\n\nexport const dropdownContentEqualityFn = (\n\ta: DropdownContentData,\n\tb: DropdownContentData,\n) => {\n\treturn !transactionService.isListDifferent(a?.items, b?.items, [\n\t\t'id',\n\t\t'name',\n\t\t'value',\n\t\t'disabled',\n\t\t'className',\n\t]);\n};\n","import { useAppSelector } from '@legacyApp/hooks/store/useAppSelector';\nimport { shallowEqual } from 'react-redux';\n\nexport const useDropdownActiveSelector = (id: string) =>\n\tuseAppSelector((state) => state.dropdown.active[id], shallowEqual);\n","import { FC } from 'react';\nimport { enhanceComponent } from '@legacyApp/client/wrappers/enhanceComponent';\nimport { PackageType } from '@legacyApp/client/store/registry/registry.constants';\nimport { GameType } from '@modules/games/Game/constants/availableGames';\n\nconst GamesStoreController: FC = () => null;\n\nexport const gamesStoreProps = {\n\tasyncReducers: [\n\t\t{\n\t\t\tid: 'game',\n\t\t\tcallback: () =>\n\t\t\t\timport('../../../modules/games/Game/store/game/game.reducer'),\n\t\t},\n\t\t{\n\t\t\tid: 'gameSession',\n\t\t\tcallback: () =>\n\t\t\t\timport(\n\t\t\t\t\t'../../../modules/games/Game/store/gameSession/gameSession.reducer'\n\t\t\t\t),\n\t\t},\n\t\t{\n\t\t\tid: 'gameAutobet',\n\t\t\tcallback: () =>\n\t\t\t\timport(\n\t\t\t\t\t'../../../modules/games/Game/store/gameAutobet/gameAutobet.reducer'\n\t\t\t\t),\n\t\t},\n\t\t{\n\t\t\tid: 'gameValidation',\n\t\t\tcallback: () =>\n\t\t\t\timport(\n\t\t\t\t\t'../../../modules/games/Game/store/gameValidation/gameValidation.reducer'\n\t\t\t\t),\n\t\t},\n\t\t{\n\t\t\tid: GameType.DICE,\n\t\t\tcallback: () =>\n\t\t\t\timport('../../../modules/games/Game/store/dice/dice.reducer'),\n\t\t},\n\t\t{\n\t\t\tid: GameType.HILO,\n\t\t\tcallback: () =>\n\t\t\t\timport('../../../modules/games/Game/store/hilo/hilo.reducer'),\n\t\t},\n\t\t{\n\t\t\tid: GameType.LIMBO,\n\t\t\tcallback: () =>\n\t\t\t\timport('../../../modules/games/Game/store/limbo/limbo.reducer'),\n\t\t},\n\t\t{\n\t\t\tid: GameType.PLINKO,\n\t\t\tcallback: () =>\n\t\t\t\timport('../../../modules/games/Game/store/plinko/plinko.reducer'),\n\t\t},\n\t\t{\n\t\t\tid: GameType.KENO,\n\t\t\tcallback: () =>\n\t\t\t\timport('../../../modules/games/Game/store/keno/keno.reducer'),\n\t\t},\n\t],\n\tasyncEpics: [\n\t\t{\n\t\t\tid: 'game',\n\t\t\tcallback: () =>\n\t\t\t\timport('../../../modules/games/Game/store/game/game.epic'),\n\t\t},\n\t\t{\n\t\t\tid: 'gameSession',\n\t\t\tcallback: () =>\n\t\t\t\timport(\n\t\t\t\t\t'../../../modules/games/Game/store/gameSession/gameSession.epic'\n\t\t\t\t),\n\t\t},\n\t\t{\n\t\t\tid: 'gameAutobet',\n\t\t\tcallback: () =>\n\t\t\t\timport(\n\t\t\t\t\t'../../../modules/games/Game/store/gameAutobet/gameAutobet.epic'\n\t\t\t\t),\n\t\t},\n\t\t{\n\t\t\tid: 'gameValidation',\n\t\t\tcallback: () =>\n\t\t\t\timport(\n\t\t\t\t\t'../../../modules/games/Game/store/gameValidation/gameValidation.epic'\n\t\t\t\t),\n\t\t},\n\t\t{\n\t\t\tid: GameType.DICE,\n\t\t\tcallback: () =>\n\t\t\t\timport('../../../modules/games/Game/store/dice/dice.epic'),\n\t\t},\n\t\t{\n\t\t\tid: GameType.HILO,\n\t\t\tcallback: () =>\n\t\t\t\timport('../../../modules/games/Game/store/hilo/hilo.epic'),\n\t\t},\n\t\t{\n\t\t\tid: GameType.LIMBO,\n\t\t\tcallback: () =>\n\t\t\t\timport('../../../modules/games/Game/store/limbo/limbo.epic'),\n\t\t},\n\t\t{\n\t\t\tid: GameType.KENO,\n\t\t\tcallback: () =>\n\t\t\t\timport('../../../modules/games/Game/store/keno/keno.epic'),\n\t\t},\n\t\t{\n\t\t\tid: 'flash',\n\t\t\tcallback: () =>\n\t\t\t\timport('../../../modules/games/Game/store/flash/flash.epic'),\n\t\t},\n\t],\n\tasyncDoNotReject: true,\n\tasyncPackage: PackageType.GAME,\n};\n\nexport default enhanceComponent({\n\tGamesStoreController,\n\tprops: gamesStoreProps,\n});\n","import { FC } from 'react';\nimport { enhanceComponent } from '@legacyApp/client/wrappers/enhanceComponent';\nimport { PackageType } from '@legacyApp/client/store/registry/registry.constants';\n\nconst SeedStoreController: FC = () => {\n\treturn null;\n};\n\nexport const seedStoreProps = {\n\tasyncReducers: [\n\t\t{\n\t\t\tid: 'seed',\n\t\t\tcallback: () =>\n\t\t\t\timport('../../../LegacyApp/client/store.async/seed/seed.reducer'),\n\t\t},\n\t],\n\tasyncEpics: [\n\t\t{\n\t\t\tid: 'seed',\n\t\t\tcallback: () =>\n\t\t\t\timport('../../../LegacyApp/client/store.async/seed/seed.epic'),\n\t\t},\n\t],\n\tasyncPackage: PackageType.SEED,\n};\n\nexport default enhanceComponent({\n\tSeedStoreController,\n\tprops: seedStoreProps,\n});\n","import { EffectCallback, useEffect } from 'react';\n\nexport const useOnUnmount = (callback: EffectCallback) => {\n\tuseEffect(() => {\n\t\treturn () => {\n\t\t\tcallback();\n\t\t};\n\t\t// eslint-disable-next-line react-hooks/exhaustive-deps\n\t}, []);\n};\n","import { isFunction } from './isFunction';\nimport { isTrueOrZero } from './isTrueOrZero';\n\nexport interface PageScrollToProps {\n\ttop?: number;\n\tleft?: number;\n}\n\nexport const pageScrollTo = ({ top, left }: PageScrollToProps) => {\n\tconst element = document.body.parentElement;\n\n\tif (\n\t\telement &&\n\t\tisFunction(element.scrollTo) &&\n\t\t(isTrueOrZero(top) || isTrueOrZero(left))\n\t) {\n\t\telement.scrollTo({\n\t\t\tbehavior: 'smooth',\n\t\t\ttop: isTrueOrZero(top) ? top : 0,\n\t\t\tleft: isTrueOrZero(left) ? left : 0,\n\t\t});\n\t}\n};\n","import { shallowEqual } from 'react-redux';\nimport { useAppSelector } from '@legacyApp/hooks/store/useAppSelector';\nimport { CurrencyType } from '@legacyApp/types/wallet/CurrencyType';\nimport transactionService from '../../../../transactions/transactionsService';\nimport { GameType } from '../../constants/availableGames';\nimport { GameStrategy } from '../../types/GameStrategy';\nimport { AutoBetMode } from '../game/thunks/handleBet.thunk';\n\nexport const useGameAutoBetIsRolling = (game: GameType) =>\n\tuseAppSelector<boolean>(\n\t\t(state) => state.gameAutobet?.autoBetRolling[game],\n\t\tshallowEqual,\n\t);\nexport const useGameAutoBetActive = (game: GameType) =>\n\tuseAppSelector<AutoBetMode | boolean>(\n\t\t(state) => state.gameAutobet?.active[game],\n\t\tshallowEqual,\n\t);\nexport const useGameAutoBetMode = () =>\n\tuseAppSelector<string>((state) => state.gameAutobet?.mode, shallowEqual);\n\nexport const useGameAutoBetCurrency = (game: GameType) =>\n\tuseAppSelector<CurrencyType>(\n\t\t(state) => state.gameAutobet?.currency[game],\n\t\tshallowEqual,\n\t);\n\nexport const useGameAutoBetStats = () =>\n\tuseAppSelector<boolean>(\n\t\t(state) => state.gameAutobet?.autoStats,\n\t\tshallowEqual,\n\t);\n\nexport const useGameAutoBetRollsCounter = (game: GameType) =>\n\tuseAppSelector<number>(\n\t\t(state) => state.gameAutobet?.rollsCounter[game],\n\t\tshallowEqual,\n\t);\n\nexport const useGameAutoBetConfigEasy = (game?: GameType) =>\n\tuseAppSelector(\n\t\t(state) => state.gameAutobet?.configEasy[game || state.game?.activeGame],\n\t\t(previous, next) => !transactionService.isDataDifferent(previous, next),\n\t);\n\nexport const useGameAutoBetPaused = () =>\n\tuseAppSelector<boolean>((state) => state.gameAutobet?.pause, shallowEqual);\n\nexport const useGameAutoBetStrategies = () =>\n\tuseAppSelector<GameStrategy[]>(\n\t\t(state) => state.gameAutobet?.strategies,\n\t\t(previous, next) => !transactionService.isListDifferent(previous, next),\n\t);\n\nexport const useGameAutoBetActiveStrategy = (game?: GameType) =>\n\tuseAppSelector<string>(\n\t\t(state) =>\n\t\t\tstate.gameAutobet?.activeStrategy[game || state.game?.activeGame],\n\t\t(previous, next) => !transactionService.isDataDifferent(previous, next),\n\t);\n","import { FC, useContext } from 'react';\n\nimport { KenoNumberTile } from '@modules/games/KenoGame/components/KenoNumberPanel/KenoNumberTile/KenoNumberTile';\nimport { KenoBetContext } from '@modules/games/KenoGame/context/KenoBet.context';\n\nexport const KenoAutoBetNumberPanel: FC<{\n\tviewOnly: boolean;\n}> = ({ viewOnly }) => {\n\tconst { selected: selectedNumbers } = useContext(KenoBetContext);\n\n\tif (!selectedNumbers?.length) {\n\t\treturn null;\n\t}\n\n\treturn (\n\t\t<div\n\t\t\tdata-testid=\"kenoAutoBetNumberPanel\"\n\t\t\tclassName={`grid grid-cols-[repeat(10,1fr)] gap-0.5 [.chat-wrapper_&]:flex w-full min_mobile_large:gap-1 [.chat-wrapper_&]:gap-[2px] min_mobile_medium:w-full h-auto min_mobile_medium:!justify-center [.chat-wrapper_&]:!justify-start`}\n\t\t>\n\t\t\t{selectedNumbers\n\t\t\t\t.slice()\n\t\t\t\t.sort((a, b) => a - b)\n\t\t\t\t.map((number, i) => (\n\t\t\t\t\t<KenoNumberTile\n\t\t\t\t\t\tkey={i + 1}\n\t\t\t\t\t\tviewOnly={viewOnly}\n\t\t\t\t\t\tnumber={number}\n\t\t\t\t\t\tclassName=\"!w-full [.chat-wrapper_&]:!w-[35px] !min-w-6 !min-h-6 !aspect-square\"\n\t\t\t\t\t/>\n\t\t\t\t))}\n\t\t</div>\n\t);\n};\n","import React, { FC } from 'react';\n\nimport { BetDetailsType } from '@legacyApp/types/bets/BetDetailsType';\n\nimport { KenoAutoBetNumberPanel } from '@modules/games/KenoGame/components/KenoNumberPanel/KenoAutoBetNumberPanel';\nimport { KenoNumberPanel } from '@modules/games/KenoGame/components/KenoNumberPanel/KenoNumberPanel';\nimport { KenoBetContext } from '@modules/games/KenoGame/context/KenoBet.context';\n\ninterface OptionalCurrencyBetDetailsType\n\textends Omit<BetDetailsType, 'currency'> {\n\tcurrency?: string;\n\thits?: number[];\n}\n\ninterface KenoResultProps {\n\tdata: OptionalCurrencyBetDetailsType;\n\tfullPanel?: boolean;\n}\n\nconst KenoResult: FC<KenoResultProps> = ({ data, fullPanel }) => {\n\treturn (\n\t\t<KenoBetContext.Provider\n\t\t\tvalue={{\n\t\t\t\tviewOnly: true,\n\t\t\t\tlockSelecting: true,\n\t\t\t\tselected: data?.selected,\n\t\t\t\thits: data?.hits,\n\t\t\t\trisk: data?.risk,\n\t\t\t}}\n\t\t>\n\t\t\t<div className=\"w-full h-auto flex justify-center [.chat-wrapper_&]:justify-start\">\n\t\t\t\t{fullPanel ? (\n\t\t\t\t\t<KenoNumberPanel\n\t\t\t\t\t\tclassName={`min_mobile_medium:!grid min_mobile_medium:!justify-center`}\n\t\t\t\t\t\tviewOnly\n\t\t\t\t\t/>\n\t\t\t\t) : (\n\t\t\t\t\t<KenoAutoBetNumberPanel viewOnly />\n\t\t\t\t)}\n\t\t\t</div>\n\t\t</KenoBetContext.Provider>\n\t);\n};\n\nexport default KenoResult;\n","import React from 'react';\nimport PropTypes from 'prop-types';\nimport classnames from 'classnames';\nimport CountUp from 'react-countup';\nimport { faTimes } from '@fortawesome/free-solid-svg-icons';\nimport { enhanceComponent } from '@legacyApp/client/wrappers/enhanceComponent';\nimport { AwesomeIcon } from '@common/components/icons/AwesomeIcon';\nimport { isTrueOrZero } from '@common/methods/isTrueOrZero';\nimport { checkHotkeysAllowed } from '@legacyApp/client/modules/app/checkHotkeysAllowed';\nimport { roundNumber } from '@common/methods/roundNumber/roundNumber';\nimport { StyledLimboCounter } from './LimboCounter.styled';\n\nclass LimboCounter extends React.PureComponent {\n\tstatic propTypes = {\n\t\tresult: PropTypes.any,\n\t\ttarget: PropTypes.any,\n\t\tanimation: PropTypes.bool,\n\t\tset: PropTypes.func,\n\t\tsmall: PropTypes.bool,\n\t\thotkeys: PropTypes.bool,\n\t\tclassName: PropTypes.any,\n\t\tupdateTarget: PropTypes.func,\n\t\tgetHotkey: PropTypes.func,\n\t\tdisableHotkeys: PropTypes.bool,\n\t\tscreenWidth: PropTypes.number,\n\t};\n\n\tconstructor(props) {\n\t\tsuper(props);\n\t\tthis.state = {\n\t\t\tclassName: '',\n\t\t};\n\t\tthis.timeout = null;\n\t\tthis.el = React.createRef();\n\t}\n\n\tcomponentDidMount() {\n\t\tif (this.props.hotkeys) {\n\t\t\twindow.addEventListener('keydown', this.handleKeyboard);\n\t\t}\n\t}\n\n\tcomponentDidUpdate(prevProps) {\n\t\tif (this.props.result !== prevProps.result) {\n\t\t\tthis.onStart();\n\t\t}\n\t}\n\n\tcomponentWillUnmount() {\n\t\tif (this.props.hotkeys) {\n\t\t\twindow.removeEventListener('keydown', this.handleKeyboard);\n\t\t}\n\t\tif (this.timeout) {\n\t\t\tclearTimeout(this.timeout);\n\t\t}\n\t\tif (this.props.set) {\n\t\t\tthis.props.set(false);\n\t\t}\n\t}\n\n\thandleKeyboard = (obj) => {\n\t\tif (!this.el || !checkHotkeysAllowed(this.props.disableHotkeys)) {\n\t\t\treturn;\n\t\t}\n\n\t\tif (obj.keyCode === this.props.getHotkey('lower_target', 'limbo').keyCode) {\n\t\t\tobj.preventDefault();\n\t\t\tthis.props.updateTarget(\n\t\t\t\troundNumber(parseFloat(this.props.target) - 1, 0),\n\t\t\t);\n\t\t}\n\n\t\tif (\n\t\t\tobj.keyCode === this.props.getHotkey('higher_target', 'limbo').keyCode\n\t\t) {\n\t\t\tobj.preventDefault();\n\t\t\tthis.props.updateTarget(\n\t\t\t\troundNumber(parseFloat(this.props.target) + 1, 0),\n\t\t\t);\n\t\t}\n\t};\n\n\tonEnd = () => {\n\t\tif (!this.props.result) {\n\t\t\treturn;\n\t\t}\n\t\tthis.setState({\n\t\t\tclassName: this.props.target\n\t\t\t\t? parseFloat(this.props.result) >= parseFloat(this.props.target)\n\t\t\t\t\t? 'text-positive'\n\t\t\t\t\t: 'text-negative'\n\t\t\t\t: '',\n\t\t});\n\t};\n\n\tonStart = () => {\n\t\tif (!this.props.animation) {\n\t\t\treturn this.onEnd();\n\t\t}\n\t\tthis.setState({\n\t\t\tclassName: '',\n\t\t});\n\t\tif (this.props.result) {\n\t\t\tthis.timeout = setTimeout(() => this.onEnd(), 400);\n\t\t}\n\t};\n\n\trender() {\n\t\tconst result = parseFloat(this.props.result || 1);\n\t\treturn (\n\t\t\t<StyledLimboCounter\n\t\t\t\t$length={`${result.toFixed(2) || ''}`.length}\n\t\t\t\t$screenWidth={this.props.screenWidth}\n\t\t\t\t$noTarget={!isTrueOrZero(this.props.target) || this.props.small}\n\t\t\t\tref={this.el}\n\t\t\t\tclassName={classnames(\n\t\t\t\t\tthis.state.className,\n\t\t\t\t\tthis.props.className,\n\t\t\t\t\t'text-style-md-semibold',\n\t\t\t\t)}\n\t\t\t>\n\t\t\t\t{this.props.animation ? (\n\t\t\t\t\t<CountUp\n\t\t\t\t\t\tend={result}\n\t\t\t\t\t\tstart={1}\n\t\t\t\t\t\tduration={0.5}\n\t\t\t\t\t\tdecimals={2}\n\t\t\t\t\t\tseparator={' '}\n\t\t\t\t\t/>\n\t\t\t\t) : (\n\t\t\t\t\t<span>{result.toFixed(2)}</span>\n\t\t\t\t)}\n\t\t\t\t<AwesomeIcon icon={faTimes} />\n\t\t\t</StyledLimboCounter>\n\t\t);\n\t}\n}\n\nLimboCounter = enhanceComponent({\n\tLimboCounter,\n});\n\nexport default LimboCounter;\n","import { FC, useRef } from 'react';\nimport { Sounds } from '@common/constants/config/sounds';\nimport audioService from '@legacyApp/client/modules/app/audioService';\nimport { MultiplierType } from '@modules/games/PlinkoGame/types';\nimport { getBallColor } from '@modules/games/PlinkoGame/components/playground/PixiJS/methods/getBallColor';\nimport { MultiplierColorCombinations } from '@modules/games/PlinkoGame/components/MuliplierBoxes/multipliers';\nimport { GameType } from '@modules/games/Game/constants/availableGames';\nimport { GameResultEventDetails } from '@modules/games/Game/methods/resultEvent/gameResultEventDetails';\nimport { useCustomEventListener } from '@common/hooks/useCustomEventListener';\nimport { useOnUnmount } from '@common/hooks/useOnUnmount';\nimport { EVENTS } from '@common/constants/events';\n\nexport interface MultiplierBoxProps {\n\tmultiplier: MultiplierType;\n\tindex: number;\n\tcount: number;\n\tenableAnimation?: boolean;\n\tmarked?: boolean;\n}\n\nconst getMarkedBallStyle = (risk) => {\n\tconst colors = getBallColor(risk);\n\n\treturn {\n\t\tbackgroundColor: colors.fill,\n\t\tborder: `1px solid ${colors.line}`,\n\t};\n};\n\nexport const MultiplierBox: FC<MultiplierBoxProps> = ({\n\tmultiplier,\n\tindex,\n\tcount,\n\tenableAnimation,\n\tmarked,\n}) => {\n\tconst { value, risk, lines } = multiplier;\n\n\tconst boxEl = useRef(null);\n\tconst timeoutRef = useRef(null);\n\n\tconst boxColorClassName =\n\t\tMultiplierColorCombinations?.[String(count)]?.[index];\n\n\tconst onResult = (details: GameResultEventDetails) => {\n\t\tif (!enableAnimation) {\n\t\t\treturn;\n\t\t}\n\n\t\tconst { result } = details;\n\t\tconst isActivated = result === index;\n\n\t\tif (!isActivated) {\n\t\t\treturn;\n\t\t}\n\n\t\taudioService.play(Sounds.won, undefined);\n\n\t\tboxEl.current.classList.add('multiplier-box-animation');\n\n\t\tif (timeoutRef.current) {\n\t\t\tclearTimeout(timeoutRef.current);\n\t\t}\n\n\t\ttimeoutRef.current = setTimeout(() => {\n\t\t\tboxEl.current.classList.remove('multiplier-box-animation');\n\t\t}, 500);\n\t};\n\n\tuseOnUnmount(() => {\n\t\tif (timeoutRef.current) {\n\t\t\tclearTimeout(timeoutRef.current);\n\t\t}\n\t});\n\n\tuseCustomEventListener<GameResultEventDetails>(\n\t\tEVENTS.GAME_RESULT(GameType.PLINKO),\n\t\tonResult,\n\t);\n\n\treturn (\n\t\t<div\n\t\t\tclassName={`multiplier-box flex items-center justify-center rounded text-color-dark-900 text-[10px] font-bold h-[30px] leading-[30px] ${boxColorClassName} ${\n\t\t\t\tmarked ? '!opacity-100 relative' : ''\n\t\t\t}`}\n\t\t\tref={boxEl}\n\t\t\tkey={`${risk}${lines}${value}${index}`}\n\t\t\tdata-value={value}\n\t\t>\n\t\t\t{marked && (\n\t\t\t\t<div\n\t\t\t\t\tclassName=\"multiplier-box-marked absolute w-[15px] h-[15px] top-[-15px] rounded-full max_mobile_large:border-2 max_mobile_large:h-2.5 max_mobile_large:w-2.5 max_mobile_large:top-[-10px]\"\n\t\t\t\t\tstyle={getMarkedBallStyle(risk)}\n\t\t\t\t/>\n\t\t\t)}\n\t\t\t{value < 10 && value >= 1 ? value.toFixed(1) : value}\n\n\t\t\t{Number(value) < 1000 && 'x'}\n\t\t</div>\n\t);\n};\n","import { FC, useCallback } from 'react';\nimport { useStateEffect } from '@common/hooks/useStateEffect';\nimport { Tooltip } from '@legacyApp/client/components/tooltip';\nimport { TransNamespace } from '@legacyApp/client/modules/translation/TransNamespace';\nimport { Risk } from '@modules/games/Game/types/GameRisk';\nimport { useGameRisk } from '@modules/games/Game/store/game/game.selectors';\nimport { usePlinkoLinesSelector } from '../../../Game/store/plinko/selectors/usePlinkoLinesSelector';\nimport transactionService from '../../../../transactions/transactionsService';\nimport { LinesType, MultiplierType } from '../../types';\nimport { useGameValidationProfitError } from '../../../Game/store/gameValidation/gameValidation.selectors';\nimport { GameType } from '../../../Game/constants/availableGames';\nimport { getMultiplierByLinesQnt } from './multipliers';\nimport { MultiplierBox } from './MultiplierBox';\n\nexport const MultiplierBoxes: FC<{\n\tlines?: LinesType;\n\trisk?: Risk;\n\tenableAnimation?: boolean;\n\tonModal?: boolean;\n\tprofitError?: string | boolean;\n\tclassName?: string;\n\tstyle?: object;\n\tmarkedBoxIndex?: number;\n\tstyleGrid?: object;\n\tcompactView?: boolean;\n}> = ({\n\tlines,\n\trisk,\n\tenableAnimation,\n\tonModal,\n\tprofitError,\n\tclassName,\n\tstyle,\n\tmarkedBoxIndex,\n\tstyleGrid,\n\tcompactView,\n}) => {\n\tconst stateLines = usePlinkoLinesSelector();\n\tconst lines_ = lines || stateLines;\n\tconst stateRisk = useGameRisk(GameType.PLINKO);\n\tconst risk_ = risk || stateRisk;\n\tconst profitErrorState = useGameValidationProfitError(GameType.PLINKO);\n\tconst profitError_ =\n\t\tprofitError !== undefined ? profitError : profitErrorState;\n\n\tconst compactViewClassNames =\n\t\t'[&_.grid]:gap-px [&_.grid]:min_tablet_small:gap-1 [&_.multiplier-box]:h-[unset] [&_.multiplier-box]:min_tablet_small:min-h-[30px] [&_.multiplier-box]:text-[6px] [&_.multiplier-box]:min_mobile_large:text-[0.5rem] [&_.multiplier-box]:min_tablet_medium:text-xs [&_.multiplier-box]:leading-none [&_.multiplier-box]:rounded-[0.15rem] [&_.multiplier-box]:min_mobile_large:rounded';\n\n\tconst multipliers = useStateEffect<MultiplierType[]>(\n\t\tuseCallback(() => getMultiplierByLinesQnt(lines_, risk_), [lines_, risk_]),\n\t\t(a, b) => transactionService.isListDifferent(a, b, ['label', 'value']),\n\t);\n\n\treturn (\n\t\t<div\n\t\t\tclassName={`multiplier-boxes w-full text-style-sm-regular ${\n\t\t\t\tcompactView ? compactViewClassNames : ''\n\t\t\t} ${className}`}\n\t\t\tstyle={style}\n\t\t>\n\t\t\t<Tooltip\n\t\t\t\tonModal={onModal}\n\t\t\t\tlocalTheme=\"error\"\n\t\t\t\tnamespace={TransNamespace.COMMON}\n\t\t\t\tcontent={profitError_}\n\t\t\t\tisVisible={!!profitError_ && typeof profitError_ !== 'boolean'}\n\t\t\t\thideOnClick={false}\n\t\t\t>\n\t\t\t\t<div\n\t\t\t\t\tclassName=\"w-full grid\"\n\t\t\t\t\tstyle={{\n\t\t\t\t\t\tgridTemplateColumns: `repeat(${multipliers.length}, minmax(15px, 1fr))`,\n\t\t\t\t\t\tgridTemplateRows: 'minmax(20px, 1fr)',\n\t\t\t\t\t\t...styleGrid,\n\t\t\t\t\t}}\n\t\t\t\t>\n\t\t\t\t\t{multipliers.map((multiplier, index) => (\n\t\t\t\t\t\t<MultiplierBox\n\t\t\t\t\t\t\tenableAnimation={enableAnimation}\n\t\t\t\t\t\t\tkey={`${risk}${lines}${multiplier.value}${index}`}\n\t\t\t\t\t\t\tmultiplier={multiplier}\n\t\t\t\t\t\t\tindex={index}\n\t\t\t\t\t\t\tcount={multipliers?.length}\n\t\t\t\t\t\t\tmarked={index === markedBoxIndex}\n\t\t\t\t\t\t/>\n\t\t\t\t\t))}\n\t\t\t\t</div>\n\t\t\t</Tooltip>\n\t\t</div>\n\t);\n};\n","import { Risk } from '@modules/games/Game/types/GameRisk';\nimport { LinesType, MultiplierType, MultiplierValues } from '../../types';\nimport { config } from '../playground/config';\n\nexport enum MultiplierColors {\n\tRED_DARKER = 'bg-color-red-darker',\n\tRED_DARK = 'bg-color-red-dark',\n\tRED = 'bg-color-red',\n\tORANGE_DARK = 'bg-color-orange-dark',\n\tORANGE = 'bg-color-orange',\n\tORANGE_LIGHT = 'bg-color-orange-light',\n\tYELLOW_DARK = 'bg-color-yellow-dark',\n\tYELLOW = 'bg-color-yellow',\n\tYELLOW_LIGHT = 'bg-color-yellow-light',\n}\n\nexport const MultiplierColorCombinations: Record<number, Array<string>> = {\n\t'9': [\n\t\tMultiplierColors.ORANGE,\n\t\tMultiplierColors.ORANGE_LIGHT,\n\t\tMultiplierColors.YELLOW_DARK,\n\t\tMultiplierColors.YELLOW,\n\t\tMultiplierColors.YELLOW_LIGHT,\n\t\tMultiplierColors.YELLOW,\n\t\tMultiplierColors.YELLOW_DARK,\n\t\tMultiplierColors.ORANGE_LIGHT,\n\t\tMultiplierColors.ORANGE,\n\t],\n\t'10': [\n\t\tMultiplierColors.ORANGE,\n\t\tMultiplierColors.ORANGE_LIGHT,\n\t\tMultiplierColors.YELLOW_DARK,\n\t\tMultiplierColors.YELLOW,\n\t\tMultiplierColors.YELLOW_LIGHT,\n\t\tMultiplierColors.YELLOW_LIGHT,\n\t\tMultiplierColors.YELLOW,\n\t\tMultiplierColors.YELLOW_DARK,\n\t\tMultiplierColors.ORANGE_LIGHT,\n\t\tMultiplierColors.ORANGE,\n\t],\n\t'11': [\n\t\tMultiplierColors.ORANGE_DARK,\n\t\tMultiplierColors.ORANGE,\n\t\tMultiplierColors.ORANGE_LIGHT,\n\t\tMultiplierColors.YELLOW_DARK,\n\t\tMultiplierColors.YELLOW,\n\t\tMultiplierColors.YELLOW_LIGHT,\n\t\tMultiplierColors.YELLOW,\n\t\tMultiplierColors.YELLOW_DARK,\n\t\tMultiplierColors.ORANGE_LIGHT,\n\t\tMultiplierColors.ORANGE,\n\t\tMultiplierColors.ORANGE_DARK,\n\t],\n\t'12': [\n\t\tMultiplierColors.ORANGE_DARK,\n\t\tMultiplierColors.ORANGE,\n\t\tMultiplierColors.ORANGE_LIGHT,\n\t\tMultiplierColors.YELLOW_DARK,\n\t\tMultiplierColors.YELLOW,\n\t\tMultiplierColors.YELLOW_LIGHT,\n\t\tMultiplierColors.YELLOW_LIGHT,\n\t\tMultiplierColors.YELLOW,\n\t\tMultiplierColors.YELLOW_DARK,\n\t\tMultiplierColors.ORANGE_LIGHT,\n\t\tMultiplierColors.ORANGE,\n\t\tMultiplierColors.ORANGE_DARK,\n\t],\n\t'13': [\n\t\tMultiplierColors.RED,\n\t\tMultiplierColors.ORANGE_DARK,\n\t\tMultiplierColors.ORANGE,\n\t\tMultiplierColors.ORANGE_LIGHT,\n\t\tMultiplierColors.YELLOW_DARK,\n\t\tMultiplierColors.YELLOW,\n\t\tMultiplierColors.YELLOW_LIGHT,\n\t\tMultiplierColors.YELLOW,\n\t\tMultiplierColors.YELLOW_DARK,\n\t\tMultiplierColors.ORANGE_LIGHT,\n\t\tMultiplierColors.ORANGE,\n\t\tMultiplierColors.ORANGE_DARK,\n\t\tMultiplierColors.RED,\n\t],\n\t'14': [\n\t\tMultiplierColors.RED,\n\t\tMultiplierColors.ORANGE_DARK,\n\t\tMultiplierColors.ORANGE,\n\t\tMultiplierColors.ORANGE_LIGHT,\n\t\tMultiplierColors.YELLOW_DARK,\n\t\tMultiplierColors.YELLOW,\n\t\tMultiplierColors.YELLOW_LIGHT,\n\t\tMultiplierColors.YELLOW_LIGHT,\n\t\tMultiplierColors.YELLOW,\n\t\tMultiplierColors.YELLOW_DARK,\n\t\tMultiplierColors.ORANGE_LIGHT,\n\t\tMultiplierColors.ORANGE,\n\t\tMultiplierColors.ORANGE_DARK,\n\t\tMultiplierColors.RED,\n\t],\n\t'15': [\n\t\tMultiplierColors.RED_DARK,\n\t\tMultiplierColors.RED,\n\t\tMultiplierColors.ORANGE_DARK,\n\t\tMultiplierColors.ORANGE,\n\t\tMultiplierColors.ORANGE_LIGHT,\n\t\tMultiplierColors.YELLOW_DARK,\n\t\tMultiplierColors.YELLOW,\n\t\tMultiplierColors.YELLOW_LIGHT,\n\t\tMultiplierColors.YELLOW,\n\t\tMultiplierColors.YELLOW_DARK,\n\t\tMultiplierColors.ORANGE_LIGHT,\n\t\tMultiplierColors.ORANGE,\n\t\tMultiplierColors.ORANGE_DARK,\n\t\tMultiplierColors.RED,\n\t\tMultiplierColors.RED_DARK,\n\t],\n\t'16': [\n\t\tMultiplierColors.RED_DARK,\n\t\tMultiplierColors.RED,\n\t\tMultiplierColors.ORANGE_DARK,\n\t\tMultiplierColors.ORANGE,\n\t\tMultiplierColors.ORANGE_LIGHT,\n\t\tMultiplierColors.YELLOW_DARK,\n\t\tMultiplierColors.YELLOW,\n\t\tMultiplierColors.YELLOW_LIGHT,\n\t\tMultiplierColors.YELLOW_LIGHT,\n\t\tMultiplierColors.YELLOW,\n\t\tMultiplierColors.YELLOW_DARK,\n\t\tMultiplierColors.ORANGE_LIGHT,\n\t\tMultiplierColors.ORANGE,\n\t\tMultiplierColors.ORANGE_DARK,\n\t\tMultiplierColors.RED,\n\t\tMultiplierColors.RED_DARK,\n\t],\n\t'17': [\n\t\tMultiplierColors.RED_DARKER,\n\t\tMultiplierColors.RED_DARK,\n\t\tMultiplierColors.RED,\n\t\tMultiplierColors.ORANGE_DARK,\n\t\tMultiplierColors.ORANGE,\n\t\tMultiplierColors.ORANGE_LIGHT,\n\t\tMultiplierColors.YELLOW_DARK,\n\t\tMultiplierColors.YELLOW,\n\t\tMultiplierColors.YELLOW_LIGHT,\n\t\tMultiplierColors.YELLOW,\n\t\tMultiplierColors.YELLOW_DARK,\n\t\tMultiplierColors.ORANGE_LIGHT,\n\t\tMultiplierColors.ORANGE,\n\t\tMultiplierColors.ORANGE_DARK,\n\t\tMultiplierColors.RED,\n\t\tMultiplierColors.RED_DARK,\n\t\tMultiplierColors.RED_DARKER,\n\t],\n};\n\nexport const getMultiplier = (\n\tvalue: MultiplierValues,\n\tlines: LinesType,\n\trisk: Risk,\n\tpayoutIndex: number,\n): MultiplierType => {\n\treturn {\n\t\tlabel: `${config.labels.floor}||${value}||${0}||${payoutIndex}`,\n\t\timg: `multiplier${value}`,\n\t\tvalue,\n\t\tlines,\n\t\trisk,\n\t\tpayoutIndex,\n\t};\n};\n\nexport const multiplyBlocksByLinesQnt: Record<\n\tRisk,\n\tRecord<LinesType, Array<number>>\n> = {\n\t[Risk.LOW]: {\n\t\t8: [5.6, 2.1, 1.1, 1, 0.5, 1, 1.1, 2.1, 5.6],\n\t\t9: [5.6, 2, 1.6, 1, 0.7, 0.7, 1, 1.6, 2, 5.6],\n\t\t10: [8.9, 3, 1.4, 1.1, 1, 0.5, 1, 1.1, 1.4, 3, 8.9],\n\t\t11: [8.4, 3, 1.9, 1.3, 1, 0.7, 0.7, 1, 1.3, 1.9, 3, 8.4],\n\t\t12: [10, 3, 1.6, 1.4, 1.1, 1, 0.5, 1, 1.1, 1.4, 1.6, 3, 10],\n\t\t13: [8.1, 4, 3, 1.9, 1.2, 0.9, 0.7, 0.7, 0.9, 1.2, 1.9, 3, 4, 8.1],\n\t\t14: [7.1, 4, 1.9, 1.4, 1.3, 1.1, 1, 0.5, 1, 1.1, 1.3, 1.4, 1.9, 4, 7.1],\n\t\t15: [15, 8, 3, 2, 1.5, 1.1, 1, 0.7, 0.7, 1, 1.1, 1.5, 2, 3, 8, 15],\n\t\t16: [16, 9, 2, 1.4, 1.4, 1.2, 1.1, 1, 0.5, 1, 1.1, 1.2, 1.4, 1.4, 2, 9, 16],\n\t},\n\t[Risk.MEDIUM]: {\n\t\t8: [13, 3, 1.3, 0.7, 0.4, 0.7, 1.3, 3, 13],\n\t\t9: [18, 4, 1.7, 0.9, 0.5, 0.5, 0.9, 1.7, 4, 18],\n\t\t10: [22, 5, 2, 1.4, 0.6, 0.4, 0.6, 1.4, 2, 5, 22],\n\t\t11: [24, 6, 3, 1.8, 0.7, 0.5, 0.5, 0.7, 1.8, 3, 6, 24],\n\t\t12: [33, 11, 4, 2, 1.1, 0.6, 0.3, 0.6, 1.1, 2, 4, 11, 33],\n\t\t13: [43, 13, 6, 3, 1.3, 0.7, 0.4, 0.4, 0.7, 1.3, 3, 6, 13, 43],\n\t\t14: [58, 15, 7, 4, 1.9, 1, 0.5, 0.2, 0.5, 1, 1.9, 4, 7, 15, 58],\n\t\t15: [88, 18, 11, 5, 3, 1.3, 0.5, 0.3, 0.3, 0.5, 1.3, 3, 5, 11, 18, 88],\n\t\t16: [110, 41, 10, 5, 3, 1.5, 1, 0.5, 0.3, 0.5, 1, 1.5, 3, 5, 10, 41, 110],\n\t},\n\t[Risk.HIGH]: {\n\t\t8: [29, 4, 1.5, 0.3, 0.2, 0.3, 1.5, 4, 29],\n\t\t9: [43, 7, 2, 0.6, 0.2, 0.2, 0.6, 2, 7, 43],\n\t\t10: [76, 10, 3, 0.9, 0.3, 0.2, 0.3, 0.9, 3, 10, 76],\n\t\t11: [120, 14, 5.2, 1.4, 0.4, 0.2, 0.2, 0.4, 1.4, 5.2, 14, 120],\n\t\t12: [170, 24, 8.1, 2, 0.7, 0.2, 0.2, 0.2, 0.7, 2, 8.1, 24, 170],\n\t\t13: [260, 37, 11, 4, 1, 0.2, 0.2, 0.2, 0.2, 1, 4, 11, 37, 260],\n\t\t14: [420, 56, 18, 5, 1.9, 0.3, 0.2, 0.2, 0.2, 0.3, 1.9, 5, 18, 56, 420],\n\t\t15: [620, 83, 27, 8, 3, 0.5, 0.2, 0.2, 0.2, 0.2, 0.5, 3, 8, 27, 83, 620],\n\t\t16: [\n\t\t\t1000, 130, 26, 9, 4, 2, 0.2, 0.2, 0.2, 0.2, 0.2, 2, 4, 9, 26, 130, 1000,\n\t\t],\n\t},\n};\n\nexport function getMultiplierByLinesQnt(\n\tlines: LinesType,\n\trisk: Risk,\n): MultiplierType[] {\n\treturn multiplyBlocksByLinesQnt[risk][lines].map(\n\t\t(value: MultiplierValues, index) =>\n\t\t\tgetMultiplier(value, lines, risk, index),\n\t);\n}\n","import { FC } from 'react';\nimport { isTrueOrZero } from '@common/methods/isTrueOrZero';\nimport { Risk } from '@modules/games/Game/types/GameRisk';\nimport { MultiplierBoxes } from '../MuliplierBoxes/MultiplierBoxes';\nimport { LinesType } from '../../types';\nimport { PlinkoResultStyled } from './PlinkoResult.styled';\n\nconst PlinkoResult: FC<{\n\tresult: number;\n\trows: LinesType;\n\trisk: Risk;\n}> = ({ result, risk, rows }) => {\n\tif (!isTrueOrZero(result) || !rows || !risk) {\n\t\treturn null;\n\t}\n\treturn (\n\t\t<PlinkoResultStyled $resultIndex={result} $risk={risk}>\n\t\t\t<MultiplierBoxes\n\t\t\t\tlines={rows}\n\t\t\t\trisk={risk}\n\t\t\t\tprofitError={null}\n\t\t\t\tmarkedBoxIndex={result}\n\t\t\t\tcompactView\n\t\t\t/>\n\t\t</PlinkoResultStyled>\n\t);\n};\n\nexport default PlinkoResult;\n","import { Risk } from '@modules/games/Game/types/GameRisk';\n\nexport const getBallColor = (risk: Risk) => {\n\tswitch (risk) {\n\t\tcase Risk.LOW:\n\t\t\treturn {\n\t\t\t\tfill: '#0D6EFF',\n\t\t\t\tline: '#408BFC',\n\t\t\t};\n\t\tcase Risk.MEDIUM:\n\t\t\treturn {\n\t\t\t\tfill: '#c1a73d',\n\t\t\t\tline: '#c7ab7a',\n\t\t\t};\n\t\tcase Risk.HIGH:\n\t\t\treturn {\n\t\t\t\tfill: '#8548b2',\n\t\t\t\tline: '#7c5596',\n\t\t\t};\n\t}\n};\n","export const EMPTY_PATH = '&';\n\nexport enum Mode {\n\tPIXI = 'PIXI',\n\tMATTER = 'MATTER',\n}\n","import { IRendererOptions } from 'matter-js';\nimport { Mode } from './constants';\n\nconst labels = {\n\tball: 'ball',\n\tfloor: 'floor',\n\tpin: 'pin',\n\twall: 'wall',\n} as const;\nexport const colors = {\n\tbackground: 'transparent',\n\tpin: '#ffffff',\n} as const;\nconst scale = 1;\nconst pins = {\n\tstartPins: 3,\n\tpinSize: 2 * scale,\n\tpinGap: 20 * scale,\n\tstartToPinsSpace: 50 * scale,\n};\nconst world = {\n\twidth: 450 * scale,\n\theight: 450 * scale,\n\telement: 450,\n};\nconst ball = {\n\tballSize: 4.5 * scale,\n\ty: 2,\n\tmaxX: world.width / 2 + pins.pinSize * (4 * scale) + pins.pinGap,\n\tminX: world.width / 2 - pins.pinSize * (4 * scale) - pins.pinGap,\n};\nconst engine = {\n\tengineGravity: 2,\n};\nconst renderer: {\n\tbounds: {\n\t\tmax: {\n\t\t\ty: number;\n\t\t\tx: number;\n\t\t};\n\t\tmin: {\n\t\t\ty: number;\n\t\t\tx: number;\n\t\t};\n\t};\n\toptions: IRendererOptions;\n} = {\n\tbounds: {\n\t\tmax: {\n\t\t\ty: world.height,\n\t\t\tx: world.width,\n\t\t},\n\t\tmin: {\n\t\t\ty: 0,\n\t\t\tx: 0,\n\t\t},\n\t},\n\toptions: {\n\t\tshowPositions: false,\n\t\tshowPerformance: false,\n\t\tpixelRatio: 1,\n\t\tbackground: colors.background,\n\t\thasBounds: true,\n\t\twidth: world.width,\n\t\theight: world.height,\n\t\twireframes: false,\n\t},\n};\n\nexport const config = {\n\tmode: Mode.PIXI,\n\tpins,\n\tball,\n\tengine,\n\tworld,\n\tcolors,\n\tscale,\n\trenderer,\n\tlabels,\n};\n"],"names":["DropdownStyle","styled","props","className","classnames","boxNoHeight","localTheme","error","css","Object","keys","length","theme","text","fonts","Bold","dropdownGetThunk","id","dispatch","getState","dropdown","content","Dropdown","active","useDropdownActiveSelector","close","useDispatchCallback","dropdownDelete","add","dropdownAdd","toggle","dropdownToggle","get","addContent","useCallback","items","lastContent","scrollElement","title","onClick","width","trans","itemElement","dropdownContentEqualityFn","toggleList","bool","useOnUnmount","useEffect","children","undefined","name","styleType","ButtonStyleType","borderType","InputStyleType","label","namespace","DropdownArrow","help","SyntaxStyle","SyntaxHighlighter","layout","borderRadius","fontSize","important","size","sizeDesktop","media","minWidthDesktop","ServerSeedInput","changeAsRedirect","goTo","autobetPaused","setConfirm","callback","question","this","pauseAutobet","SeedStoreController","value","isDisabled","inputButtons","loader","React","connect","state","seed","serverHashed","gameAutobet","pause","seedRefreshServer","autobetPause","data","validUrl","closeModal","appGoTo","SettingsLayoutContext","createContext","sections","activeId","activeTabData","handleChangeSection","getSectionContent","SettingsLayoutDesktop","useContext","isLogged","useUserIsLogged","map","el","isActive","nameComponent","notification","NotificationIcon","panelTitle","isNarrow","SlideDownBoxElement","section","isLogged_","isVisible","Title","Content","isContentInitVisible","isContentVisible","SettingsLayoutMobile","SettingsLayout","defaultTab","useState","setActiveId","setActiveTabData","useAppDispatch","isMobile","useAppMobile","routerQueryTab","useRouterQueryTab","isInitialized","useAppInitialized","checkActiveTab_","some","updateUrlQuery","tab","getSectionContent_","panelName","panelName_","handleChangeSection_","modal","openModal","getSectionData_","find","getSections_","activeId_","activeTabData_","Provider","SlideDownBoxStyle","noDashboard","dashboard","padding","calcStyle","a","b","mode","SlideDownTitleStyle","isColor","colors","inputButton","SlideDownContentStyle","SlideDownBox","titleClasses","contentClasses","boxClasses","noScrollTo","isTrueOrZero","_isVisible","setIsVisible","ref","useRef","timeoutRef","prevIsContentVisible","usePrevious","handleClickTitle","event","current","clearTimeout","setTimeout","pageScrollTo","top","offsetTop","opened","checkHotkeysAllowed","disableHotKeys","document","activeElement","indexOf","localName","ClientSeedInput","ClientSeedInputContainer","client","MODAL_ID","SECTIONS","Session","fetch","nonce","transProvablyFair","PureComponent","SessionContainer","seedFetch","IMPLEMENTATION_CONFIG","GameType","code","description","implementation","cardsArray","join","multiplyBlocksByLinesQnt","risk","lines","GAMES_LIST","getGamesList","toUpperCase","ImplementationContainer","game","forms","bet_verification","setGame","formVerificationSetGame","setGame_","toLowerCase","default","index","language","style","dark","Redirect","target","rel","href","ProvableFairOverview","ProvableFairOverviewTitleStyled","ProvableFairOverviewParagraphStyled","VerificationContainer","setClientSeed","payload","setServerSeed","setNonce","resetVerificationForm","client_seed","server_seed","rows_","rows","updateFormDispatch","updateForm","setRows","field","setRisk","result","useStateEffect","diceVerification","hiloFullTailVerification","gameVerification","Error","getResultFunction","transactionService","server_seed_hashed","sha256","GamesStoreController","onChange","placeholder","LinesSwitch","compactView","update","RiskSwitch","GameSlider","rule","disable","betValues","static","noScroll","session","result_value","hiloResult","sub_nonce","LimboCounter","limboResult","animation","plinkoResult","path","PlinkoResult","KenoResult","hash","Risk","selected","kenoResult","hits","dataType","fullPanel","StyledProvablyFairGlobal","createGlobalStyle","Regular","height","regular","createNamespaceTrans","TransNamespace","SECTIONS_CONFIG","OVERVIEW","SESSION","VERIFICATION","IMPLEMENTATION","SECTIONS_CONTENT","ProvablyFairPage","seedSetServerHashed","actionSimple","SEED_SET_SERVER_HASHED","seedSetClient","SEED_SET_CLIENT","seedSetNonce","SEED_SET_NONCE","SEED_FETCH","seedRefreshClient","SEED_REFRESH_CLIENT","SEED_REFRESH_SERVER","DROPDOWN_SET_ACTIVE","DROPDOWN_SET_CONTENT","DROPDOWN_DELETE","DROPDOWN_ADD","DROPDOWN_TOGGLE","useAppSelector","shallowEqual","gamesStoreProps","asyncReducers","asyncEpics","asyncDoNotReject","asyncPackage","PackageType","enhanceComponent","seedStoreProps","left","element","body","parentElement","isFunction","scrollTo","behavior","useGameAutoBetIsRolling","autoBetRolling","useGameAutoBetActive","useGameAutoBetMode","useGameAutoBetCurrency","currency","useGameAutoBetStats","autoStats","useGameAutoBetRollsCounter","rollsCounter","useGameAutoBetConfigEasy","configEasy","activeGame","previous","next","useGameAutoBetPaused","useGameAutoBetStrategies","strategies","useGameAutoBetActiveStrategy","activeStrategy","KenoAutoBetNumberPanel","viewOnly","selectedNumbers","KenoBetContext","slice","sort","number","i","lockSelecting","obj","disableHotkeys","keyCode","getHotkey","preventDefault","updateTarget","roundNumber","parseFloat","setState","onEnd","timeout","hotkeys","window","addEventListener","handleKeyboard","prevProps","onStart","removeEventListener","set","$length","toFixed","$screenWidth","screenWidth","$noTarget","small","end","start","duration","decimals","separator","icon","faTimes","getMarkedBallStyle","getBallColor","backgroundColor","fill","border","line","MultiplierBox","multiplier","count","enableAnimation","marked","boxEl","boxColorClassName","MultiplierColorCombinations","String","useCustomEventListener","EVENTS","details","audioService","Sounds","classList","remove","Number","MultiplierBoxes","onModal","profitError","markedBoxIndex","styleGrid","stateLines","usePlinkoLinesSelector","lines_","stateRisk","useGameRisk","risk_","profitErrorState","useGameValidationProfitError","profitError_","multipliers","getMultiplierByLinesQnt","hideOnClick","gridTemplateColumns","gridTemplateRows","MultiplierColors","ORANGE","ORANGE_LIGHT","YELLOW_DARK","YELLOW","YELLOW_LIGHT","ORANGE_DARK","RED","RED_DARK","RED_DARKER","payoutIndex","config","img","getMultiplier","$resultIndex","$risk","Mode","background","pin","pins","startPins","pinSize","pinGap","startToPinsSpace","world","ball","ballSize","y","maxX","minX","renderer","bounds","max","x","min","options","showPositions","showPerformance","pixelRatio","hasBounds","wireframes","engine","engineGravity","scale","labels","floor","wall"],"mappings":"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","debug_id":"a681b121-9462-5b74-b3fe-bd5b0c9bbb0c"}