@scrabble-solver/scrabble-solver 2.10.3 → 2.10.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (194) hide show
  1. package/.next/BUILD_ID +1 -1
  2. package/.next/build-manifest.json +13 -13
  3. package/.next/cache/.tsbuildinfo +1 -1
  4. package/.next/cache/eslint/.cache_8dgz12 +1 -1
  5. package/.next/cache/next-server.js.nft.json +1 -1
  6. package/.next/cache/webpack/client-production/0.pack +0 -0
  7. package/.next/cache/webpack/client-production/index.pack +0 -0
  8. package/.next/cache/webpack/edge-server-production/0.pack +0 -0
  9. package/.next/cache/webpack/edge-server-production/index.pack +0 -0
  10. package/.next/cache/webpack/server-production/0.pack +0 -0
  11. package/.next/cache/webpack/server-production/index.pack +0 -0
  12. package/.next/next-server.js.nft.json +1 -1
  13. package/.next/prerender-manifest.json +1 -1
  14. package/.next/routes-manifest.json +1 -1
  15. package/.next/server/chunks/176.js +1439 -1658
  16. package/.next/server/chunks/579.js +50 -26
  17. package/.next/server/middleware-build-manifest.js +1 -1
  18. package/.next/server/pages/404.html +2 -2
  19. package/.next/server/pages/404.js.nft.json +1 -1
  20. package/.next/server/pages/500.html +2 -2
  21. package/.next/server/pages/_app.js.nft.json +1 -1
  22. package/.next/server/pages/api/solve.js +22 -6
  23. package/.next/server/pages/index.html +2 -2
  24. package/.next/server/pages/index.js +1509 -52
  25. package/.next/server/pages/index.js.nft.json +1 -1
  26. package/.next/server/pages/index.json +1 -1
  27. package/.next/server/pages-manifest.json +2 -2
  28. package/.next/static/WILX-RgqlLTd4ZoPs8C_E/_buildManifest.js +1 -0
  29. package/.next/static/{FJkPF91uL-OCAJKTTpVSP → WILX-RgqlLTd4ZoPs8C_E}/_ssgManifest.js +0 -0
  30. package/.next/static/chunks/144-6768fe9a92865ec8.js +1 -0
  31. package/.next/static/chunks/490-d29992f1c264d70e.js +5 -0
  32. package/.next/static/chunks/pages/{404-24f9617eeb8d6dc1.js → 404-7619583a9e7188b1.js} +1 -1
  33. package/.next/static/chunks/pages/_app-fa0661b072fc6af9.js +24 -0
  34. package/.next/static/chunks/pages/index-1a6bbb880f28606a.js +1 -0
  35. package/.next/static/css/78e42ad01f580f64.css +1 -0
  36. package/.next/static/css/d80ffccf2315791a.css +1 -0
  37. package/.next/static/css/e737d5d7fbed2434.css +1 -0
  38. package/.next/trace +55 -52
  39. package/package.json +11 -9
  40. package/src/components/Badge/Badge.module.scss +4 -5
  41. package/src/components/Board/BoardPure.tsx +5 -5
  42. package/src/components/Board/components/Cell/Cell.module.scss +11 -11
  43. package/src/components/Button/Button.module.scss +34 -40
  44. package/src/components/Button/Button.tsx +28 -8
  45. package/src/components/Button/Link.tsx +44 -0
  46. package/src/components/Dictionary/Dictionary.module.scss +1 -2
  47. package/src/components/Dictionary/Dictionary.tsx +2 -6
  48. package/src/components/DictionaryInput/DictionaryInput.module.scss +1 -3
  49. package/src/components/EmptyState/EmptyState.module.scss +6 -7
  50. package/src/components/EmptyState/EmptyState.tsx +6 -6
  51. package/src/components/Key/Key.module.scss +0 -1
  52. package/src/components/{Splash/Splash.module.scss → LogoSplashScreen/LogoSplashScreen.module.scss} +1 -1
  53. package/src/components/{Splash/Splash.tsx → LogoSplashScreen/LogoSplashScreen.tsx} +7 -7
  54. package/src/components/LogoSplashScreen/index.ts +1 -0
  55. package/src/components/{Sidebar/Sidebar.module.scss → Modal/Modal.module.scss} +25 -20
  56. package/src/components/{Sidebar/Sidebar.tsx → Modal/Modal.tsx} +9 -9
  57. package/src/components/{Sidebar → Modal}/components/Section/Section.module.scss +0 -0
  58. package/src/components/{Sidebar → Modal}/components/Section/Section.tsx +0 -0
  59. package/src/components/{Sidebar → Modal}/components/Section/index.ts +0 -0
  60. package/src/components/{Sidebar → Modal}/components/index.ts +0 -0
  61. package/src/components/Modal/index.ts +1 -0
  62. package/src/components/NavButtons/NavButtons.tsx +22 -3
  63. package/src/components/Progress/Progress.module.scss +9 -0
  64. package/src/components/Progress/Progress.tsx +38 -0
  65. package/src/components/Progress/index.ts +1 -0
  66. package/src/components/Rack/Rack.module.scss +2 -0
  67. package/src/components/Rack/Rack.tsx +3 -1
  68. package/src/components/Rack/RackTile.tsx +3 -2
  69. package/src/components/Radio/Radio.module.scss +2 -2
  70. package/src/components/ResultCandidatePicker/ResultCandidatePicker.module.scss +76 -0
  71. package/src/components/ResultCandidatePicker/ResultCandidatePicker.tsx +38 -0
  72. package/src/components/ResultCandidatePicker/index.ts +1 -0
  73. package/src/components/Results/Result.tsx +64 -43
  74. package/src/components/Results/Results.module.scss +9 -16
  75. package/src/components/Results/Results.tsx +45 -28
  76. package/src/components/Results/SolveButton.tsx +10 -7
  77. package/src/components/Results/{getColumns.ts → getLocaleColumns.ts} +2 -2
  78. package/src/components/Results/types.ts +16 -0
  79. package/src/components/Results/useColumns.ts +44 -0
  80. package/src/components/ResultsInput/ResultsInput.module.scss +1 -3
  81. package/src/components/Sizer/Sizer.module.scss +10 -0
  82. package/src/components/Sizer/Sizer.tsx +10 -0
  83. package/src/components/Sizer/index.ts +1 -0
  84. package/src/components/Solver/Solver.module.scss +83 -27
  85. package/src/components/Solver/Solver.tsx +158 -25
  86. package/src/components/Solver/components/ApplyButton/ApplyButton.module.scss +5 -0
  87. package/src/components/Solver/components/ApplyButton/ApplyButton.tsx +38 -0
  88. package/src/components/Solver/components/ApplyButton/index.ts +1 -0
  89. package/src/components/Solver/components/EmptyState/EmptyState.module.scss +59 -0
  90. package/src/components/Solver/components/EmptyState/EmptyState.tsx +41 -0
  91. package/src/components/Solver/components/EmptyState/index.ts +1 -0
  92. package/src/components/Solver/components/SolveButton/SolveButton.module.scss +4 -0
  93. package/src/components/Solver/components/SolveButton/SolveButton.tsx +43 -0
  94. package/src/components/Solver/components/SolveButton/index.ts +1 -0
  95. package/src/components/Solver/components/index.ts +3 -0
  96. package/src/components/{Screen/Screen.module.scss → SplashScreen/SplashScreen.module.scss} +2 -12
  97. package/src/components/{Screen/Screen.tsx → SplashScreen/SplashScreen.tsx} +4 -4
  98. package/src/components/SplashScreen/index.ts +1 -0
  99. package/src/components/SquareButton/SquareButton.module.scss +3 -3
  100. package/src/components/SquareButton/SquareButton.tsx +2 -2
  101. package/src/components/Tile/Tile.module.scss +39 -30
  102. package/src/components/Tile/Tile.tsx +2 -2
  103. package/src/components/Tile/TilePure.tsx +9 -5
  104. package/src/components/Tooltip/Tooltip.module.scss +5 -6
  105. package/src/components/index.ts +6 -7
  106. package/src/hooks/index.ts +1 -1
  107. package/src/hooks/useMediaQuery.ts +11 -0
  108. package/src/hooks/usePortal.tsx +1 -1
  109. package/src/i18n/de.json +2 -0
  110. package/src/i18n/en.json +2 -0
  111. package/src/i18n/es.json +2 -0
  112. package/src/i18n/fa.json +2 -0
  113. package/src/i18n/fr.json +2 -0
  114. package/src/i18n/pl.json +2 -0
  115. package/src/icons/CardChecklist.svg +5 -0
  116. package/src/icons/Check.svg +2 -2
  117. package/src/icons/ChevronDown.svg +4 -0
  118. package/src/icons/CrossCircleFill.svg +4 -0
  119. package/src/icons/{CrossFill.svg → CrossSquareFill.svg} +0 -0
  120. package/src/icons/ExclamationTriangleFill.svg +4 -0
  121. package/src/icons/InfoCircleFill.svg +4 -0
  122. package/src/icons/List.svg +4 -0
  123. package/src/icons/Search.svg +4 -0
  124. package/src/icons/index.ts +8 -2
  125. package/src/{components/KeyMap/KeyMap.tsx → modals/KeyMapModal/KeyMapModal.tsx} +11 -13
  126. package/src/{components/KeyMap → modals/KeyMapModal}/components/Mapping/Mapping.module.scss +0 -0
  127. package/src/{components/KeyMap → modals/KeyMapModal}/components/Mapping/Mapping.tsx +0 -0
  128. package/src/{components/KeyMap → modals/KeyMapModal}/components/Mapping/index.ts +0 -0
  129. package/src/{components/KeyMap → modals/KeyMapModal}/components/index.ts +0 -0
  130. package/src/modals/KeyMapModal/index.ts +1 -0
  131. package/src/{components/KeyMap → modals/KeyMapModal}/keys.tsx +1 -2
  132. package/src/modals/MenuModal/MenuModal.module.scss +11 -0
  133. package/src/modals/MenuModal/MenuModal.tsx +56 -0
  134. package/src/modals/MenuModal/index.ts +1 -0
  135. package/src/modals/RemainingTilesModal/RemainingTilesModal.module.scss +28 -0
  136. package/src/{components/RemainingTiles/RemainingTiles.tsx → modals/RemainingTilesModal/RemainingTilesModal.tsx} +14 -12
  137. package/src/{components/RemainingTiles → modals/RemainingTilesModal/components/Character}/Character.module.scss +7 -3
  138. package/src/{components/RemainingTiles → modals/RemainingTilesModal/components/Character}/Character.tsx +11 -3
  139. package/src/modals/RemainingTilesModal/components/Character/index.ts +1 -0
  140. package/src/modals/RemainingTilesModal/components/index.ts +1 -0
  141. package/src/modals/RemainingTilesModal/index.ts +1 -0
  142. package/src/modals/ResultsModal/ResultsModal.module.scss +7 -0
  143. package/src/modals/ResultsModal/ResultsModal.tsx +58 -0
  144. package/src/modals/ResultsModal/index.ts +1 -0
  145. package/src/modals/SettingsModal/SettingsModal.tsx +34 -0
  146. package/src/{components/Settings → modals/SettingsModal}/components/AutoGroupTilesSetting/AutoGroupTilesSetting.module.scss +0 -0
  147. package/src/{components/Settings → modals/SettingsModal}/components/AutoGroupTilesSetting/AutoGroupTilesSetting.tsx +1 -2
  148. package/src/{components/Settings → modals/SettingsModal}/components/AutoGroupTilesSetting/constants.ts +0 -0
  149. package/src/{components/Settings → modals/SettingsModal}/components/AutoGroupTilesSetting/index.ts +0 -0
  150. package/src/{components/Settings → modals/SettingsModal}/components/AutoGroupTilesSetting/lib.ts +0 -0
  151. package/src/{components/Settings → modals/SettingsModal}/components/ConfigSetting/ConfigSetting.module.scss +0 -0
  152. package/src/{components/Settings → modals/SettingsModal}/components/ConfigSetting/ConfigSetting.tsx +1 -2
  153. package/src/{components/Settings → modals/SettingsModal}/components/ConfigSetting/index.ts +0 -0
  154. package/src/{components/Settings → modals/SettingsModal}/components/ConfigSetting/options.ts +0 -0
  155. package/src/{components/Settings → modals/SettingsModal}/components/ConfigSetting/types.ts +0 -0
  156. package/src/{components/Settings → modals/SettingsModal}/components/LocaleSetting/LocaleSetting.module.scss +0 -0
  157. package/src/{components/Settings → modals/SettingsModal}/components/LocaleSetting/LocaleSetting.tsx +1 -2
  158. package/src/{components/Settings → modals/SettingsModal}/components/LocaleSetting/index.ts +0 -0
  159. package/src/{components/Settings → modals/SettingsModal}/components/LocaleSetting/options.ts +0 -0
  160. package/src/{components/Settings → modals/SettingsModal}/components/LocaleSetting/types.ts +0 -0
  161. package/src/{components/Settings → modals/SettingsModal}/components/index.ts +0 -0
  162. package/src/modals/SettingsModal/index.ts +1 -0
  163. package/src/{components/Words/Words.module.scss → modals/WordsModal/WordsModal.module.scss} +7 -1
  164. package/src/{components/Words/Words.tsx → modals/WordsModal/WordsModal.tsx} +10 -12
  165. package/src/modals/WordsModal/index.ts +1 -0
  166. package/src/modals/index.ts +6 -0
  167. package/src/pages/index.module.scss +6 -4
  168. package/src/pages/index.tsx +63 -26
  169. package/src/parameters/index.ts +28 -6
  170. package/src/state/createAppStore.ts +7 -4
  171. package/src/styles/mixins.scss +17 -15
  172. package/src/styles/variables.scss +15 -17
  173. package/src/types/index.ts +2 -0
  174. package/tsconfig.json +1 -0
  175. package/.next/cache/webpack/client-development/7.pack_ +0 -0
  176. package/.next/static/FJkPF91uL-OCAJKTTpVSP/_buildManifest.js +0 -1
  177. package/.next/static/chunks/361-d16f336a9752a55a.js +0 -1
  178. package/.next/static/chunks/724-eb48df4d1ba3df8b.js +0 -5
  179. package/.next/static/chunks/pages/_app-959e495f0f221247.js +0 -24
  180. package/.next/static/chunks/pages/index-1e30dafa41bddb80.js +0 -1
  181. package/.next/static/css/aafd07997120f1e4.css +0 -1
  182. package/.next/static/css/cb5b206454513f3c.css +0 -1
  183. package/.next/static/css/eb9d57f7103525ab.css +0 -1
  184. package/src/components/KeyMap/index.ts +0 -1
  185. package/src/components/RemainingTiles/RemainingTiles.module.scss +0 -16
  186. package/src/components/RemainingTiles/index.ts +0 -1
  187. package/src/components/Screen/index.ts +0 -1
  188. package/src/components/Settings/Settings.tsx +0 -35
  189. package/src/components/Settings/index.ts +0 -1
  190. package/src/components/Sidebar/index.ts +0 -1
  191. package/src/components/Splash/index.ts +0 -1
  192. package/src/components/Words/index.ts +0 -1
  193. package/src/hooks/useIsTablet.ts +0 -10
  194. package/src/icons/Play.svg +0 -4
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html lang="en"><head><title>Scrabble Solver 2 by Kamil Mielnik</title><meta charSet="utf-8"/><meta name="author" content="Kamil Mielnik"/><meta name="description" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><meta name="keywords" content="Scrabble,Solver,Open-source,Finder,Cheating,Literaki,Word,English,Français,Deutsch,Polski,Español,SOWPODS,TWL06,SJP,FISE-2017,FISE-2,CNRTL,Kamil Mielnik"/><meta name="robots" content="index, follow, notranslate, noimageindex"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><meta property="og:title" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><meta property="og:type" content="website"/><meta property="og:url" content="https://scrabble-solver.org"/><meta property="og:image" content="https://scrabble-solver.org/og.png"/><meta property="og:image:type" content="image/png"/><meta property="og:image:width" content="1200"/><meta property="og:image:height" content="630"/><meta property="og:image:alt" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><meta name="next-head-count" content="15"/><link crossorigin="anonymous" href="https://fonts.gstatic.com" rel="preconnect"/><link rel="apple-touch-icon-precomposed" sizes="57x57" href="icons/apple-touch-icon-57x57.png"/><link rel="apple-touch-icon-precomposed" sizes="114x114" href="icons/apple-touch-icon-114x114.png"/><link rel="apple-touch-icon-precomposed" sizes="72x72" href="icons/apple-touch-icon-72x72.png"/><link rel="apple-touch-icon-precomposed" sizes="144x144" href="icons/apple-touch-icon-144x144.png"/><link rel="apple-touch-icon-precomposed" sizes="60x60" href="icons/apple-touch-icon-60x60.png"/><link rel="apple-touch-icon-precomposed" sizes="120x120" href="icons/apple-touch-icon-120x120.png"/><link rel="apple-touch-icon-precomposed" sizes="76x76" href="icons/apple-touch-icon-76x76.png"/><link rel="apple-touch-icon-precomposed" sizes="152x152" href="icons/apple-touch-icon-152x152.png"/><link rel="icon" type="image/png" href="icons/favicon-196x196.png" sizes="196x196"/><link rel="icon" type="image/png" href="icons/favicon-96x96.png" sizes="96x96"/><link rel="icon" type="image/png" href="icons/favicon-32x32.png" sizes="32x32"/><link rel="icon" type="image/png" href="icons/favicon-16x16.png" sizes="16x16"/><link rel="icon" type="image/png" href="icons/favicon-128.png" sizes="128x128"/><meta name="application-name" content="Scrabble Solver"/><meta name="msapplication-TileColor" content="#EFE3AE"/><meta name="msapplication-TileImage" content="icons/mstile-144x144.png"/><meta name="msapplication-square70x70logo" content="icons/mstile-70x70.png"/><meta name="msapplication-square150x150logo" content="icons/mstile-150x150.png"/><meta name="msapplication-wide310x150logo" content="icons/mstile-310x150.png"/><meta name="msapplication-square310x310logo" content="icons/mstile-310x310.png"/><link rel="preload" href="/_next/static/css/eb9d57f7103525ab.css" as="style"/><link rel="stylesheet" href="/_next/static/css/eb9d57f7103525ab.css" data-n-g=""/><link rel="preload" href="/_next/static/css/cb5b206454513f3c.css" as="style"/><link rel="stylesheet" href="/_next/static/css/cb5b206454513f3c.css" data-n-p=""/><link rel="preload" href="/_next/static/css/aafd07997120f1e4.css" as="style"/><link rel="stylesheet" href="/_next/static/css/aafd07997120f1e4.css" data-n-p=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script src="/_next/static/chunks/webpack-59c5c889f52620d6.js" defer=""></script><script src="/_next/static/chunks/framework-2c79e2a64abdb08b.js" defer=""></script><script src="/_next/static/chunks/main-f11614d8aa7ee555.js" defer=""></script><script src="/_next/static/chunks/pages/_app-959e495f0f221247.js" defer=""></script><script src="/_next/static/chunks/724-eb48df4d1ba3df8b.js" defer=""></script><script src="/_next/static/chunks/361-d16f336a9752a55a.js" defer=""></script><script src="/_next/static/chunks/pages/index-1e30dafa41bddb80.js" defer=""></script><script src="/_next/static/FJkPF91uL-OCAJKTTpVSP/_buildManifest.js" defer=""></script><script src="/_next/static/FJkPF91uL-OCAJKTTpVSP/_ssgManifest.js" defer=""></script></head><body><div id="__next"><p style="font-size:0">Scrabble Solver 2 is a free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish. Source code is available on GitHub - contributions are welcome!</p><svg class="SvgFontFix_svgFontFix__nlq_B" xmlns="http://www.w3.org/2000/svg"><style type="text/css">@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Open+Sans:wght@400;700&family=Vazirmatn:wght@300;400;700&family=Roboto+Mono&display=swap');
1
+ <!DOCTYPE html><html lang="en"><head><title>Scrabble Solver 2 by Kamil Mielnik</title><meta charSet="utf-8"/><meta name="author" content="Kamil Mielnik"/><meta name="description" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><meta name="keywords" content="Scrabble,Solver,Open-source,Finder,Cheating,Literaki,Word,English,Français,Deutsch,Polski,Español,SOWPODS,TWL06,SJP,FISE-2017,FISE-2,CNRTL,Kamil Mielnik"/><meta name="robots" content="index, follow, notranslate, noimageindex"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><meta property="og:title" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><meta property="og:type" content="website"/><meta property="og:url" content="https://scrabble-solver.org"/><meta property="og:image" content="https://scrabble-solver.org/og.png"/><meta property="og:image:type" content="image/png"/><meta property="og:image:width" content="1200"/><meta property="og:image:height" content="630"/><meta property="og:image:alt" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><meta name="next-head-count" content="15"/><link crossorigin="anonymous" href="https://fonts.gstatic.com" rel="preconnect"/><link rel="apple-touch-icon-precomposed" sizes="57x57" href="icons/apple-touch-icon-57x57.png"/><link rel="apple-touch-icon-precomposed" sizes="114x114" href="icons/apple-touch-icon-114x114.png"/><link rel="apple-touch-icon-precomposed" sizes="72x72" href="icons/apple-touch-icon-72x72.png"/><link rel="apple-touch-icon-precomposed" sizes="144x144" href="icons/apple-touch-icon-144x144.png"/><link rel="apple-touch-icon-precomposed" sizes="60x60" href="icons/apple-touch-icon-60x60.png"/><link rel="apple-touch-icon-precomposed" sizes="120x120" href="icons/apple-touch-icon-120x120.png"/><link rel="apple-touch-icon-precomposed" sizes="76x76" href="icons/apple-touch-icon-76x76.png"/><link rel="apple-touch-icon-precomposed" sizes="152x152" href="icons/apple-touch-icon-152x152.png"/><link rel="icon" type="image/png" href="icons/favicon-196x196.png" sizes="196x196"/><link rel="icon" type="image/png" href="icons/favicon-96x96.png" sizes="96x96"/><link rel="icon" type="image/png" href="icons/favicon-32x32.png" sizes="32x32"/><link rel="icon" type="image/png" href="icons/favicon-16x16.png" sizes="16x16"/><link rel="icon" type="image/png" href="icons/favicon-128.png" sizes="128x128"/><meta name="application-name" content="Scrabble Solver"/><meta name="msapplication-TileColor" content="#EFE3AE"/><meta name="msapplication-TileImage" content="icons/mstile-144x144.png"/><meta name="msapplication-square70x70logo" content="icons/mstile-70x70.png"/><meta name="msapplication-square150x150logo" content="icons/mstile-150x150.png"/><meta name="msapplication-wide310x150logo" content="icons/mstile-310x150.png"/><meta name="msapplication-square310x310logo" content="icons/mstile-310x310.png"/><link rel="preload" href="/_next/static/css/78e42ad01f580f64.css" as="style"/><link rel="stylesheet" href="/_next/static/css/78e42ad01f580f64.css" data-n-g=""/><link rel="preload" href="/_next/static/css/e737d5d7fbed2434.css" as="style"/><link rel="stylesheet" href="/_next/static/css/e737d5d7fbed2434.css" data-n-p=""/><link rel="preload" href="/_next/static/css/d80ffccf2315791a.css" as="style"/><link rel="stylesheet" href="/_next/static/css/d80ffccf2315791a.css" data-n-p=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script src="/_next/static/chunks/webpack-59c5c889f52620d6.js" defer=""></script><script src="/_next/static/chunks/framework-2c79e2a64abdb08b.js" defer=""></script><script src="/_next/static/chunks/main-f11614d8aa7ee555.js" defer=""></script><script src="/_next/static/chunks/pages/_app-fa0661b072fc6af9.js" defer=""></script><script src="/_next/static/chunks/490-d29992f1c264d70e.js" defer=""></script><script src="/_next/static/chunks/144-6768fe9a92865ec8.js" defer=""></script><script src="/_next/static/chunks/pages/index-1a6bbb880f28606a.js" defer=""></script><script src="/_next/static/WILX-RgqlLTd4ZoPs8C_E/_buildManifest.js" defer=""></script><script src="/_next/static/WILX-RgqlLTd4ZoPs8C_E/_ssgManifest.js" defer=""></script></head><body><div id="__next"><p style="font-size:0">Scrabble Solver 2 is a free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish. Source code is available on GitHub - contributions are welcome!</p><svg class="SvgFontFix_svgFontFix__nlq_B" xmlns="http://www.w3.org/2000/svg"><style type="text/css">@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Open+Sans:wght@400;700&family=Vazirmatn:wght@300;400;700&family=Roboto+Mono&display=swap');
2
2
 
