{"version":3,"file":"landingPage-12904429.js","sources":["../../node_modules/react/cjs/react-jsx-runtime.production.min.js","../../node_modules/react/jsx-runtime.js","../../node_modules/react-dom/client.js","../../src/config/animations.ts","../../src/hooks/useMultiResImage.ts","../../src/components/backrounds/pattern.svg","../../src/components/backrounds/pattern_lowres.png","../../src/components/backrounds/BackgroundPattern.tsx","../../src/services/launchDarkly.ts","../../src/services/sounds/soundEffects.ts","../../src/components/buttons/Button.tsx","../../src/components/PreloadBlur/PreloadBlur.tsx","../../src/components/buttons/BlackButton.tsx","../../src/components/SVGIcons/AppLogo/AppLogo.tsx","../../src/micro-frontends/landing-page/Landing/headers/LandingHeader.tsx","../../src/micro-frontends/landing-page/Landing/banners/CasinoBanner.tsx","../../src/micro-frontends/landing-page/Landing/banners/GenericBanner.tsx","../../src/utils/getThumbnailUrl.ts","../../src/micro-frontends/landing-page/data/categories.ts","../../src/micro-frontends/landing-page/Landing/components/GamesBanner.tsx","../../src/micro-frontends/landing-page/Landing/Landing.tsx","../../src/micro-frontends/landing-page/index.tsx"],"sourcesContent":["/**\n * @license React\n * react-jsx-runtime.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n'use strict';var f=require(\"react\"),k=Symbol.for(\"react.element\"),l=Symbol.for(\"react.fragment\"),m=Object.prototype.hasOwnProperty,n=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,p={key:!0,ref:!0,__self:!0,__source:!0};\nfunction q(c,a,g){var b,d={},e=null,h=null;void 0!==g&&(e=\"\"+g);void 0!==a.key&&(e=\"\"+a.key);void 0!==a.ref&&(h=a.ref);for(b in a)m.call(a,b)&&!p.hasOwnProperty(b)&&(d[b]=a[b]);if(c&&c.defaultProps)for(b in a=c.defaultProps,a)void 0===d[b]&&(d[b]=a[b]);return{$$typeof:k,type:c,key:e,ref:h,props:d,_owner:n.current}}exports.Fragment=l;exports.jsx=q;exports.jsxs=q;\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-jsx-runtime.production.min.js');\n} else {\n module.exports = require('./cjs/react-jsx-runtime.development.js');\n}\n","'use strict';\n\nvar m = require('react-dom');\nif (process.env.NODE_ENV === 'production') {\n exports.createRoot = m.createRoot;\n exports.hydrateRoot = m.hydrateRoot;\n} else {\n var i = m.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;\n exports.createRoot = function(c, o) {\n i.usingClientEntryPoint = true;\n try {\n return m.createRoot(c, o);\n } finally {\n i.usingClientEntryPoint = false;\n }\n };\n exports.hydrateRoot = function(c, h, o) {\n i.usingClientEntryPoint = true;\n try {\n return m.hydrateRoot(c, h, o);\n } finally {\n i.usingClientEntryPoint = false;\n }\n };\n}\n","export const ANIMATION_DURATION = 0.24; // seconds\n\nexport const animations = {\n opacity: {\n hidden: {\n opacity: 0,\n visibility: 'hidden',\n },\n visible: {\n opacity: 1,\n visibility: 'visible',\n },\n transition: {\n duration: ANIMATION_DURATION,\n },\n },\n scale: {\n hidden: { scale: 0.9 },\n visible: { scale: 1 },\n transition: { duration: ANIMATION_DURATION },\n },\n banner: {\n transition: { duration: 0 },\n },\n miniStore: {\n hidden: { y: '-100%', opacity: 0 },\n visible: { y: 0, opacity: 1 },\n transition: { duration: ANIMATION_DURATION },\n },\n} as const;\n","import { useCallback, useEffect, useRef, useState } from 'react';\n\nexport function useMultiResImage(sources: string[]): string | undefined;\nexport function useMultiResImage(): [string | undefined, (sources: string[]) => VoidFunction];\nexport function useMultiResImage(sources?: string[]) {\n const [currentSource, setCurrentSource] = useState();\n const currentPriorityRef = useRef(0);\n\n const loadSources = useCallback((_sources: string[]) => {\n currentPriorityRef.current = 0;\n\n const unsubscribes = _sources.map((source, priority) => {\n const img = new Image();\n const handleLoad = () => {\n if (priority >= currentPriorityRef.current) {\n setCurrentSource(source);\n currentPriorityRef.current = priority;\n }\n };\n img.addEventListener('load', handleLoad);\n img.src = source;\n\n return () => {\n img.removeEventListener('load', handleLoad);\n img.remove();\n };\n });\n\n return () => unsubscribes.forEach((unsubscribe) => unsubscribe());\n }, []);\n\n useEffect(() => {\n if (sources) {\n return loadSources(sources);\n }\n }, [loadSources, sources]);\n\n return sources ? currentSource : [currentSource, loadSources];\n}\n","export default \"__VITE_ASSET__a2f99848__\"","export default \"__VITE_ASSET__3aa735e6__\"","import type { PropsWithChildren } from 'react';\n\nimport { AnimatePresence, motion } from 'framer-motion';\n\nimport { animations } from '../../config/animations';\nimport { useMultiResImage } from '../../hooks/useMultiResImage';\n\nimport styles from './BackgroundPattern.module.scss';\nimport highResPattern from './pattern.svg';\nimport lowResPattern from './pattern_lowres.png';\n\nconst availableColor = ['violet', 'green', 'yellow'] as const;\n\ntype Color = (typeof availableColor)[number];\n\nconst backgrounds: Record> = {\n violet: {\n backgroundColor: '#000',\n },\n green: {\n backgroundColor: '#5ED577',\n },\n yellow: {\n backgroundColor: '#ffca1e',\n },\n};\n\nconst colors: Record> = {\n violet: {\n filter: 'invert(8%) sepia(27%) saturate(5362%) hue-rotate(256deg) brightness(82%) contrast(109%)',\n },\n green: {\n filter: 'invert(75%) sepia(57%) saturate(425%) hue-rotate(73deg) brightness(92%) contrast(92%)',\n },\n yellow: {\n filter: 'invert(98%) sepia(76%) saturate(2185%) hue-rotate(324deg) brightness(104%) contrast(97%)',\n },\n};\n\ninterface Props extends PropsWithChildren {\n color: Color;\n}\n\nconst patterns = [lowResPattern, highResPattern];\n\nexport default function BackgroundPattern(props: Props) {\n const pattern = useMultiResImage(patterns);\n\n return (\n
\n \n \n \n \n
{props.children}
\n
\n );\n}\n","// https://docs.launchdarkly.com/sdk/client-side/react\nimport * as LD from 'launchdarkly-js-client-sdk';\nimport { useFlags as _useFlags } from 'launchdarkly-react-client-sdk';\n\nimport type { Profile } from './auth';\nimport type { LDFlags } from './types';\n\nexport let ldClient: LD.LDClient | null = null;\n\nexport type LDContext = LD.LDContext;\n\nexport function createLDContext(profile?: Profile | null): LDContext {\n const { firebaseUid, email, stats } = profile ?? {};\n const ldContext = firebaseUid\n ? {\n kind: 'user',\n key: firebaseUid,\n email,\n ...stats,\n }\n : {\n kind: 'user',\n anonymous: true,\n key: 'PLAYER_FRONTEND_ANONYMOUS',\n };\n return ldContext;\n}\n\nexport function initializeLaunchDarkly(ldContext: LDContext): Promise {\n const client = LD.initialize(import.meta.env.VITE_LAUNCH_DARKLY_CLIENT_ID, {\n ...ldContext,\n last_identify: new Date().toISOString(),\n });\n\n return new Promise((resolve, reject) => {\n // https://docs.launchdarkly.com/sdk/client-side/react/react-web#initializing-using-asyncwithldprovider\n client.on('ready', () => {\n ldClient = client;\n resolve(client);\n });\n\n client.on('error', (err) => {\n reject(err);\n });\n });\n}\n\n/**\n * Returns the static value of a flag\n * @param flag\n * @param defaultValue\n */\nexport function resolveFlag(flag: LDFlags, defaultValue: T): T {\n if (ldClient) {\n return ldClient.variation(flag, defaultValue);\n } else if (window.parent?.window?.flags) {\n return window.parent.window.flags[flag];\n }\n console.warn('LaunchDarkly client is missing');\n return defaultValue;\n}\n\n/**\n * Returns the observable value of a flag\n * @param flag\n * @param defaultValue\n */\nexport function useFlag(flag: LDFlags, defaultValue: T): T {\n const ldFlags = _useFlags>();\n const flags = window.parent?.window?.flags ?? ldFlags;\n return resolveFlag(flag, flags[flag] ?? defaultValue);\n}\n\n/**\n * Wrapper for launch darkly useFlags hook, intended to favor window flags if exist.\n */\nexport function useFlags(): Record {\n const ldFlags = _useFlags>();\n const flags = window.parent?.window?.flags ?? ldFlags;\n return flags;\n}\n\n/**\n * Returns launchDarkly client\n */\nexport function getLDClient() {\n if (!ldClient) {\n throw new Error('LaunchDarkly client is missing');\n }\n return ldClient;\n}\n","import { resolveFlag } from '../launchDarkly';\n\nconst effects = ['click', 'popup-open', 'popup-close', 'daily-bonus-open', 'toggle', 'new-tier-congrats'] as const;\n\nexport type SoundEffect = (typeof effects)[number];\n\nconst sounds: Map = new Map([\n ['click', '/sounds/click.mp3'],\n ['popup-open', '/sounds/popup-open.mp3'],\n ['popup-close', '/sounds/popup-close.mp3'],\n ['daily-bonus-open', '/sounds/daily-bonus-open.mp3'],\n ['toggle', '/sounds/toggle.mp3'],\n ['new-tier-congrats', '/sounds/new-tier-congrats.mp3'],\n]);\n\nclass SoundEffects {\n private sounds: Map = new Map();\n\n currentAudioNode: HTMLAudioElement | null = null;\n\n constructor() {\n for (const [key, val] of sounds) {\n const audio = new Audio();\n audio.src = val;\n audio.autoplay = true;\n audio.muted = true;\n audio.load();\n this.sounds.set(key, audio);\n }\n }\n\n private async play() {\n if (this.currentAudioNode) {\n this.currentAudioNode.muted = false;\n await this.currentAudioNode.play();\n this.currentAudioNode.remove();\n this.currentAudioNode.addEventListener('ended', () => {\n this.currentAudioNode = null;\n });\n }\n }\n\n public playSound(name: SoundEffect, bypassFF = false) {\n const sound = this.sounds.get(name);\n try {\n const soundsEnabled = bypassFF || resolveFlag('sound_effects', false);\n if (sound && soundsEnabled) {\n const disabledByUser = localStorage.getItem('disable_sounds');\n if (!disabledByUser) {\n this.stopCurrentSound();\n this.currentAudioNode = sound.cloneNode() as HTMLAudioElement;\n void this.play();\n }\n }\n } catch (e) {\n console.error(e);\n }\n }\n\n public stopCurrentSound() {\n if (this.currentAudioNode) {\n this.currentAudioNode.pause();\n this.currentAudioNode.currentTime = 0;\n this.currentAudioNode = null;\n }\n }\n}\n\nconst soundEffects = new SoundEffects();\n\nexport default soundEffects;\n","import './Button.scss';\nimport { forwardRef, type ButtonHTMLAttributes, type ReactNode } from 'react';\n\nimport classnames from 'classnames';\n\nimport soundEffects from '../../services/sounds/soundEffects';\n\nexport interface IButtonProps extends ButtonHTMLAttributes {\n className?: string;\n classNameWrapper?: string;\n btnType?: 'base' | 'main' | 'light' | 'orange' | 'blue';\n iconLeft?: ReactNode;\n iconRight?: ReactNode;\n handleOnClick?: () => void;\n}\n\n// TODO: we need to change all buttons to new component\n// src/components/buttons/...\nconst Button = forwardRef(\n (\n { className, classNameWrapper = '', btnType = 'base', iconLeft, iconRight, handleOnClick, children, ...restProps },\n forwardedRef,\n ) => {\n const handleClick = () => {\n if (typeof handleOnClick === 'function') {\n handleOnClick();\n }\n soundEffects.playSound('click');\n };\n\n const buttonClasses = classnames('button', `button--${btnType}`, className);\n\n return (\n
\n \n
\n );\n },\n);\n\nButton.displayName = 'Button';\n\nexport default Button;\n","import { useCallback, type FC, useState, type ReactNode } from 'react';\n\nimport classNames from 'classnames';\n\nimport styles from './PreloadBlur.module.scss';\n\ntype PreloadBlurProps = {\n render: (props: { onLoad: VoidFunction }) => ReactNode;\n className?: string;\n};\n\nexport const PreloadBlur: FC = ({ render, className }) => {\n const [isLoading, setIsLoading] = useState(true);\n\n const handleLoad = useCallback(() => {\n setIsLoading(false);\n }, []);\n\n return (\n \n {render({ onLoad: handleLoad })}\n \n );\n};\n","import type { PropsWithChildren } from 'react';\n\nimport soundEffects from '../../services/sounds/soundEffects';\n\nimport styles from './Buttons.module.scss';\n\ninterface BlackButtonProps extends PropsWithChildren {\n onClick: () => void;\n withCrown?: boolean;\n}\n\nexport default function BlackButton(props: BlackButtonProps) {\n const classes = ['animation-popup', styles.blackButton];\n\n if (props.withCrown) {\n classes.push(styles.withCrown);\n }\n\n const handleOnClick = () => {\n props.onClick();\n soundEffects.playSound('click');\n };\n\n return (\n \n );\n}\n","import './AppLogo.scss';\nimport classNames from 'classnames';\n\ninterface IAppLogoProps {\n alwaysBlack?: boolean;\n alwaysWhite?: boolean;\n}\n\nexport function AppLogo(props: IAppLogoProps) {\n return (\n \n \n \n \n \n \n \n \n );\n}\n","import BlackButton from '../../../../components/buttons/BlackButton';\nimport { AppLogo } from '../../../../components/SVGIcons/AppLogo/AppLogo';\nimport type { HeaderProps } from '../types';\n\nexport function LandingHeader({ openSignUp }: HeaderProps) {\n return (\n
\n \n
\n openSignUp?.()}>SIGN UP\n
\n
\n );\n}\n","import BackgroundPattern from '../../../../components/backrounds/BackgroundPattern';\nimport BlackButton from '../../../../components/buttons/BlackButton';\nimport { LandingHeader } from '../headers/LandingHeader';\nimport type { HeaderProps } from '../types';\n\nexport function CasinoBanner({ openSignUp }: HeaderProps) {\n return (\n
\n \n
\n \n
\n
\n #1 SOCIAL
CASINO
\n
\n
IN AMERICA
\n
GET READY TO WIN BIG!
\n
\n openSignUp?.()}>JOIN NOW\n
\n
\n
\n
\n
\n );\n}\n","import type { HeaderProps } from '../types';\n\nimport { CasinoBanner } from './CasinoBanner';\n\nexport const GenericBanner = ({ openSignUp }: HeaderProps) => {\n return ;\n};\n","import type { Game } from '../stores/game/GameStore';\n\nconst fallbackThumbnailUrl = '/images/seven.png';\n\nexport const getThumbnailUrl = (data: Game, key?: 'Short' | 'Long'): string =>\n data[`thumbnail${key || ''}HrUrl`] || data[`thumbnail${key || ''}Url`] || fallbackThumbnailUrl;\n","export const categories = [\n {\n imageUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/game-category/[objectObject]/imageFile-1711574436060.png',\n scImageUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/game-category/[objectObject]/scImageFile-1711574436162.png',\n masterGameSubCategoryId: 214,\n name: {\n EN: 'TOP GAMES',\n },\n masterGameCategoryId: 533,\n thumbnailType: 'short',\n isActive: true,\n orderId: 5,\n showInHeader: true,\n showInHamburgerMenu: true,\n createdAt: '2023-06-28T16:03:08.216Z',\n updatedAt: '2024-03-27T21:20:36.252Z',\n subCategoryGames: [\n {\n masterCasinoGameId: 1988,\n name: \"Joker's Jewels Jackpot Play\",\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vsprg5joker-thumbnail-ZvlMo.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vsprg5joker-thumbnailHr-SXmLa.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vsprg5joker-thumbnailShort-tuSPZ.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vsprg5joker-thumbnailShortHr-SgsMj.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vsprg5joker-thumbnailLong-JjOvo.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vsprg5joker-thumbnailLongHr-Axwrk.jpeg',\n fullScreen: false,\n identifier: 'vsprg5joker',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.113Z',\n updatedAt: '2024-04-07T12:52:00.988Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 20,\n name: 'Loco Habanero',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_20-thumbnail.png',\n thumbnailHrUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_20-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_20-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_20-thumbnailShortHr.png',\n thumbnailLongUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_20-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_20-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'rp_20',\n description: '',\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9649,\n credit: 20,\n maxWin: 5500,\n hitRate: 0.316,\n volatilityInPercentage: 0.8,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2024-03-25T21:20:46.238Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2406,\n name: 'Mad Hit Wild Alice.',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_627-thumbnail-QXWDh.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_627-thumbnailHr-WmIOh.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_627-thumbnailShort-Jhray.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_627-thumbnailShortHr-rlaod.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_627-thumbnailLong-tcmPC.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_627-thumbnailLongHr-zBtYy.jpeg',\n fullScreen: false,\n identifier: 'rp_627',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '94.36',\n credit: '10',\n maxWin: '6568',\n hitRate: '38.36',\n volatilityInPercentage: '51',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-02-29T12:11:00.141Z',\n updatedAt: '2024-03-25T21:21:04.378Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2405,\n name: 'Mad Hit Marlin Bonanza.',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_614-thumbnail-DQgGL.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_614-thumbnailHr-NhaoD.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_614-thumbnailShort-kEiBx.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_614-thumbnailShortHr-dRcfY.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_614-thumbnailLong-OqZkh.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_614-thumbnailLongHr-FqXip.jpeg',\n fullScreen: false,\n identifier: 'rp_614',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '94.36',\n credit: '10',\n maxWin: '6568',\n hitRate: '38.36',\n volatilityInPercentage: '51',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-02-29T12:09:44.825Z',\n updatedAt: '2024-02-29T18:30:56.700Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1144,\n name: 'Sugar Rush',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20sugarrush-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20sugarrush-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20sugarrush-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20sugarrush-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20sugarrush-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20sugarrush-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vs20sugarrush',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:35.772Z',\n updatedAt: '2024-03-07T16:39:26.080Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 69,\n name: 'Diamond Explosion 7s',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_504-thumbnail-oBxKk.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_504-thumbnailHr-DdPvj.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_504-thumbnailShort-soPaf.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_504-thumbnailShortHr-IaEax.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_504-thumbnailLong-Kidne.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_504-thumbnailLongHr-sMKeK.png',\n fullScreen: false,\n identifier: 'rp_504',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9682,\n credit: 50,\n maxWin: 8000,\n hitRate: 0.4824,\n volatilityInPercentage: 0.8,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2024-04-07T10:02:13.159Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1276,\n name: 'Floating Dragon',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10floatdrg-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10floatdrg-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10floatdrg-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10floatdrg-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10floatdrg-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10floatdrg-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vs10floatdrg',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:38.287Z',\n updatedAt: '2024-03-25T21:17:13.168Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 22,\n name: 'Quest of Gods',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_23-thumbnail-ToGta.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_23-thumbnailHr-GUeiM.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_23-thumbnailShort-vFesu.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_23-thumbnailShortHr-kLgaZ.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_23-thumbnailLong-gjZha.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_23-thumbnailLongHr-dtRsg.jpeg',\n fullScreen: false,\n identifier: 'rp_23',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9648,\n credit: 20,\n maxWin: 10000,\n hitRate: 0.235,\n volatilityInPercentage: 0.75,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2024-02-04T17:16:02.790Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 16,\n name: 'Immortal Empress',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_16-thumbnail-cthus.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_16-thumbnailHr-LycYz.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_16-thumbnailShort-MyFTc.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_16-thumbnailShortHr-EVwVh.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_16-thumbnailLong-SRbPJ.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_16-thumbnailLongHr-gRUfc.jpeg',\n fullScreen: false,\n identifier: 'rp_16',\n description: null,\n volatilityRating: '5',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9618,\n credit: 50,\n maxWin: 10400,\n hitRate: 0.308,\n volatilityInPercentage: 0.85,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2024-02-19T12:15:43.835Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2538,\n name: 'Volcano Rising 94',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_558-thumbnail-vVQel.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_558-thumbnailHr-Kacbt.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_558-thumbnailShort-nMmte.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_558-thumbnailShortHr-ZcSmO.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_558-thumbnailLong-xMlgf.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_558-thumbnailLongHr-SzcFv.png',\n fullScreen: false,\n identifier: 'rp_558',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '94.36',\n credit: '50',\n maxWin: '2188',\n hitRate: '45.16',\n volatilityInPercentage: '77',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-03-13T09:26:07.130Z',\n updatedAt: '2024-03-13T09:39:03.056Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 73,\n name: 'Native Spirit',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_76-thumbnail.png',\n thumbnailHrUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_76-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_76-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_76-thumbnailShortHr.png',\n thumbnailLongUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_76-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_76-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'rp_76',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9637,\n credit: 10,\n maxWin: 1578,\n hitRate: 0.2854,\n volatilityInPercentage: 0.65,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2023-11-27T13:15:11.710Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 41,\n name: 'Elephant Stampede',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_42-thumbnail.png',\n thumbnailHrUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_42-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_42-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_42-thumbnailShortHr.png',\n thumbnailLongUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_42-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_42-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'rp_42',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9691,\n credit: 50,\n maxWin: 1900,\n hitRate: 0.3131,\n volatilityInPercentage: 0.75,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2023-11-30T11:30:30.075Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 28,\n name: 'Mayan Cache',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_32-thumbnail.png',\n thumbnailHrUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_32-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_32-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_32-thumbnailShortHr.png',\n thumbnailLongUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_32-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_32-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'rp_501',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9647,\n credit: 20,\n maxWin: 2300,\n hitRate: 0.2728,\n volatilityInPercentage: 0.65,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2023-11-27T13:32:25.065Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 23,\n name: 'Shake Shake Money Tree',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_25-thumbnail.png',\n thumbnailHrUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_25-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_25-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_25-thumbnailShortHr.png',\n thumbnailLongUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_25-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_25-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'rp_522',\n description: null,\n volatilityRating: '2',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9648,\n credit: 20,\n maxWin: 1100,\n hitRate: 0.321,\n volatilityInPercentage: 0.45,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2023-11-30T11:35:41.223Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2039,\n name: 'Mad Hit Oasis',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_601-thumbnail-otIIW.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_601-thumbnailHr-AFXJH.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_601-thumbnailShort-enyVn.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_601-thumbnailShortHr-bmvby.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_601-thumbnailLong-BuwFV.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_601-thumbnailLongHr-hMIgq.png',\n fullScreen: false,\n identifier: 'rp_601',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 94.36,\n credit: 10,\n maxWin: 5481,\n hitRate: 38.36,\n volatilityInPercentage: 51,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-11-23T11:30:29.492Z',\n updatedAt: '2023-11-27T12:23:04.494Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 43,\n name: 'Rush Fever 7s',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_44-thumbnail.png',\n thumbnailHrUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_44-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_44-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_44-thumbnailShortHr.png',\n thumbnailLongUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_44-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_44-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'rp_44',\n description: null,\n volatilityRating: '2',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.969,\n credit: 50,\n maxWin: 8600,\n hitRate: 0.383,\n volatilityInPercentage: 0.4,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2024-02-15T11:26:58.445Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 51,\n name: 'Vegas No Limit Wins',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_507-thumbnail-eNshC.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_507-thumbnailHr-owqwq.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_507-thumbnailShort-uDTGm.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_507-thumbnailShortHr-rtYZJ.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_507-thumbnailLong-ydqaN.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_507-thumbnailLongHr-ivljo.png',\n fullScreen: false,\n identifier: 'rp_507',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9688,\n credit: 50,\n maxWin: 4260,\n hitRate: 0.3123,\n volatilityInPercentage: 0.75,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2023-11-30T11:28:17.772Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1143,\n name: 'Gates of Olympus',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20olympgate-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20olympgate-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20olympgate-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20olympgate-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20olympgate-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20olympgate-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vs20olympgate',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:35.740Z',\n updatedAt: '2024-03-25T21:18:13.219Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2038,\n name: 'Stampede Rush Wicked',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_592-thumbnail-Yraeo.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_592-thumbnailHr-ENzRh.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_592-thumbnailShort-EobRJ.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_592-thumbnailShortHr-ycCix.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_592-thumbnailLong-potpd.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_592-thumbnailLongHr-henDY.png',\n fullScreen: false,\n identifier: 'rp_592',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 94.31,\n credit: 10,\n maxWin: 1338,\n hitRate: 45.24,\n volatilityInPercentage: 52,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-11-23T11:30:29.492Z',\n updatedAt: '2023-11-27T12:21:46.590Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1444,\n name: 'Voodoo Magic',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs40voodoo-thumbnail-JhQFr.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs40voodoo-thumbnailHr-PRRlP.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs40voodoo-thumbnailShort-snnIH.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs40voodoo-thumbnailShortHr-xCbIZ.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs40voodoo-thumbnailLong-PUtYE.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs40voodoo-thumbnailLongHr-TUBCW.png',\n fullScreen: false,\n identifier: 'vs40voodoo',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:40.314Z',\n updatedAt: '2024-03-25T21:21:59.641Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n ],\n hasMoreGames: true,\n },\n {\n imageUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/game-category/[objectObject]/imageFile-1712054506087.png',\n scImageUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/game-category/[objectObject]/scImageFile-1712054506209.png',\n masterGameSubCategoryId: 224,\n name: {\n EN: 'NEW RELEASES',\n },\n masterGameCategoryId: 533,\n thumbnailType: 'short',\n isActive: true,\n orderId: 7,\n showInHeader: true,\n showInHamburgerMenu: false,\n createdAt: '2023-07-31T09:45:33.766Z',\n updatedAt: '2024-04-03T14:56:02.350Z',\n subCategoryGames: [\n {\n masterCasinoGameId: 2907,\n name: 'Sugar Rush 1000',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20sugarrushx-thumbnail-qGtCf.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20sugarrushx-thumbnailHr-Ejwgg.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20sugarrushx-thumbnailShort-FYUim.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20sugarrushx-thumbnailShortHr-XpiWF.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20sugarrushx-thumbnailLong-bntKo.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20sugarrushx-thumbnailLongHr-xnIaP.jpeg',\n fullScreen: false,\n identifier: 'vs20sugarrushx',\n description: null,\n volatilityRating: '5',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '94.5',\n credit: '20',\n maxWin: '25000',\n hitRate: '34.4',\n volatilityInPercentage: '70',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-04-01T18:00:37.763Z',\n updatedAt: '2024-04-04T10:08:37.988Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2908,\n name: 'Beware The Deep Megaways',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbewaretd-thumbnail-LNcZP.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbewaretd-thumbnailHr-eeolX.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbewaretd-thumbnailShort-awwgC.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbewaretd-thumbnailShortHr-sNsuj.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbewaretd-thumbnailLong-hxBcX.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbewaretd-thumbnailLongHr-ZIgFe.jpeg',\n fullScreen: false,\n identifier: 'vswaysbewaretd',\n description: null,\n volatilityRating: '5',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '94.48',\n credit: '20',\n maxWin: '10000',\n hitRate: '25',\n volatilityInPercentage: '70',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-04-01T18:00:55.182Z',\n updatedAt: '2024-04-04T10:08:16.579Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2905,\n name: 'Bull Fever',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_49-thumbnail-RSCRT.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_49-thumbnailHr-JAVCK.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_49-thumbnailShort-YQnfW.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_49-thumbnailShortHr-YpDgM.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_49-thumbnailLong-Uwkji.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_49-thumbnailLongHr-wLTLX.jpeg',\n fullScreen: false,\n identifier: 'rp_49',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '96.88',\n credit: '50',\n maxWin: '4000',\n hitRate: '33.79',\n volatilityInPercentage: '75',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-04-01T18:00:09.728Z',\n updatedAt: '2024-04-04T10:51:49.161Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2906,\n name: 'Immortal Ways Diamonds',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_531-thumbnail-pbgAO.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_531-thumbnailHr-UXuCg.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_531-thumbnailShort-lJNpZ.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_531-thumbnailShortHr-BZLXK.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_531-thumbnailLong-agaHN.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_531-thumbnailLongHr-DEtZI.jpeg',\n fullScreen: false,\n identifier: 'rp_531',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '94.28',\n credit: '25',\n maxWin: '4030',\n hitRate: '53.17',\n volatilityInPercentage: '47',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-04-01T18:00:22.350Z',\n updatedAt: '2024-04-04T10:08:56.238Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2704,\n name: '3 Dancing Monkeys',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysmonkey-thumbnail-tkkZm.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysmonkey-thumbnailHr-hbwGt.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysmonkey-thumbnailShort-SZJoN.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysmonkey-thumbnailShortHr-haWUr.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysmonkey-thumbnailLong-mrbFm.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysmonkey-thumbnailLongHr-PvbpB.jpeg',\n fullScreen: false,\n identifier: 'vswaysmonkey',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '94',\n credit: '30',\n maxWin: '12077',\n hitRate: '36.49',\n volatilityInPercentage: '70',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-03-23T13:29:17.749Z',\n updatedAt: '2024-03-27T10:13:12.681Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2839,\n name: 'Immortall Ways Buffalo',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_534-thumbnail-xZzJp.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_534-thumbnailHr-ijSWx.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_534-thumbnailShort-ZFxVI.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_534-thumbnailShortHr-ztxeW.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_534-thumbnailLong-hmHBZ.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_534-thumbnailLongHr-BBWdU.jpeg',\n fullScreen: false,\n identifier: 'rp_534',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '94.28',\n credit: '25',\n maxWin: '4030',\n hitRate: '53.17',\n volatilityInPercentage: '47',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-03-25T14:18:49.648Z',\n updatedAt: '2024-03-27T08:58:24.061Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2738,\n name: 'Go High Gone Fishing',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_639-thumbnail-FfSVa.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_639-thumbnailHr-KoEvB.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_639-thumbnailShort-ILIQy.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_639-thumbnailShortHr-FreUX.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_639-thumbnailLong-DxZWy.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_639-thumbnailLongHr-rEcgy.jpeg',\n fullScreen: false,\n identifier: 'rp_639',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '94.29',\n credit: '10',\n maxWin: '2890',\n hitRate: '44.25',\n volatilityInPercentage: '61',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-03-24T07:33:07.641Z',\n updatedAt: '2024-03-25T10:12:53.777Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2737,\n name: 'Sheerluck 94',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_645-thumbnail-LwJJy.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_645-thumbnailHr-rTXVU.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_645-thumbnailShort-FEZYd.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_645-thumbnailShortHr-Jwfwp.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_645-thumbnailLong-egMlu.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_645-thumbnailLongHr-GlVeG.jpeg',\n fullScreen: false,\n identifier: 'rp_645',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '94.47',\n credit: '20',\n maxWin: '2295',\n hitRate: '27.11',\n volatilityInPercentage: '61',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-03-24T07:32:48.693Z',\n updatedAt: '2024-03-25T10:12:56.959Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1480,\n name: 'Mysterious',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs4096mystery-thumbnail-LdjyH.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs4096mystery-thumbnailHr-LjnTG.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs4096mystery-thumbnailShort-aRDwa.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs4096mystery-thumbnailShortHr-GlwGc.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs4096mystery-thumbnailLong-spPob.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs4096mystery-thumbnailLongHr-WFQwQ.jpeg',\n fullScreen: false,\n identifier: 'vs4096mystery',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:40.887Z',\n updatedAt: '2024-03-21T11:52:47.186Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 31,\n name: 'Sun of Ra',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_34-thumbnail-zLuFq.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_34-thumbnailHr-aOrDv.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_34-thumbnailShort-vucpi.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_34-thumbnailShortHr-dEOhx.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_34-thumbnailLong-UYkrj.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_34-thumbnailLongHr-FvmVK.jpeg',\n fullScreen: false,\n identifier: 'rp_34',\n description: '',\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.969,\n credit: 50,\n maxWin: 4200,\n hitRate: 0.304,\n volatilityInPercentage: 0.75,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2024-03-21T11:52:31.295Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 64,\n name: 'Mayan Blaze',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_65-thumbnail-mYijx.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_65-thumbnailHr-vvHXW.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_65-thumbnailShort-UiKOk.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_65-thumbnailShortHr-MibWp.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_65-thumbnailLong-bxibe.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_65-thumbnailLongHr-LYXZc.jpeg',\n fullScreen: false,\n identifier: 'rp_65',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.964,\n credit: 20,\n maxWin: 900,\n hitRate: 0.326,\n volatilityInPercentage: 0.45,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2024-03-21T11:52:39.250Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2505,\n name: 'Pot of Fortune',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20stckwldsc-thumbnail-LFdLk.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20stckwldsc-thumbnailHr-WinHX.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20stckwldsc-thumbnailShort-mobjz.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20stckwldsc-thumbnailShortHr-rDhLt.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20stckwldsc-thumbnailLong-DCMwE.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20stckwldsc-thumbnailLongHr-qPWMs.jpeg',\n fullScreen: false,\n identifier: 'vs20stckwldsc',\n description: null,\n volatilityRating: '5',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '94',\n credit: '20',\n maxWin: '5000',\n hitRate: '33.33',\n volatilityInPercentage: '70',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-03-10T16:18:28.830Z',\n updatedAt: '2024-03-21T10:04:59.802Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2472,\n name: \"Wheel O'Gold\",\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20multiup-thumbnail-JVPgb.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20multiup-thumbnailHr-psjXp.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20multiup-thumbnailShort-BToOM.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20multiup-thumbnailShortHr-UtnDs.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20multiup-thumbnailLong-YuVwH.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20multiup-thumbnailLongHr-rilVm.jpeg',\n fullScreen: false,\n identifier: 'vs20multiup',\n description: null,\n volatilityRating: '5',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '94.02',\n credit: '20',\n maxWin: '10000',\n hitRate: '33.33',\n volatilityInPercentage: '70',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-03-07T17:30:20.317Z',\n updatedAt: '2024-03-21T10:03:50.170Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 50,\n name: \"Adventures of Li'l Red\",\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_51-thumbnail-jPDbC.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_51-thumbnailHr-WOEpg.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_51-thumbnailShort-uehFI.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_51-thumbnailShortHr-KhiPJ.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_51-thumbnailLong-xWYhF.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_51-thumbnailLongHr-XCQNQ.png',\n fullScreen: false,\n identifier: 'rp_51',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.969,\n credit: 50,\n maxWin: 2800,\n hitRate: 0.3463,\n volatilityInPercentage: 0.75,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2024-03-07T11:16:59.850Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 49,\n name: 'Enter the Vault',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_50-thumbnail-vNpxb.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_50-thumbnailHr-BWSCg.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_50-thumbnailShort-ZqVfQ.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_50-thumbnailShortHr-jlpgi.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_50-thumbnailLong-EGdKX.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_50-thumbnailLongHr-vCjUK.jpeg',\n fullScreen: false,\n identifier: 'rp_50',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9682,\n credit: 50,\n maxWin: 8000,\n hitRate: 0.4824,\n volatilityInPercentage: 0.8,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2024-03-07T11:16:52.059Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2372,\n name: 'Diamond_Explosion_Sweet_love',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_605-thumbnail-KIqWf.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_605-thumbnailHr-lHKhc.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_605-thumbnailShort-ZtzIP.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_605-thumbnailShortHr-XQfHx.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_605-thumbnailLong-EDIdO.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_605-thumbnailLongHr-NFQZU.jpeg',\n fullScreen: false,\n identifier: 'rp_605',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 94.45,\n credit: 0.5,\n maxWin: 8087,\n hitRate: 47.34,\n volatilityInPercentage: 47,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-02-08T08:27:57.851Z',\n updatedAt: '2024-02-19T12:14:21.663Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2406,\n name: 'Mad Hit Wild Alice.',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_627-thumbnail-QXWDh.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_627-thumbnailHr-WmIOh.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_627-thumbnailShort-Jhray.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_627-thumbnailShortHr-rlaod.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_627-thumbnailLong-tcmPC.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_627-thumbnailLongHr-zBtYy.jpeg',\n fullScreen: false,\n identifier: 'rp_627',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '94.36',\n credit: '10',\n maxWin: '6568',\n hitRate: '38.36',\n volatilityInPercentage: '51',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-02-29T12:11:00.141Z',\n updatedAt: '2024-03-25T21:21:04.378Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1319,\n name: 'Queen of Gods',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10egrich-thumbnail-ufNst.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10egrich-thumbnailHr-UYdQo.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10egrich-thumbnailShort-ZrroJ.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10egrich-thumbnailShortHr-PZYYq.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10egrich-thumbnailLong-tgzif.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10egrich-thumbnailLongHr-aLnDu.jpeg',\n fullScreen: false,\n identifier: 'vs10egrich',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:38.973Z',\n updatedAt: '2024-03-06T14:31:45.643Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2405,\n name: 'Mad Hit Marlin Bonanza.',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_614-thumbnail-DQgGL.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_614-thumbnailHr-NhaoD.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_614-thumbnailShort-kEiBx.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_614-thumbnailShortHr-dRcfY.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_614-thumbnailLong-OqZkh.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_614-thumbnailLongHr-FqXip.jpeg',\n fullScreen: false,\n identifier: 'rp_614',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '94.36',\n credit: '10',\n maxWin: '6568',\n hitRate: '38.36',\n volatilityInPercentage: '51',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-02-29T12:09:44.825Z',\n updatedAt: '2024-02-29T18:30:56.700Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2228,\n name: 'Book of Power',\n masterCasinoProviderId: 562,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/bookofpower-thumbnail-iiGKL.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/bookofpower-thumbnailHr-higdM.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/bookofpower-thumbnailShort-MgCyn.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/bookofpower-thumbnailShortHr-BdUQO.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/bookofpower-thumbnailLong-qzSJk.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/bookofpower-thumbnailLongHr-QGTco.jpeg',\n fullScreen: false,\n identifier: 'bookofpower',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 96.11,\n credit: 10,\n maxWin: 900000,\n hitRate: 45.24,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-01-04T15:45:07.527Z',\n updatedAt: '2024-02-19T12:14:42.077Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 562,\n name: 'Relax Gaming',\n isActive: true,\n thumbnailUrl: null,\n masterGameAggregatorId: null,\n uuid: 'dd239001-e721-4fc3-a02b-d215a7229e89',\n createdAt: '2023-12-12T14:19:15.699Z',\n updatedAt: '2024-01-18T16:58:10.881Z',\n },\n gameLiveTables: [],\n },\n ],\n hasMoreGames: true,\n },\n {\n imageUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/game-category/[objectObject]/imageFile-1711562337561.png',\n scImageUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/game-category/[objectObject]/scImageFile-1711562337786.png',\n masterGameSubCategoryId: 215,\n name: {\n EN: 'JACKPOT',\n },\n masterGameCategoryId: 533,\n thumbnailType: 'short',\n isActive: true,\n orderId: 6,\n showInHeader: true,\n showInHamburgerMenu: false,\n createdAt: '2023-06-28T16:05:24.029Z',\n updatedAt: '2024-04-03T14:55:47.308Z',\n subCategoryGames: [\n {\n masterCasinoGameId: 1977,\n name: 'Big Bass Bonanza Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10bbbnza-thumbnail-AaCjf.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10bbbnza-thumbnailHr-SLEYZ.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10bbbnza-thumbnailShort-WcWPn.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10bbbnza-thumbnailShortHr-ULMZa.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10bbbnza-thumbnailLong-ObMtP.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10bbbnza-thumbnailLongHr-fBwTz.png',\n fullScreen: false,\n identifier: 'vsprg10bbbnza',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:40.839Z',\n updatedAt: '2024-04-07T12:52:00.900Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1986,\n name: 'Gates of Olympus Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20olympus-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20olympus-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20olympus-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20olympus-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20olympus-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20olympus-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg20olympus',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.078Z',\n updatedAt: '2024-04-07T12:52:00.968Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1980,\n name: 'Crown of Fire Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10cfire-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10cfire-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10cfire-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10cfire-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10cfire-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10cfire-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg10cfire',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:40.921Z',\n updatedAt: '2024-04-07T12:52:00.909Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1987,\n name: 'Hot to Burn Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5hburn-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5hburn-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5hburn-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5hburn-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5hburn-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5hburn-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg5hburn',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.097Z',\n updatedAt: '2024-04-07T12:52:00.978Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1984,\n name: 'Fire Hot 5 Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5firehot-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5firehot-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5firehot-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5firehot-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5firehot-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5firehot-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg5firehot',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.055Z',\n updatedAt: '2024-04-07T12:52:00.953Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1988,\n name: \"Joker's Jewels Jackpot Play\",\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vsprg5joker-thumbnail-ZvlMo.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vsprg5joker-thumbnailHr-SXmLa.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vsprg5joker-thumbnailShort-tuSPZ.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vsprg5joker-thumbnailShortHr-SgsMj.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vsprg5joker-thumbnailLong-JjOvo.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vsprg5joker-thumbnailLongHr-Axwrk.jpeg',\n fullScreen: false,\n identifier: 'vsprg5joker',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.113Z',\n updatedAt: '2024-04-07T12:52:00.988Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1995,\n name: 'Sugar Rush Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sugarush-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sugarush-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sugarush-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sugarush-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sugarush-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sugarush-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg20sugarush',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.230Z',\n updatedAt: '2024-04-07T12:52:01.079Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1998,\n name: 'The Dog House Megaways Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprgwaysdogs-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprgwaysdogs-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprgwaysdogs-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprgwaysdogs-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprgwaysdogs-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprgwaysdogs-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprgwaysdogs',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.341Z',\n updatedAt: '2024-04-07T12:52:01.095Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1996,\n name: 'Sweet Bonanza Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitsw-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitsw-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitsw-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitsw-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitsw-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitsw-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg20fruitsw',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.320Z',\n updatedAt: '2024-04-07T12:52:01.084Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1993,\n name: 'Starlight Princess Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20starpr-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20starpr-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20starpr-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20starpr-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20starpr-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20starpr-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg20starpr',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.217Z',\n updatedAt: '2024-04-07T12:52:01.069Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1994,\n name: 'Striking Hot 5 Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5strh-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5strh-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5strh-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5strh-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5strh-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5strh-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg5strh',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.224Z',\n updatedAt: '2024-04-07T12:52:01.074Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1992,\n name: 'Shining Hot 5 Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5sh-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5sh-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5sh-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5sh-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5sh-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5sh-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg5sh',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.210Z',\n updatedAt: '2024-04-07T12:52:01.063Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1985,\n name: 'Fruit Party Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitpty-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitpty-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitpty-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitpty-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitpty-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitpty-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg20fruitpty',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.069Z',\n updatedAt: '2024-04-07T12:52:00.963Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1981,\n name: 'Fire Hot 100 Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg100firehot-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg100firehot-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg100firehot-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg100firehot-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg100firehot-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg100firehot-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg100firehot',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:40.931Z',\n updatedAt: '2024-04-07T12:52:00.922Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1997,\n name: 'The Dog House Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20doghouse-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20doghouse-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20doghouse-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20doghouse-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20doghouse-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20doghouse-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg20doghouse',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.332Z',\n updatedAt: '2024-04-07T12:52:01.089Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1982,\n name: 'Fire Hot 20 Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fh-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fh-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fh-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fh-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fh-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fh-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg20fh',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:40.963Z',\n updatedAt: '2024-04-07T12:52:00.929Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1983,\n name: 'Fire Hot 40 Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg40firehot-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg40firehot-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg40firehot-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg40firehot-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg40firehot-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg40firehot-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg40firehot',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.041Z',\n updatedAt: '2024-04-07T12:52:00.941Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1989,\n name: 'Shining Hot 100 Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg100sh-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg100sh-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg100sh-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg100sh-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg100sh-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg100sh-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg100sh',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.130Z',\n updatedAt: '2024-04-07T12:52:01.012Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1990,\n name: 'Shining Hot 20 Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sh-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sh-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sh-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sh-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sh-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sh-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg20sh',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.138Z',\n updatedAt: '2024-04-07T12:52:01.032Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1991,\n name: 'Shining Hot 40 Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg40sh-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg40sh-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg40sh-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg40sh-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg40sh-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg40sh-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg40sh',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.145Z',\n updatedAt: '2024-04-07T12:52:01.042Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n ],\n hasMoreGames: false,\n },\n {\n imageUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/game-category/[objectObject]/imageFile-1711562386889.png',\n scImageUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/game-category/[objectObject]/scImageFile-1711562386990.png',\n masterGameSubCategoryId: 481,\n name: {\n EN: 'MEGAWAYS',\n },\n masterGameCategoryId: 533,\n thumbnailType: 'short',\n isActive: true,\n orderId: 9,\n showInHeader: false,\n showInHamburgerMenu: true,\n createdAt: '2024-02-29T10:42:37.742Z',\n updatedAt: '2024-03-27T17:59:47.082Z',\n subCategoryGames: [\n {\n masterCasinoGameId: 1998,\n name: 'The Dog House Megaways Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprgwaysdogs-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprgwaysdogs-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprgwaysdogs-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprgwaysdogs-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprgwaysdogs-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprgwaysdogs-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprgwaysdogs',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.341Z',\n updatedAt: '2024-04-07T12:52:01.095Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1159,\n name: 'Power of Thor Megaways',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswayshammthor-thumbnail-RvqOk.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswayshammthor-thumbnailHr-NNxVa.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswayshammthor-thumbnailShort-umjev.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswayshammthor-thumbnailShortHr-ryhHw.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswayshammthor-thumbnailLong-oVhYc.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswayshammthor-thumbnailLongHr-TFQwQ.jpeg',\n fullScreen: false,\n identifier: 'vswayshammthor',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:35.969Z',\n updatedAt: '2024-03-13T10:08:53.672Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1165,\n name: 'Buffalo King Megaways',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbufking-thumbnail-zDSeS.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbufking-thumbnailHr-wpaFP.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbufking-thumbnailShort-KDelq.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbufking-thumbnailShortHr-QQzJx.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbufking-thumbnailLong-SbkNf.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbufking-thumbnailLongHr-XEjmU.png',\n fullScreen: false,\n identifier: 'vswaysbufking',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:36.038Z',\n updatedAt: '2024-03-13T10:06:34.351Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1180,\n name: 'Madame Destiny Megaways',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysmadame-thumbnail-NbOZE.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysmadame-thumbnailHr-pdkJg.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysmadame-thumbnailShort-OTiFt.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysmadame-thumbnailShortHr-tFElD.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysmadame-thumbnailLong-QLRlC.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysmadame-thumbnailLongHr-qlREu.png',\n fullScreen: false,\n identifier: 'vswaysmadame',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:36.281Z',\n updatedAt: '2024-03-13T10:09:34.694Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1147,\n name: '5 Lions Megaways',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vswayslions-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vswayslions-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vswayslions-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vswayslions-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vswayslions-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vswayslions-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vswayslions',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:35.793Z',\n updatedAt: '2023-09-21T11:28:53.760Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1164,\n name: 'Great Rhino Megaways',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vswaysrhino-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vswaysrhino-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vswaysrhino-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vswaysrhino-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vswaysrhino-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vswaysrhino-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vswaysrhino',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:36.029Z',\n updatedAt: '2023-09-21T11:32:58.318Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1149,\n name: 'The Dog House Megaways',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vswaysdogs-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vswaysdogs-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vswaysdogs-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vswaysdogs-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vswaysdogs-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vswaysdogs-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vswaysdogs',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:35.815Z',\n updatedAt: '2023-09-21T11:07:03.687Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1297,\n name: 'Christmas Carol Megaways',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20xmascarol-thumbnail-HpSgW.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20xmascarol-thumbnailHr-MrUyn.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20xmascarol-thumbnailShort-EzKQb.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20xmascarol-thumbnailShortHr-jhcNv.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20xmascarol-thumbnailLong-CmBMX.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20xmascarol-thumbnailLongHr-Uxqee.png',\n fullScreen: false,\n identifier: 'vs20xmascarol',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:38.666Z',\n updatedAt: '2023-12-28T18:13:30.914Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1209,\n name: 'Muertos Multiplier Megaways',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20muertos-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20muertos-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20muertos-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20muertos-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20muertos-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20muertos-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vs20muertos',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:36.979Z',\n updatedAt: '2023-09-21T11:51:41.343Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n ],\n hasMoreGames: false,\n },\n {\n imageUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/game-category/[objectObject]/imageFile-1711562360180.png',\n scImageUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/game-category/[objectObject]/scImageFile-1711562360261.png',\n masterGameSubCategoryId: 482,\n name: {\n EN: 'LUCKY SEVENS',\n },\n masterGameCategoryId: 533,\n thumbnailType: 'short',\n isActive: true,\n orderId: 10,\n showInHeader: false,\n showInHamburgerMenu: true,\n createdAt: '2024-02-29T10:48:17.836Z',\n updatedAt: '2024-03-27T17:59:20.439Z',\n subCategoryGames: [\n {\n masterCasinoGameId: 71,\n name: 'Rush Fever 7s Deluxe',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_73-thumbnail.png',\n thumbnailHrUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_73-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_73-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_73-thumbnailShortHr.png',\n thumbnailLongUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_73-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_73-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'rp_510',\n description: null,\n volatilityRating: '2',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9656,\n credit: 50,\n maxWin: 4501,\n hitRate: 0.3859,\n volatilityInPercentage: 0.4,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2023-11-27T13:27:33.535Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 69,\n name: 'Diamond Explosion 7s',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_504-thumbnail-oBxKk.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_504-thumbnailHr-DdPvj.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_504-thumbnailShort-soPaf.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_504-thumbnailShortHr-IaEax.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_504-thumbnailLong-Kidne.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_504-thumbnailLongHr-sMKeK.png',\n fullScreen: false,\n identifier: 'rp_504',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9682,\n credit: 50,\n maxWin: 8000,\n hitRate: 0.4824,\n volatilityInPercentage: 0.8,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2024-04-07T10:02:13.159Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 43,\n name: 'Rush Fever 7s',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_44-thumbnail.png',\n thumbnailHrUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_44-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_44-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_44-thumbnailShortHr.png',\n thumbnailLongUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_44-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_44-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'rp_44',\n description: null,\n volatilityRating: '2',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.969,\n credit: 50,\n maxWin: 8600,\n hitRate: 0.383,\n volatilityInPercentage: 0.4,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2024-02-15T11:26:58.445Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2186,\n name: 'Juicy Fruits Multihold',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs50jfmulthold-thumbnail-PJaan.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs50jfmulthold-thumbnailHr-gvuVn.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs50jfmulthold-thumbnailShort-yGkVS.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs50jfmulthold-thumbnailShortHr-jCwsi.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs50jfmulthold-thumbnailLong-toDya.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs50jfmulthold-thumbnailLongHr-OrNMf.png',\n fullScreen: false,\n identifier: 'vs50jfmulthold',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-12-26T10:04:45.410Z',\n updatedAt: '2024-01-22T19:24:07.216Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1987,\n name: 'Hot to Burn Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5hburn-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5hburn-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5hburn-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5hburn-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5hburn-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5hburn-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg5hburn',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.097Z',\n updatedAt: '2024-04-07T12:52:00.978Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1980,\n name: 'Crown of Fire Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10cfire-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10cfire-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10cfire-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10cfire-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10cfire-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10cfire-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg10cfire',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:40.921Z',\n updatedAt: '2024-04-07T12:52:00.909Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1433,\n name: 'Hot to Burn',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs5hotburn-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs5hotburn-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs5hotburn-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs5hotburn-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs5hotburn-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs5hotburn-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vs5hotburn',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:40.232Z',\n updatedAt: '2023-09-21T11:34:51.789Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1306,\n name: 'Fire Strike',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10firestrike-thumbnail-XSxEt.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10firestrike-thumbnailHr-UWwPg.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10firestrike-thumbnailShort-hblfQ.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10firestrike-thumbnailShortHr-tnXdL.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10firestrike-thumbnailLong-Kywfb.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10firestrike-thumbnailLongHr-Lveyx.png',\n fullScreen: false,\n identifier: 'vs10firestrike',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:38.787Z',\n updatedAt: '2024-03-13T10:07:32.969Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n ],\n hasMoreGames: false,\n },\n {\n imageUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/game-category/[objectObject]/imageFile-1711573828130.png',\n scImageUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/game-category/[objectObject]/scImageFile-1711573828243.png',\n masterGameSubCategoryId: 485,\n name: {\n EN: 'WILD SPINS',\n },\n masterGameCategoryId: 533,\n thumbnailType: 'short',\n isActive: true,\n orderId: 11,\n showInHeader: false,\n showInHamburgerMenu: true,\n createdAt: '2024-02-29T12:36:11.525Z',\n updatedAt: '2024-03-27T21:10:28.374Z',\n subCategoryGames: [\n {\n masterCasinoGameId: 2184,\n name: 'Fire Stampede',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysstampede-thumbnail-XkFvu.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysstampede-thumbnailHr-JAwkj.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysstampede-thumbnailShort-hXISw.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysstampede-thumbnailShortHr-gcHHj.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysstampede-thumbnailLong-VoCFJ.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysstampede-thumbnailLongHr-IqoRi.png',\n fullScreen: false,\n identifier: 'vswaysstampede',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-12-26T10:04:45.328Z',\n updatedAt: '2024-03-25T21:16:47.867Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1165,\n name: 'Buffalo King Megaways',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbufking-thumbnail-zDSeS.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbufking-thumbnailHr-wpaFP.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbufking-thumbnailShort-KDelq.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbufking-thumbnailShortHr-QQzJx.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbufking-thumbnailLong-SbkNf.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbufking-thumbnailLongHr-XEjmU.png',\n fullScreen: false,\n identifier: 'vswaysbufking',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:36.038Z',\n updatedAt: '2024-03-13T10:06:34.351Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 41,\n name: 'Elephant Stampede',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_42-thumbnail.png',\n thumbnailHrUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_42-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_42-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_42-thumbnailShortHr.png',\n thumbnailLongUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_42-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_42-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'rp_42',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9691,\n credit: 50,\n maxWin: 1900,\n hitRate: 0.3131,\n volatilityInPercentage: 0.75,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2023-11-30T11:30:30.075Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2283,\n name: 'The Great Pigsby',\n masterCasinoProviderId: 562,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/thegreatpigsby-thumbnail-mgHSs.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/thegreatpigsby-thumbnailHr-KKDka.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/thegreatpigsby-thumbnailShort-tZMoC.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/thegreatpigsby-thumbnailShortHr-udSob.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/thegreatpigsby-thumbnailLong-avmFJ.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/thegreatpigsby-thumbnailLongHr-SrQZO.png',\n fullScreen: false,\n identifier: 'thegreatpigsby',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 96.55,\n credit: 10,\n maxWin: 162000,\n hitRate: 45.24,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-01-04T15:45:07.527Z',\n updatedAt: '2024-01-18T08:22:58.471Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 562,\n name: 'Relax Gaming',\n isActive: true,\n thumbnailUrl: null,\n masterGameAggregatorId: null,\n uuid: 'dd239001-e721-4fc3-a02b-d215a7229e89',\n createdAt: '2023-12-12T14:19:15.699Z',\n updatedAt: '2024-01-18T16:58:10.881Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2277,\n name: 'Shark Wash',\n masterCasinoProviderId: 562,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/sharkwash-thumbnail-zScOs.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/sharkwash-thumbnailHr-eWaCk.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/sharkwash-thumbnailShort-qeXvj.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/sharkwash-thumbnailShortHr-hnETh.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/sharkwash-thumbnailLong-wkoxd.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/sharkwash-thumbnailLongHr-NYzAI.jpeg',\n fullScreen: false,\n identifier: 'sharkwash',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 96.06,\n credit: 10,\n maxWin: 1000000,\n hitRate: 45.24,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-01-04T15:45:07.527Z',\n updatedAt: '2024-02-01T08:28:06.806Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 562,\n name: 'Relax Gaming',\n isActive: true,\n thumbnailUrl: null,\n masterGameAggregatorId: null,\n uuid: 'dd239001-e721-4fc3-a02b-d215a7229e89',\n createdAt: '2023-12-12T14:19:15.699Z',\n updatedAt: '2024-01-18T16:58:10.881Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 28,\n name: 'Mayan Cache',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_32-thumbnail.png',\n thumbnailHrUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_32-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_32-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_32-thumbnailShortHr.png',\n thumbnailLongUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_32-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_32-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'rp_501',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9647,\n credit: 20,\n maxWin: 2300,\n hitRate: 0.2728,\n volatilityInPercentage: 0.65,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2023-11-27T13:32:25.065Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1998,\n name: 'The Dog House Megaways Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprgwaysdogs-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprgwaysdogs-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprgwaysdogs-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprgwaysdogs-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprgwaysdogs-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprgwaysdogs-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprgwaysdogs',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.341Z',\n updatedAt: '2024-04-07T12:52:01.095Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1977,\n name: 'Big Bass Bonanza Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10bbbnza-thumbnail-AaCjf.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10bbbnza-thumbnailHr-SLEYZ.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10bbbnza-thumbnailShort-WcWPn.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10bbbnza-thumbnailShortHr-ULMZa.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10bbbnza-thumbnailLong-ObMtP.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10bbbnza-thumbnailLongHr-fBwTz.png',\n fullScreen: false,\n identifier: 'vsprg10bbbnza',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:40.839Z',\n updatedAt: '2024-04-07T12:52:00.900Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1275,\n name: 'Big Bass Splash',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10txbigbass-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10txbigbass-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10txbigbass-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10txbigbass-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10txbigbass-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10txbigbass-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vs10txbigbass',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:38.280Z',\n updatedAt: '2023-09-21T12:03:06.565Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1270,\n name: 'Bigger Bass Blizzard - Christmas Catch',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs12bbbxmas-thumbnail-eTcEu.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs12bbbxmas-thumbnailHr-fGdgf.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs12bbbxmas-thumbnailShort-PfEMT.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs12bbbxmas-thumbnailShortHr-vNalA.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs12bbbxmas-thumbnailLong-Mhovf.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs12bbbxmas-thumbnailLongHr-mTiTu.png',\n fullScreen: false,\n identifier: 'vs12bbbxmas',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:38.191Z',\n updatedAt: '2023-12-28T18:11:49.137Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1257,\n name: 'Big Bass Bonanza - Keeping it Reel',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10bbkir-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10bbkir-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10bbkir-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10bbkir-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10bbkir-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10bbkir-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vs10bbkir',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:37.875Z',\n updatedAt: '2024-03-25T21:19:19.711Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n ],\n hasMoreGames: false,\n },\n {\n imageUrl: 'https://cdn.crowncoinscasino.com/production/assets/sub-category/thumbnail-483.png',\n scImageUrl: 'https://cdn.crowncoinscasino.com/production/assets/sub-category/scThumbnail-483.png',\n masterGameSubCategoryId: 483,\n name: {\n EN: 'CANDY CRAZE',\n },\n masterGameCategoryId: 533,\n thumbnailType: 'short',\n isActive: true,\n orderId: 12,\n showInHeader: false,\n showInHamburgerMenu: true,\n createdAt: '2024-02-29T10:51:47.056Z',\n updatedAt: '2024-03-20T14:02:04.156Z',\n subCategoryGames: [\n {\n masterCasinoGameId: 1146,\n name: 'Sweet Bonanza',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20fruitsw-thumbnail-zuDAa.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20fruitsw-thumbnailHr-awNQw.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20fruitsw-thumbnailShort-Qblah.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20fruitsw-thumbnailShortHr-ROQBW.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20fruitsw-thumbnailLong-cuFPK.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20fruitsw-thumbnailLongHr-Mpwca.png',\n fullScreen: false,\n identifier: 'vs20fruitsw',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:35.787Z',\n updatedAt: '2024-03-13T10:08:16.093Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1995,\n name: 'Sugar Rush Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sugarush-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sugarush-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sugarush-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sugarush-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sugarush-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sugarush-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg20sugarush',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.230Z',\n updatedAt: '2024-04-07T12:52:01.079Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1985,\n name: 'Fruit Party Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitpty-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitpty-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitpty-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitpty-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitpty-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitpty-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg20fruitpty',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.069Z',\n updatedAt: '2024-04-07T12:52:00.963Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1996,\n name: 'Sweet Bonanza Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitsw-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitsw-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitsw-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitsw-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitsw-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20fruitsw-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg20fruitsw',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.320Z',\n updatedAt: '2024-04-07T12:52:01.084Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2186,\n name: 'Juicy Fruits Multihold',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs50jfmulthold-thumbnail-PJaan.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs50jfmulthold-thumbnailHr-gvuVn.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs50jfmulthold-thumbnailShort-yGkVS.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs50jfmulthold-thumbnailShortHr-jCwsi.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs50jfmulthold-thumbnailLong-toDya.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs50jfmulthold-thumbnailLongHr-OrNMf.png',\n fullScreen: false,\n identifier: 'vs50jfmulthold',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-12-26T10:04:45.410Z',\n updatedAt: '2024-01-22T19:24:07.216Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1158,\n name: 'Fruit Party',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20fruitparty-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20fruitparty-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20fruitparty-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20fruitparty-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20fruitparty-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20fruitparty-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vs20fruitparty',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:35.934Z',\n updatedAt: '2024-03-25T21:17:35.858Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1353,\n name: 'Juicy Fruits',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs50juicyfr-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs50juicyfr-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs50juicyfr-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs50juicyfr-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs50juicyfr-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs50juicyfr-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vs50juicyfr',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:39.459Z',\n updatedAt: '2023-09-21T11:01:37.500Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2080,\n name: 'Sugar Rush Xmas',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20sugrux-thumbnail-qpybT.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20sugrux-thumbnailHr-OKLtH.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20sugrux-thumbnailShort-cyltt.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20sugrux-thumbnailShortHr-boCOq.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20sugrux-thumbnailLong-Wdwas.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20sugrux-thumbnailLongHr-NMZOR.png',\n fullScreen: false,\n identifier: 'vs20sugrux',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-11-27T13:46:12.642Z',\n updatedAt: '2024-03-28T13:25:41.174Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n ],\n hasMoreGames: false,\n },\n {\n imageUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/game-category/[objectObject]/imageFile-1711562299367.png',\n scImageUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/game-category/[objectObject]/scImageFile-1711562299647.png',\n masterGameSubCategoryId: 484,\n name: {\n EN: 'GODS OF FORTUNE',\n },\n masterGameCategoryId: 533,\n thumbnailType: 'short',\n isActive: true,\n orderId: 13,\n showInHeader: false,\n showInHamburgerMenu: true,\n createdAt: '2024-02-29T10:54:20.204Z',\n updatedAt: '2024-03-27T17:58:19.774Z',\n subCategoryGames: [\n {\n masterCasinoGameId: 2571,\n name: 'Zeus Rush Fever Deluxe 94',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_555-thumbnail-gSEDu.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_555-thumbnailHr-OwgAV.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_555-thumbnailShort-WLLGx.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_555-thumbnailShortHr-NIyYl.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_555-thumbnailLong-YneUB.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_555-thumbnailLongHr-ReuHV.png',\n fullScreen: false,\n identifier: 'rp_555',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '94.46',\n credit: '50',\n maxWin: '8085',\n hitRate: '38.56',\n volatilityInPercentage: '61',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-03-13T09:41:38.400Z',\n updatedAt: '2024-03-13T09:44:31.269Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2182,\n name: 'Gates of Olympus 1000',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20olympx-thumbnail-CsqOM.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20olympx-thumbnailHr-hMIBX.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20olympx-thumbnailShort-RLhvX.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20olympx-thumbnailShortHr-bRoUW.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20olympx-thumbnailLong-xyyDa.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20olympx-thumbnailLongHr-ftYjK.png',\n fullScreen: false,\n identifier: 'vs20olympx',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-12-26T10:04:45.274Z',\n updatedAt: '2024-03-25T21:18:34.546Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 22,\n name: 'Quest of Gods',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_23-thumbnail-ToGta.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_23-thumbnailHr-GUeiM.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_23-thumbnailShort-vFesu.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_23-thumbnailShortHr-kLgaZ.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_23-thumbnailLong-gjZha.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_23-thumbnailLongHr-dtRsg.jpeg',\n fullScreen: false,\n identifier: 'rp_23',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9648,\n credit: 20,\n maxWin: 10000,\n hitRate: 0.235,\n volatilityInPercentage: 0.75,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2024-02-04T17:16:02.790Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 73,\n name: 'Native Spirit',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_76-thumbnail.png',\n thumbnailHrUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_76-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_76-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_76-thumbnailShortHr.png',\n thumbnailLongUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_76-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_76-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'rp_76',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9637,\n credit: 10,\n maxWin: 1578,\n hitRate: 0.2854,\n volatilityInPercentage: 0.65,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2023-11-27T13:15:11.710Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2285,\n name: 'Titan Strike',\n masterCasinoProviderId: 562,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/titanstrike-thumbnail-FggFH.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/titanstrike-thumbnailHr-LyUlo.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/titanstrike-thumbnailShort-inPUb.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/titanstrike-thumbnailShortHr-dGGkm.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/titanstrike-thumbnailLong-qefoe.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/titanstrike-thumbnailLongHr-QWcti.png',\n fullScreen: false,\n identifier: 'titanstrike',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 96.09,\n credit: 10,\n maxWin: 900900,\n hitRate: 45.24,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-01-04T15:45:07.527Z',\n updatedAt: '2024-01-11T16:06:30.309Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 562,\n name: 'Relax Gaming',\n isActive: true,\n thumbnailUrl: null,\n masterGameAggregatorId: null,\n uuid: 'dd239001-e721-4fc3-a02b-d215a7229e89',\n createdAt: '2023-12-12T14:19:15.699Z',\n updatedAt: '2024-01-18T16:58:10.881Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1986,\n name: 'Gates of Olympus Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20olympus-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20olympus-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20olympus-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20olympus-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20olympus-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20olympus-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg20olympus',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.078Z',\n updatedAt: '2024-04-07T12:52:00.968Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1167,\n name: 'Zeus vs Hades - Gods of War',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs15godsofwar-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs15godsofwar-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs15godsofwar-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs15godsofwar-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs15godsofwar-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs15godsofwar-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vs15godsofwar',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:36.071Z',\n updatedAt: '2023-10-08T17:27:07.712Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1159,\n name: 'Power of Thor Megaways',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswayshammthor-thumbnail-RvqOk.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswayshammthor-thumbnailHr-NNxVa.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswayshammthor-thumbnailShort-umjev.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswayshammthor-thumbnailShortHr-ryhHw.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswayshammthor-thumbnailLong-oVhYc.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswayshammthor-thumbnailLongHr-TFQwQ.jpeg',\n fullScreen: false,\n identifier: 'vswayshammthor',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:35.969Z',\n updatedAt: '2024-03-13T10:08:53.672Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1143,\n name: 'Gates of Olympus',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20olympgate-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20olympgate-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20olympgate-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20olympgate-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20olympgate-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20olympgate-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vs20olympgate',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:35.740Z',\n updatedAt: '2024-03-25T21:18:13.219Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 14,\n name: 'Dragoness',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_14-thumbnail.png',\n thumbnailHrUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_14-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_14-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_14-thumbnailShortHr.png',\n thumbnailLongUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_14-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_14-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'rp_14',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9633,\n credit: 20,\n maxWin: 5500,\n hitRate: 0.252,\n volatilityInPercentage: 0.8,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2023-11-27T13:25:11.890Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 38,\n name: 'Zeus Rush Fever',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_38-thumbnail.png',\n thumbnailHrUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_38-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_38-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_38-thumbnailShortHr.png',\n thumbnailLongUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_38-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_38-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'rp_38',\n description: null,\n volatilityRating: '2',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.969,\n credit: 50,\n maxWin: 8600,\n hitRate: 0.383,\n volatilityInPercentage: 0.4,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2023-11-27T12:29:04.762Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n ],\n hasMoreGames: false,\n },\n {\n imageUrl: 'https://cdn.crowncoinscasino.com/production/assets/game-category/PRAGMATIC/imageFile-1711381293051.png',\n scImageUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/game-category/PRAGMATIC/scImageFile-1711381293281.png',\n masterGameSubCategoryId: 624,\n name: {\n EN: 'PRAGMATIC',\n },\n masterGameCategoryId: 533,\n thumbnailType: 'short',\n isActive: true,\n orderId: null,\n showInHeader: false,\n showInHamburgerMenu: true,\n createdAt: '2024-03-25T15:41:33.407Z',\n updatedAt: '2024-04-03T14:56:12.610Z',\n subCategoryGames: [\n {\n masterCasinoGameId: 2704,\n name: '3 Dancing Monkeys',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysmonkey-thumbnail-tkkZm.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysmonkey-thumbnailHr-hbwGt.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysmonkey-thumbnailShort-SZJoN.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysmonkey-thumbnailShortHr-haWUr.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysmonkey-thumbnailLong-mrbFm.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysmonkey-thumbnailLongHr-PvbpB.jpeg',\n fullScreen: false,\n identifier: 'vswaysmonkey',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '94',\n credit: '30',\n maxWin: '12077',\n hitRate: '36.49',\n volatilityInPercentage: '70',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-03-23T13:29:17.749Z',\n updatedAt: '2024-03-27T10:13:12.681Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1986,\n name: 'Gates of Olympus Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20olympus-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20olympus-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20olympus-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20olympus-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20olympus-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20olympus-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg20olympus',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.078Z',\n updatedAt: '2024-04-07T12:52:00.968Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2184,\n name: 'Fire Stampede',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysstampede-thumbnail-XkFvu.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysstampede-thumbnailHr-JAwkj.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysstampede-thumbnailShort-hXISw.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysstampede-thumbnailShortHr-gcHHj.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysstampede-thumbnailLong-VoCFJ.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysstampede-thumbnailLongHr-IqoRi.png',\n fullScreen: false,\n identifier: 'vswaysstampede',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-12-26T10:04:45.328Z',\n updatedAt: '2024-03-25T21:16:47.867Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2336,\n name: 'Good Luck & Good Fortune',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10luckfort-thumbnail-arSUh.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10luckfort-thumbnailHr-oZTnU.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10luckfort-thumbnailShort-JUmuj.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10luckfort-thumbnailShortHr-KhzPH.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10luckfort-thumbnailLong-vJukr.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10luckfort-thumbnailLongHr-KoDdp.jpeg',\n fullScreen: false,\n identifier: 'vs10luckfort',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-01-25T09:26:47.904Z',\n updatedAt: '2024-03-25T21:20:29.520Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1276,\n name: 'Floating Dragon',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10floatdrg-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10floatdrg-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10floatdrg-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10floatdrg-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10floatdrg-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10floatdrg-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vs10floatdrg',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:38.287Z',\n updatedAt: '2024-03-25T21:17:13.168Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1995,\n name: 'Sugar Rush Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sugarush-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sugarush-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sugarush-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sugarush-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sugarush-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg20sugarush-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg20sugarush',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.230Z',\n updatedAt: '2024-04-07T12:52:01.079Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1386,\n name: 'Money Roll',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/cs5moneyroll-thumbnail-pECQn.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/cs5moneyroll-thumbnailHr-oyzNT.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/cs5moneyroll-thumbnailShort-fmsWa.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/cs5moneyroll-thumbnailShortHr-BwKum.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/cs5moneyroll-thumbnailLong-llyYX.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/cs5moneyroll-thumbnailLongHr-riBOO.png',\n fullScreen: false,\n identifier: 'cs5moneyroll',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:39.804Z',\n updatedAt: '2024-02-26T14:33:02.127Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1988,\n name: \"Joker's Jewels Jackpot Play\",\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vsprg5joker-thumbnail-ZvlMo.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vsprg5joker-thumbnailHr-SXmLa.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vsprg5joker-thumbnailShort-tuSPZ.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vsprg5joker-thumbnailShortHr-SgsMj.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vsprg5joker-thumbnailLong-JjOvo.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vsprg5joker-thumbnailLongHr-Axwrk.jpeg',\n fullScreen: false,\n identifier: 'vsprg5joker',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.113Z',\n updatedAt: '2024-04-07T12:52:00.988Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1977,\n name: 'Big Bass Bonanza Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10bbbnza-thumbnail-AaCjf.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10bbbnza-thumbnailHr-SLEYZ.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10bbbnza-thumbnailShort-WcWPn.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10bbbnza-thumbnailShortHr-ULMZa.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10bbbnza-thumbnailLong-ObMtP.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10bbbnza-thumbnailLongHr-fBwTz.png',\n fullScreen: false,\n identifier: 'vsprg10bbbnza',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:40.839Z',\n updatedAt: '2024-04-07T12:52:00.900Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1480,\n name: 'Mysterious',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs4096mystery-thumbnail-LdjyH.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs4096mystery-thumbnailHr-LjnTG.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs4096mystery-thumbnailShort-aRDwa.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs4096mystery-thumbnailShortHr-GlwGc.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs4096mystery-thumbnailLong-spPob.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs4096mystery-thumbnailLongHr-WFQwQ.jpeg',\n fullScreen: false,\n identifier: 'vs4096mystery',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:40.887Z',\n updatedAt: '2024-03-21T11:52:47.186Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2472,\n name: \"Wheel O'Gold\",\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20multiup-thumbnail-JVPgb.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20multiup-thumbnailHr-psjXp.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20multiup-thumbnailShort-BToOM.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20multiup-thumbnailShortHr-UtnDs.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20multiup-thumbnailLong-YuVwH.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20multiup-thumbnailLongHr-rilVm.jpeg',\n fullScreen: false,\n identifier: 'vs20multiup',\n description: null,\n volatilityRating: '5',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '94.02',\n credit: '20',\n maxWin: '10000',\n hitRate: '33.33',\n volatilityInPercentage: '70',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-03-07T17:30:20.317Z',\n updatedAt: '2024-03-21T10:03:50.170Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1165,\n name: 'Buffalo King Megaways',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbufking-thumbnail-zDSeS.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbufking-thumbnailHr-wpaFP.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbufking-thumbnailShort-KDelq.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbufking-thumbnailShortHr-QQzJx.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbufking-thumbnailLong-SbkNf.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysbufking-thumbnailLongHr-XEjmU.png',\n fullScreen: false,\n identifier: 'vswaysbufking',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:36.038Z',\n updatedAt: '2024-03-13T10:06:34.351Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2505,\n name: 'Pot of Fortune',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20stckwldsc-thumbnail-LFdLk.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20stckwldsc-thumbnailHr-WinHX.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20stckwldsc-thumbnailShort-mobjz.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20stckwldsc-thumbnailShortHr-rDhLt.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20stckwldsc-thumbnailLong-DCMwE.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20stckwldsc-thumbnailLongHr-qPWMs.jpeg',\n fullScreen: false,\n identifier: 'vs20stckwldsc',\n description: null,\n volatilityRating: '5',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '94',\n credit: '20',\n maxWin: '5000',\n hitRate: '33.33',\n volatilityInPercentage: '70',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-03-10T16:18:28.830Z',\n updatedAt: '2024-03-21T10:04:59.802Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1980,\n name: 'Crown of Fire Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10cfire-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10cfire-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10cfire-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10cfire-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10cfire-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg10cfire-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg10cfire',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:40.921Z',\n updatedAt: '2024-04-07T12:52:00.909Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1144,\n name: 'Sugar Rush',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20sugarrush-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20sugarrush-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20sugarrush-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20sugarrush-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20sugarrush-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20sugarrush-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vs20sugarrush',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:35.772Z',\n updatedAt: '2024-03-07T16:39:26.080Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1987,\n name: 'Hot to Burn Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5hburn-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5hburn-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5hburn-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5hburn-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5hburn-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5hburn-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg5hburn',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.097Z',\n updatedAt: '2024-04-07T12:52:00.978Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1306,\n name: 'Fire Strike',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10firestrike-thumbnail-XSxEt.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10firestrike-thumbnailHr-UWwPg.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10firestrike-thumbnailShort-hblfQ.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10firestrike-thumbnailShortHr-tnXdL.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10firestrike-thumbnailLong-Kywfb.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10firestrike-thumbnailLongHr-Lveyx.png',\n fullScreen: false,\n identifier: 'vs10firestrike',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:38.787Z',\n updatedAt: '2024-03-13T10:07:32.969Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1275,\n name: 'Big Bass Splash',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10txbigbass-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10txbigbass-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10txbigbass-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10txbigbass-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10txbigbass-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10txbigbass-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vs10txbigbass',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:38.280Z',\n updatedAt: '2023-09-21T12:03:06.565Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1984,\n name: 'Fire Hot 5 Jackpot Play',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5firehot-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5firehot-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5firehot-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5firehot-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5firehot-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vsprg5firehot-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vsprg5firehot',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n jackpotFeedGC: 55550197.04,\n jackpotFeedSC: 25302.06,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-10-09T13:56:41.055Z',\n updatedAt: '2024-04-07T12:52:00.953Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1369,\n name: 'Wild Wild Riches',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs576treasures-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs576treasures-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs576treasures-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs576treasures-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs576treasures-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs576treasures-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vs576treasures',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:39.614Z',\n updatedAt: '2023-09-21T11:53:41.220Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n ],\n hasMoreGames: true,\n },\n {\n imageUrl: 'https://cdn.crowncoinscasino.com/production/assets/game-category/RUBYPLAY/imageFile-1711400312244.png',\n scImageUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/game-category/RUBYPLAY/scImageFile-1711400312586.png',\n masterGameSubCategoryId: 690,\n name: {\n EN: 'RUBY PLAY',\n },\n masterGameCategoryId: 533,\n thumbnailType: 'short',\n isActive: true,\n orderId: null,\n showInHeader: false,\n showInHamburgerMenu: true,\n createdAt: '2024-03-25T20:58:32.715Z',\n updatedAt: '2024-04-03T14:56:28.354Z',\n subCategoryGames: [\n {\n masterCasinoGameId: 2406,\n name: 'Mad Hit Wild Alice.',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_627-thumbnail-QXWDh.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_627-thumbnailHr-WmIOh.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_627-thumbnailShort-Jhray.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_627-thumbnailShortHr-rlaod.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_627-thumbnailLong-tcmPC.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_627-thumbnailLongHr-zBtYy.jpeg',\n fullScreen: false,\n identifier: 'rp_627',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '94.36',\n credit: '10',\n maxWin: '6568',\n hitRate: '38.36',\n volatilityInPercentage: '51',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-02-29T12:11:00.141Z',\n updatedAt: '2024-03-25T21:21:04.378Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2538,\n name: 'Volcano Rising 94',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_558-thumbnail-vVQel.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_558-thumbnailHr-Kacbt.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_558-thumbnailShort-nMmte.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_558-thumbnailShortHr-ZcSmO.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_558-thumbnailLong-xMlgf.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_558-thumbnailLongHr-SzcFv.png',\n fullScreen: false,\n identifier: 'rp_558',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '94.36',\n credit: '50',\n maxWin: '2188',\n hitRate: '45.16',\n volatilityInPercentage: '77',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-03-13T09:26:07.130Z',\n updatedAt: '2024-03-13T09:39:03.056Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 22,\n name: 'Quest of Gods',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_23-thumbnail-ToGta.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_23-thumbnailHr-GUeiM.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_23-thumbnailShort-vFesu.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_23-thumbnailShortHr-kLgaZ.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_23-thumbnailLong-gjZha.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_23-thumbnailLongHr-dtRsg.jpeg',\n fullScreen: false,\n identifier: 'rp_23',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9648,\n credit: 20,\n maxWin: 10000,\n hitRate: 0.235,\n volatilityInPercentage: 0.75,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2024-02-04T17:16:02.790Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2038,\n name: 'Stampede Rush Wicked',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_592-thumbnail-Yraeo.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_592-thumbnailHr-ENzRh.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_592-thumbnailShort-EobRJ.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_592-thumbnailShortHr-ycCix.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_592-thumbnailLong-potpd.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_592-thumbnailLongHr-henDY.png',\n fullScreen: false,\n identifier: 'rp_592',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 94.31,\n credit: 10,\n maxWin: 1338,\n hitRate: 45.24,\n volatilityInPercentage: 52,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-11-23T11:30:29.492Z',\n updatedAt: '2023-11-27T12:21:46.590Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 31,\n name: 'Sun of Ra',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_34-thumbnail-zLuFq.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_34-thumbnailHr-aOrDv.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_34-thumbnailShort-vucpi.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_34-thumbnailShortHr-dEOhx.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_34-thumbnailLong-UYkrj.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_34-thumbnailLongHr-FvmVK.jpeg',\n fullScreen: false,\n identifier: 'rp_34',\n description: '',\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.969,\n credit: 50,\n maxWin: 4200,\n hitRate: 0.304,\n volatilityInPercentage: 0.75,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2024-03-21T11:52:31.295Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 64,\n name: 'Mayan Blaze',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_65-thumbnail-mYijx.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_65-thumbnailHr-vvHXW.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_65-thumbnailShort-UiKOk.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_65-thumbnailShortHr-MibWp.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_65-thumbnailLong-bxibe.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_65-thumbnailLongHr-LYXZc.jpeg',\n fullScreen: false,\n identifier: 'rp_65',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.964,\n credit: 20,\n maxWin: 900,\n hitRate: 0.326,\n volatilityInPercentage: 0.45,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2024-03-21T11:52:39.250Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 23,\n name: 'Shake Shake Money Tree',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_25-thumbnail.png',\n thumbnailHrUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_25-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_25-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_25-thumbnailShortHr.png',\n thumbnailLongUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_25-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_25-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'rp_522',\n description: null,\n volatilityRating: '2',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9648,\n credit: 20,\n maxWin: 1100,\n hitRate: 0.321,\n volatilityInPercentage: 0.45,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2023-11-30T11:35:41.223Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 20,\n name: 'Loco Habanero',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_20-thumbnail.png',\n thumbnailHrUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_20-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_20-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_20-thumbnailShortHr.png',\n thumbnailLongUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_20-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_20-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'rp_20',\n description: '',\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9649,\n credit: 20,\n maxWin: 5500,\n hitRate: 0.316,\n volatilityInPercentage: 0.8,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2024-03-25T21:20:46.238Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 69,\n name: 'Diamond Explosion 7s',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_504-thumbnail-oBxKk.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_504-thumbnailHr-DdPvj.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_504-thumbnailShort-soPaf.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_504-thumbnailShortHr-IaEax.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_504-thumbnailLong-Kidne.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_504-thumbnailLongHr-sMKeK.png',\n fullScreen: false,\n identifier: 'rp_504',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9682,\n credit: 50,\n maxWin: 8000,\n hitRate: 0.4824,\n volatilityInPercentage: 0.8,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2024-04-07T10:02:13.159Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 73,\n name: 'Native Spirit',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_76-thumbnail.png',\n thumbnailHrUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_76-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_76-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_76-thumbnailShortHr.png',\n thumbnailLongUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_76-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_76-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'rp_76',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9637,\n credit: 10,\n maxWin: 1578,\n hitRate: 0.2854,\n volatilityInPercentage: 0.65,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2023-11-27T13:15:11.710Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 41,\n name: 'Elephant Stampede',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_42-thumbnail.png',\n thumbnailHrUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_42-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_42-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_42-thumbnailShortHr.png',\n thumbnailLongUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_42-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_42-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'rp_42',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9691,\n credit: 50,\n maxWin: 1900,\n hitRate: 0.3131,\n volatilityInPercentage: 0.75,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2023-11-30T11:30:30.075Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 33,\n name: 'Shake Shake Leprechaun',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_35-thumbnail.png',\n thumbnailHrUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_35-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_35-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_35-thumbnailShortHr.png',\n thumbnailLongUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_35-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_35-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'rp_516',\n description: null,\n volatilityRating: '2',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9648,\n credit: 20,\n maxWin: 1100,\n hitRate: 0.321,\n volatilityInPercentage: 0.45,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2023-11-30T11:32:43.837Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 28,\n name: 'Mayan Cache',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_32-thumbnail.png',\n thumbnailHrUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_32-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_32-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_32-thumbnailShortHr.png',\n thumbnailLongUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_32-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_32-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'rp_501',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9647,\n credit: 20,\n maxWin: 2300,\n hitRate: 0.2728,\n volatilityInPercentage: 0.65,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2023-11-27T13:32:25.065Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 50,\n name: \"Adventures of Li'l Red\",\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_51-thumbnail-jPDbC.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_51-thumbnailHr-WOEpg.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_51-thumbnailShort-uehFI.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_51-thumbnailShortHr-KhiPJ.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_51-thumbnailLong-xWYhF.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_51-thumbnailLongHr-XCQNQ.png',\n fullScreen: false,\n identifier: 'rp_51',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.969,\n credit: 50,\n maxWin: 2800,\n hitRate: 0.3463,\n volatilityInPercentage: 0.75,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2024-03-07T11:16:59.850Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 16,\n name: 'Immortal Empress',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_16-thumbnail-cthus.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_16-thumbnailHr-LycYz.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_16-thumbnailShort-MyFTc.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_16-thumbnailShortHr-EVwVh.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_16-thumbnailLong-SRbPJ.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_16-thumbnailLongHr-gRUfc.jpeg',\n fullScreen: false,\n identifier: 'rp_16',\n description: null,\n volatilityRating: '5',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9618,\n credit: 50,\n maxWin: 10400,\n hitRate: 0.308,\n volatilityInPercentage: 0.85,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2024-02-19T12:15:43.835Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2405,\n name: 'Mad Hit Marlin Bonanza.',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_614-thumbnail-DQgGL.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_614-thumbnailHr-NhaoD.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_614-thumbnailShort-kEiBx.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_614-thumbnailShortHr-dRcfY.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_614-thumbnailLong-OqZkh.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_614-thumbnailLongHr-FqXip.jpeg',\n fullScreen: false,\n identifier: 'rp_614',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '94.36',\n credit: '10',\n maxWin: '6568',\n hitRate: '38.36',\n volatilityInPercentage: '51',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-02-29T12:09:44.825Z',\n updatedAt: '2024-02-29T18:30:56.700Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2039,\n name: 'Mad Hit Oasis',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_601-thumbnail-otIIW.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_601-thumbnailHr-AFXJH.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_601-thumbnailShort-enyVn.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_601-thumbnailShortHr-bmvby.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_601-thumbnailLong-BuwFV.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_601-thumbnailLongHr-hMIgq.png',\n fullScreen: false,\n identifier: 'rp_601',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 94.36,\n credit: 10,\n maxWin: 5481,\n hitRate: 38.36,\n volatilityInPercentage: 51,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-11-23T11:30:29.492Z',\n updatedAt: '2023-11-27T12:23:04.494Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 43,\n name: 'Rush Fever 7s',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_44-thumbnail.png',\n thumbnailHrUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_44-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_44-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_44-thumbnailShortHr.png',\n thumbnailLongUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_44-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_44-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'rp_44',\n description: null,\n volatilityRating: '2',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.969,\n credit: 50,\n maxWin: 8600,\n hitRate: 0.383,\n volatilityInPercentage: 0.4,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2024-02-15T11:26:58.445Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 71,\n name: 'Rush Fever 7s Deluxe',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_73-thumbnail.png',\n thumbnailHrUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_73-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_73-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_73-thumbnailShortHr.png',\n thumbnailLongUrl: 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_73-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/ruby-play/rp_73-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'rp_510',\n description: null,\n volatilityRating: '2',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9656,\n credit: 50,\n maxWin: 4501,\n hitRate: 0.3859,\n volatilityInPercentage: 0.4,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2023-11-27T13:27:33.535Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 49,\n name: 'Enter the Vault',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_50-thumbnail-vNpxb.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_50-thumbnailHr-BWSCg.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_50-thumbnailShort-ZqVfQ.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_50-thumbnailShortHr-jlpgi.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_50-thumbnailLong-EGdKX.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_50-thumbnailLongHr-vCjUK.jpeg',\n fullScreen: false,\n identifier: 'rp_50',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9682,\n credit: 50,\n maxWin: 8000,\n hitRate: 0.4824,\n volatilityInPercentage: 0.8,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2024-03-07T11:16:52.059Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n ],\n hasMoreGames: true,\n },\n {\n imageUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/game-category/[objectObject]/imageFile-1711562441169.png',\n scImageUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/game-category/[objectObject]/scImageFile-1711562441278.png',\n masterGameSubCategoryId: 213,\n name: {\n EN: 'SLOTS',\n },\n masterGameCategoryId: 533,\n thumbnailType: 'short',\n isActive: true,\n orderId: 14,\n showInHeader: true,\n showInHamburgerMenu: true,\n createdAt: '2023-06-28T16:01:34.496Z',\n updatedAt: '2024-03-27T18:00:41.423Z',\n subCategoryGames: [\n {\n masterCasinoGameId: 2538,\n name: 'Volcano Rising 94',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_558-thumbnail-vVQel.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_558-thumbnailHr-Kacbt.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_558-thumbnailShort-nMmte.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_558-thumbnailShortHr-ZcSmO.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_558-thumbnailLong-xMlgf.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_558-thumbnailLongHr-SzcFv.png',\n fullScreen: false,\n identifier: 'rp_558',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '94.36',\n credit: '50',\n maxWin: '2188',\n hitRate: '45.16',\n volatilityInPercentage: '77',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-03-13T09:26:07.130Z',\n updatedAt: '2024-03-13T09:39:03.056Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2372,\n name: 'Diamond_Explosion_Sweet_love',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_605-thumbnail-KIqWf.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_605-thumbnailHr-lHKhc.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_605-thumbnailShort-ZtzIP.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_605-thumbnailShortHr-XQfHx.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_605-thumbnailLong-EDIdO.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_605-thumbnailLongHr-NFQZU.jpeg',\n fullScreen: false,\n identifier: 'rp_605',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 94.45,\n credit: 0.5,\n maxWin: 8087,\n hitRate: 47.34,\n volatilityInPercentage: 47,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-02-08T08:27:57.851Z',\n updatedAt: '2024-02-19T12:14:21.663Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2228,\n name: 'Book of Power',\n masterCasinoProviderId: 562,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/bookofpower-thumbnail-iiGKL.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/bookofpower-thumbnailHr-higdM.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/bookofpower-thumbnailShort-MgCyn.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/bookofpower-thumbnailShortHr-BdUQO.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/bookofpower-thumbnailLong-qzSJk.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/bookofpower-thumbnailLongHr-QGTco.jpeg',\n fullScreen: false,\n identifier: 'bookofpower',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 96.11,\n credit: 10,\n maxWin: 900000,\n hitRate: 45.24,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-01-04T15:45:07.527Z',\n updatedAt: '2024-02-19T12:14:42.077Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 562,\n name: 'Relax Gaming',\n isActive: true,\n thumbnailUrl: null,\n masterGameAggregatorId: null,\n uuid: 'dd239001-e721-4fc3-a02b-d215a7229e89',\n createdAt: '2023-12-12T14:19:15.699Z',\n updatedAt: '2024-01-18T16:58:10.881Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1525,\n name: 'Romeo and Juliet',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs25romeoandjuliet-thumbnail-Wennv.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs25romeoandjuliet-thumbnailHr-SenTr.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs25romeoandjuliet-thumbnailShort-zQMzB.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs25romeoandjuliet-thumbnailShortHr-kFalK.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs25romeoandjuliet-thumbnailLong-yKCQH.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs25romeoandjuliet-thumbnailLongHr-onalc.jpeg',\n fullScreen: false,\n identifier: 'vs25romeoandjuliet',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:41.278Z',\n updatedAt: '2024-02-19T12:15:00.553Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1474,\n name: 'Fairytale Fortune',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs15fairytale-thumbnail-SXiml.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs15fairytale-thumbnailHr-urtjp.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs15fairytale-thumbnailShort-JFRYG.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs15fairytale-thumbnailShortHr-kxcIO.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs15fairytale-thumbnailLong-mlDMy.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs15fairytale-thumbnailLongHr-ofpMb.jpeg',\n fullScreen: false,\n identifier: 'vs15fairytale',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:40.834Z',\n updatedAt: '2024-03-25T21:16:19.028Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1386,\n name: 'Money Roll',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/cs5moneyroll-thumbnail-pECQn.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/cs5moneyroll-thumbnailHr-oyzNT.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/cs5moneyroll-thumbnailShort-fmsWa.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/cs5moneyroll-thumbnailShortHr-BwKum.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/cs5moneyroll-thumbnailLong-llyYX.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/cs5moneyroll-thumbnailLongHr-riBOO.png',\n fullScreen: false,\n identifier: 'cs5moneyroll',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:39.804Z',\n updatedAt: '2024-02-26T14:33:02.127Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1148,\n name: 'Sweet Bonanza Xmas',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20sbxmas-thumbnail-wwobr.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20sbxmas-thumbnailHr-LtTeJ.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20sbxmas-thumbnailShort-ASqaT.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20sbxmas-thumbnailShortHr-FpMHC.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20sbxmas-thumbnailLong-enFtS.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20sbxmas-thumbnailLongHr-hyWxF.png',\n fullScreen: false,\n identifier: 'vs20sbxmas',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:35.808Z',\n updatedAt: '2024-03-11T09:15:42.224Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1319,\n name: 'Queen of Gods',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10egrich-thumbnail-ufNst.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10egrich-thumbnailHr-UYdQo.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10egrich-thumbnailShort-ZrroJ.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10egrich-thumbnailShortHr-PZYYq.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10egrich-thumbnailLong-tgzif.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10egrich-thumbnailLongHr-aLnDu.jpeg',\n fullScreen: false,\n identifier: 'vs10egrich',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:38.973Z',\n updatedAt: '2024-03-06T14:31:45.643Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 16,\n name: 'Immortal Empress',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_16-thumbnail-cthus.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_16-thumbnailHr-LycYz.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_16-thumbnailShort-MyFTc.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_16-thumbnailShortHr-EVwVh.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_16-thumbnailLong-SRbPJ.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_16-thumbnailLongHr-gRUfc.jpeg',\n fullScreen: false,\n identifier: 'rp_16',\n description: null,\n volatilityRating: '5',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9618,\n credit: 50,\n maxWin: 10400,\n hitRate: 0.308,\n volatilityInPercentage: 0.85,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2024-02-19T12:15:43.835Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 27,\n name: 'Arcane Beauties',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_24-thumbnail-zmjkm.jpeg',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_24-thumbnailHr-eTxVS.jpeg',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_24-thumbnailShort-FcBul.jpeg',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_24-thumbnailShortHr-JaRTs.jpeg',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_24-thumbnailLong-AEFDH.jpeg',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_24-thumbnailLongHr-zkMNm.jpeg',\n fullScreen: false,\n identifier: 'rp_24',\n description: null,\n volatilityRating: '2',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9648,\n credit: 20,\n maxWin: 600,\n hitRate: 0.358,\n volatilityInPercentage: 0.35,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2024-02-19T12:15:21.734Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2186,\n name: 'Juicy Fruits Multihold',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs50jfmulthold-thumbnail-PJaan.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs50jfmulthold-thumbnailHr-gvuVn.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs50jfmulthold-thumbnailShort-yGkVS.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs50jfmulthold-thumbnailShortHr-jCwsi.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs50jfmulthold-thumbnailLong-toDya.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs50jfmulthold-thumbnailLongHr-OrNMf.png',\n fullScreen: false,\n identifier: 'vs50jfmulthold',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-12-26T10:04:45.410Z',\n updatedAt: '2024-01-22T19:24:07.216Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2183,\n name: 'Floating Dragon New Year Festival',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysfltdrgny-thumbnail-BTRen.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysfltdrgny-thumbnailHr-nwkqR.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysfltdrgny-thumbnailShort-CXamT.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysfltdrgny-thumbnailShortHr-dHUdN.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysfltdrgny-thumbnailLong-AWrHT.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vswaysfltdrgny-thumbnailLongHr-AgXQx.png',\n fullScreen: false,\n identifier: 'vswaysfltdrgny',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-12-26T10:04:45.317Z',\n updatedAt: '2024-03-25T21:20:02.778Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2285,\n name: 'Titan Strike',\n masterCasinoProviderId: 562,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/titanstrike-thumbnail-FggFH.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/titanstrike-thumbnailHr-LyUlo.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/titanstrike-thumbnailShort-inPUb.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/titanstrike-thumbnailShortHr-dGGkm.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/titanstrike-thumbnailLong-qefoe.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/relax-gaming/titanstrike-thumbnailLongHr-QWcti.png',\n fullScreen: false,\n identifier: 'titanstrike',\n description: null,\n volatilityRating: '3',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 96.09,\n credit: 10,\n maxWin: 900900,\n hitRate: 45.24,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-01-04T15:45:07.527Z',\n updatedAt: '2024-01-11T16:06:30.309Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 562,\n name: 'Relax Gaming',\n isActive: true,\n thumbnailUrl: null,\n masterGameAggregatorId: null,\n uuid: 'dd239001-e721-4fc3-a02b-d215a7229e89',\n createdAt: '2023-12-12T14:19:15.699Z',\n updatedAt: '2024-01-18T16:58:10.881Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2571,\n name: 'Zeus Rush Fever Deluxe 94',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_555-thumbnail-gSEDu.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_555-thumbnailHr-OwgAV.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_555-thumbnailShort-WLLGx.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_555-thumbnailShortHr-NIyYl.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_555-thumbnailLong-YneUB.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_555-thumbnailLongHr-ReuHV.png',\n fullScreen: false,\n identifier: 'rp_555',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: '94.46',\n credit: '50',\n maxWin: '8085',\n hitRate: '38.56',\n volatilityInPercentage: '61',\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2024-03-13T09:41:38.400Z',\n updatedAt: '2024-03-13T09:44:31.269Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 2079,\n name: 'Big Bass Christmas Bash',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10bbsplxmas-thumbnail-eRamr.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10bbsplxmas-thumbnailHr-cKjqh.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10bbsplxmas-thumbnailShort-wIGec.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10bbsplxmas-thumbnailShortHr-GtDjH.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10bbsplxmas-thumbnailLong-ESXpj.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10bbsplxmas-thumbnailLongHr-zAAyr.png',\n fullScreen: false,\n identifier: 'vs10bbsplxmas',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-11-27T13:46:12.625Z',\n updatedAt: '2023-12-28T15:02:28.616Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1473,\n name: 'The Magic Cauldron',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20magicpot-thumbnail-dtism.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20magicpot-thumbnailHr-ZbbhE.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20magicpot-thumbnailShort-kCgED.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs20magicpot-thumbnailShortHr-BoVVq.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20magicpot-thumbnailLong-cTkBf.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs20magicpot-thumbnailLongHr-OboRT.png',\n fullScreen: false,\n identifier: 'vs20magicpot',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:40.828Z',\n updatedAt: '2023-11-08T14:32:10.851Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 39,\n name: 'Christmas Fortune',\n masterCasinoProviderId: 74,\n masterGameSubCategoryId: null,\n thumbnailUrl: 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_40-thumbnail-qgWec.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_40-thumbnailHr-oOZkD.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_40-thumbnailShort-etPmG.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_40-thumbnailShortHr-odJZZ.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_40-thumbnailLong-vGtXx.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/ruby-play/rp_40-thumbnailLongHr-VXFZW.png',\n fullScreen: false,\n identifier: 'rp_40',\n description: null,\n volatilityRating: '4',\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: {\n RTP: 0.9649,\n credit: 20,\n maxWin: 5500,\n hitRate: 0.316,\n volatilityInPercentage: 0.8,\n },\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-06-07T14:59:21.781Z',\n updatedAt: '2023-12-28T18:15:50.353Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 74,\n name: 'RubyPlay',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/74.png',\n masterGameAggregatorId: null,\n uuid: '1756cc63-1100-4e5c-9155-c54110252fb0',\n createdAt: '2023-06-07T14:57:32.149Z',\n updatedAt: '2024-03-20T13:06:27.063Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1167,\n name: 'Zeus vs Hades - Gods of War',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs15godsofwar-thumbnail.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs15godsofwar-thumbnailHr.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs15godsofwar-thumbnailShort.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs15godsofwar-thumbnailShortHr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs15godsofwar-thumbnailLong.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs15godsofwar-thumbnailLongHr.png',\n fullScreen: false,\n identifier: 'vs15godsofwar',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:36.071Z',\n updatedAt: '2023-10-08T17:27:07.712Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1444,\n name: 'Voodoo Magic',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs40voodoo-thumbnail-JhQFr.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs40voodoo-thumbnailHr-PRRlP.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs40voodoo-thumbnailShort-snnIH.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs40voodoo-thumbnailShortHr-xCbIZ.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs40voodoo-thumbnailLong-PUtYE.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs40voodoo-thumbnailLongHr-TUBCW.png',\n fullScreen: false,\n identifier: 'vs40voodoo',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:40.314Z',\n updatedAt: '2024-03-25T21:21:59.641Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n {\n masterCasinoGameId: 1487,\n name: 'Vampires vs Wolves',\n masterCasinoProviderId: 283,\n masterGameSubCategoryId: null,\n thumbnailUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10vampwolf-thumbnail-PZOhB.png',\n thumbnailHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10vampwolf-thumbnailHr-ARIEk.png',\n thumbnailShortUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10vampwolf-thumbnailShort-Rupkf.png',\n thumbnailShortHrUrl:\n 'https://cdn.crowncoinscasino.com/production/assets/games/pragmatic-play/vs10vampwolf-thumbnailShortHr-xMYQr.png',\n thumbnailLongUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10vampwolf-thumbnailLong-aRkKS.png',\n thumbnailLongHrUrl:\n 'https://cdn.crowncoinscasino.com/production/games/assets/pragmatic-play/vs10vampwolf-thumbnailLongHr-itERU.png',\n fullScreen: false,\n identifier: 'vs10vampwolf',\n description: null,\n volatilityRating: null,\n hasFreespins: null,\n restrictions: null,\n theme: null,\n featureGroup: null,\n devices: null,\n lines: null,\n returnToPlayer: null,\n wageringContribution: 100,\n moreDetails: null,\n operatorStatus: true,\n isActive: true,\n orderId: null,\n isLive: false,\n createdAt: '2023-09-21T08:13:40.966Z',\n updatedAt: '2023-11-30T13:01:34.819Z',\n MasterCasinoProvider: {\n masterCasinoProviderId: 283,\n name: 'Pragmatic Play',\n isActive: true,\n thumbnailUrl: 'development/assets/provider/283.png',\n masterGameAggregatorId: null,\n uuid: 'f233fe60-1980-499d-878f-336bfb16dce9',\n createdAt: '2023-06-08T20:58:03.147Z',\n updatedAt: '2024-03-13T16:17:39.748Z',\n },\n gameLiveTables: [],\n },\n ],\n hasMoreGames: true,\n },\n];\n","/* eslint-disable react/prop-types */\n\nimport Button from '../../../../components/buttons/Button';\nimport { PreloadBlur } from '../../../../components/PreloadBlur/PreloadBlur';\nimport { getThumbnailUrl } from '../../../../utils/getThumbnailUrl';\nimport { categories } from '../../data/categories';\n\ntype Props = {\n openSignUp?(): void;\n};\nexport const GamesBanner: React.FC = ({ openSignUp }) => {\n const firstCategory = categories[0];\n const games = firstCategory?.subCategoryGames.slice(0, 4) || [];\n\n return (\n
\n
\n \"\"\n

\n TOP Free-to-play Casino STYLE GAMES\n

\n \"\"\n
\n
\n {games.map((data: any) =>\n data ? (\n (\n \n \n {data.name}\n \n )}\n />\n ) : null,\n )}\n
\n \n
\n );\n};\n","import './styles.scss';\n\nimport BackgroundPattern from '../../../components/backrounds/BackgroundPattern';\nimport Button from '../../../components/buttons/Button';\nimport { PreloadBlur } from '../../../components/PreloadBlur/PreloadBlur';\n\nimport { GenericBanner } from './banners/GenericBanner';\nimport { GamesBanner } from './components/GamesBanner';\n\nconst Landing: React.FC = () => {\n const navigateToSignUp = () => {\n const searchParams = new URLSearchParams(window.location.search);\n searchParams.set('dialog', 'signup');\n window.open(`https://crowncoinscasino.com/?${searchParams.toString()}`);\n };\n\n return (\n
\n \n\n \n
\n \n
\n
NO PURCHASE necessary!
\n
\n it's always free to play\n
\n (\n \n \n \"Girl\n \n )}\n />\n
\n \n
\n
\n CLAIM YOUR FREE SWEEP COIN NOW\n
\n
\n
\n
\n
\n );\n};\n\nexport default Landing;\n","import { StrictMode, type ReactNode } from 'react';\n\nimport ReactDOM from 'react-dom/client';\n\nimport '../../index.scss';\n\nimport Landing from './Landing/Landing';\n\nexport function LandingPage() {\n return (\n <>\n \n \n );\n}\n\nfunction render(component: ReactNode) {\n const el = document.getElementById('root');\n\n if (!el) {\n throw new Error('Root element not found');\n }\n const root = ReactDOM.createRoot(el);\n\n root.render({component});\n}\n\nrender();\n"],"names":["f","require$$0","k","l","m","n","p","q","c","a","g","b","d","e","h","reactJsxRuntime_production_min","jsxRuntimeModule","client","ANIMATION_DURATION","animations","useMultiResImage","sources","currentSource","setCurrentSource","useState","currentPriorityRef","useRef","loadSources","useCallback","_sources","unsubscribes","source","priority","img","handleLoad","unsubscribe","useEffect","highResPattern","lowResPattern","backgrounds","colors","patterns","BackgroundPattern","props","pattern","jsxs","styles","AnimatePresence","jsx","motion","resolveFlag","flag","defaultValue","_b","_a","sounds","SoundEffects","__publicField","key","val","audio","name","bypassFF","sound","soundsEnabled","soundEffects","Button","forwardRef","className","classNameWrapper","btnType","iconLeft","iconRight","handleOnClick","children","restProps","forwardedRef","handleClick","buttonClasses","classnames","PreloadBlur","render","isLoading","setIsLoading","classNames","BlackButton","classes","AppLogo","LandingHeader","openSignUp","CasinoBanner","GenericBanner","fallbackThumbnailUrl","getThumbnailUrl","data","categories","GamesBanner","firstCategory","games","Landing","navigateToSignUp","searchParams","LandingPage","Fragment","component","el","ReactDOM","StrictMode"],"mappings":"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CzB,aAAc,iGACd,eACE,mGACF,kBACE,sGACF,oBACE,wGACF,iBACE,qGACF,mBACE,uGACF,WAAY,GACZ,WAAY,SACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,QACL,OAAQ,KACR,OAAQ,OACR,QAAS,QACT,uBAAwB,IAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,aACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,sGACF,eACE,wGACF,kBACE,2GACF,oBACE,6GACF,iBACE,0GACF,mBACE,4GACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,uBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,gGACd,eACE,kGACF,kBACE,qGACF,oBACE,uGACF,iBACE,oGACF,mBACE,sGACF,WAAY,GACZ,WAAY,SACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,IACR,QAAS,MACT,uBAAwB,EAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,kBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,qGACF,eACE,uGACF,kBACE,0GACF,oBACE,4GACF,iBACE,yGACF,mBACE,2GACF,WAAY,GACZ,WAAY,eACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,gBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,gGACd,eACE,kGACF,kBACE,qGACF,oBACE,uGACF,iBACE,oGACF,mBACE,sGACF,WAAY,GACZ,WAAY,QACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,IACR,QAAS,KACT,uBAAwB,GAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,mBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,gGACd,eACE,kGACF,kBACE,qGACF,oBACE,uGACF,iBACE,oGACF,mBACE,sGACF,WAAY,GACZ,WAAY,QACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,MACR,QAAS,KACT,uBAAwB,GAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,oBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,gGACd,eACE,kGACF,kBACE,qGACF,oBACE,uGACF,iBACE,oGACF,mBACE,sGACF,WAAY,GACZ,WAAY,SACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,QACL,OAAQ,KACR,OAAQ,OACR,QAAS,QACT,uBAAwB,IAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,gBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,yFACd,eAAgB,2FAChB,kBACE,8FACF,oBACE,gGACF,iBAAkB,6FAClB,mBACE,+FACF,WAAY,GACZ,WAAY,QACZ,YAAa,KACb,i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Cb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,gBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,yFACd,eAAgB,2FAChB,kBACE,8FACF,oBACE,gGACF,iBAAkB,6FAClB,mBACE,+FACF,WAAY,GACZ,WAAY,QACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,KACL,OAAQ,GACR,OAAQ,KACR,QAAS,KACT,uBAAwB,EAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,sBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,gGACd,eACE,kGACF,kBACE,qGACF,oBACE,uGACF,iBACE,oGACF,mBACE,sGACF,WAAY,GACZ,WAAY,SACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,KACR,QAAS,MACT,uBAAwB,GAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,mBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,sGACF,eACE,wGACF,kBACE,2GACF,oBACE,6GACF,iBACE,0GACF,mBACE,4GACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,uBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,gGACd,eACE,kGACF,kBACE,qGACF,oBACE,uGACF,iBACE,oGACF,mBACE,sGACF,WAAY,GACZ,WAAY,SACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,KACR,QAAS,MACT,uBAAwB,EAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,eACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,yGACF,eACE,2GACF,kBACE,8GACF,oBACE,gHACF,iBACE,6GACF,mBACE,+GACF,WAAY,GACZ,WAAY,aACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,CACF,EACA,aAAc,EAChB,EACA,CACE,SACE,8GACF,WACE,gHACF,wBAAyB,IACzB,KAAM,CACJ,GAAI,cACN,EACA,qBAAsB,IACtB,cAAe,QACf,SAAU,GACV,QAAS,EACT,aAAc,GACd,oBAAqB,GACrB,UAAW,2BACX,UAAW,2BACX,iBAAkB,CAChB,CACE,mBAAoB,KACpB,KAAM,kBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,8GACF,eACE,gHACF,kBACE,mHACF,oBACE,qHACF,iBACE,kHACF,mBACE,oHACF,WAAY,GACZ,WAAY,iBACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,OACL,OAAQ,KACR,OAAQ,QACR,QAAS,OACT,uBAAwB,IAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,2BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,8GACF,eACE,gHACF,kBACE,mHACF,oBACE,qHACF,iBACE,kHACF,mBACE,oHACF,WAAY,GACZ,WAAY,iBACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,QACL,OAAQ,KACR,OAAQ,QACR,QAAS,KACT,uBAAwB,IAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,aACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,gGACd,eACE,kGACF,kBACE,qGACF,oBACE,uGACF,iBACE,oGACF,mBACE,sGACF,WAAY,GACZ,WAAY,QACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,QACL,OAAQ,KACR,OAAQ,OACR,QAAS,QACT,uBAAwB,IAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,yBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,iGACd,eACE,mGACF,kBACE,sGACF,oBACE,wGACF,iBACE,qGACF,mBACE,uGACF,WAAY,GACZ,WAAY,SACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,QACL,OAAQ,KACR,OAAQ,OACR,QAAS,QACT,uBAAwB,IAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,oBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,4GACF,eACE,8GACF,kBACE,iHACF,oBACE,mHACF,iBACE,gHACF,mBACE,kHACF,WAAY,GACZ,WAAY,eACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,KACL,OAAQ,KACR,OAAQ,QACR,QAAS,QACT,uBAAwB,IAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,yBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,iGACd,eACE,mGACF,kBACE,sGACF,oBACE,wGACF,iBACE,qGACF,mBACE,uGACF,WAAY,GACZ,WAAY,SACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,QACL,OAAQ,KACR,OAAQ,OACR,QAAS,QACT,uBAAwB,IAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,uBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,iGACd,eACE,mGACF,kBACE,sGACF,oBACE,wGACF,iBACE,qGACF,mBACE,uGACF,WAAY,GACZ,WAAY,SACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,QACL,OAAQ,KACR,OAAQ,OACR,QAAS,QACT,uBAAwB,IAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,eACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,iGACd,eACE,mGACF,kBACE,sGACF,oBACE,wGACF,iBACE,qGACF,mBACE,uGACF,WAAY,GACZ,WAAY,SACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,QACL,OAAQ,KACR,OAAQ,OACR,QAAS,QACT,uBAAwB,IAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,aACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,6GACF,eACE,+GACF,kBACE,kHACF,oBACE,oHACF,iBACE,iHACF,mBACE,mHACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,YACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,gGACd,eACE,kGACF,kBACE,qGACF,oBACE,uGACF,iBACE,oGACF,mBACE,sGACF,WAAY,GACZ,WAAY,QACZ,YAAa,GACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,KACL,OAAQ,GACR,OAAQ,KACR,QAAS,KACT,uBAAwB,GAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,cACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,gGACd,eACE,kGACF,kBACE,qGACF,oBACE,uGACF,iBACE,oGACF,mBACE,sGACF,WAAY,GACZ,WAAY,QACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,KACL,OAAQ,GACR,OAAQ,IACR,QAAS,KACT,uBAAwB,GAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,iBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,6GACF,eACE,+GACF,kBACE,kHACF,oBACE,oHACF,iBACE,iH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B,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,sBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,iGACd,eACE,mGACF,kBACE,sGACF,oBACE,wGACF,iBACE,qGACF,mBACE,uGACF,WAAY,GACZ,WAAY,SACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,QACL,OAAQ,KACR,OAAQ,OACR,QAAS,QACT,uBAAwB,IAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,gBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,0GACF,eACE,4GACF,kBACE,+GACF,oBACE,iHACF,iBACE,8GACF,mBACE,gHACF,WAAY,GACZ,WAAY,aACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,0BACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,iGACd,eACE,mGACF,kBACE,sGACF,oBACE,wGACF,iBACE,qGACF,mBACE,uGACF,WAAY,GACZ,WAAY,SACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,QACL,OAAQ,KACR,OAAQ,OACR,QAAS,QACT,uBAAwB,IAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,gBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,yGACF,eACE,2GACF,kBACE,8GACF,oBACE,gHACF,iBACE,6GACF,mBACE,+GACF,WAAY,GACZ,WAAY,cACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,IACR,QAAS,KACX,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,eACN,SAAU,GACV,aAAc,KACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,CACF,EACA,aAAc,EAChB,EACA,CACE,SACE,8GACF,WACE,gHACF,wBAAyB,IACzB,KAAM,CACJ,GAAI,SACN,EACA,qBAAsB,IACtB,cAAe,QACf,SAAU,GACV,QAAS,EACT,aAAc,GACd,oBAAqB,GACrB,UAAW,2BACX,UAAW,2BACX,iBAAkB,CAChB,CACE,mBAAoB,KACpB,KAAM,gCACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,4GACF,eACE,8GACF,kBACE,iHACF,oBACE,mHACF,iBACE,gHACF,mBACE,kHACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,gCACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,uGACF,eACE,yGACF,kBACE,4GACF,oBACE,8GACF,iBACE,2GACF,mBACE,6GACF,WAAY,GACZ,WAAY,iBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,6BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,qGACF,eACE,uGACF,kBACE,0GACF,oBACE,4GACF,iBACE,yGACF,mBACE,2GACF,WAAY,GACZ,WAAY,eACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,2BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,oGACF,eACE,sGACF,kBACE,yGACF,oBACE,2GACF,iBACE,wGACF,mBACE,0GACF,WAAY,GACZ,WAAY,cACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,0BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,sGACF,eACE,wGACF,kBACE,2GACF,oBACE,6GACF,iBACE,0GACF,mBACE,4GACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,8BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,2GACF,eACE,6GACF,kBACE,gHACF,oBACE,kHACF,iBACE,+GACF,mBACE,iHACF,WAAY,GACZ,WAAY,cACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,0BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,wGACF,eACE,0GACF,kBACE,6GACF,oBACE,+GACF,iBACE,4GACF,mBACE,8GACF,WAAY,GACZ,WAAY,kBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,sCACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,sGACF,eACE,wGACF,kBACE,2GACF,oBACE,6GACF,iBACE,0GACF,mBACE,4GACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,6BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,uGACF,eACE,yGACF,kBACE,4GACF,oBACE,8GACF,iBACE,2GACF,mBACE,6GACF,WAAY,GACZ,WAAY,iBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,kCACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,sGACF,eACE,wGACF,kBACE,2GACF,oBACE,6GACF,iBACE,0GACF,mBACE,4GACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,8BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,mGACF,eACE,qGACF,kBACE,wGACF,oBACE,0GACF,iBACE,uGACF,mBACE,yGACF,WAAY,GACZ,WAAY,aACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,6BACN,uBAAwB,IACxB,wBAAyB,KACzB,aAAc,iGACd,eACE,mGACF,kBACE,sGACF,oBACE,wGACF,iBACE,qGACF,mBACE,uGACF,WAAY,GACZ,WAAY,WACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,2BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,wGACF,eACE,0GACF,kBACE,6GACF,oBACE,+GACF,iBACE,4GACF,mBACE,8GACF,WAAY,GACZ,WAAY,kBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,4BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,wGACF,eACE,0GACF,kBACE,6GACF,oBACE,+GACF,iBACE,4GACF,mBACE,8GACF,WAAY,GACZ,WAAY,kBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,6BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,wGACF,eACE,0GACF,kBACE,6GACF,oBACE,+GACF,iBACE,4GACF,mBACE,8GACF,WAAY,GACZ,WAAY,kBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,2BACN,uBAAwB,IACxB,wBAAyB,KACzB,aAAc,kGACd,eACE,oGACF,kBACE,uGACF,oBACE,yGACF,iBACE,sGACF,mBACE,wGACF,WAAY,GACZ,WAAY,YACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,2BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,uGACF,eACE,yGACF,kBACE,4GACF,oBACE,8GACF,iBACE,2GACF,mBACE,6GACF,WAAY,GACZ,WAAY,iBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,+BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,mGACF,eACE,qGACF,kBACE,wGACF,oBACE,0GACF,iBACE,uGACF,mBACE,yGACF,WAAY,GACZ,WAAY,aACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,8BACN,uBAAwB,IACxB,wBAAyB,KACzB,aAAc,kGACd,eACE,oGACF,kBACE,uGACF,oBACE,yGACF,iBACE,sGACF,mBACE,wGACF,WAAY,GACZ,WAAY,YACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,8BACN,uBAAwB,IACxB,wBAAyB,KACzB,aAAc,kGACd,eACE,oGACF,kBACE,uGACF,oBACE,yGACF,iBACE,sGACF,mBACE,wGACF,WAAY,GACZ,WAAY,YACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,CACF,EACA,aAAc,EAChB,EACA,CACE,SACE,8GACF,WACE,gHACF,wBAAyB,IACzB,KAAM,CACJ,GAAI,UACN,EACA,qBAAsB,IACtB,cAAe,QACf,SAAU,GACV,QAAS,EACT,aAAc,GACd,oBAAqB,GACrB,UAAW,2BACX,UAAW,2BACX,iBAAkB,CAChB,CACE,mBAAoB,KACpB,KAAM,sCACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,sGACF,eACE,wGACF,kBACE,2GACF,oBACE,6GACF,iBACE,0GACF,mBACE,4GACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,yBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,8GACF,eACE,gHACF,kBACE,mHACF,oBACE,qHACF,iBACE,kHACF,mBACE,oHACF,WAAY,GACZ,WAAY,iBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,wBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,4GACF,eACE,8GACF,kBACE,iHACF,oBACE,mHACF,iBACE,gHACF,mBACE,kHACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,0BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,2GACF,eACE,6GACF,kBACE,gHACF,oBACE,kHACF,iBACE,+GACF,mBACE,iHACF,WAAY,GACZ,WAAY,eACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,mBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,oGACF,eACE,sGACF,kBACE,yGACF,oBACE,2GACF,iBACE,wGACF,mBACE,0GACF,WAAY,GACZ,WAAY,cACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,uBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,oGACF,eACE,sGACF,kBACE,yGACF,oBACE,2GACF,iBACE,wGACF,mBACE,0GACF,WAAY,GACZ,WAAY,cACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,yBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,mGACF,eACE,qGACF,kBACE,wGACF,oBACE,0GACF,iBACE,uGACF,mBACE,yGACF,WAAY,GACZ,WAAY,aACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,2BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,4GACF,eACE,8GACF,kBACE,iHACF,oBACE,mHACF,iBACE,gHACF,mBACE,kHACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,8BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,oGACF,eACE,sGACF,kBACE,yGACF,oBACE,2GACF,iBACE,wGACF,mBACE,0GACF,WAAY,GACZ,WAAY,cACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,CACF,EACA,aAAc,EAChB,EACA,CACE,SACE,8GACF,WACE,gHACF,wBAAyB,IACzB,KAAM,CACJ,GAAI,cACN,EACA,qBAAsB,IACtB,cAAe,QACf,SAAU,GACV,QAAS,GACT,aAAc,GACd,oBAAqB,GACrB,UAAW,2BACX,UAAW,2BACX,iBAAkB,CAChB,CACE,mBAAoB,GACpB,KAAM,uBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,yFACd,eAAgB,2FAChB,kBACE,8FACF,oBACE,gGACF,iBAAkB,6FAClB,mBACE,+FACF,WAAY,GACZ,WAAY,SACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,KACR,QAAS,MACT,uBAAwB,EAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,uBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,gGACd,eACE,kGACF,kBACE,qGACF,oBACE,uGACF,iBACE,oGACF,mBACE,sGACF,WAAY,GACZ,WAAY,SACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,IACR,QAAS,MACT,uBAAwB,EAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,gBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,yFACd,eAAgB,2FAChB,kBACE,8FACF,oBACE,gGACF,iBAAkB,6FAClB,mBACE,+FACF,WAAY,GACZ,WAAY,QACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,KACL,OAAQ,GACR,OAAQ,KACR,QAAS,KACT,uBAAwB,EAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,yBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,6GACF,eACE,+GACF,kBACE,kHACF,oBACE,oHACF,iBACE,iHACF,mBACE,mHACF,WAAY,GACZ,WAAY,iBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,2BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,oGACF,eACE,sGACF,kBACE,yGACF,oBACE,2GACF,iBACE,wGACF,mBACE,0GACF,WAAY,GACZ,WAAY,cACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,6BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,qGACF,eACE,uGACF,kBACE,0GACF,oBACE,4GACF,iBACE,yGACF,mBACE,2GACF,WAAY,GACZ,WAAY,eACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,cACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,mGACF,eACE,qGACF,kBACE,wGACF,oBACE,0GACF,iBACE,uGACF,mBACE,yGACF,WAAY,GACZ,WAAY,aACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,cACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,6GACF,eACE,+GACF,kBACE,kHACF,oBACE,oHACF,iBACE,iHACF,mBACE,mHACF,WAAY,GACZ,WAAY,iBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,CACF,EACA,aAAc,EAChB,EACA,CACE,SACE,8GACF,WACE,gHACF,wBAAyB,IACzB,KAAM,CACJ,GAAI,YACN,EACA,qBAAsB,IACtB,cAAe,QACf,SAAU,GACV,QAAS,GACT,aAAc,GACd,oBAAqB,GACrB,UAAW,2BACX,UAAW,2BACX,iBAAkB,CAChB,CACE,mBAAoB,KACpB,KAAM,gBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,6GACF,eACE,+GACF,kBACE,kHACF,oBACE,oHACF,iBACE,iHACF,mBACE,mHACF,WAAY,GACZ,WAAY,iBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,wBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,4GACF,eACE,8GACF,kBACE,iHACF,oBACE,mHACF,iBACE,gHACF,mBACE,kHACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,oBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,yFACd,eAAgB,2FAChB,kBACE,8FACF,oBACE,gGACF,iBAAkB,6FAClB,mBACE,+FACF,WAAY,GACZ,WAAY,QACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,KACR,QAAS,MACT,uBAAwB,GAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,mBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,2GACF,eACE,6GACF,kBACE,gHACF,oBACE,kHACF,iBACE,+GACF,mBACE,iHACF,WAAY,GACZ,WAAY,iBACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,MACR,QAAS,KACX,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,eACN,SAAU,GACV,aAAc,KACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,aACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,uGACF,eACE,yGACF,kBACE,4GACF,oBACE,8GACF,iBACE,2GACF,mBACE,6GACF,WAAY,GACZ,WAAY,YACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,IACR,QAAS,KACX,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,eACN,SAAU,GACV,aAAc,KACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,cACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,yFACd,eAAgB,2FAChB,kBACE,8FACF,oBACE,gGACF,iBAAkB,6FAClB,mBACE,+FACF,WAAY,GACZ,WAAY,SACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,KACR,QAAS,MACT,uBAAwB,GAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,sCACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,sGACF,eACE,wGACF,kBACE,2GACF,oBACE,6GACF,iBACE,0GACF,mBACE,4GACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,gCACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,4GACF,eACE,8GACF,kBACE,iHACF,oBACE,mHACF,iBACE,gHACF,mBACE,kHACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,kBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,sGACF,eACE,wGACF,kBACE,2GACF,oBACE,6GACF,iBACE,0GACF,mBACE,4GACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,yCACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,0GACF,eACE,4GACF,kBACE,+GACF,oBACE,iHACF,iBACE,8GACF,mBACE,gHACF,WAAY,GACZ,WAAY,cACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,qCACN,uBAAwB,IACxB,wBAAyB,KACzB,aAAc,kGACd,eACE,oGACF,kBACE,uGACF,oBACE,yGACF,iBACE,sGACF,mBACE,wGACF,WAAY,GACZ,WAAY,YACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,CACF,EACA,aAAc,EAChB,EACA,CACE,SAAU,oFACV,WAAY,sFACZ,wBAAyB,IACzB,KAAM,CACJ,GAAI,aACN,EACA,qBAAsB,IACtB,cAAe,QACf,SAAU,GACV,QAAS,GACT,aAAc,GACd,oBAAqB,GACrB,UAAW,2BACX,UAAW,2BACX,iBAAkB,CAChB,CACE,mBAAoB,KACpB,KAAM,gBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,0GACF,eACE,4GACF,kBACE,+GACF,oBACE,iHACF,iBACE,8GACF,mBACE,gHACF,WAAY,GACZ,WAAY,cACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,0BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,wGACF,eACE,0GACF,kBACE,6GACF,oBACE,+GACF,iBACE,4GACF,mBACE,8GACF,WAAY,GACZ,WAAY,kBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,2BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,wGACF,eACE,0GACF,kBACE,6GACF,oBACE,+GACF,iBACE,4GACF,mBACE,8GACF,WAAY,GACZ,WAAY,kBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,6BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,uGACF,eACE,yGACF,kBACE,4GACF,oBACE,8GACF,iBACE,2GACF,mBACE,6GACF,WAAY,GACZ,WAAY,iBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,yBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,6GACF,eACE,+GACF,kBACE,kHACF,oBACE,oHACF,iBACE,iHACF,mBACE,mHACF,WAAY,GACZ,WAAY,iBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,cACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,uGACF,eACE,yGACF,kBACE,4GACF,oBACE,8GACF,iBACE,2GACF,mBACE,6GACF,WAAY,GACZ,WAAY,iBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,eACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,oGACF,eACE,sGACF,kBACE,yGACF,oBACE,2GACF,iBACE,wGACF,mBACE,0GACF,WAAY,GACZ,WAAY,cACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,kBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,yGACF,eACE,2GACF,kBACE,8GACF,oBACE,gHACF,iBACE,6GACF,mBACE,+GACF,WAAY,GACZ,WAAY,aACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,CACF,EACA,aAAc,EAChB,EACA,CACE,SACE,8GACF,WACE,gHACF,wBAAyB,IACzB,KAAM,CACJ,GAAI,iBACN,EACA,qBAAsB,IACtB,cAAe,QACf,SAAU,GACV,QAAS,GACT,aAAc,GACd,oBAAqB,GACrB,UAAW,2BACX,UAAW,2BACX,iBAAkB,CAChB,CACE,mBAAoB,KACpB,KAAM,4BACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,gGACd,eACE,kGACF,kBACE,qGACF,oBACE,uGACF,iBACE,oGACF,mBACE,sGACF,WAAY,GACZ,WAAY,SACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,QACL,OAAQ,KACR,OAAQ,OACR,QAAS,QACT,uBAAwB,IAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,wBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,yGACF,eACE,2GACF,kBACE,8GACF,oBACE,gHACF,iBACE,6GACF,mBACE,+GACF,WAAY,GACZ,WAAY,aACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,gBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,gGACd,eACE,kGACF,kBACE,qGACF,oBACE,uGACF,iBACE,oGACF,mBACE,sGACF,WAAY,GACZ,WAAY,QACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,IACR,QAAS,KACT,uBAAwB,GAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,gBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,yFACd,eAAgB,2FAChB,kBACE,8FACF,oBACE,gGACF,iBAAkB,6FAClB,mBACE,+FACF,WAAY,GACZ,WAAY,QACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,KACR,QAAS,MACT,uBAAwB,GAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,eACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,wGACF,eACE,0GACF,kBACE,6GACF,oBACE,+GACF,iBACE,4GACF,mBACE,8GACF,WAAY,GACZ,WAAY,cACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,OACR,QAAS,KACX,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,eACN,SAAU,GACV,aAAc,KACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,gCACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,uGACF,eACE,yGACF,kBACE,4GACF,oBACE,8GACF,iBACE,2GACF,mBACE,6GACF,WAAY,GACZ,WAAY,iBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,8BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,sGACF,eACE,wGACF,kBACE,2GACF,oBACE,6GACF,iBACE,0GACF,mBACE,4GACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,yBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,8GACF,eACE,gHACF,kBACE,mHACF,oBACE,qHACF,iBACE,kHACF,mBACE,oHACF,WAAY,GACZ,WAAY,iBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,mBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,sGACF,eACE,wGACF,kBACE,2GACF,oBACE,6GACF,iBACE,0GACF,mBACE,4GACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,YACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,yFACd,eAAgB,2FAChB,kBACE,8FACF,oBACE,gGACF,iBAAkB,6FAClB,mBACE,+FACF,WAAY,GACZ,WAAY,QACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,KACR,QAAS,KACT,uBAAwB,EAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,kBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,yFACd,eAAgB,2FAChB,kBACE,8FACF,oBACE,gGACF,iBAAkB,6FAClB,mBACE,+FACF,WAAY,GACZ,WAAY,QACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,KACL,OAAQ,GACR,OAAQ,KACR,QAAS,KACT,uBAAwB,EAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,CACF,EACA,aAAc,EAChB,EACA,CACE,SAAU,yGACV,WACE,2GACF,wBAAyB,IACzB,KAAM,CACJ,GAAI,WACN,EACA,qBAAsB,IACtB,cAAe,QACf,SAAU,GACV,QAAS,KACT,aAAc,GACd,oBAAqB,GACrB,UAAW,2BACX,UAAW,2BACX,iBAAkB,CAChB,CACE,mBAAoB,KACpB,KAAM,oBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,4GACF,eACE,8GACF,kBACE,iHACF,oBACE,mHACF,iBACE,gHACF,mBACE,kHACF,WAAY,GACZ,WAAY,eACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,KACL,OAAQ,KACR,OAAQ,QACR,QAAS,QACT,uBAAwB,IAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,gCACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,uGACF,eACE,yGACF,kBACE,4GACF,oBACE,8GACF,iBACE,2GACF,mBACE,6GACF,WAAY,GACZ,WAAY,iBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,gBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,6GACF,eACE,+GACF,kBACE,kHACF,oBACE,oHACF,iBACE,iHACF,mBACE,mHACF,WAAY,GACZ,WAAY,iBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,2BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,4GACF,eACE,8GACF,kBACE,iHACF,oBACE,mHACF,iBACE,gHACF,mBACE,kHACF,WAAY,GACZ,WAAY,eACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,kBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,qGACF,eACE,uGACF,kBACE,0GACF,oBACE,4GACF,iBACE,yGACF,mBACE,2GACF,WAAY,GACZ,WAAY,eACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,0BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,wGACF,eACE,0GACF,kBACE,6GACF,oBACE,+GACF,iBACE,4GACF,mBACE,8GACF,WAAY,GACZ,WAAY,kBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,aACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,2GACF,eACE,6GACF,kBACE,gHACF,oBACE,kHACF,iBACE,+GACF,mBACE,iHACF,WAAY,GACZ,WAAY,eACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,8BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,2GACF,eACE,6GACF,kBACE,gHACF,oBACE,kHACF,iBACE,+GACF,mBACE,iHACF,WAAY,GACZ,WAAY,cACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,gCACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,4GACF,eACE,8GACF,kBACE,iHACF,oBACE,mHACF,iBACE,gHACF,mBACE,kHACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,aACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,6GACF,eACE,+GACF,kBACE,kHACF,oBACE,oHACF,iBACE,iHACF,mBACE,mHACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,eACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,2GACF,eACE,6GACF,kBACE,gHACF,oBACE,kHACF,iBACE,+GACF,mBACE,iHACF,WAAY,GACZ,WAAY,cACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,QACL,OAAQ,KACR,OAAQ,QACR,QAAS,QACT,uBAAwB,IAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,wBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,4GACF,eACE,8GACF,kBACE,iHACF,oBACE,mHACF,iBACE,gHACF,mBACE,kHACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,iBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,6GACF,eACE,+GACF,kBACE,kHACF,oBACE,oHACF,iBACE,iHACF,mBACE,mHACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,KACL,OAAQ,KACR,OAAQ,OACR,QAAS,QACT,uBAAwB,IAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,6BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,qGACF,eACE,uGACF,kBACE,0GACF,oBACE,4GACF,iBACE,yGACF,mBACE,2GACF,WAAY,GACZ,WAAY,eACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,aACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,sGACF,eACE,wGACF,kBACE,2GACF,oBACE,6GACF,iBACE,0GACF,mBACE,4GACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,2BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,oGACF,eACE,sGACF,kBACE,yGACF,oBACE,2GACF,iBACE,wGACF,mBACE,0GACF,WAAY,GACZ,WAAY,cACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,cACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,6GACF,eACE,+GACF,kBACE,kHACF,oBACE,oHACF,iBACE,iHACF,mBACE,mHACF,WAAY,GACZ,WAAY,iBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,kBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,sGACF,eACE,wGACF,kBACE,2GACF,oBACE,6GACF,iBACE,0GACF,mBACE,4GACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,0BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,sGACF,eACE,wGACF,kBACE,2GACF,oBACE,6GACF,iBACE,0GACF,mBACE,4GACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,cAAe,cACf,cAAe,QACjB,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,mBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,uGACF,eACE,yGACF,kBACE,4GACF,oBACE,8GACF,iBACE,2GACF,mBACE,6GACF,WAAY,GACZ,WAAY,iBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,CACF,EACA,aAAc,EAChB,EACA,CACE,SAAU,wGACV,WACE,0GACF,wBAAyB,IACzB,KAAM,CACJ,GAAI,WACN,EACA,qBAAsB,IACtB,cAAe,QACf,SAAU,GACV,QAAS,KACT,aAAc,GACd,oBAAqB,GACrB,UAAW,2BACX,UAAW,2BACX,iBAAkB,CAChB,CACE,mBAAoB,KACpB,KAAM,sBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,iGACd,eACE,mGACF,kBACE,sGACF,oBACE,wGACF,iBACE,qGACF,mBACE,uGACF,WAAY,GACZ,WAAY,SACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,QACL,OAAQ,KACR,OAAQ,OACR,QAAS,QACT,uBAAwB,IAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,oBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,gGACd,eACE,kGACF,kBACE,qGACF,oBACE,uGACF,iBACE,oGACF,mBACE,sGACF,WAAY,GACZ,WAAY,SACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,QACL,OAAQ,KACR,OAAQ,OACR,QAAS,QACT,uBAAwB,IAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,gBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,gGACd,eACE,kGACF,kBACE,qGACF,oBACE,uGACF,iBACE,oGACF,mBACE,sGACF,WAAY,GACZ,WAAY,QACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,IACR,QAAS,KACT,uBAAwB,GAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,uBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,gGACd,eACE,kGACF,kBACE,qGACF,oBACE,uGACF,iBACE,oGACF,mBACE,sGACF,WAAY,GACZ,WAAY,SACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,KACR,QAAS,MACT,uBAAwB,EAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,YACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,gGACd,eACE,kGACF,kBACE,qGACF,oBACE,uGACF,iBACE,oGACF,mBACE,sGACF,WAAY,GACZ,WAAY,QACZ,YAAa,GACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,KACL,OAAQ,GACR,OAAQ,KACR,QAAS,KACT,uBAAwB,GAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,cACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,gGACd,eACE,kGACF,kBACE,qGACF,oBACE,uGACF,iBACE,oGACF,mBACE,sGACF,WAAY,GACZ,WAAY,QACZ,YAAa,KACb,iBAA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2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,gBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,yFACd,eAAgB,2FAChB,kBACE,8FACF,oBACE,gGACF,iBAAkB,6FAClB,mBACE,+FACF,WAAY,GACZ,WAAY,QACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,KACL,OAAQ,GACR,OAAQ,KACR,QAAS,KACT,uBAAwB,EAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,uBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,yFACd,eAAgB,2FAChB,kBACE,8FACF,oBACE,gGACF,iBAAkB,6FAClB,mBACE,+FACF,WAAY,GACZ,WAAY,SACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,KACR,QAAS,MACT,uBAAwB,EAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,kBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,gGACd,eACE,kGACF,kBACE,qGACF,oBACE,uGACF,iBACE,oGACF,mBACE,sGACF,WAAY,GACZ,WAAY,QACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,IACR,QAAS,MACT,uBAAwB,EAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,CACF,EACA,aAAc,EAChB,EACA,CACE,SACE,8GACF,WACE,gHACF,wBAAyB,IACzB,KAAM,CACJ,GAAI,OACN,EACA,qBAAsB,IACtB,cAAe,QACf,SAAU,GACV,QAAS,GACT,aAAc,GACd,oBAAqB,GACrB,UAAW,2BACX,UAAW,2BACX,iBAAkB,CAChB,CACE,mBAAoB,KACpB,KAAM,oBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,gGACd,eACE,kGACF,kBACE,qGACF,oBACE,uGACF,iBACE,oGACF,mBACE,sGACF,WAAY,GACZ,WAAY,SACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,QACL,OAAQ,KACR,OAAQ,OACR,QAAS,QACT,uBAAwB,IAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,+BACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,iGACd,eACE,mGACF,kBACE,sGACF,oBACE,wGACF,iBACE,qGACF,mBACE,uGACF,WAAY,GACZ,WAAY,SACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,KACR,QAAS,MACT,uBAAwB,EAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,gBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,yGACF,eACE,2GACF,kBACE,8GACF,oBACE,gHACF,iBACE,6GACF,mBACE,+GACF,WAAY,GACZ,WAAY,cACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,IACR,QAAS,KACX,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,eACN,SAAU,GACV,aAAc,KACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,mBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,kHACF,eACE,oHACF,kBACE,uHACF,oBACE,yHACF,iBACE,sHACF,mBACE,wHACF,WAAY,GACZ,WAAY,qBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,oBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,6GACF,eACE,+GACF,kBACE,kHACF,oBACE,oHACF,iBACE,iHACF,mBACE,mHACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,aACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,2GACF,eACE,6GACF,kBACE,gHACF,oBACE,kHACF,iBACE,+GACF,mBACE,iHACF,WAAY,GACZ,WAAY,eACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,qBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,yGACF,eACE,2GACF,kBACE,8GACF,oBACE,gHACF,iBACE,6GACF,mBACE,+GACF,WAAY,GACZ,WAAY,aACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,gBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,0GACF,eACE,4GACF,kBACE,+GACF,oBACE,iHACF,iBACE,8GACF,mBACE,gHACF,WAAY,GACZ,WAAY,aACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,mBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,gGACd,eACE,kGACF,kBACE,qGACF,oBACE,uGACF,iBACE,oGACF,mBACE,sGACF,WAAY,GACZ,WAAY,QACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,MACR,QAAS,KACT,uBAAwB,GAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,kBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,gGACd,eACE,kGACF,kBACE,qGACF,oBACE,uGACF,iBACE,oGACF,mBACE,sGACF,WAAY,GACZ,WAAY,QACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,IACR,QAAS,KACT,uBAAwB,GAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,yBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,6GACF,eACE,+GACF,kBACE,kHACF,oBACE,oHACF,iBACE,iHACF,mBACE,mHACF,WAAY,GACZ,WAAY,iBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,oCACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,6GACF,eACE,+GACF,kBACE,kHACF,oBACE,oHACF,iBACE,iHACF,mBACE,mHACF,WAAY,GACZ,WAAY,iBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,eACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,wGACF,eACE,0GACF,kBACE,6GACF,oBACE,+GACF,iBACE,4GACF,mBACE,8GACF,WAAY,GACZ,WAAY,cACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,OACR,QAAS,KACX,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,eACN,SAAU,GACV,aAAc,KACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,4BACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,gGACd,eACE,kGACF,kBACE,qGACF,oBACE,uGACF,iBACE,oGACF,mBACE,sGACF,WAAY,GACZ,WAAY,SACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,QACL,OAAQ,KACR,OAAQ,OACR,QAAS,QACT,uBAAwB,IAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,0BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,4GACF,eACE,8GACF,kBACE,iHACF,oBACE,mHACF,iBACE,gHACF,mBACE,kHACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,qBACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,2GACF,eACE,6GACF,kBACE,gHACF,oBACE,kHACF,iBACE,+GACF,mBACE,iHACF,WAAY,GACZ,WAAY,eACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,GACpB,KAAM,oBACN,uBAAwB,GACxB,wBAAyB,KACzB,aAAc,+FACd,eACE,iGACF,kBACE,oGACF,oBACE,sGACF,iBACE,mGACF,mBACE,qGACF,WAAY,GACZ,WAAY,QACZ,YAAa,KACb,iBAAkB,IAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,CACX,IAAK,MACL,OAAQ,GACR,OAAQ,KACR,QAAS,KACT,uBAAwB,EAC1B,EACA,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,GACxB,KAAM,WACN,SAAU,GACV,aAAc,qCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,8BACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,sGACF,eACE,wGACF,kBACE,2GACF,oBACE,6GACF,iBACE,0GACF,mBACE,4GACF,WAAY,GACZ,WAAY,gBACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,uBAAwB,IACxB,KAAM,iBACN,SAAU,GACV,aAAc,sCACd,uBAAwB,KACxB,KAAM,uCACN,UAAW,2BACX,UAAW,0BACb,EACA,eAAgB,CAAC,CACnB,EACA,CACE,mBAAoB,KACpB,KAAM,eACN,uBAAwB,IACxB,wBAAyB,KACzB,aACE,yGACF,eACE,2GACF,kBACE,8GACF,oBACE,gHACF,iBACE,6GACF,mBACE,+GACF,WAAY,GACZ,WAAY,aACZ,YAAa,KACb,iBAAkB,KAClB,aAAc,KACd,aAAc,KACd,MAAO,KACP,aAAc,KACd,QAAS,KACT,MAAO,KACP,eAAgB,KAChB,qBAAsB,IACtB,YAAa,KACb,eAAgB,GAChB,SAAU,GACV,QAAS,KACT,OAAQ,GACR,UAAW,2BACX,UAAW,2BACX,qBAAsB,CACpB,u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","x_google_ignoreList":[0,1,2]}