3
3
  text {
4
4
  font-family: 'Open Sans';
@@ -6,4 +6,4 @@ text {
6
6
 
7
7
  text {
8
8
  font-family: 'Vazirmatn';
9
- }</style></svg><div class="index_index__5hyIO"><div class="index_nav__FjsLl"><div class="index_navLogo__dBrd4"><a class="index_logoContainer___rrXU" href="/" title="v2.10.2"><svg viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg" class="index_logo__IeyQD"><path fill="#efe3ae" d="M0 0h80v80H0Z"></path><path aria-label="S" d="M51.168 47.629q0 3.047-1.477 5.297-1.476 2.25-4.312 3.469-2.813 1.218-6.844 1.218-1.781 0-3.492-.234-1.688-.234-3.258-.68-1.547-.469-2.953-1.148V48.8q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.78 0 2.859-.468 1.102-.47 1.594-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.4-1.712-1.195-.562-2.6-1.359-1.407-.82-2.673-1.992-1.265-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.407-5.25 1.406-2.18 4.008-3.328 2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.437.609 5.086 1.78l-2.344 5.65q-2.367-.962-4.242-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.962.422-1.454 1.219-.492.773-.492 1.804 0 1.22.703 2.063.727.82 2.156 1.594 1.454.773 3.61 1.804 2.625 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.008 1.805 1.008 4.5z"></path><path fill="#c7d8f9" d="M86 0h80v80H86Z"></path><path aria-label="C" d="M129.574 28.434q-2.086 0-3.703.82-1.594.797-2.695 2.32-1.078 1.524-1.64 3.68-.563 2.156-.563 4.851 0 3.633.89 6.211.914 2.555 2.813 3.914 1.898 1.336 4.898 1.336 2.086 0 4.172-.468 2.11-.47 4.57-1.336v6.093q-2.273.938-4.476 1.336-2.203.422-4.945.422-5.297 0-8.72-2.18-3.398-2.203-5.038-6.14-1.64-3.961-1.64-9.234 0-3.891 1.054-7.125 1.054-3.235 3.094-5.602 2.039-2.367 5.039-3.656 3-1.29 6.89-1.29 2.555 0 5.11.657 2.578.633 4.921 1.758l-2.343 5.906q-1.922-.914-3.867-1.594-1.946-.68-3.82-.68z"></path><path fill="#efe3ae" d="M172 0h80v80h-80z"></path><path aria-label="R" d="M210.453 22.867q4.664 0 7.688 1.125 3.047 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265V22.867Zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#efe3ae" d="M258 0h80v80h-80z"></path><path aria-label="A" d="m306.73 57.203-2.484-8.156h-12.492l-2.484 8.156h-7.829l12.094-34.406h8.883l12.14 34.406zm-4.218-14.25-2.485-7.969q-.234-.796-.632-2.039-.375-1.265-.774-2.554-.375-1.313-.61-2.274-.234.961-.656 2.39-.398 1.407-.773 2.673-.375 1.265-.539 1.804l-2.461 7.97z"></path><path fill="#c7d8f9" d="M344 0h80v80h-80z"></path><path aria-label="B" d="M372.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#c7d8f9" d="M430 0h80v80h-80z"></path><path aria-label="B" d="M458.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#efe3ae" d="M516 0h80v80h-80z"></path><path aria-label="L" d="M546.754 57.133V22.867h7.266v28.266h13.898v6z"></path><path fill="#efe3ae" d="M602 0h80v80h-80z"></path><path aria-label="E" d="M652.605 57.133h-19.734V22.867h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M0 86h80v80H0Z"></path><path aria-label="S" d="M51.32 133.629q0 3.047-1.476 5.297-1.477 2.25-4.313 3.469-2.812 1.218-6.843 1.218-1.782 0-3.493-.234-1.687-.234-3.257-.68-1.547-.469-2.954-1.148v-6.75q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.781 0 2.86-.468 1.1-.47 1.593-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.399-1.712-1.195-.562-2.602-1.359-1.406-.82-2.671-1.992-1.266-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.406-5.25t4.008-3.328q2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.438.609 5.086 1.78l-2.343 5.65q-2.368-.962-4.243-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.961.422-1.453 1.219-.493.773-.493 1.804 0 1.22.703 2.063.727.82 2.157 1.594 1.453.773 3.61 1.804 2.624 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.007 1.805 1.007 4.5z"></path><path fill="#efe3ae" d="M86 86h80v80H86Z"></path><path aria-label="O" d="M142.313 125.988q0 3.961-.985 7.219-.984 3.234-3 5.578-1.992 2.344-5.062 3.61-3.07 1.242-7.266 1.242-4.195 0-7.266-1.242-3.07-1.266-5.086-3.61-1.992-2.344-2.976-5.601-.984-3.258-.984-7.243 0-5.32 1.734-9.257 1.758-3.961 5.39-6.141 3.633-2.18 9.235-2.18 5.578 0 9.164 2.18 3.61 2.18 5.344 6.14 1.758 3.962 1.758 9.305zm-25.008 0q0 3.586.89 6.188.914 2.578 2.836 3.984 1.922 1.383 4.969 1.383 3.094 0 5.016-1.383 1.921-1.406 2.789-3.984.89-2.602.89-6.188 0-5.39-2.015-8.484-2.016-3.094-6.633-3.094-3.07 0-5.016 1.406-1.922 1.383-2.836 3.985-.89 2.578-.89 6.187z"></path><path fill="#efe3ae" d="M172 86h80v80h-80z"></path><path aria-label="L" d="M202.754 143.133v-34.266h7.266v28.266h13.898v6z"></path><path fill="#f7c2aa" d="M258 86h80v80h-80z"></path><path aria-label="V" d="m313.598 108.867-11.649 34.266h-7.922l-11.625-34.266h7.336l6.446 20.39q.164.516.539 1.946.375 1.406.75 3 .398 1.57.539 2.602.14-1.032.492-2.602.375-1.57.726-2.976.375-1.43.54-1.97l6.492-20.39z"></path><path fill="#efe3ae" d="M344 86h80v80h-80z"></path><path aria-label="E" d="M394.605 143.133h-19.734v-34.266h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M430 86h80v80h-80z"></path><path aria-label="R" d="M468.453 108.867q4.664 0 7.688 1.125 3.046 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265v-34.266zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#bae3ba" d="M602 86h80v80h-80z"></path><path aria-label="2" d="M654.152 143.379H630.2v-5.04l8.602-8.694q2.601-2.672 4.172-4.454 1.593-1.804 2.297-3.28.726-1.477.726-3.165 0-2.039-1.148-3.047-1.125-1.031-3.024-1.031-1.992 0-3.867.914t-3.914 2.602l-3.938-4.664q1.477-1.266 3.118-2.391 1.664-1.125 3.843-1.805 2.204-.703 5.274-.703 3.375 0 5.789 1.219 2.437 1.219 3.75 3.328 1.312 2.086 1.312 4.734 0 2.836-1.125 5.18t-3.28 4.64q-2.134 2.298-5.157 5.087l-4.406 4.148v.328h14.93z"></path></svg></a></div><div class="NavButtons_navButtons__2jdaO"><div class="NavButtons_group__kSDjM"><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="SquareButton_icon__t5YSC"><path d="M8.086 2.207a2 2 0 0 1 2.828 0l3.879 3.879a2 2 0 0 1 0 2.828l-5.5 5.5A2 2 0 0 1 7.879 15H5.12a2 2 0 0 1-1.414-.586l-2.5-2.5a2 2 0 0 1 0-2.828l6.879-6.879zm.66 11.34L3.453 8.254 1.914 9.793a1 1 0 0 0 0 1.414l2.5 2.5a1 1 0 0 0 .707.293H7.88a1 1 0 0 0 .707-.293l.16-.16z" fill="currentColor"></path></svg></span></button></div><div class="NavButtons_separator__4FwOF"></div><div class="NavButtons_group__kSDjM"><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="SquareButton_icon__t5YSC"><path d="M16 9c4 2 5 9 5 9s1 4-5 4H8c-6 0-5-4-5-4s1-7 5-9m6-5-2-2-2 2-4-2 2 5h8l2-5-4 2Z" fill="currentColor"></path></svg></span></button><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="SquareButton_icon__t5YSC"><path d="M8.5 2.687c.654-.689 1.782-.886 3.112-.752 1.234.124 2.503.523 3.388.893v9.923c-.918-.35-2.107-.692-3.287-.81-1.094-.111-2.278-.039-3.213.492V2.687zM8 1.783C7.015.936 5.587.81 4.287.94c-1.514.153-3.042.672-3.994 1.105A.5.5 0 0 0 0 2.5v11a.5.5 0 0 0 .707.455c.882-.4 2.303-.881 3.68-1.02 1.409-.142 2.59.087 3.223.877a.5.5 0 0 0 .78 0c.633-.79 1.814-1.019 3.222-.877 1.378.139 2.8.62 3.681 1.02A.5.5 0 0 0 16 13.5v-11a.5.5 0 0 0-.293-.455c-.952-.433-2.48-.952-3.994-1.105C10.413.809 8.985.936 8 1.783z" fill="currentColor"></path></svg></span></button></div><div class="NavButtons_separator__4FwOF"></div><div class="NavButtons_group__kSDjM"><a class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" href="https://github.com/kamilmielnik/scrabble-solver" rel="noopener noreferrer" target="_blank"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="SquareButton_icon__t5YSC"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" fill="currentColor"></path></svg></span></a></div><div class="NavButtons_separator__4FwOF"></div><div class="NavButtons_group__kSDjM"><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="SquareButton_icon__t5YSC"><path d="M0 6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V6zm13 .25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25zM2.25 8a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 3 8.75v-.5A.25.25 0 0 0 2.75 8h-.5zM4 8.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 5 8.75v-.5A.25.25 0 0 0 4.75 8h-.5a.25.25 0 0 0-.25.25zM6.25 8a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 7 8.75v-.5A.25.25 0 0 0 6.75 8h-.5zM8 8.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 9 8.75v-.5A.25.25 0 0 0 8.75 8h-.5a.25.25 0 0 0-.25.25zM13.25 8a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5zm0 2a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5zm-3-2a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h1.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-1.5zm.75 2.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25zM11.25 6a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5zM9 6.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5A.25.25 0 0 0 9.75 6h-.5a.25.25 0 0 0-.25.25zM7.25 6a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 8 6.75v-.5A.25.25 0 0 0 7.75 6h-.5zM5 6.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 6 6.75v-.5A.25.25 0 0 0 5.75 6h-.5a.25.25 0 0 0-.25.25zM2.25 6a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h1.5A.25.25 0 0 0 4 6.75v-.5A.25.25 0 0 0 3.75 6h-1.5zM2 10.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25zM4.25 10a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h5.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-5.5z" fill="currentColor"></path></svg></span></button><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="SquareButton_icon__t5YSC"><path d="M9.405 1.05c-.413-1.4-2.397-1.4-2.81 0l-.1.34a1.464 1.464 0 0 1-2.105.872l-.31-.17c-1.283-.698-2.686.705-1.987 1.987l.169.311c.446.82.023 1.841-.872 2.105l-.34.1c-1.4.413-1.4 2.397 0 2.81l.34.1a1.464 1.464 0 0 1 .872 2.105l-.17.31c-.698 1.283.705 2.686 1.987 1.987l.311-.169a1.464 1.464 0 0 1 2.105.872l.1.34c.413 1.4 2.397 1.4 2.81 0l.1-.34a1.464 1.464 0 0 1 2.105-.872l.31.17c1.283.698 2.686-.705 1.987-1.987l-.169-.311a1.464 1.464 0 0 1 .872-2.105l.34-.1c1.4-.413 1.4-2.397 0-2.81l-.34-.1a1.464 1.464 0 0 1-.872-2.105l.17-.31c.698-1.283-.705-2.686-1.987-1.987l-.311.169a1.464 1.464 0 0 1-2.105-.872l-.1-.34zM8 10.93a2.929 2.929 0 1 1 0-5.86 2.929 2.929 0 0 1 0 5.858z" fill="currentColor"></path></svg></span></button></div></div></div><div class="Solver_solver__o9miv index_solver__pzfzn"><div class="Solver_contentWrapper__qtqKN"><div class="Solver_content__s1fWW"><form class="Solver_boardContainer__GBRcW"><input class="Solver_submitInput__eic0t" tabindex="-1" type="submit"/></form><div class="Solver_sidebar__mhxCh" style="height:1px"><div class="Well_well__WTn5e Solver_resultsContainer__DruEg"></div><div class="Well_well__WTn5e"><div class="Solver_dictionary__09LYB" style="height:220px"><div class="Dictionary_dictionary__0CM4j Solver_dictionaryOutput__KWOcA"></div><form class="DictionaryInput_dictionaryInput__fsGZD Solver_dictionaryInput__9BLNF"><input class="DictionaryInput_input__0ed6F" placeholder="Search dictionary..." required="" type="text" value=""/></form></div></div></div></div></div><form class="Solver_rackContainer__2QSoB"><div class="Rack_rack__uEE8X Solver_rack__9DDCR"><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" autofocus="" class="Tile_character__2XzcR" placeholder="L" spellcheck="false" style="font-size:48px" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="e" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="t" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="t" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="e" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="r" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="s" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div></div><input class="Solver_submitInput__eic0t" tabindex="-1" type="submit"/></form></div></div><div class="Screen_screen__VnMC9 Splash_splash__DJBx_"><div class="Screen_content__t2VCW"><div class="Splash_logos__pFer4"><svg viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg" class="Splash_logoGrayscale__qe_QT"><path fill="#efe3ae" d="M0 0h80v80H0Z"></path><path aria-label="S" d="M51.168 47.629q0 3.047-1.477 5.297-1.476 2.25-4.312 3.469-2.813 1.218-6.844 1.218-1.781 0-3.492-.234-1.688-.234-3.258-.68-1.547-.469-2.953-1.148V48.8q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.78 0 2.859-.468 1.102-.47 1.594-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.4-1.712-1.195-.562-2.6-1.359-1.407-.82-2.673-1.992-1.265-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.407-5.25 1.406-2.18 4.008-3.328 2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.437.609 5.086 1.78l-2.344 5.65q-2.367-.962-4.242-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.962.422-1.454 1.219-.492.773-.492 1.804 0 1.22.703 2.063.727.82 2.156 1.594 1.454.773 3.61 1.804 2.625 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.008 1.805 1.008 4.5z"></path><path fill="#c7d8f9" d="M86 0h80v80H86Z"></path><path aria-label="C" d="M129.574 28.434q-2.086 0-3.703.82-1.594.797-2.695 2.32-1.078 1.524-1.64 3.68-.563 2.156-.563 4.851 0 3.633.89 6.211.914 2.555 2.813 3.914 1.898 1.336 4.898 1.336 2.086 0 4.172-.468 2.11-.47 4.57-1.336v6.093q-2.273.938-4.476 1.336-2.203.422-4.945.422-5.297 0-8.72-2.18-3.398-2.203-5.038-6.14-1.64-3.961-1.64-9.234 0-3.891 1.054-7.125 1.054-3.235 3.094-5.602 2.039-2.367 5.039-3.656 3-1.29 6.89-1.29 2.555 0 5.11.657 2.578.633 4.921 1.758l-2.343 5.906q-1.922-.914-3.867-1.594-1.946-.68-3.82-.68z"></path><path fill="#efe3ae" d="M172 0h80v80h-80z"></path><path aria-label="R" d="M210.453 22.867q4.664 0 7.688 1.125 3.047 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265V22.867Zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#efe3ae" d="M258 0h80v80h-80z"></path><path aria-label="A" d="m306.73 57.203-2.484-8.156h-12.492l-2.484 8.156h-7.829l12.094-34.406h8.883l12.14 34.406zm-4.218-14.25-2.485-7.969q-.234-.796-.632-2.039-.375-1.265-.774-2.554-.375-1.313-.61-2.274-.234.961-.656 2.39-.398 1.407-.773 2.673-.375 1.265-.539 1.804l-2.461 7.97z"></path><path fill="#c7d8f9" d="M344 0h80v80h-80z"></path><path aria-label="B" d="M372.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#c7d8f9" d="M430 0h80v80h-80z"></path><path aria-label="B" d="M458.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#efe3ae" d="M516 0h80v80h-80z"></path><path aria-label="L" d="M546.754 57.133V22.867h7.266v28.266h13.898v6z"></path><path fill="#efe3ae" d="M602 0h80v80h-80z"></path><path aria-label="E" d="M652.605 57.133h-19.734V22.867h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M0 86h80v80H0Z"></path><path aria-label="S" d="M51.32 133.629q0 3.047-1.476 5.297-1.477 2.25-4.313 3.469-2.812 1.218-6.843 1.218-1.782 0-3.493-.234-1.687-.234-3.257-.68-1.547-.469-2.954-1.148v-6.75q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.781 0 2.86-.468 1.1-.47 1.593-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.399-1.712-1.195-.562-2.602-1.359-1.406-.82-2.671-1.992-1.266-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.406-5.25t4.008-3.328q2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.438.609 5.086 1.78l-2.343 5.65q-2.368-.962-4.243-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.961.422-1.453 1.219-.493.773-.493 1.804 0 1.22.703 2.063.727.82 2.157 1.594 1.453.773 3.61 1.804 2.624 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.007 1.805 1.007 4.5z"></path><path fill="#efe3ae" d="M86 86h80v80H86Z"></path><path aria-label="O" d="M142.313 125.988q0 3.961-.985 7.219-.984 3.234-3 5.578-1.992 2.344-5.062 3.61-3.07 1.242-7.266 1.242-4.195 0-7.266-1.242-3.07-1.266-5.086-3.61-1.992-2.344-2.976-5.601-.984-3.258-.984-7.243 0-5.32 1.734-9.257 1.758-3.961 5.39-6.141 3.633-2.18 9.235-2.18 5.578 0 9.164 2.18 3.61 2.18 5.344 6.14 1.758 3.962 1.758 9.305zm-25.008 0q0 3.586.89 6.188.914 2.578 2.836 3.984 1.922 1.383 4.969 1.383 3.094 0 5.016-1.383 1.921-1.406 2.789-3.984.89-2.602.89-6.188 0-5.39-2.015-8.484-2.016-3.094-6.633-3.094-3.07 0-5.016 1.406-1.922 1.383-2.836 3.985-.89 2.578-.89 6.187z"></path><path fill="#efe3ae" d="M172 86h80v80h-80z"></path><path aria-label="L" d="M202.754 143.133v-34.266h7.266v28.266h13.898v6z"></path><path fill="#f7c2aa" d="M258 86h80v80h-80z"></path><path aria-label="V" d="m313.598 108.867-11.649 34.266h-7.922l-11.625-34.266h7.336l6.446 20.39q.164.516.539 1.946.375 1.406.75 3 .398 1.57.539 2.602.14-1.032.492-2.602.375-1.57.726-2.976.375-1.43.54-1.97l6.492-20.39z"></path><path fill="#efe3ae" d="M344 86h80v80h-80z"></path><path aria-label="E" d="M394.605 143.133h-19.734v-34.266h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M430 86h80v80h-80z"></path><path aria-label="R" d="M468.453 108.867q4.664 0 7.688 1.125 3.046 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265v-34.266zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#bae3ba" d="M602 86h80v80h-80z"></path><path aria-label="2" d="M654.152 143.379H630.2v-5.04l8.602-8.694q2.601-2.672 4.172-4.454 1.593-1.804 2.297-3.28.726-1.477.726-3.165 0-2.039-1.148-3.047-1.125-1.031-3.024-1.031-1.992 0-3.867.914t-3.914 2.602l-3.938-4.664q1.477-1.266 3.118-2.391 1.664-1.125 3.843-1.805 2.204-.703 5.274-.703 3.375 0 5.789 1.219 2.437 1.219 3.75 3.328 1.312 2.086 1.312 4.734 0 2.836-1.125 5.18t-3.28 4.64q-2.134 2.298-5.157 5.087l-4.406 4.148v.328h14.93z"></path></svg><svg viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg" class="Splash_logoColor__InOR_"><path fill="#efe3ae" d="M0 0h80v80H0Z"></path><path aria-label="S" d="M51.168 47.629q0 3.047-1.477 5.297-1.476 2.25-4.312 3.469-2.813 1.218-6.844 1.218-1.781 0-3.492-.234-1.688-.234-3.258-.68-1.547-.469-2.953-1.148V48.8q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.78 0 2.859-.468 1.102-.47 1.594-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.4-1.712-1.195-.562-2.6-1.359-1.407-.82-2.673-1.992-1.265-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.407-5.25 1.406-2.18 4.008-3.328 2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.437.609 5.086 1.78l-2.344 5.65q-2.367-.962-4.242-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.962.422-1.454 1.219-.492.773-.492 1.804 0 1.22.703 2.063.727.82 2.156 1.594 1.454.773 3.61 1.804 2.625 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.008 1.805 1.008 4.5z"></path><path fill="#c7d8f9" d="M86 0h80v80H86Z"></path><path aria-label="C" d="M129.574 28.434q-2.086 0-3.703.82-1.594.797-2.695 2.32-1.078 1.524-1.64 3.68-.563 2.156-.563 4.851 0 3.633.89 6.211.914 2.555 2.813 3.914 1.898 1.336 4.898 1.336 2.086 0 4.172-.468 2.11-.47 4.57-1.336v6.093q-2.273.938-4.476 1.336-2.203.422-4.945.422-5.297 0-8.72-2.18-3.398-2.203-5.038-6.14-1.64-3.961-1.64-9.234 0-3.891 1.054-7.125 1.054-3.235 3.094-5.602 2.039-2.367 5.039-3.656 3-1.29 6.89-1.29 2.555 0 5.11.657 2.578.633 4.921 1.758l-2.343 5.906q-1.922-.914-3.867-1.594-1.946-.68-3.82-.68z"></path><path fill="#efe3ae" d="M172 0h80v80h-80z"></path><path aria-label="R" d="M210.453 22.867q4.664 0 7.688 1.125 3.047 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265V22.867Zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#efe3ae" d="M258 0h80v80h-80z"></path><path aria-label="A" d="m306.73 57.203-2.484-8.156h-12.492l-2.484 8.156h-7.829l12.094-34.406h8.883l12.14 34.406zm-4.218-14.25-2.485-7.969q-.234-.796-.632-2.039-.375-1.265-.774-2.554-.375-1.313-.61-2.274-.234.961-.656 2.39-.398 1.407-.773 2.673-.375 1.265-.539 1.804l-2.461 7.97z"></path><path fill="#c7d8f9" d="M344 0h80v80h-80z"></path><path aria-label="B" d="M372.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#c7d8f9" d="M430 0h80v80h-80z"></path><path aria-label="B" d="M458.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#efe3ae" d="M516 0h80v80h-80z"></path><path aria-label="L" d="M546.754 57.133V22.867h7.266v28.266h13.898v6z"></path><path fill="#efe3ae" d="M602 0h80v80h-80z"></path><path aria-label="E" d="M652.605 57.133h-19.734V22.867h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M0 86h80v80H0Z"></path><path aria-label="S" d="M51.32 133.629q0 3.047-1.476 5.297-1.477 2.25-4.313 3.469-2.812 1.218-6.843 1.218-1.782 0-3.493-.234-1.687-.234-3.257-.68-1.547-.469-2.954-1.148v-6.75q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.781 0 2.86-.468 1.1-.47 1.593-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.399-1.712-1.195-.562-2.602-1.359-1.406-.82-2.671-1.992-1.266-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.406-5.25t4.008-3.328q2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.438.609 5.086 1.78l-2.343 5.65q-2.368-.962-4.243-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.961.422-1.453 1.219-.493.773-.493 1.804 0 1.22.703 2.063.727.82 2.157 1.594 1.453.773 3.61 1.804 2.624 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.007 1.805 1.007 4.5z"></path><path fill="#efe3ae" d="M86 86h80v80H86Z"></path><path aria-label="O" d="M142.313 125.988q0 3.961-.985 7.219-.984 3.234-3 5.578-1.992 2.344-5.062 3.61-3.07 1.242-7.266 1.242-4.195 0-7.266-1.242-3.07-1.266-5.086-3.61-1.992-2.344-2.976-5.601-.984-3.258-.984-7.243 0-5.32 1.734-9.257 1.758-3.961 5.39-6.141 3.633-2.18 9.235-2.18 5.578 0 9.164 2.18 3.61 2.18 5.344 6.14 1.758 3.962 1.758 9.305zm-25.008 0q0 3.586.89 6.188.914 2.578 2.836 3.984 1.922 1.383 4.969 1.383 3.094 0 5.016-1.383 1.921-1.406 2.789-3.984.89-2.602.89-6.188 0-5.39-2.015-8.484-2.016-3.094-6.633-3.094-3.07 0-5.016 1.406-1.922 1.383-2.836 3.985-.89 2.578-.89 6.187z"></path><path fill="#efe3ae" d="M172 86h80v80h-80z"></path><path aria-label="L" d="M202.754 143.133v-34.266h7.266v28.266h13.898v6z"></path><path fill="#f7c2aa" d="M258 86h80v80h-80z"></path><path aria-label="V" d="m313.598 108.867-11.649 34.266h-7.922l-11.625-34.266h7.336l6.446 20.39q.164.516.539 1.946.375 1.406.75 3 .398 1.57.539 2.602.14-1.032.492-2.602.375-1.57.726-2.976.375-1.43.54-1.97l6.492-20.39z"></path><path fill="#efe3ae" d="M344 86h80v80h-80z"></path><path aria-label="E" d="M394.605 143.133h-19.734v-34.266h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M430 86h80v80h-80z"></path><path aria-label="R" d="M468.453 108.867q4.664 0 7.688 1.125 3.046 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265v-34.266zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#bae3ba" d="M602 86h80v80h-80z"></path><path aria-label="2" d="M654.152 143.379H630.2v-5.04l8.602-8.694q2.601-2.672 4.172-4.454 1.593-1.804 2.297-3.28.726-1.477.726-3.165 0-2.039-1.148-3.047-1.125-1.031-3.024-1.031-1.992 0-3.867.914t-3.914 2.602l-3.938-4.664q1.477-1.266 3.118-2.391 1.664-1.125 3.843-1.805 2.204-.703 5.274-.703 3.375 0 5.789 1.219 2.437 1.219 3.75 3.328 1.312 2.086 1.312 4.734 0 2.836-1.125 5.18t-3.28 4.64q-2.134 2.298-5.157 5.087l-4.406 4.148v.328h14.93z"></path></svg></div><h1 class="Splash_author__0gDgp">by Kamil Mielnik</h1></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"version":"v2.10.2"},"__N_SSG":true},"page":"/","query":{},"buildId":"FJkPF91uL-OCAJKTTpVSP","isFallback":false,"gsp":true,"scriptLoader":[]}</script></body></html>
9
+ }</style></svg><div class="index_index__5hyIO"><div class="index_nav__FjsLl"><div class="index_navContent__acaLe"><div class="index_navLogo__dBrd4"><a class="index_logoContainer___rrXU" href="/" title="v2.10.4"><svg viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg" class="index_logo__IeyQD"><path fill="#efe3ae" d="M0 0h80v80H0Z"></path><path aria-label="S" d="M51.168 47.629q0 3.047-1.477 5.297-1.476 2.25-4.312 3.469-2.813 1.218-6.844 1.218-1.781 0-3.492-.234-1.688-.234-3.258-.68-1.547-.469-2.953-1.148V48.8q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.78 0 2.859-.468 1.102-.47 1.594-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.4-1.712-1.195-.562-2.6-1.359-1.407-.82-2.673-1.992-1.265-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.407-5.25 1.406-2.18 4.008-3.328 2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.437.609 5.086 1.78l-2.344 5.65q-2.367-.962-4.242-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.962.422-1.454 1.219-.492.773-.492 1.804 0 1.22.703 2.063.727.82 2.156 1.594 1.454.773 3.61 1.804 2.625 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.008 1.805 1.008 4.5z"></path><path fill="#c7d8f9" d="M86 0h80v80H86Z"></path><path aria-label="C" d="M129.574 28.434q-2.086 0-3.703.82-1.594.797-2.695 2.32-1.078 1.524-1.64 3.68-.563 2.156-.563 4.851 0 3.633.89 6.211.914 2.555 2.813 3.914 1.898 1.336 4.898 1.336 2.086 0 4.172-.468 2.11-.47 4.57-1.336v6.093q-2.273.938-4.476 1.336-2.203.422-4.945.422-5.297 0-8.72-2.18-3.398-2.203-5.038-6.14-1.64-3.961-1.64-9.234 0-3.891 1.054-7.125 1.054-3.235 3.094-5.602 2.039-2.367 5.039-3.656 3-1.29 6.89-1.29 2.555 0 5.11.657 2.578.633 4.921 1.758l-2.343 5.906q-1.922-.914-3.867-1.594-1.946-.68-3.82-.68z"></path><path fill="#efe3ae" d="M172 0h80v80h-80z"></path><path aria-label="R" d="M210.453 22.867q4.664 0 7.688 1.125 3.047 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265V22.867Zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#efe3ae" d="M258 0h80v80h-80z"></path><path aria-label="A" d="m306.73 57.203-2.484-8.156h-12.492l-2.484 8.156h-7.829l12.094-34.406h8.883l12.14 34.406zm-4.218-14.25-2.485-7.969q-.234-.796-.632-2.039-.375-1.265-.774-2.554-.375-1.313-.61-2.274-.234.961-.656 2.39-.398 1.407-.773 2.673-.375 1.265-.539 1.804l-2.461 7.97z"></path><path fill="#c7d8f9" d="M344 0h80v80h-80z"></path><path aria-label="B" d="M372.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#c7d8f9" d="M430 0h80v80h-80z"></path><path aria-label="B" d="M458.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#efe3ae" d="M516 0h80v80h-80z"></path><path aria-label="L" d="M546.754 57.133V22.867h7.266v28.266h13.898v6z"></path><path fill="#efe3ae" d="M602 0h80v80h-80z"></path><path aria-label="E" d="M652.605 57.133h-19.734V22.867h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M0 86h80v80H0Z"></path><path aria-label="S" d="M51.32 133.629q0 3.047-1.476 5.297-1.477 2.25-4.313 3.469-2.812 1.218-6.843 1.218-1.782 0-3.493-.234-1.687-.234-3.257-.68-1.547-.469-2.954-1.148v-6.75q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.781 0 2.86-.468 1.1-.47 1.593-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.399-1.712-1.195-.562-2.602-1.359-1.406-.82-2.671-1.992-1.266-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.406-5.25t4.008-3.328q2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.438.609 5.086 1.78l-2.343 5.65q-2.368-.962-4.243-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.961.422-1.453 1.219-.493.773-.493 1.804 0 1.22.703 2.063.727.82 2.157 1.594 1.453.773 3.61 1.804 2.624 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.007 1.805 1.007 4.5z"></path><path fill="#efe3ae" d="M86 86h80v80H86Z"></path><path aria-label="O" d="M142.313 125.988q0 3.961-.985 7.219-.984 3.234-3 5.578-1.992 2.344-5.062 3.61-3.07 1.242-7.266 1.242-4.195 0-7.266-1.242-3.07-1.266-5.086-3.61-1.992-2.344-2.976-5.601-.984-3.258-.984-7.243 0-5.32 1.734-9.257 1.758-3.961 5.39-6.141 3.633-2.18 9.235-2.18 5.578 0 9.164 2.18 3.61 2.18 5.344 6.14 1.758 3.962 1.758 9.305zm-25.008 0q0 3.586.89 6.188.914 2.578 2.836 3.984 1.922 1.383 4.969 1.383 3.094 0 5.016-1.383 1.921-1.406 2.789-3.984.89-2.602.89-6.188 0-5.39-2.015-8.484-2.016-3.094-6.633-3.094-3.07 0-5.016 1.406-1.922 1.383-2.836 3.985-.89 2.578-.89 6.187z"></path><path fill="#efe3ae" d="M172 86h80v80h-80z"></path><path aria-label="L" d="M202.754 143.133v-34.266h7.266v28.266h13.898v6z"></path><path fill="#f7c2aa" d="M258 86h80v80h-80z"></path><path aria-label="V" d="m313.598 108.867-11.649 34.266h-7.922l-11.625-34.266h7.336l6.446 20.39q.164.516.539 1.946.375 1.406.75 3 .398 1.57.539 2.602.14-1.032.492-2.602.375-1.57.726-2.976.375-1.43.54-1.97l6.492-20.39z"></path><path fill="#efe3ae" d="M344 86h80v80h-80z"></path><path aria-label="E" d="M394.605 143.133h-19.734v-34.266h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M430 86h80v80h-80z"></path><path aria-label="R" d="M468.453 108.867q4.664 0 7.688 1.125 3.046 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265v-34.266zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#bae3ba" d="M602 86h80v80h-80z"></path><path aria-label="2" d="M654.152 143.379H630.2v-5.04l8.602-8.694q2.601-2.672 4.172-4.454 1.593-1.804 2.297-3.28.726-1.477.726-3.165 0-2.039-1.148-3.047-1.125-1.031-3.024-1.031-1.992 0-3.867.914t-3.914 2.602l-3.938-4.664q1.477-1.266 3.118-2.391 1.664-1.125 3.843-1.805 2.204-.703 5.274-.703 3.375 0 5.789 1.219 2.437 1.219 3.75 3.328 1.312 2.086 1.312 4.734 0 2.836-1.125 5.18t-3.28 4.64q-2.134 2.298-5.157 5.087l-4.406 4.148v.328h14.93z"></path></svg></a></div><div class="NavButtons_navButtons__2jdaO"><div class="NavButtons_group__kSDjM"><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="SquareButton_icon__t5YSC"><path d="M8.086 2.207a2 2 0 0 1 2.828 0l3.879 3.879a2 2 0 0 1 0 2.828l-5.5 5.5A2 2 0 0 1 7.879 15H5.12a2 2 0 0 1-1.414-.586l-2.5-2.5a2 2 0 0 1 0-2.828l6.879-6.879zm.66 11.34L3.453 8.254 1.914 9.793a1 1 0 0 0 0 1.414l2.5 2.5a1 1 0 0 0 .707.293H7.88a1 1 0 0 0 .707-.293l.16-.16z" fill="currentColor"></path></svg></span></button></div><div class="NavButtons_separator__4FwOF"></div><div class="NavButtons_group__kSDjM"><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="SquareButton_icon__t5YSC"><path d="M16 9c4 2 5 9 5 9s1 4-5 4H8c-6 0-5-4-5-4s1-7 5-9m6-5-2-2-2 2-4-2 2 5h8l2-5-4 2Z" fill="currentColor"></path></svg></span></button><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="SquareButton_icon__t5YSC"><path d="M14.5 3a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h13zm-13-1A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2h-13z" fill="currentColor"></path><path d="M7 5.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5zm-1.496-.854a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.708 0l-.5-.5a.5.5 0 1 1 .708-.708l.146.147 1.146-1.147a.5.5 0 0 1 .708 0zM7 9.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5zm-1.496-.854a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.708 0l-.5-.5a.5.5 0 0 1 .708-.708l.146.147 1.146-1.147a.5.5 0 0 1 .708 0z" fill="currentColor"></path></svg></span></button></div><div class="NavButtons_separator__4FwOF"></div><div class="NavButtons_group__kSDjM"><a class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" href="https://github.com/kamilmielnik/scrabble-solver" rel="noopener noreferrer" target="_blank"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="SquareButton_icon__t5YSC"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" fill="currentColor"></path></svg></span></a></div><div class="NavButtons_separator__4FwOF"></div><div class="NavButtons_group__kSDjM"><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="SquareButton_icon__t5YSC"><path d="M0 6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V6zm13 .25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25zM2.25 8a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 3 8.75v-.5A.25.25 0 0 0 2.75 8h-.5zM4 8.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 5 8.75v-.5A.25.25 0 0 0 4.75 8h-.5a.25.25 0 0 0-.25.25zM6.25 8a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 7 8.75v-.5A.25.25 0 0 0 6.75 8h-.5zM8 8.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 9 8.75v-.5A.25.25 0 0 0 8.75 8h-.5a.25.25 0 0 0-.25.25zM13.25 8a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5zm0 2a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5zm-3-2a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h1.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-1.5zm.75 2.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25zM11.25 6a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5zM9 6.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5A.25.25 0 0 0 9.75 6h-.5a.25.25 0 0 0-.25.25zM7.25 6a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 8 6.75v-.5A.25.25 0 0 0 7.75 6h-.5zM5 6.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 6 6.75v-.5A.25.25 0 0 0 5.75 6h-.5a.25.25 0 0 0-.25.25zM2.25 6a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h1.5A.25.25 0 0 0 4 6.75v-.5A.25.25 0 0 0 3.75 6h-1.5zM2 10.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25zM4.25 10a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h5.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-5.5z" fill="currentColor"></path></svg></span></button><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="SquareButton_icon__t5YSC"><path d="M9.405 1.05c-.413-1.4-2.397-1.4-2.81 0l-.1.34a1.464 1.464 0 0 1-2.105.872l-.31-.17c-1.283-.698-2.686.705-1.987 1.987l.169.311c.446.82.023 1.841-.872 2.105l-.34.1c-1.4.413-1.4 2.397 0 2.81l.34.1a1.464 1.464 0 0 1 .872 2.105l-.17.31c-.698 1.283.705 2.686 1.987 1.987l.311-.169a1.464 1.464 0 0 1 2.105.872l.1.34c.413 1.4 2.397 1.4 2.81 0l.1-.34a1.464 1.464 0 0 1 2.105-.872l.31.17c1.283.698 2.686-.705 1.987-1.987l-.169-.311a1.464 1.464 0 0 1 .872-2.105l.34-.1c1.4-.413 1.4-2.397 0-2.81l-.34-.1a1.464 1.464 0 0 1-.872-2.105l.17-.31c.698-1.283-.705-2.686-1.987-1.987l-.311.169a1.464 1.464 0 0 1-2.105-.872l-.1-.34zM8 10.93a2.929 2.929 0 1 1 0-5.86 2.929 2.929 0 0 1 0 5.858z" fill="currentColor"></path></svg></span></button></div></div></div></div><div class="Solver_solver__o9miv index_solver__pzfzn"><div class="Solver_container__ABpqJ"><div class="Solver_content__s1fWW"><form class="Solver_boardContainer__GBRcW"><div class="Board_board__eA_bB Solver_board__d5oBN"><div class="Board_row__mezHN"><div class="Cell_cell__2GOSl Cell_bonusWord3__eTB6G" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusWord3__eTB6G" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusWord3__eTB6G Cell_right__ItPQR" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div></div><div class="Board_row__mezHN"><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusWord2__Ztd1C" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier3__0qtZY" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier3__0qtZY" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusWord2__Ztd1C" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_right__ItPQR" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div></div><div class="Board_row__mezHN"><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusWord2__Ztd1C" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusWord2__Ztd1C" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_right__ItPQR" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div></div><div class="Board_row__mezHN"><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusWord2__Ztd1C" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusWord2__Ztd1C" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7 Cell_right__ItPQR" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div></div><div class="Board_row__mezHN"><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusWord2__Ztd1C" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusWord2__Ztd1C" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_right__ItPQR" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div></div><div class="Board_row__mezHN"><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier3__0qtZY" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier3__0qtZY" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier3__0qtZY" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier3__0qtZY" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_right__ItPQR" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div></div><div class="Board_row__mezHN"><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_right__ItPQR" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div></div><div class="Board_row__mezHN"><div class="Cell_cell__2GOSl Cell_bonusWord3__eTB6G" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusStart__zy3BV" style="font-size:14px"><div class="Cell_iconContainer__luGh5"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_star__qeUuH"><path d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" fill="currentColor"></path></svg></div><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusWord3__eTB6G Cell_right__ItPQR" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div></div><div class="Board_row__mezHN"><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_right__ItPQR" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div></div><div class="Board_row__mezHN"><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier3__0qtZY" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier3__0qtZY" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier3__0qtZY" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier3__0qtZY" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_right__ItPQR" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div></div><div class="Board_row__mezHN"><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusWord2__Ztd1C" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusWord2__Ztd1C" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_right__ItPQR" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div></div><div class="Board_row__mezHN"><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusWord2__Ztd1C" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusWord2__Ztd1C" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7 Cell_right__ItPQR" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div></div><div class="Board_row__mezHN"><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusWord2__Ztd1C" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusWord2__Ztd1C" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_right__ItPQR" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div></div><div class="Board_row__mezHN"><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusWord2__Ztd1C" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier3__0qtZY" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier3__0qtZY" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusWord2__Ztd1C" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_right__ItPQR" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div></div><div class="Board_row__mezHN"><div class="Cell_cell__2GOSl Cell_bonusWord3__eTB6G Cell_bottom__kFkxx" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bottom__kFkxx" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bottom__kFkxx" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7 Cell_bottom__kFkxx" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bottom__kFkxx" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bottom__kFkxx" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bottom__kFkxx" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusWord3__eTB6G Cell_bottom__kFkxx" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bottom__kFkxx" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bottom__kFkxx" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bottom__kFkxx" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusCharacterMultiplier2__Qpcd7 Cell_bottom__kFkxx" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bottom__kFkxx" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bottom__kFkxx" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div><div class="Cell_cell__2GOSl Cell_bonusWord3__eTB6G Cell_bottom__kFkxx Cell_right__ItPQR" style="font-size:14px"><div class="Tile_tile__14nuL Tile_empty__DGtO_" style="height:20px;width:20px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1"></div></div><div class="Cell_actions__YOyrG"><button class="Cell_action___13Yo" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="Cell_toggleDirection__1WgpQ Cell_right__ItPQR"><path d="M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z" fill="currentColor" fill-rule="evenodd"></path></svg></button><button class="Cell_action___13Yo Cell_filterCell__f5FRe" tabindex="-1" type="button"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" fill="currentColor"></path></svg></button></div></div></div></div><input class="Solver_submitInput__eic0t" tabindex="-1" type="submit"/></form><div class="Solver_column__0EMSH"><div class="Well_well__WTn5e Solver_resultsContainer__DruEg"></div><div class="Well_well__WTn5e"><div class="Solver_dictionary__09LYB" style="height:260px"><div class="Dictionary_dictionary__0CM4j Solver_dictionaryOutput__KWOcA"></div><form class="DictionaryInput_dictionaryInput__fsGZD Solver_dictionaryInput__9BLNF"><input class="DictionaryInput_input__0ed6F" placeholder="Search dictionary..." required="" type="text" value=""/></form></div></div></div></div></div><div class="Solver_bottomContainer__VLhkh"><div class="Solver_bottomContent__9rVjO"><form class="Solver_rackContainer__2QSoB"><div class="Rack_rack__uEE8X Solver_rack__9DDCR"><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_empty__DGtO_ Tile_raised__WKori" style="height:-17.428571428571427px;width:-17.428571428571427px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" autofocus="" class="Tile_input__Rol_n" spellcheck="false" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1">L</div></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_empty__DGtO_ Tile_raised__WKori" style="height:-17.428571428571427px;width:-17.428571428571427px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1">e</div></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_empty__DGtO_ Tile_raised__WKori" style="height:-17.428571428571427px;width:-17.428571428571427px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1">t</div></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_empty__DGtO_ Tile_raised__WKori" style="height:-17.428571428571427px;width:-17.428571428571427px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1">t</div></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_empty__DGtO_ Tile_raised__WKori" style="height:-17.428571428571427px;width:-17.428571428571427px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1">e</div></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_empty__DGtO_ Tile_raised__WKori" style="height:-17.428571428571427px;width:-17.428571428571427px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1">r</div></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_empty__DGtO_ Tile_raised__WKori" style="height:-17.428571428571427px;width:-17.428571428571427px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_input__Rol_n" spellcheck="false" tabindex="-1" value=""/><div class="Tile_character__2XzcR" style="font-size:14px" tabindex="-1">s</div></div></div><input class="Solver_submitInput__eic0t" tabindex="-1" type="submit"/></form></div></div></div></div><div class="SplashScreen_splashScreen__1t_F7 LogoSplashScreen_logoSplashScreen__pRvmG"><div class="SplashScreen_content__YuPB1"><div class="LogoSplashScreen_logos__x48g1"><svg viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg" class="LogoSplashScreen_logoGrayscale__zDa_H"><path fill="#efe3ae" d="M0 0h80v80H0Z"></path><path aria-label="S" d="M51.168 47.629q0 3.047-1.477 5.297-1.476 2.25-4.312 3.469-2.813 1.218-6.844 1.218-1.781 0-3.492-.234-1.688-.234-3.258-.68-1.547-.469-2.953-1.148V48.8q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.78 0 2.859-.468 1.102-.47 1.594-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.4-1.712-1.195-.562-2.6-1.359-1.407-.82-2.673-1.992-1.265-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.407-5.25 1.406-2.18 4.008-3.328 2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.437.609 5.086 1.78l-2.344 5.65q-2.367-.962-4.242-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.962.422-1.454 1.219-.492.773-.492 1.804 0 1.22.703 2.063.727.82 2.156 1.594 1.454.773 3.61 1.804 2.625 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.008 1.805 1.008 4.5z"></path><path fill="#c7d8f9" d="M86 0h80v80H86Z"></path><path aria-label="C" d="M129.574 28.434q-2.086 0-3.703.82-1.594.797-2.695 2.32-1.078 1.524-1.64 3.68-.563 2.156-.563 4.851 0 3.633.89 6.211.914 2.555 2.813 3.914 1.898 1.336 4.898 1.336 2.086 0 4.172-.468 2.11-.47 4.57-1.336v6.093q-2.273.938-4.476 1.336-2.203.422-4.945.422-5.297 0-8.72-2.18-3.398-2.203-5.038-6.14-1.64-3.961-1.64-9.234 0-3.891 1.054-7.125 1.054-3.235 3.094-5.602 2.039-2.367 5.039-3.656 3-1.29 6.89-1.29 2.555 0 5.11.657 2.578.633 4.921 1.758l-2.343 5.906q-1.922-.914-3.867-1.594-1.946-.68-3.82-.68z"></path><path fill="#efe3ae" d="M172 0h80v80h-80z"></path><path aria-label="R" d="M210.453 22.867q4.664 0 7.688 1.125 3.047 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265V22.867Zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#efe3ae" d="M258 0h80v80h-80z"></path><path aria-label="A" d="m306.73 57.203-2.484-8.156h-12.492l-2.484 8.156h-7.829l12.094-34.406h8.883l12.14 34.406zm-4.218-14.25-2.485-7.969q-.234-.796-.632-2.039-.375-1.265-.774-2.554-.375-1.313-.61-2.274-.234.961-.656 2.39-.398 1.407-.773 2.673-.375 1.265-.539 1.804l-2.461 7.97z"></path><path fill="#c7d8f9" d="M344 0h80v80h-80z"></path><path aria-label="B" d="M372.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#c7d8f9" d="M430 0h80v80h-80z"></path><path aria-label="B" d="M458.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#efe3ae" d="M516 0h80v80h-80z"></path><path aria-label="L" d="M546.754 57.133V22.867h7.266v28.266h13.898v6z"></path><path fill="#efe3ae" d="M602 0h80v80h-80z"></path><path aria-label="E" d="M652.605 57.133h-19.734V22.867h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M0 86h80v80H0Z"></path><path aria-label="S" d="M51.32 133.629q0 3.047-1.476 5.297-1.477 2.25-4.313 3.469-2.812 1.218-6.843 1.218-1.782 0-3.493-.234-1.687-.234-3.257-.68-1.547-.469-2.954-1.148v-6.75q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.781 0 2.86-.468 1.1-.47 1.593-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.399-1.712-1.195-.562-2.602-1.359-1.406-.82-2.671-1.992-1.266-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.406-5.25t4.008-3.328q2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.438.609 5.086 1.78l-2.343 5.65q-2.368-.962-4.243-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.961.422-1.453 1.219-.493.773-.493 1.804 0 1.22.703 2.063.727.82 2.157 1.594 1.453.773 3.61 1.804 2.624 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.007 1.805 1.007 4.5z"></path><path fill="#efe3ae" d="M86 86h80v80H86Z"></path><path aria-label="O" d="M142.313 125.988q0 3.961-.985 7.219-.984 3.234-3 5.578-1.992 2.344-5.062 3.61-3.07 1.242-7.266 1.242-4.195 0-7.266-1.242-3.07-1.266-5.086-3.61-1.992-2.344-2.976-5.601-.984-3.258-.984-7.243 0-5.32 1.734-9.257 1.758-3.961 5.39-6.141 3.633-2.18 9.235-2.18 5.578 0 9.164 2.18 3.61 2.18 5.344 6.14 1.758 3.962 1.758 9.305zm-25.008 0q0 3.586.89 6.188.914 2.578 2.836 3.984 1.922 1.383 4.969 1.383 3.094 0 5.016-1.383 1.921-1.406 2.789-3.984.89-2.602.89-6.188 0-5.39-2.015-8.484-2.016-3.094-6.633-3.094-3.07 0-5.016 1.406-1.922 1.383-2.836 3.985-.89 2.578-.89 6.187z"></path><path fill="#efe3ae" d="M172 86h80v80h-80z"></path><path aria-label="L" d="M202.754 143.133v-34.266h7.266v28.266h13.898v6z"></path><path fill="#f7c2aa" d="M258 86h80v80h-80z"></path><path aria-label="V" d="m313.598 108.867-11.649 34.266h-7.922l-11.625-34.266h7.336l6.446 20.39q.164.516.539 1.946.375 1.406.75 3 .398 1.57.539 2.602.14-1.032.492-2.602.375-1.57.726-2.976.375-1.43.54-1.97l6.492-20.39z"></path><path fill="#efe3ae" d="M344 86h80v80h-80z"></path><path aria-label="E" d="M394.605 143.133h-19.734v-34.266h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M430 86h80v80h-80z"></path><path aria-label="R" d="M468.453 108.867q4.664 0 7.688 1.125 3.046 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265v-34.266zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#bae3ba" d="M602 86h80v80h-80z"></path><path aria-label="2" d="M654.152 143.379H630.2v-5.04l8.602-8.694q2.601-2.672 4.172-4.454 1.593-1.804 2.297-3.28.726-1.477.726-3.165 0-2.039-1.148-3.047-1.125-1.031-3.024-1.031-1.992 0-3.867.914t-3.914 2.602l-3.938-4.664q1.477-1.266 3.118-2.391 1.664-1.125 3.843-1.805 2.204-.703 5.274-.703 3.375 0 5.789 1.219 2.437 1.219 3.75 3.328 1.312 2.086 1.312 4.734 0 2.836-1.125 5.18t-3.28 4.64q-2.134 2.298-5.157 5.087l-4.406 4.148v.328h14.93z"></path></svg><svg viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg" class="LogoSplashScreen_logoColor__yxa6j"><path fill="#efe3ae" d="M0 0h80v80H0Z"></path><path aria-label="S" d="M51.168 47.629q0 3.047-1.477 5.297-1.476 2.25-4.312 3.469-2.813 1.218-6.844 1.218-1.781 0-3.492-.234-1.688-.234-3.258-.68-1.547-.469-2.953-1.148V48.8q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.78 0 2.859-.468 1.102-.47 1.594-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.4-1.712-1.195-.562-2.6-1.359-1.407-.82-2.673-1.992-1.265-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.407-5.25 1.406-2.18 4.008-3.328 2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.437.609 5.086 1.78l-2.344 5.65q-2.367-.962-4.242-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.962.422-1.454 1.219-.492.773-.492 1.804 0 1.22.703 2.063.727.82 2.156 1.594 1.454.773 3.61 1.804 2.625 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.008 1.805 1.008 4.5z"></path><path fill="#c7d8f9" d="M86 0h80v80H86Z"></path><path aria-label="C" d="M129.574 28.434q-2.086 0-3.703.82-1.594.797-2.695 2.32-1.078 1.524-1.64 3.68-.563 2.156-.563 4.851 0 3.633.89 6.211.914 2.555 2.813 3.914 1.898 1.336 4.898 1.336 2.086 0 4.172-.468 2.11-.47 4.57-1.336v6.093q-2.273.938-4.476 1.336-2.203.422-4.945.422-5.297 0-8.72-2.18-3.398-2.203-5.038-6.14-1.64-3.961-1.64-9.234 0-3.891 1.054-7.125 1.054-3.235 3.094-5.602 2.039-2.367 5.039-3.656 3-1.29 6.89-1.29 2.555 0 5.11.657 2.578.633 4.921 1.758l-2.343 5.906q-1.922-.914-3.867-1.594-1.946-.68-3.82-.68z"></path><path fill="#efe3ae" d="M172 0h80v80h-80z"></path><path aria-label="R" d="M210.453 22.867q4.664 0 7.688 1.125 3.047 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265V22.867Zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#efe3ae" d="M258 0h80v80h-80z"></path><path aria-label="A" d="m306.73 57.203-2.484-8.156h-12.492l-2.484 8.156h-7.829l12.094-34.406h8.883l12.14 34.406zm-4.218-14.25-2.485-7.969q-.234-.796-.632-2.039-.375-1.265-.774-2.554-.375-1.313-.61-2.274-.234.961-.656 2.39-.398 1.407-.773 2.673-.375 1.265-.539 1.804l-2.461 7.97z"></path><path fill="#c7d8f9" d="M344 0h80v80h-80z"></path><path aria-label="B" d="M372.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#c7d8f9" d="M430 0h80v80h-80z"></path><path aria-label="B" d="M458.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#efe3ae" d="M516 0h80v80h-80z"></path><path aria-label="L" d="M546.754 57.133V22.867h7.266v28.266h13.898v6z"></path><path fill="#efe3ae" d="M602 0h80v80h-80z"></path><path aria-label="E" d="M652.605 57.133h-19.734V22.867h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M0 86h80v80H0Z"></path><path aria-label="S" d="M51.32 133.629q0 3.047-1.476 5.297-1.477 2.25-4.313 3.469-2.812 1.218-6.843 1.218-1.782 0-3.493-.234-1.687-.234-3.257-.68-1.547-.469-2.954-1.148v-6.75q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.781 0 2.86-.468 1.1-.47 1.593-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.399-1.712-1.195-.562-2.602-1.359-1.406-.82-2.671-1.992-1.266-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.406-5.25t4.008-3.328q2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.438.609 5.086 1.78l-2.343 5.65q-2.368-.962-4.243-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.961.422-1.453 1.219-.493.773-.493 1.804 0 1.22.703 2.063.727.82 2.157 1.594 1.453.773 3.61 1.804 2.624 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.007 1.805 1.007 4.5z"></path><path fill="#efe3ae" d="M86 86h80v80H86Z"></path><path aria-label="O" d="M142.313 125.988q0 3.961-.985 7.219-.984 3.234-3 5.578-1.992 2.344-5.062 3.61-3.07 1.242-7.266 1.242-4.195 0-7.266-1.242-3.07-1.266-5.086-3.61-1.992-2.344-2.976-5.601-.984-3.258-.984-7.243 0-5.32 1.734-9.257 1.758-3.961 5.39-6.141 3.633-2.18 9.235-2.18 5.578 0 9.164 2.18 3.61 2.18 5.344 6.14 1.758 3.962 1.758 9.305zm-25.008 0q0 3.586.89 6.188.914 2.578 2.836 3.984 1.922 1.383 4.969 1.383 3.094 0 5.016-1.383 1.921-1.406 2.789-3.984.89-2.602.89-6.188 0-5.39-2.015-8.484-2.016-3.094-6.633-3.094-3.07 0-5.016 1.406-1.922 1.383-2.836 3.985-.89 2.578-.89 6.187z"></path><path fill="#efe3ae" d="M172 86h80v80h-80z"></path><path aria-label="L" d="M202.754 143.133v-34.266h7.266v28.266h13.898v6z"></path><path fill="#f7c2aa" d="M258 86h80v80h-80z"></path><path aria-label="V" d="m313.598 108.867-11.649 34.266h-7.922l-11.625-34.266h7.336l6.446 20.39q.164.516.539 1.946.375 1.406.75 3 .398 1.57.539 2.602.14-1.032.492-2.602.375-1.57.726-2.976.375-1.43.54-1.97l6.492-20.39z"></path><path fill="#efe3ae" d="M344 86h80v80h-80z"></path><path aria-label="E" d="M394.605 143.133h-19.734v-34.266h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M430 86h80v80h-80z"></path><path aria-label="R" d="M468.453 108.867q4.664 0 7.688 1.125 3.046 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265v-34.266zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#bae3ba" d="M602 86h80v80h-80z"></path><path aria-label="2" d="M654.152 143.379H630.2v-5.04l8.602-8.694q2.601-2.672 4.172-4.454 1.593-1.804 2.297-3.28.726-1.477.726-3.165 0-2.039-1.148-3.047-1.125-1.031-3.024-1.031-1.992 0-3.867.914t-3.914 2.602l-3.938-4.664q1.477-1.266 3.118-2.391 1.664-1.125 3.843-1.805 2.204-.703 5.274-.703 3.375 0 5.789 1.219 2.437 1.219 3.75 3.328 1.312 2.086 1.312 4.734 0 2.836-1.125 5.18t-3.28 4.64q-2.134 2.298-5.157 5.087l-4.406 4.148v.328h14.93z"></path></svg></div><h1 class="LogoSplashScreen_author__jDI5k">by Kamil Mielnik</h1></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"version":"v2.10.4"},"__N_SSG":true},"page":"/","query":{},"buildId":"WILX-RgqlLTd4ZoPs8C_E","isFallback":false,"gsp":true,"scriptLoader":[]}</script></body></html>