@scrabble-solver/scrabble-solver 2.8.6 → 2.8.8
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.
- package/.next/BUILD_ID +1 -1
- package/.next/build-manifest.json +10 -10
- package/.next/cache/.tsbuildinfo +1 -1
- package/.next/cache/eslint/.cache_8dgz12 +1 -1
- package/.next/cache/next-server.js.nft.json +1 -1
- package/.next/cache/webpack/client-production/0.pack +0 -0
- package/.next/cache/webpack/client-production/index.pack +0 -0
- package/.next/cache/webpack/server-production/0.pack +0 -0
- package/.next/cache/webpack/server-production/index.pack +0 -0
- package/.next/next-server.js.nft.json +1 -1
- package/.next/prerender-manifest.json +1 -1
- package/.next/routes-manifest.json +1 -1
- package/.next/server/chunks/413.js +266 -110
- package/.next/server/chunks/{206.js → 429.js} +2 -4137
- package/.next/server/chunks/515.js +197 -91
- package/.next/server/chunks/{907.js → 911.js} +134 -367
- package/.next/server/chunks/939.js +218 -0
- package/.next/server/middleware-build-manifest.js +1 -1
- package/.next/server/pages/404.html +2 -2
- package/.next/server/pages/404.js.nft.json +1 -1
- package/.next/server/pages/500.html +2 -2
- package/.next/server/pages/_app.js.nft.json +1 -1
- package/.next/server/pages/api/dictionary/[locale]/[word].js +33 -17
- package/.next/server/pages/api/dictionary/[locale]/[word].js.nft.json +1 -1
- package/.next/server/pages/api/solve.js +399 -56
- package/.next/server/pages/api/solve.js.nft.json +1 -1
- package/.next/server/pages/api/visit.js +3 -2
- package/.next/server/pages/api/visit.js.nft.json +1 -1
- package/.next/server/pages/index.html +3 -7
- package/.next/server/pages/index.js +12 -14
- package/.next/server/pages/index.js.nft.json +1 -1
- package/.next/server/pages/index.json +1 -1
- package/.next/static/chunks/615-d258f6c528c18622.js +1 -0
- package/.next/static/chunks/pages/{404-30c06e61d256c5b2.js → 404-8eb3ba4f0ba17e08.js} +1 -1
- package/.next/static/chunks/pages/_app-4a663fd3d5ca4524.js +1 -0
- package/.next/static/chunks/pages/index-1a9826d740cc8830.js +1 -0
- package/.next/static/css/180c6c26317ac90f.css +1 -0
- package/.next/static/css/751e8a14776d05d8.css +1 -0
- package/.next/static/z3J3qmq1nazbDv_ENIkCo/_buildManifest.js +1 -0
- package/.next/static/{VjSpyGDWyVaO0muz54q_j → z3J3qmq1nazbDv_ENIkCo}/_ssgManifest.js +0 -0
- package/.next/trace +41 -42
- package/package.json +9 -9
- package/src/api/index.ts +3 -9
- package/src/api/isBoardValid.ts +43 -0
- package/src/api/isCellValid.ts +26 -0
- package/src/api/isRowValid.ts +19 -0
- package/src/components/Board/components/Cell/Cell.module.scss +34 -9
- package/src/components/Board/components/Cell/Cell.tsx +23 -4
- package/src/components/Board/components/Cell/CellPure.tsx +29 -1
- package/src/components/Board/hooks/useGrid.ts +1 -0
- package/src/components/Dictionary/Dictionary.module.scss +20 -0
- package/src/components/Dictionary/Dictionary.tsx +40 -29
- package/src/components/Results/Cell.tsx +3 -2
- package/src/components/Results/Result.tsx +16 -6
- package/src/components/ResultsInput/ResultsInput.tsx +11 -3
- package/src/hooks/useIsTablet.ts +2 -2
- package/src/i18n/de.json +1 -0
- package/src/i18n/en.json +1 -0
- package/src/i18n/es.json +1 -0
- package/src/i18n/fr.json +1 -0
- package/src/i18n/pl.json +1 -0
- package/src/icons/Flag.svg +4 -0
- package/src/icons/Star.svg +4 -0
- package/src/icons/index.ts +2 -0
- package/src/lib/getRemainingTiles.ts +1 -1
- package/src/lib/index.ts +2 -1
- package/src/lib/isRegExp.ts +11 -0
- package/src/lib/isStringArray.ts +5 -0
- package/src/lib/sortResults.ts +5 -5
- package/src/pages/api/dictionary/[locale]/[word].ts +35 -11
- package/src/pages/api/solve.ts +39 -19
- package/src/pages/api/visit.ts +1 -0
- package/src/pages/index.module.scss +5 -11
- package/src/pages/index.tsx +5 -5
- package/src/sdk/{findWordDefinition.ts → findWordDefinitions.ts} +3 -3
- package/src/sdk/index.ts +1 -1
- package/src/state/rootReducer.ts +10 -1
- package/src/state/sagas.ts +32 -12
- package/src/state/selectors.ts +41 -7
- package/src/state/slices/cellFilterInitialState.ts +7 -0
- package/src/state/slices/cellFilterSlice.ts +24 -0
- package/src/state/slices/dictionaryInitialState.ts +3 -3
- package/src/state/slices/dictionarySlice.ts +4 -10
- package/src/state/slices/index.ts +2 -0
- package/src/types/index.ts +1 -0
- package/.next/static/VjSpyGDWyVaO0muz54q_j/_buildManifest.js +0 -1
- package/.next/static/chunks/56-e2797384ae4b0fc0.js +0 -1
- package/.next/static/chunks/pages/_app-5136d33b9b007fd7.js +0 -1
- package/.next/static/chunks/pages/index-13ea7770a65c69ee.js +0 -1
- package/.next/static/css/3159cfe62ff742a3.css +0 -1
- package/.next/static/css/729bb37fe8f9bee6.css +0 -1
- package/src/api/validateBoard.ts +0 -45
- package/src/api/validateCell.ts +0 -40
- package/src/api/validateCharacter.ts +0 -14
- package/src/api/validateCharacters.ts +0 -24
- package/src/api/validateConfigId.ts +0 -9
- package/src/api/validateLocale.ts +0 -15
- package/src/api/validateRow.ts +0 -17
- package/src/api/validateTile.ts +0 -21
- package/src/api/validateWord.ts +0 -11
- package/src/lib/isLocale.ts +0 -7
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[615],{6615:function(e,t,n){"use strict";n.d(t,{$l:function(){return Et},Xy:function(){return nn},Z$:function(){return on},d4:function(){return Ln},TR:function(){return Tn},_m:function(){return An},TX:function(){return Hn},F4:function(){return Qn},fs:function(){return oa},u9:function(){return ga},Zr:function(){return La},hX:function(){return Fa},tW:function(){return Da}});var a,r=n(828),o=n(5893),l=n(6983),s=n(4184),i=n.n(s),c=n(7294),u=n(2761),d=n.n(u),h=n(7618),p=n(9473),f=n(2237),_=n(4924);function m(){return m=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},m.apply(this,arguments)}var v,g=function(e){return c.createElement("svg",m({viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",role:"img"},e),a||(a=c.createElement("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",fillRule:"evenodd"})))};function x(){return x=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},x.apply(this,arguments)}var b,j=function(e){return c.createElement("svg",x({viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",role:"img"},e),v||(v=c.createElement("path",{d:"M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8z",fill:"currentColor",fillRule:"evenodd"})))};function y(){return y=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},y.apply(this,arguments)}var w,C=function(e){return c.createElement("svg",y({viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",role:"img"},e),b||(b=c.createElement("path",{d:"M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z",fill:"currentColor",fillRule:"evenodd"})))};function N(){return N=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},N.apply(this,arguments)}var k=function(e){return c.createElement("svg",N({viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",role:"img"},e),w||(w=c.createElement("path",{d:"M8 15a.5.5 0 0 0 .5-.5V2.707l3.146 3.147a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 1 0 .708.708L7.5 2.707V14.5a.5.5 0 0 0 .5.5z",fill:"currentColor",fillRule:"evenodd"})))};var M;function E(){return E=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},E.apply(this,arguments)}var O,S=function(e){return c.createElement("svg",E({viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",role:"img"},e),M||(M=c.createElement("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"})))};function B(){return B=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},B.apply(this,arguments)}var Z,I=function(e){return c.createElement("svg",B({viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",role:"img"},e),O||(O=c.createElement("path",{d:"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm3.354 4.646L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 1 1 .708-.708z",fill:"currentColor"})))};function z(){return z=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},z.apply(this,arguments)}var L,R=function(e){return c.createElement("svg",z({viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",role:"img"},e),Z||(Z=c.createElement("path",{d:"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM4.5 7.5a.5.5 0 0 0 0 1h7a.5.5 0 0 0 0-1h-7z",fill:"currentColor"})))};function T(){return T=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},T.apply(this,arguments)}var F,P=function(e){return c.createElement("svg",T({viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",role:"img"},e),L||(L=c.createElement("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"})))};function A(){return A=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},A.apply(this,arguments)}var D,V,K=function(e){return c.createElement("svg",A({viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",role:"img"},e),F||(F=c.createElement("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"})))};function q(){return q=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},q.apply(this,arguments)}var U,H,W,X=function(e){return c.createElement("svg",q({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 750 500",role:"img"},e),D||(D=c.createElement("path",{fill:"#c60b1e",d:"M0 0h750v500H0z"})),V||(V=c.createElement("path",{fill:"#ffc400",d:"M0 125h750v250H0z"})))};function G(){return G=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},G.apply(this,arguments)}var Q,Y,J,$,ee,te=function(e){return c.createElement("svg",G({viewBox:"0 0 24 15",xmlns:"http://www.w3.org/2000/svg",role:"img"},e),U||(U=c.createElement("path",{fill:"#002395",d:"M0 0h8v15H0z"})),H||(H=c.createElement("path",{fill:"#FFF",d:"M8 0h8v15H8z"})),W||(W=c.createElement("path",{fill:"#ED2939",d:"M16 0h8v15h-8z"})))};function ne(){return ne=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},ne.apply(this,arguments)}var ae,re,oe=function(e){return c.createElement("svg",ne({viewBox:"0 0 60 30",xmlns:"http://www.w3.org/2000/svg",role:"img"},e),Q||(Q=c.createElement("path",{d:"M0 0v30h60V0z",fill:"#00247d"})),Y||(Y=c.createElement("path",{d:"m0 0 60 30m0-30L0 30",stroke:"#fff",strokeWidth:6})),J||(J=c.createElement("path",{d:"m0 0 60 30m0-30L0 30",stroke:"#cf142b",strokeWidth:4})),$||($=c.createElement("path",{d:"M30 0v30M0 15h60",stroke:"#fff",strokeWidth:10})),ee||(ee=c.createElement("path",{d:"M30 0v30M0 15h60",stroke:"#cf142b",strokeWidth:6})))};function le(){return le=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},le.apply(this,arguments)}var se,ie,ce,ue,de,he,pe,fe,_e,me=function(e){return c.createElement("svg",le({viewBox:"0 0 16 10",xmlns:"http://www.w3.org/2000/svg",role:"img"},e),ae||(ae=c.createElement("path",{fill:"#fff",d:"M0 0h16v10H0z"})),re||(re=c.createElement("path",{fill:"#dc143c",d:"M0 5h16v5H0z"})))};function ve(){return ve=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},ve.apply(this,arguments)}var ge,xe,be,je=function(e){return c.createElement("svg",ve({viewBox:"0 0 7410 3900",xmlns:"http://www.w3.org/2000/svg",role:"img"},e),se||(se=c.createElement("path",{fill:"#b22234",d:"M0 0h7410v3900H0z"})),ie||(ie=c.createElement("path",{d:"M0 450h7410m0 600H0m0 600h7410m0 600H0m0 600h7410m0 600H0",stroke:"#fff",strokeWidth:300})),ce||(ce=c.createElement("path",{fill:"#3c3b6e",d:"M0 0h2964v2100H0z"})),ue||(ue=c.createElement("g",{fill:"#fff"},c.createElement("g",{id:"FlagUs_svg__d"},c.createElement("g",{id:"FlagUs_svg__c"},c.createElement("g",{id:"FlagUs_svg__e"},c.createElement("g",{id:"FlagUs_svg__b"},c.createElement("path",{id:"FlagUs_svg__a",d:"m247 90 70.534 217.082-184.66-134.164h228.253L176.466 307.082z"}),c.createElement("use",{href:"#FlagUs_svg__a",y:420}),c.createElement("use",{href:"#FlagUs_svg__a",y:840}),c.createElement("use",{href:"#FlagUs_svg__a",y:1260})),c.createElement("use",{href:"#FlagUs_svg__a",y:1680})),c.createElement("use",{href:"#FlagUs_svg__b",x:247,y:210})),c.createElement("use",{href:"#FlagUs_svg__c",x:494})),c.createElement("use",{href:"#FlagUs_svg__d",x:988}),c.createElement("use",{href:"#FlagUs_svg__c",x:1976}),c.createElement("use",{href:"#FlagUs_svg__e",x:2470}))),de||(de=c.createElement("path",{d:"M0 0v30h60V0z",fill:"#00247d"})),he||(he=c.createElement("path",{d:"m0 0 60 30m0-30L0 30",stroke:"#fff",strokeWidth:6})),pe||(pe=c.createElement("path",{d:"m0 0 60 30m0-30L0 30",stroke:"#cf142b",strokeWidth:4})),fe||(fe=c.createElement("path",{d:"M30 0v30M0 15h60",stroke:"#fff",strokeWidth:10})),_e||(_e=c.createElement("path",{d:"M30 0v30M0 15h60",stroke:"#cf142b",strokeWidth:6})))};function ye(){return ye=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},ye.apply(this,arguments)}var we,Ce=function(e){return c.createElement("svg",ye({viewBox:"0 0 20 12",xmlns:"http://www.w3.org/2000/svg",role:"img"},e),ge||(ge=c.createElement("path",{d:"M0 0h20v4H0z"})),xe||(xe=c.createElement("path",{fill:"red",d:"M0 4h20v4H0z"})),be||(be=c.createElement("path",{fill:"#fc0",d:"M0 8h20v4H0z"})))};function Ne(){return Ne=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},Ne.apply(this,arguments)}var ke,Me=function(e){return c.createElement("svg",Ne({viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",role:"img"},e),we||(we=c.createElement("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"})))};function Ee(){return Ee=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},Ee.apply(this,arguments)}var Oe,Se=function(e){return c.createElement("svg",Ee({viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",role:"img"},e),ke||(ke=c.createElement("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"})))};function Be(){return Be=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},Be.apply(this,arguments)}var Ze,Ie=function(e){return c.createElement("svg",Be({viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",role:"img"},e),Oe||(Oe=c.createElement("path",{d:"m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z",fill:"currentColor"})))};function ze(){return ze=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},ze.apply(this,arguments)}var Le,Re=function(e){return c.createElement("svg",ze({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",role:"img"},e),Ze||(Ze=c.createElement("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"})))};function Te(){return Te=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},Te.apply(this,arguments)}var Fe,Pe=function(e){return c.createElement("svg",Te({viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",role:"img"},e),Le||(Le=c.createElement("path",{d:"M3.5 2.5a.5.5 0 0 0-1 0v8.793l-1.146-1.147a.5.5 0 0 0-.708.708l2 1.999.007.007a.497.497 0 0 0 .7-.006l2-2a.5.5 0 0 0-.707-.708L3.5 11.293V2.5zm3.5 1a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zM7.5 6a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5zm0 3a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zm0 3a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1z",fill:"currentColor"})))};function Ae(){return Ae=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},Ae.apply(this,arguments)}var De,Ve=function(e){return c.createElement("svg",Ae({viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",role:"img"},e),Fe||(Fe=c.createElement("path",{d:"M3.5 12.5a.5.5 0 0 1-1 0V3.707L1.354 4.854a.5.5 0 1 1-.708-.708l2-1.999.007-.007a.498.498 0 0 1 .7.006l2 2a.5.5 0 1 1-.707.708L3.5 3.707V12.5zm3.5-9a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zM7.5 6a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5zm0 3a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zm0 3a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1h-1z",fill:"currentColor"})))};function Ke(){return Ke=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},Ke.apply(this,arguments)}var qe=function(e){return c.createElement("svg",Ke({viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg",role:"img"},e),De||(De=c.createElement("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"})))},Ue=n(5101),He=n.n(Ue),We=function(e){return e.preventDefault()},Xe=function(e){var t,n=e.autoFocus,a=e.canShowPoints,r=e.character,l=e.className,s=e.disabled,c=e.highlighted,u=e.inputRef,d=e.inputStyle,h=e.isBlank,p=e.placeholder,f=e.points,m=e.pointsStyle,v=e.raised,g=e.style,x=e.tabIndex,b=e.onFocus,j=e.onKeyDown;return(0,o.jsxs)("div",{className:i()(He().tile,l,(t={},(0,_.Z)(t,He().highlighted,c),(0,_.Z)(t,He().blank,h),(0,_.Z)(t,He().raised,v),(0,_.Z)(t,He().points1,1===f),(0,_.Z)(t,He().points2,2===f),(0,_.Z)(t,He().points3,3===f),(0,_.Z)(t,He().points4,4===f),(0,_.Z)(t,He().points5,"number"===typeof f&&f>=5),t)),style:g,children:[(0,o.jsx)("input",{autoCapitalize:"none",autoComplete:"off",autoCorrect:"off",autoFocus:n,className:He().character,disabled:s,maxLength:1,placeholder:p,ref:u,spellCheck:!1,style:d,tabIndex:x,value:r||"",onChange:We,onFocus:b,onKeyDown:j}),a&&(0,o.jsx)("span",{className:He().points,style:m,children:f})]})},Ge=(0,c.memo)(Xe),Qe=function(e){var t=e.autoFocus,n=e.className,a=e.character,r=void 0===a?"":a,l=e.disabled,s=e.highlighted,i=e.inputRef,u=e.isBlank,d=e.placeholder,p=e.points,_=e.raised,m=e.size,v=e.tabIndex,g=e.onFocus,x=e.onKeyDown,b=(0,f.vc)(m),j=b.pointsFontSize,y=b.tileFontSize,w=b.tileSize,C=(0,c.useMemo)((function(){return{height:w,width:w}}),[w]),N=(0,c.useMemo)((function(){return{fontSize:y}}),[y]),k=(0,c.useMemo)((function(){return{fontSize:j}}),[j]),M=(0,c.useMemo)((function(){return i||(0,c.createRef)()}),[i]),E=!r||r===h.EMPTY_CELL,O=(u||!E)&&"undefined"!==typeof p;return(0,c.useEffect)((function(){t&&M.current&&M.current.focus()}),[t,M]),(0,o.jsx)(Ge,{autoFocus:t,canShowPoints:O,character:r,className:n,disabled:l,highlighted:s,inputRef:M,inputStyle:N,isBlank:u,placeholder:d,points:p,pointsStyle:k,raised:_,style:C,tabIndex:v,onFocus:g,onKeyDown:x})},Ye=n(6042),Je=n(9396),$e=n(9534),et=n(9815),tt=n(5237),nt=n(4956),at=n(1488),rt=n(3165),ot=n(194),lt=n.n(ot),st=parseInt(lt().ARROW_SIZE,10),it=parseInt(lt().OFFSET,10),ct=[{name:"preventOverflow",options:{padding:parseInt(lt().PREVENT_OVERFLOW,10),rootBoundary:"document"}},{name:"flip",options:{padding:st,rootBoundary:"document"}},{name:"offset",options:{offset:[0,it+st]}}],ut=function(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},a=n.className,r=n.placement,l=void 0===r?"top":r,s=n.onBlur,u=void 0===s?f.ZT:s,d=n.onFocus,h=void 0===d?f.ZT:d,p=n.onMouseOut,m=void 0===p?f.ZT:p,v=n.onMouseOver,g=void 0===v?f.ZT:v,x=(0,rt.Ld)(),b=Boolean(e)||0===e,j=(0,nt.Z)(),y=(0,c.useState)(!1),w=y[0],C=y[1],N=(0,c.useState)(null),k=N[0],M=N[1],E=(0,c.useState)(null),O=E[0],S=E[1],B=(0,c.useState)(null),Z=B[0],I=B[1],z=(0,tt.D)(k,O,{modifiers:[{name:"arrow",options:{element:Z}}].concat((0,et.Z)(ct)),placement:l}),L=z.attributes,R=z.styles,T=z.update,F=L.popper?L.popper["data-popper-placement"]:l,P=(0,c.useMemo)((function(){return w?{"aria-describedby":x}:{}}),[x,w]),A=(0,c.useCallback)((function(e){u(e),C(!1)}),[u]),D=(0,c.useCallback)((function(e){h(e),C(!0)}),[h]),V=(0,c.useCallback)((function(e){m(e),C(!1)}),[m]),K=(0,c.useCallback)((function(e){g(e),C(!0)}),[g]),q=(0,c.useMemo)((function(){return(0,Je.Z)((0,Ye.Z)({},P),{ref:M,onBlur:A,onFocus:D,onMouseOut:V,onMouseOver:K})}),[P,A,D,V,K]);return(0,at.Z)((function(){j()&&T&&T()})),(0,rt.vI)((0,o.jsxs)("div",(0,Je.Z)((0,Ye.Z)({className:i()(lt().tooltip,a,(t={},(0,_.Z)(t,lt().top,"top"===F),(0,_.Z)(t,lt().right,"right"===F),(0,_.Z)(t,lt().bottom,"bottom"===F),(0,_.Z)(t,lt().left,"left"===F),t)),ref:S,style:R.popper},L.popper),{children:[(0,o.jsx)("div",{children:e}),(0,o.jsx)("div",{className:lt().arrow,ref:I,style:R.arrow})]})),{disabled:!b||!w}),q},dt=n(2290),ht=n.n(dt),pt=function(e){var t=e.children,n=e.className,a=e.tooltip,r=(0,$e.Z)(e,["children","className","tooltip"]),l=ut(a,r);return(0,o.jsx)("button",(0,Je.Z)((0,Ye.Z)({className:i()(ht().action,n),tabIndex:-1,type:"button"},r,l),{children:t}))},ft={1:ht().bonusCharacter1,2:ht().bonusCharacter2,3:ht().bonusCharacter3,5:ht().bonusCharacter5},_t={2:ht().bonusWord2,3:ht().bonusWord3},mt={2:ht().bonusCharacterMultiplier2,3:ht().bonusCharacterMultiplier3},vt=function(e,t,n){if(e.isEmpty){if(n)return ht().bonusStart;if(t){var a=t.type;if(a===h.BONUS_WORD)return gt(t);if(a===h.BONUS_CHARACTER)return xt(t);throw new Error("Unknown bonus type: ".concat(a," ").concat(t.x," ").concat(t.y," ").concat(t.multiplier," ").concat(t.score))}}},gt=function(e){return _t[e.multiplier]},xt=function(e){return e.score?ft[e.score]:mt[e.multiplier]},bt=function(e){var t=e.bonus,n=e.cell,a=e.className,r=e.direction,l=e.inputRef,s=e.isCenter,c=e.isEmpty,u=e.isFiltered,d=e.points,h=e.size,p=e.style,f=e.tile,m=e.translate,v=e.onDirectionToggleClick,x=e.onFocus,b=e.onToggleBlankClick,j=e.onToggleFilterCellClick;return(0,o.jsxs)("div",{className:i()(ht().cell,vt(n,t,s),a,(0,_.Z)({},ht().candidate,n.isCandidate())),style:p,children:[s&&(0,o.jsx)("div",{className:i()(ht().iconContainer),children:(0,o.jsx)(qe,{className:ht().star})}),u&&(0,o.jsx)("div",{className:i()(ht().iconContainer,ht().flagContainer),children:(0,o.jsx)(K,{className:ht().flag})}),(0,o.jsx)(Qe,{className:ht().tile,character:c?void 0:f.character,highlighted:n.isCandidate(),inputRef:l,isBlank:f.isBlank,points:d,raised:!c,size:h,tabIndex:0===n.x&&0===n.y?void 0:-1,onFocus:x}),(0,o.jsxs)("div",{className:ht().actions,children:[(0,o.jsx)(pt,{tooltip:m("cell.toggle-direction"),onClick:v,children:(0,o.jsx)(g,{className:i()(ht().toggleDirection,(0,_.Z)({},ht().right,"horizontal"===r))})}),c&&(0,o.jsx)(pt,{className:i()(ht().filterCell,(0,_.Z)({},ht().filtered,u)),tooltip:m("cell.filter-cell"),onClick:j,children:(0,o.jsx)(K,{})}),!c&&(0,o.jsx)(pt,{className:i()(ht().blank,(0,_.Z)({},ht().active,f.isBlank)),tooltip:f.isBlank?m("cell.set-not-blank"):m("cell.set-blank"),onClick:b,children:"B"})]})]})},jt=(0,c.memo)(bt),yt=function(e){var t=e.cell,n=e.className,a=e.direction,r=e.inputRef,s=e.isCenter,i=e.size,u=e.onDirectionToggle,d=e.onFocus,_=t.tile,m=t.x,v=t.y,g=(0,p.I0)(),x=(0,l.qM)(),b=(0,l.ix)((function(e){return(0,l.O0)(e,t)})),j=(0,l.ix)((function(e){return(0,l.Zf)(e,t.tile)})),y=(0,l.ix)((function(e){return(0,l.id)(e,t)})),w=(0,f.vc)(i).tileFontSize,C=_.character===h.EMPTY_CELL,N=(0,c.useMemo)((function(){return{fontSize:w}}),[w]),k=(0,c.useCallback)((function(){r.current&&r.current.focus(),u()}),[u]),M=(0,c.useCallback)((function(){return d(m,v)}),[m,v,d]),E=(0,c.useCallback)((function(){r.current&&r.current.focus(),g(l.I8.actions.toggleCellIsBlank({x:m,y:v}))}),[g,m,v]),O=(0,c.useCallback)((function(){r.current&&r.current.focus(),g(l.mO.actions.toggle({x:m,y:v}))}),[g,m,v]);return(0,o.jsx)(jt,{bonus:b,cell:t,className:n,direction:a,inputRef:r,isCenter:s,isEmpty:C,isFiltered:y,points:j,size:i,style:N,tile:_,translate:x,onDirectionToggleClick:k,onFocus:M,onToggleBlankClick:E,onToggleFilterCellClick:O})},wt=function(e){var t=e.className,n=e.cellSize,a=e.center,r=e.innerRef,l=e.lastDirection,s=e.refs,c=e.rows,u=e.onDirectionToggle,h=e.onFocus,p=e.onKeyDown;return(0,o.jsx)("div",{className:i()(d().board,t),ref:r,onKeyDown:p,children:c.map((function(e,t){return(0,o.jsx)("div",{className:d().row,children:e.map((function(e,r){return(0,o.jsx)(yt,{className:d().cell,cell:e,direction:l,inputRef:s[t][r],isCenter:a.x===r&&a.y===t,size:n,onDirectionToggle:u,onFocus:h},r)}))},t)}))})},Ct=(0,c.memo)(wt),Nt=n(7015),kt=function(e,t){for(var n=0;n<e.length;++n)for(var a=0;a<e[0].length;++a)if(t(e[n][a]))return{x:a,y:n}},Mt=function(e){var t=e.length,n=e[0].length,a=(0,p.I0)(),r=(0,l.ix)(l.$o),o=(0,c.useMemo)((function(){return(0,f.DI)(n,t,(function(){return(0,c.createRef)()}))}),[n,t]),s=(0,c.useRef)({x:0,y:0}),i=(0,c.useState)("horizontal"),u=i[0],d=i[1],_=(0,Nt.Z)(u),m=(0,c.useCallback)((function(e,a){var r,l=Math.min(Math.max(s.current.x+e,0),n-1),i=Math.min(Math.max(s.current.y+a,0),t-1);s.current={x:l,y:i},null===(r=o[i][l].current)||void 0===r||r.focus()}),[s,o]),v=(0,c.useCallback)((function(e){return kt(o,(function(t){return t.current===e}))}),[o]),g=(0,c.useCallback)((function(){d((function(e){return"vertical"===e?"horizontal":"vertical"}))}),[]),x=(0,c.useCallback)((function(e,t){s.current={x:e,y:t}}),[]),b=(0,c.useCallback)((function(e){var t="forward"===e?1:-1;"horizontal"===_.current?m(t,0):m(0,t)}),[m,_]),j=(0,c.useMemo)((function(){return(0,f.np)({onArrowDown:function(e){(0,f.yl)(e)?g():m(0,1)},onArrowLeft:function(e){(0,f.yl)(e)?g():m(-1,0)},onArrowRight:function(e){(0,f.yl)(e)?g():m(1,0)},onArrowUp:function(e){(0,f.yl)(e)?g():m(0,-1)},onBackspace:function(e){var t=v(e.target);t&&(a(l.I8.actions.changeCellValue((0,Je.Z)((0,Ye.Z)({},t),{value:h.EMPTY_CELL}))),b("backward"))},onDelete:function(e){var t=v(e.target);t&&(a(l.I8.actions.changeCellValue((0,Je.Z)((0,Ye.Z)({},t),{value:h.EMPTY_CELL}))),b("forward"))},onKeyDown:function(o){var s=v(o.target);if(s){var i=s.x,c=s.y,u=o.key.toLowerCase(),d=(0,f.yl)(o)&&"b"===u,p=r.getTwoCharacterTileByPrefix(u);if(d)a(l.I8.actions.toggleCellIsBlank(s));else{if((0,f.yl)(o)&&p)return o.preventDefault(),a(l.I8.actions.changeCellValue({x:i,y:c,value:p})),void b("forward");if(r.hasCharacter(u)){var _=i>0,m=i+1<n,g=c+1<t;if(c-1>0){var x=e[c-1][i].tile.character+u;if(r.twoCharacterTiles.includes(x))return void a(l.I8.actions.changeCellValue((0,Je.Z)((0,Ye.Z)({},s),{y:c-1,value:x})))}if(g){var j=u+e[c+1][i].tile.character;if(r.twoCharacterTiles.includes(j))return a(l.I8.actions.changeCellValue((0,Je.Z)((0,Ye.Z)({},s),{value:u}))),a(l.I8.actions.changeCellValue((0,Je.Z)((0,Ye.Z)({},s),{y:c+1,value:h.EMPTY_CELL}))),void b("forward")}if(_){var y=e[c][i-1].tile.character+u;if(r.twoCharacterTiles.includes(y))return void a(l.I8.actions.changeCellValue((0,Je.Z)((0,Ye.Z)({},s),{x:i-1,value:y})))}if(m){var w=u+e[c][i+1].tile.character;if(r.twoCharacterTiles.includes(w))return a(l.I8.actions.changeCellValue((0,Je.Z)((0,Ye.Z)({},s),{value:u}))),a(l.I8.actions.changeCellValue((0,Je.Z)((0,Ye.Z)({},s),{x:i+1,value:h.EMPTY_CELL}))),void b("forward")}if(!g||!m){var C=e[c][i].tile.character+u;if(r.twoCharacterTiles.includes(C))return void a(l.I8.actions.changeCellValue((0,Je.Z)((0,Ye.Z)({},s),{value:C})))}a(l.I8.actions.changeCellValue((0,Je.Z)((0,Ye.Z)({},s),{value:u}))),b("forward")}}}},onSpace:function(e){var t=v(e.target);t&&a(l.I8.actions.toggleCellIsBlank(t))}})}),[m,r,a,_,g,e]);return[{lastDirection:u,refs:o},{onDirectionToggle:g,onFocus:x,onKeyDown:j}]},Et=function(e){var t=e.cellSize,n=e.className,a=e.innerRef,s=(0,l.ix)(l.ZA),i=(0,l.ix)(l.ZO),c=(0,r.Z)(Mt(s),2),u=c[0],d=u.lastDirection,h=u.refs,p=c[1],f=p.onDirectionToggle,_=p.onFocus,m=p.onKeyDown;return(0,o.jsx)(Ct,{className:n,cellSize:t,center:i.center,innerRef:a,lastDirection:d,refs:h,rows:s,onDirectionToggle:f,onFocus:_,onKeyDown:m})},Ot=n(7437),St=n.n(Ot),Bt=function(e){var t=e.children,n=e.className,a=e.Icon,r=e.tooltip,l=(0,$e.Z)(e,["children","className","Icon","tooltip"]),s=ut(r,l);return(0,o.jsx)("button",(0,Je.Z)((0,Ye.Z)({className:i()(St().button,n),type:"button"},l,s),{children:(0,o.jsxs)("span",{className:St().content,children:[(0,o.jsx)("span",{className:St().label,children:t}),(0,o.jsx)(a,{className:St().icon})]})}))},Zt=n(485),It=function(){return(0,o.jsx)("style",{type:"text/css",children:"@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Open+Sans:wght@400;700&family=Roboto+Mono&display=swap');\n\ntext {\n font-family: 'Open Sans';\n}"})},zt=n(9418),Lt=n(4046),Rt=function(e){return Zt.fl+e*(Zt.rV+Zt.ku)},Tt=function(e){return Zt.uX+e*(Zt.rV+Zt.ku)},Ft=function(e,t){return e+2*t*(.5-Math.random())},Pt=function(e){var t=e.cellIndex,n=e.character,a=e.color,r=e.rowIndex,o=e.showPoints,l=zt.literaki[Lt.Locale.EN_US].getCharacterPoints(n.toLowerCase()),s=o?l:void 0,i="number"===typeof l?Zt.d4[l]:Zt.BF,c=Rt(t)+Zt.rV/2,u=Tt(0)+Zt.rV/2;return{character:n,color:a||i,points:s,size:Zt.rV,transform:"rotate(".concat(Ft(0,Zt.a_),", ").concat(c,", ").concat(u,")"),x:Ft(Rt(t),Zt.D),y:Ft(Tt(r),Zt.D)}},At=function(e){var t=e.color,n=e.content,a=e.showPoints,r=n.map((function(e,n){return e.map((function(r,o){var l=e.slice(0,o).reduce((function(e,t){return e+t.length+" ".length}),0);return r.split("").map((function(e,r){return Pt({cellIndex:l+r,character:e,color:t,rowIndex:n,showPoints:a})}))}))}));return r.flat(2)},Dt=function(e){var t=e.reduce((function(e,t){var n=t.reduce((function(e,t){return e+t.length}),0)+Math.max(t.length-1,0);return Math.max(e,n)}),0),n=t*(Zt.rV+Zt.ku)-(0===t?0:Zt.ku),a=e.length*(Zt.rV+Zt.ku)-(0===e.length?0:Zt.ku);return"0 0 ".concat(n," ").concat(a)},Vt=n(6807),Kt=n.n(Vt),qt=function(e){var t=e.character,n=e.className,a=e.color,r=e.points,l=e.size,s=e.transform,i=e.x,c=e.y;return(0,o.jsxs)("g",{className:n,transform:s,children:[(0,o.jsx)("rect",{fill:a,height:l,width:l,x:i,y:c}),(0,o.jsx)("text",{dominantBaseline:"central",fontFamily:"Open Sans",fontSize:.6*l,fontWeight:"bold",textAnchor:"middle",x:i+l/2,y:c+l/2,children:t}),"number"===typeof r&&(0,o.jsx)("text",{dominantBaseline:"text-after-edge",fontFamily:"Open Sans",fontSize:.25*l,fontWeight:"bold",textAnchor:"end",x:i+.9*l,y:c+.95*l,children:r})]})},Ut=function(e){var t,n=e.className,a=e.color,r=e.content,l=e.dropShadow,s=e.showPoints,u=e.style,d=e.wave,h=(0,c.useMemo)((function(){return At({color:a,content:r,showPoints:s})}),[a,r,s]);return(0,o.jsxs)("svg",{className:i()(n,(t={},(0,_.Z)(t,Kt().dropShadow,l),(0,_.Z)(t,Kt().wave,d),t)),style:u,viewBox:Dt(r),xmlns:"http://www.w3.org/2000/svg",children:[(0,o.jsx)(It,{}),h.map((function(e,t){return(0,o.jsx)(qt,{character:e.character,className:Kt().tile,color:e.color,points:e.points,size:e.size,transform:e.transform,x:e.x,y:e.y},t)}))]})},Ht=n(8426),Wt=n.n(Ht),Xt={error:"empty-state.error",info:"empty-state.info",success:"empty-state.success",warning:"empty-state.warning"},Gt={error:Zt.yg,info:Zt.pI,success:Zt.F1,warning:Zt.yr},Qt=function(e){var t=e.className,n=e.children,a=e.type,r=(0,l.qM)(),s=(0,c.useMemo)((function(){return r(Xt[a])}),[r]),u=(0,c.useMemo)((function(){return[[s.toUpperCase()]]}),[s]);return(0,o.jsxs)("div",{className:i()(Wt().emptyState,t),children:[(0,o.jsx)(Ut,{className:Wt().tiles,color:Gt[a],content:u}),(0,o.jsx)("div",{className:Wt().content,children:n})]})},Yt=n(1500),Jt=n.n(Yt),$t=function(e){var t=e.className,n=e.wave,a=void 0===n||n,r=(0,l.qM)(),s=(0,c.useMemo)((function(){return[[r("common.loading").toUpperCase()]]}),[r]);return(0,o.jsxs)("div",{className:i()(Jt().loading,t),children:[(0,o.jsx)("div",{className:Jt().dim}),(0,o.jsx)("div",{className:Jt().logo,children:(0,o.jsx)(Ut,{className:i()(Jt().tiles),content:s,dropShadow:!0,wave:a})})]})},en=n(3424),tn=n.n(en),nn=function(e){var t,n=e.className,a=(0,l.qM)(),r=(0,l.ix)(l.w1),s=r.results,c=r.isLoading,u=s.length>0?s[0].isAllowed:void 0;return(0,o.jsxs)("div",{className:i()(tn().dictionary,n,(t={},(0,_.Z)(t,tn().isAllowed,!0===u),(0,_.Z)(t,tn().isNotAllowed,!1===u),t)),children:[s.map((function(e){var t,n=e.definitions,r=e.isAllowed,l=e.word;return(0,o.jsxs)("div",{className:i()(tn().result,(t={},(0,_.Z)(t,tn().isAllowed,!0===r),(0,_.Z)(t,tn().isNotAllowed,!1===r),t)),children:["undefined"===typeof l&&(0,o.jsx)(Qt,{type:"info",children:a("dictionary.empty-state.uninitialized")}),"undefined"!==typeof l&&(0,o.jsxs)("div",{className:tn().content,children:[l&&(0,o.jsx)("h2",{className:tn().word,children:l}),!1===r&&(0,o.jsx)("div",{children:a("dictionary.empty-state.not-allowed")}),!0===r&&(0,o.jsxs)(o.Fragment,{children:[0===n.length&&(0,o.jsx)("div",{children:a("dictionary.empty-state.no-definitions")}),n.length>0&&(0,o.jsx)("ul",{className:tn().definitions,children:n.map((function(e,t){return(0,o.jsx)("li",{className:tn().definition,children:e},t)}))})]}),!c&&null===r&&(0,o.jsx)("div",{children:a("dictionary.empty-state.no-results")})]})]},l)})),c&&(0,o.jsx)($t,{})]})},an=n(6436),rn=n.n(an),on=function(e){var t=e.className,n=(0,p.I0)(),a=(0,l.qM)(),r=(0,l.ix)(l.w1).input;return(0,o.jsx)("form",{className:i()(rn().dictionaryInput,t),onSubmit:function(e){e.preventDefault(),n(l.lj.actions.submit())},children:(0,o.jsx)("input",{className:rn().input,placeholder:a("dictionary.input.placeholder"),required:!0,type:"text",value:r,onChange:function(e){n(l.lj.actions.changeInput(e.target.value))}})})},ln=n(5890),sn=n.n(ln),cn=function(e){var t=e.children,n=e.className;return(0,o.jsx)("kbd",{className:i()(sn().key,n),children:t})},un=n(3253),dn=n.n(un),hn=n(7682),pn=n.n(hn),fn=function(e){var t=e.className,n=e.Icon,a=e.tooltip,r=(0,$e.Z)(e,["className","Icon","tooltip"]),l=ut(a,r);return(0,o.jsx)("a",(0,Je.Z)((0,Ye.Z)({className:i()(pn().squareButton,t),type:"button"},r,l),{children:(0,o.jsx)("span",{className:pn().content,children:(0,o.jsx)(n,{className:pn().icon})})}))},_n=Object.assign((function(e){var t=e.className,n=e.Icon,a=e.tooltip,r=(0,$e.Z)(e,["className","Icon","tooltip"]),l=ut(a,r);return(0,o.jsx)("button",(0,Je.Z)((0,Ye.Z)({className:i()(pn().squareButton,t),type:"button"},r,l),{children:(0,o.jsx)("span",{className:pn().content,children:(0,o.jsx)(n,{className:pn().icon})})}))}),{Link:fn}),mn=n(5548),vn=n.n(mn),gn=function(e){var t=e.children,n=e.className,a=e.title;return(0,o.jsxs)("section",{className:i()(vn().section,n),children:[(0,o.jsx)("h2",{className:vn().heading,children:a}),(0,o.jsx)("div",{children:t})]})},xn=n(3445),bn=n.n(xn),jn=Object.assign((function(e){var t=e.children,n=e.className,a=e.isOpen,r=e.title,s=e.onClose,c=(0,l.qM)();return(0,o.jsx)(dn(),{className:{afterOpen:bn().afterOpen,base:bn().modal,beforeClose:bn().beforeClose},closeTimeoutMS:Zt.MA,contentLabel:r,isOpen:a,overlayClassName:bn().overlay,onRequestClose:s,children:(0,o.jsxs)("div",{className:i()(bn().sidebar,n),children:[(0,o.jsxs)("div",{className:bn().header,children:[(0,o.jsx)("h1",{className:bn().title,children:r}),(0,o.jsx)(_n,{className:bn().closeButton,Icon:I,tooltip:c("common.close"),onClick:s})]}),(0,o.jsx)("div",{className:bn().content,children:t})]})})}),{Section:gn}),yn=n(8253),wn=n.n(yn),Cn=function(e){var t=e.className,n=e.description,a=e.mapping;return(0,o.jsxs)("div",{className:i()(wn().mapping,t),children:[(0,o.jsx)("h3",{className:wn().description,children:n}),(0,o.jsx)("div",{className:wn().keys,children:a.map((function(e,t){return(0,o.jsxs)(c.Fragment,{children:[(0,o.jsx)("div",{className:wn().group,children:Array.isArray(e)?(0,o.jsxs)(o.Fragment,{children:[e[0],(0,o.jsx)("span",{className:wn().plus,children:"+"}),e[1]]}):e}),a.length>1&&t<a.length-1&&(0,o.jsx)("span",{className:wn().slash,children:"/"})]},t)}))})]})},Nn=(0,o.jsx)(cn,{children:(0,o.jsx)(j,{})}),kn=(0,o.jsx)(cn,{children:(0,o.jsx)(k,{})}),Mn=(0,o.jsx)(cn,{children:(0,o.jsx)(C,{})}),En=(0,o.jsx)(cn,{children:(0,o.jsx)(g,{})}),On=(0,o.jsx)(cn,{children:"\u2190 Backspace"}),Sn=(0,o.jsx)(cn,{children:(0,f.V5)()?"\u2318":"Ctrl"}),Bn=(0,o.jsx)(cn,{children:"Del"}),Zn=(0,o.jsx)(cn,{children:"Enter \u23ce"}),In=(0,o.jsxs)(o.Fragment,{children:[Nn,kn,Mn,En]}),zn=(0,o.jsx)(cn,{children:"\u2423"}),Ln=function(e){var t=e.className,n=e.isOpen,a=e.onClose,s=(0,l.qM)(),i=(0,l.ix)(l.$o);return(0,o.jsxs)(jn,{className:t,isOpen:n,title:s("keyMap"),onClose:a,children:[(0,o.jsxs)(jn.Section,{title:s("keyMap.board-and-rack"),children:[(0,o.jsx)(Cn,{description:s("keyMap.board-and-rack.navigate"),mapping:[In]}),(0,o.jsx)(Cn,{description:s("keyMap.board-and-rack.remove-tile"),mapping:[Bn,On]}),(0,o.jsx)(Cn,{description:s("keyMap.board-and-rack.submit"),mapping:[Zn]}),i.twoCharacterTiles.length>0&&(0,o.jsx)(Cn,{description:s("keyMap.board-and-rack.insert-two-letter-tile"),mapping:[[Sn,(0,o.jsx)(o.Fragment,{children:i.twoCharacterTiles.map((function(e){var t=(0,r.Z)(e,1)[0];return(0,o.jsx)(cn,{children:t.toUpperCase()},t)}))})]]})]}),(0,o.jsxs)(jn.Section,{title:s("keyMap.board"),children:[(0,o.jsx)(Cn,{description:s("keyMap.board.toggle-blank"),mapping:[zn,[Sn,(0,o.jsx)(cn,{children:"B"},"b")]]}),(0,o.jsx)(Cn,{description:s("keyMap.board.toggle-direction"),mapping:[[Sn,In]]})]}),(0,o.jsx)(jn.Section,{title:s("keyMap.rack"),children:(0,o.jsx)(Cn,{description:s("keyMap.rack.insert-blank"),mapping:[zn]})})]})},Rn=[["SCRABBLE"],["SOLVER","2"]],Tn=function(e){var t=e.className,n=e.style;return(0,o.jsx)(Ut,{className:t,content:Rn,style:n})},Fn=n(9308),Pn=n.n(Fn),An=function(e){var t=e.onClear,n=e.onShowKeyMap,a=e.onShowRemainingTiles,r=e.onShowSettings,s=(0,l.qM)(),c=(0,l.ix)(l.En);return(0,o.jsxs)("div",{className:Pn().navButtons,children:[(0,o.jsx)(_n.Link,{className:Pn().button,href:Zt.h4,Icon:Me,rel:"noopener noreferrer",target:"_blank",tooltip:s("github")}),(0,o.jsx)("div",{className:Pn().separator}),(0,o.jsx)(_n,{className:Pn().button,Icon:Se,tooltip:s("keyMap"),onClick:n}),(0,o.jsx)(_n,{className:i()(Pn().button,(0,_.Z)({},Pn().error,c)),Icon:Re,tooltip:s("remaining-tiles"),onClick:a}),(0,o.jsx)("div",{className:Pn().separator}),(0,o.jsx)(_n,{className:Pn().button,Icon:P,tooltip:s("common.clear"),onClick:t}),(0,o.jsx)(_n,{className:Pn().button,Icon:S,tooltip:s("settings"),onClick:r})]})},Dn=n(1664),Vn=n.n(Dn),Kn=n(2747),qn=n.n(Kn),Un=[["HTTP","404"]],Hn=function(){return(0,o.jsx)("div",{className:qn().notFound,children:(0,o.jsx)(Vn(),{href:"/",children:(0,o.jsxs)("a",{className:qn().link,children:[(0,o.jsx)(R,{className:qn().icon}),(0,o.jsx)(Ut,{className:qn().tiles,content:Un})]})})})},Wn=n(6079),Xn=n.n(Wn),Gn=function(e){var t=e.activeIndexRef,n=e.character,a=e.index,r=e.inputRef,s=e.tile,i=e.onKeyDown,u=(0,p.I0)(),d=(0,l.qM)(),_=(0,l.ix)(l.$o),m=(0,l.ix)((function(e){return(0,l.Or)(e,n)})),v=(0,c.useCallback)((function(){t.current=a}),[a]),g=(0,c.useCallback)((function(e){u(l.O_.actions.changeCharacter({character:e,index:a}))}),[a]),x=(0,c.useMemo)((function(){return(0,f.np)({onBackspace:function(){return g(null)},onDelete:function(){return g(null)},onKeyDown:function(e){var t=e.key.toLowerCase(),n=_.getTwoCharacterTileByPrefix(t);(0,f.yl)(e)&&n?(e.preventDefault(),g(n)):(_.hasCharacter(t)||t===h.BLANK)&&g(t),i(e)}})}),[_,g,i]);return(0,o.jsx)(Qe,{autoFocus:0===a,className:Xn().tile,character:null===n?void 0:n,highlighted:null!==s,inputRef:r,isBlank:n===h.BLANK,placeholder:d("rack.placeholder")[a],points:m,raised:!0,size:Zt.I_,tabIndex:0===a?void 0:-1,onFocus:v,onKeyDown:x},a)},Qn=function(e){var t=e.className,n=(0,l.ix)(l.$o),a=(0,l.ix)(l.QB),r=(0,l.ix)(l.z$),s=(0,c.useMemo)((function(){return(0,f.gV)(a,r)}),[a,r]),u=s.length,d=(0,c.useMemo)((function(){return(0,f.Ri)(u).map((function(){return(0,c.createRef)()}))}),[u]),p=(0,c.useRef)(),_=(0,c.useCallback)((function(e){var t=Math.min(Math.max((p.current||0)+e,0),u-1),n=d[t].current;n&&n.focus(),p.current=t}),[p,u,d]),m=(0,c.useMemo)((function(){return(0,f.np)({onArrowLeft:function(e){e.preventDefault(),_(-1)},onArrowRight:function(e){e.preventDefault(),_(1)},onBackspace:function(){_(-1)},onKeyDown:function(e){var t=e.key.toLowerCase();(n.hasCharacter(t)||t===h.BLANK)&&_(1)}})}),[_,n]);return(0,o.jsx)("div",{className:i()(Xn().rack,t),children:s.map((function(e,t){var n=e.character,a=e.tile;return(0,o.jsx)(Gn,{activeIndexRef:p,character:n,index:t,inputRef:d[t],tile:a,onKeyDown:m},t)}))})},Yn=n(9627),Jn=n.n(Yn),$n=function(e){var t=e.checked,n=e.children,a=e.className,r=e.disabled,l=e.id,s=e.name,c=e.value,u=e.onChange;return(0,o.jsxs)("label",{className:i()(Jn().radio,a,(0,_.Z)({},Jn().checked,t)),htmlFor:l,children:[(0,o.jsx)("input",{checked:t,className:Jn().input,disabled:r,id:l,name:s,type:"radio",value:c,onChange:u}),(0,o.jsx)("div",{className:Jn().icon}),(0,o.jsx)("div",{className:Jn().content,children:n})]})},ea=n(9365),ta=n.n(ea),na=function(e){var t,n=e.tile,a=n.character,r=n.count,s=r-n.usedCount,c=(0,l.ix)((function(e){return(0,l.Or)(e,a)}));return(0,o.jsxs)("div",{className:i()(ta().character,(t={},(0,_.Z)(t,ta().finished,s<=0),(0,_.Z)(t,ta().overused,s<0),t)),children:[(0,o.jsx)(Qe,{character:a,className:ta().tile,disabled:!0,isBlank:a===h.BLANK,points:c,raised:!0,size:Zt.mM}),(0,o.jsxs)("div",{className:ta().count,children:[s," / ",r]})]},a)},aa=n(5343),ra=n.n(aa),oa=function(e){var t=e.className,n=e.isOpen,a=e.onClose,r=(0,l.qM)(),s=(0,l.ix)(l.Yj);return(0,o.jsx)(jn,{className:t,isOpen:n,title:r("remaining-tiles"),onClose:a,children:s.map((function(e){var t=e.remainingCount,n=e.tiles,a=e.translationKey,l=e.totalCount;return(0,o.jsxs)("div",{className:ra().group,children:[(0,o.jsx)("h2",{className:ra().title,children:"".concat(r(a)," (").concat(t," / ").concat(l,")")}),(0,o.jsx)("div",{className:ra().content,children:n.map((function(e){return(0,o.jsx)(na,{tile:e},e.character)}))})]},a)}))})},la=n(6457),sa=n(2813),ia=n.n(sa),ca=function(e){var t=e.className,n=(0,p.I0)(),a=(0,l.qM)(),r=(0,l.ix)(l.QL),s=(0,c.useState)(r),u=s[0],d=s[1];return(0,o.jsx)("form",{className:i()(ia().resultsInput,t),children:(0,o.jsx)("input",{className:ia().input,placeholder:a("results.input.placeholder"),type:"text",value:u,onChange:function(e){var t=e.target.value;d(t),(0,f.Kj)(t)&&n(l._C.actions.changeQuery(t))}})})},ua=n(3620),da=n(9474),ha=n.n(da),pa=[{className:ha().word,id:ua.M.Word,translationKey:"common.word"},{className:ha().stat,id:ua.M.TilesCount,translationKey:"common.tiles"},{className:ha().stat,id:ua.M.ConsonantsCount,translationKey:"common.consonants"},{className:ha().stat,id:ua.M.VowelsCount,translationKey:"common.vowels"},{className:ha().stat,id:ua.M.BlanksCount,translationKey:"common.blanks"},{className:ha().stat,id:ua.M.WordsCount,translationKey:"common.words"},{className:ha().points,id:ua.M.Points,translationKey:"common.points"}],fa=function(e){var t=e.column,n=(0,p.I0)(),a=(0,l.qM)(),r=(0,l.ix)(l.R),s=(0,l.ix)(l.sH),c=ut(a(t.translationKey));return(0,o.jsx)("button",(0,Je.Z)((0,Ye.Z)({className:i()(ha().headerButton,t.className),type:"button",onClick:function(){return e=t.id,void n(l._C.actions.sort(e));var e}},c),{children:(0,o.jsxs)("span",{className:ha().cell,children:[(0,o.jsx)("span",{className:ha().headerButtonLabel,children:a(t.translationKey)}),r===t.id&&(0,o.jsxs)(o.Fragment,{children:[s===ua.S.Ascending&&(0,o.jsx)(Ve,{className:ha().sortIcon}),s===ua.S.Descending&&(0,o.jsx)(Pe,{className:ha().sortIcon})]})]})}),t.id)},_a=function(e){var t=e.className,n=e.translationKey,a=e.tooltip,r=e.value,s=(0,l.qM)(),c=ut("".concat(s(n),": ").concat(a||r));return(0,o.jsx)("span",(0,Je.Z)((0,Ye.Z)({className:i()(ha().cell,t)},c),{children:r}))},ma=function(e){var t=e.index,n=e.style,a=(0,p.I0)(),r=(0,l.ix)(l.dN)[t],s=r.words.slice(1).join(" / ").toLocaleUpperCase();return(0,o.jsx)("button",{className:ha().result,style:n,type:"button",onBlur:function(){a(l._C.actions.changeResultCandidate(null))},onClick:function(){a(l._C.actions.applyResult(r))},onFocus:function(){a(l._C.actions.changeResultCandidate(r))},onMouseEnter:function(){a(l._C.actions.changeResultCandidate(r))},onMouseLeave:function(){a(l._C.actions.changeResultCandidate(null))},children:(0,o.jsxs)("span",{className:ha().resultContent,children:[(0,o.jsx)(_a,{className:ha().word,translationKey:"common.word",value:"".concat(r.word.toLocaleUpperCase()).concat(s.length>0?" (".concat(s,")"):"")}),(0,o.jsx)(_a,{className:ha().stat,translationKey:"common.tiles",value:r.tilesCount}),(0,o.jsx)(_a,{className:ha().stat,translationKey:"common.consonants",value:r.consonantsCount}),(0,o.jsx)(_a,{className:ha().stat,translationKey:"common.vowels",value:r.vowelsCount}),(0,o.jsx)(_a,{className:ha().stat,translationKey:"common.blanks",value:r.blanksCount}),(0,o.jsx)(_a,{className:ha().stat,translationKey:"common.words",tooltip:"".concat(r.wordsCount," (").concat(r.words.join(" / ").toLocaleUpperCase(),")"),value:r.wordsCount}),(0,o.jsx)(_a,{className:ha().points,translationKey:"common.points",value:r.points})]})})},va=function(){var e=(0,p.I0)(),t=(0,l.qM)(),n=(0,l.ix)(l.xU),a=(0,l.ix)(l.QB),r=(0,l.ix)(l.Mj),s=a.some((function(e){return null!==e}));return(0,o.jsx)(Bt,{className:ha().outdatedButton,disabled:n||!r||!s,Icon:Ie,type:"submit",onClick:function(){e(l.TP.actions.submit())},children:t("results.solve")})},ga=function(e){var t=e.height,n=e.width,a=(0,l.qM)(),r=(0,l.ix)(l.f2),s=(0,l.ix)(l.dN),c=(0,l.ix)(l.xU),u=(0,l.ix)(l.Mj);return(0,o.jsxs)("div",{className:ha().results,children:[(0,o.jsx)("div",{className:ha().header,children:pa.map((function(e){return(0,o.jsx)(fa,{column:e},e.id)}))}),"undefined"===typeof s&&(0,o.jsxs)(Qt,{className:ha().emptyState,type:"info",children:[a("results.empty-state.uninitialized"),(0,o.jsx)(va,{})]}),"undefined"!==typeof s&&"undefined"!==typeof r&&(0,o.jsxs)(o.Fragment,{children:[u&&(0,o.jsxs)(Qt,{className:ha().emptyState,type:"info",children:[a("results.empty-state.outdated"),(0,o.jsx)(va,{})]}),!u&&(0,o.jsxs)(o.Fragment,{children:[0===r.length&&(0,o.jsx)(Qt,{className:ha().emptyState,type:"warning",children:a("results.empty-state.no-results")}),r.length>0&&0===s.length&&(0,o.jsx)(Qt,{className:ha().emptyState,type:"info",children:a("results.empty-state.no-filtered-results")}),r.length>0&&s.length>0&&(0,o.jsx)(la.t7,{className:i()(ha().list,(0,_.Z)({},ha().outdated,u)),height:t-Zt.$L-Zt.qp,itemCount:s.length,itemSize:Zt.rx,width:n,children:ma}),r.length>0&&(0,o.jsx)(ca,{className:ha().input})]})]}),c&&(0,o.jsx)($t,{})]})},xa=n(1511),ba=n.n(xa),ja=function(e){var t=e.children,n=e.className,a=e.contentClassName,r=e.onAnimationEnd;return(0,o.jsx)("div",{className:i()(ba().screen,n),onAnimationEnd:r,children:(0,o.jsx)("div",{className:i()(ba().content,a),children:t})})},ya=n(7352),wa=n.n(ya),Ca="null",Na=function(e){if("left"===e||"right"===e)return e;if(e===Ca)return null;throw new Error('"'.concat(e,'" is not valid. Should be "left", "right", or "').concat(Ca,'"'))},ka=function(e){var t=e.className,n=e.disabled,a=(0,p.I0)(),r=(0,l.qM)(),s=(0,l.ix)(l.uz),i=[{label:r("settings.autoGroupTiles.left"),value:"left"},{label:r("settings.autoGroupTiles.right"),value:"right"},{label:r("settings.autoGroupTiles.null"),value:Ca}],c=function(e){var t=Na(e.target.value);a(l.xj.actions.changeAutoGroupTiles(t))};return(0,o.jsx)("div",{className:t,children:i.map((function(e){return(0,o.jsx)($n,{checked:s===Na(e.value),className:wa().option,disabled:n,id:"autoGroupTiles",name:"autoGroupTiles",value:e.value,onChange:c,children:(0,o.jsx)("div",{className:wa().label,children:e.label})},e.value)}))})},Ma=n(4116),Ea=n.n(Ma),Oa=[{label:zt.scrabble.name,value:zt.scrabble.id},{label:zt.literaki.name,value:zt.literaki.id}],Sa=function(e){var t=e.className,n=e.disabled,a=(0,p.I0)(),r=(0,l.ix)(l.md),s=function(e){a(l.xj.actions.changeConfigId(e.target.value))};return(0,o.jsx)("div",{className:t,children:Oa.map((function(e){return(0,o.jsx)($n,{checked:r===e.value,className:Ea().option,disabled:n,id:"configId",name:"configId",value:e.value,onChange:s,children:(0,o.jsx)("div",{className:Ea().label,children:e.label})},e.value)}))})},Ba=n(7689),Za=n.n(Ba),Ia=[{className:Za().gb,Icon:oe,label:"English (GB)",value:Lt.Locale.EN_GB},{className:Za().us,Icon:je,label:"English (US)",value:Lt.Locale.EN_US},{className:Za().fr,Icon:te,label:"Fran\xe7ais",value:Lt.Locale.FR_FR},{className:Za().de,Icon:Ce,label:"Deutsch",value:Lt.Locale.DE_DE},{className:Za().pl,Icon:me,label:"Polski",value:Lt.Locale.PL_PL},{className:Za().es,Icon:X,label:"Espa\xf1ol",value:Lt.Locale.ES_ES}],za=function(e){var t=e.className,n=e.disabled,a=(0,p.I0)(),r=(0,l.ix)(l.fN),s=function(e){var t=e.target.value;a(l.xj.actions.changeLocale(t))};return(0,o.jsx)("div",{className:t,children:Ia.map((function(e){var a=e.Icon,l=(0,$e.Z)(e,["Icon"]);return(0,o.jsx)($n,{checked:r===l.value,className:i()(Za().option,t,(0,_.Z)({},Za().checked,r===l.value)),disabled:n,id:"locale",name:"locale",value:l.value,onChange:s,children:(0,o.jsxs)("span",{className:Za().label,children:[(0,o.jsx)(a,{className:i()(Za().flag,l.className)}),(0,o.jsx)("span",{children:l.label})]})},l.value)}))})},La=function(e){var t=e.className,n=e.isOpen,a=e.onClose,r=(0,l.qM)();return(0,o.jsxs)(jn,{className:t,isOpen:n,title:r("settings"),onClose:a,children:[(0,o.jsx)(jn.Section,{title:r("settings.game"),children:(0,o.jsx)(Sa,{disabled:!n})}),(0,o.jsx)(jn.Section,{title:r("settings.language"),children:(0,o.jsx)(za,{disabled:!n})}),(0,o.jsx)(jn.Section,{title:r("settings.autoGroupTiles"),children:(0,o.jsx)(ka,{disabled:!n})})]})},Ra=n(6719),Ta=n.n(Ra),Fa=function(e){var t=e.className,n=e.forceShow,a=e.onAnimationEnd;return(0,o.jsxs)(ja,{className:i()(Ta().splash,t,(0,_.Z)({},Ta().animated,!n)),onAnimationEnd:a,children:[(0,o.jsxs)("div",{className:Ta().logos,children:[(0,o.jsx)(Tn,{className:Ta().logoGrayscale}),(0,o.jsx)(Tn,{className:Ta().logoColor})]}),(0,o.jsx)("h1",{className:Ta().author,children:"by Kamil Mielnik"})]})},Pa=n(538),Aa=n.n(Pa),Da=(0,c.forwardRef)((function(e,t){var n=e.children,a=e.className,r=(0,$e.Z)(e,["children","className"]);return(0,o.jsx)("div",(0,Je.Z)((0,Ye.Z)({className:i()(Aa().well,a),ref:t},r),{children:n}))}))},3165:function(e,t,n){"use strict";n.d(t,{Av:function(){return r},_:function(){return f},vI:function(){return g},Ld:function(){return b}});var a=n(4829),r=function(){var e=(0,a.Z)("(max-height: 800px)",!1),t=(0,a.Z)("(max-width: 1024px)",!1);return e||t},o=n(7294),l=n(9473),s=n(8127),i=n(6983),c=function(){var e=(0,l.I0)(),t=(0,i.ix)(i.ZO);(0,s.Z)((function(){var t=i.Xb.getBoard();t&&e(i.I8.actions.init(t))})),(0,o.useEffect)((function(){t&&i.Xb.setBoard(t)}),[t])},u=function(){var e=(0,l.I0)(),t=(0,i.ix)(i.md);(0,s.Z)((function(){var t=i.Xb.getConfigId();t&&e(i.xj.actions.init({configId:t}))})),(0,o.useEffect)((function(){t&&i.Xb.setConfigId(t)}),[t])},d=n(2237),h=function(){var e=(0,l.I0)(),t=(0,i.ix)(i.fN);(0,s.Z)((function(){var t=i.Xb.getLocale();e(t?i.xj.actions.init({locale:t}):i.xj.actions.init({locale:(0,d.Nj)()}))})),(0,o.useEffect)((function(){t&&i.Xb.setLocale(t)}),[t])},p=function(){var e=(0,l.I0)(),t=(0,i.ix)(i.QB);(0,s.Z)((function(){var t=i.Xb.getRack();t&&e(i.O_.actions.init(t))})),(0,o.useEffect)((function(){t&&i.Xb.setRack(t)}),[t])},f=function(){p(),c(),u(),h()},_=n(5893),m=n(745),v=n(779),g=d.J8?function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.disabled,a=void 0!==n&&n,r=t.tagName,l=void 0===r?"div":r,s=(0,o.useRef)(null);(0,o.useLayoutEffect)((function(){if(a)return d.ZT;var e=document.createElement(l);document.body.appendChild(e);var t=(0,m.createRoot)(e);return s.current=t,function(){setTimeout((function(){s.current=null,t.unmount(),e.remove()}),0)}}),[a,l]),(0,o.useLayoutEffect)((function(){s.current&&s.current.render((0,_.jsx)(v.Z,{children:e}))}),[e,a,s])}:d.ZT,x=n(7632),b=function(){return(0,o.useRef)((0,x.Z)()).current}},2761:function(e){e.exports={board:"Board_board__eA_bB",row:"Board_row__mezHN"}},2290:function(e){e.exports={cell:"Cell_cell__2GOSl",bonusWord2:"Cell_bonusWord2__Ztd1C",bonusWord3:"Cell_bonusWord3__eTB6G",bonusStart:"Cell_bonusStart__zy3BV",bonusCharacter1:"Cell_bonusCharacter1__zJUuA",bonusCharacter2:"Cell_bonusCharacter2__HZDn8",bonusCharacter3:"Cell_bonusCharacter3__pWf1f",bonusCharacter5:"Cell_bonusCharacter5__LdDrj",bonusCharacterMultiplier2:"Cell_bonusCharacterMultiplier2__Qpcd7",bonusCharacterMultiplier3:"Cell_bonusCharacterMultiplier3__0qtZY",characterPoints1:"Cell_characterPoints1__CKxm0",characterPoints2:"Cell_characterPoints2__QkYnj",characterPoints3:"Cell_characterPoints3___SyO2",characterPoints5:"Cell_characterPoints5___OS_7",candidate:"Cell_candidate__qGOhc",actions:"Cell_actions__YOyrG",action:"Cell_action___13Yo",filterCell:"Cell_filterCell__f5FRe",toggleDirection:"Cell_toggleDirection__1WgpQ",right:"Cell_right__ItPQR",blank:"Cell_blank__n7TRD",active:"Cell_active__L88UB",filtered:"Cell_filtered__16gx1",iconContainer:"Cell_iconContainer__luGh5",flagContainer:"Cell_flagContainer__A_IDX",flag:"Cell_flag__hPqWD",star:"Cell_star__qeUuH"}},7437:function(e){e.exports={button:"Button_button__PjVhE",content:"Button_content__XZA3a",icon:"Button_icon__DJGKY",label:"Button_label__vFl5U"}},3424:function(e){e.exports={dictionary:"Dictionary_dictionary__0CM4j",result:"Dictionary_result__eFJ65",isAllowed:"Dictionary_isAllowed__VfACe",content:"Dictionary_content__Ehz1U",isNotAllowed:"Dictionary_isNotAllowed__HvWIM",word:"Dictionary_word__Y2PlX",definitions:"Dictionary_definitions__UBslC",definition:"Dictionary_definition__lU1Vz"}},6436:function(e){e.exports={dictionaryInput:"DictionaryInput_dictionaryInput__fsGZD",input:"DictionaryInput_input__0ed6F"}},8426:function(e){e.exports={emptyState:"EmptyState_emptyState__iOAMZ",tiles:"EmptyState_tiles____Cln"}},5890:function(e){e.exports={key:"Key_key__JS7L0"}},8253:function(e){e.exports={mapping:"Mapping_mapping__GQrAe",description:"Mapping_description__osefE",keys:"Mapping_keys__BBLHM",group:"Mapping_group__4H8Aw",plus:"Mapping_plus__aoyZw",slash:"Mapping_slash__xSLL1"}},1500:function(e){e.exports={loading:"Loading_loading__RkVCa",dim:"Loading_dim__H3eXg",logo:"Loading_logo__1hwt4",tiles:"Loading_tiles__RNn33"}},9308:function(e){e.exports={navButtons:"NavButtons_navButtons__2jdaO",button:"NavButtons_button__1mjyl",separator:"NavButtons_separator__4FwOF",error:"NavButtons_error__UMVHy"}},2747:function(e){e.exports={notFound:"NotFound_notFound__yhPFA",link:"NotFound_link__a1OqI",icon:"NotFound_icon__zBP4O",tiles:"NotFound_tiles__Nxd8Z"}},6807:function(e){e.exports={wave:"PlainTiles_wave__MUPo5",tile:"PlainTiles_tile__4eIjX",dropShadow:"PlainTiles_dropShadow__TjPAL",hide:"PlainTiles_hide__ZXQ7t",progress:"PlainTiles_progress__GEq5G",pulse:"PlainTiles_pulse__MTQRB"}},6079:function(e){e.exports={rack:"Rack_rack__uEE8X",tile:"Rack_tile__kMzR_"}},9627:function(e){e.exports={radio:"Radio_radio__06IBr",icon:"Radio_icon__ORxR0",checked:"Radio_checked__MlqJv",input:"Radio_input__PFpGB",content:"Radio_content__08chi"}},9365:function(e){e.exports={character:"Character_character__FN97z",finished:"Character_finished__DsFyj",overused:"Character_overused__PEXhw",tile:"Character_tile__lqZEb",count:"Character_count__SSxGA"}},5343:function(e){e.exports={group:"RemainingTiles_group___8ILF",title:"RemainingTiles_title__QQYTv",content:"RemainingTiles_content__5cnQv"}},9474:function(e){e.exports={results:"Results_results__258ah",emptyState:"Results_emptyState__qSRMr",list:"Results_list__zp7CV",outdated:"Results_outdated__4j0Ql",header:"Results_header__RmHXo",headerButton:"Results_headerButton__qNx0w",headerButtonLabel:"Results_headerButtonLabel__XQiIP",result:"Results_result__bpPGb",resultContent:"Results_resultContent__fynvQ",word:"Results_word__j20u_",cell:"Results_cell__13BH5",stat:"Results_stat__EguZM",points:"Results_points__7BAKE",outdatedButton:"Results_outdatedButton__5fzwS",sortIcon:"Results_sortIcon__y02RA",input:"Results_input__B3K40"}},2813:function(e){e.exports={resultsInput:"ResultsInput_resultsInput__geMao",input:"ResultsInput_input__dc2PT"}},1511:function(e){e.exports={screen:"Screen_screen__VnMC9",closeButton:"Screen_closeButton__0QT6U",content:"Screen_content__t2VCW"}},7352:function(e){e.exports={option:"AutoGroupTilesSetting_option__cNX7P",label:"AutoGroupTilesSetting_label__njnKi"}},4116:function(e){e.exports={option:"ConfigSetting_option__T_XJr",label:"ConfigSetting_label__SKiut"}},7689:function(e){e.exports={option:"LocaleSetting_option__86eJS",flag:"LocaleSetting_flag__B1FNp",checked:"LocaleSetting_checked__9aDcB",label:"LocaleSetting_label__Nl2tL",es:"LocaleSetting_es__o6mp8",fr:"LocaleSetting_fr__h7FxL",gb:"LocaleSetting_gb__qt9o9",pl:"LocaleSetting_pl__Xg3Ib",us:"LocaleSetting_us__ov8al",de:"LocaleSetting_de__73PFW"}},3445:function(e){e.exports={modal:"Sidebar_modal__pavmk",afterOpen:"Sidebar_afterOpen__Y7kOz",sidebar:"Sidebar_sidebar__pTTPu",beforeClose:"Sidebar_beforeClose__vzZNQ",overlay:"Sidebar_overlay__fZ2ki",header:"Sidebar_header__6FiSo",title:"Sidebar_title__pzTL8",closeButton:"Sidebar_closeButton__TjUpw",content:"Sidebar_content__lLjwZ"}},5548:function(e){e.exports={section:"Section_section__Rd7qk",heading:"Section_heading___PU_r"}},6719:function(e){e.exports={splash:"Splash_splash__DJBx_",animated:"Splash_animated__p0GNp",hide:"Splash_hide__4sfov",logos:"Splash_logos__pFer4",pulse:"Splash_pulse__bc8xX",logoColor:"Splash_logoColor__InOR_",progress:"Splash_progress__82M_I",logoGrayscale:"Splash_logoGrayscale__qe_QT",author:"Splash_author__0gDgp",wave:"Splash_wave___xjSZ"}},7682:function(e){e.exports={squareButton:"SquareButton_squareButton__qwR9a",content:"SquareButton_content__1ucqM",icon:"SquareButton_icon__t5YSC"}},5101:function(e){e.exports={tile:"Tile_tile__14nuL",raised:"Tile_raised__WKori",points1:"Tile_points1__yl4Jl",points2:"Tile_points2__Xsbcp",points3:"Tile_points3__lJKOJ",points4:"Tile_points4__IylBI",points5:"Tile_points5__Kzick",blank:"Tile_blank__q2Ujv",character:"Tile_character__2XzcR",highlighted:"Tile_highlighted__eg00X",points:"Tile_points__z39vV"}},194:function(e){e.exports={ARROW_SIZE:"4px",PREVENT_OVERFLOW:"10px",OFFSET:"2px",tooltip:"Tooltip_tooltip__98Sw9",top:"Tooltip_top__Vk7yg",arrow:"Tooltip_arrow__9oy08",right:"Tooltip_right__kORxq",bottom:"Tooltip_bottom__QwH6o",left:"Tooltip_left__bSM_7"}},538:function(e){e.exports={well:"Well_well__WTn5e"}}}]);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[197],{6141:function(n,u,_){(window.__NEXT_P=window.__NEXT_P||[]).push(["/404",function(){return _(9622)}])},9622:function(n,u,_){"use strict";_.r(u);var t=_(
|
|
1
|
+
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[197],{6141:function(n,u,_){(window.__NEXT_P=window.__NEXT_P||[]).push(["/404",function(){return _(9622)}])},9622:function(n,u,_){"use strict";_.r(u);var t=_(6615);u.default=t.TX}},function(n){n.O(0,[758,615,774,888,179],(function(){return u=6141,n(n.s=u);var u}));var u=n.O();_N_E=u}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[888],{7079:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=n(r(3432)),c=n(r(8964)),i=[o.default,c.default];t.default=e=>{const t=i.find((({id:t})=>t===e));if(!t)throw new Error(`Invalid "configId" parameter: not one of ${i.map((({id:e})=>e)).join("/")}`);return t}},3632:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=n(r(7079));t.default=(e,t)=>(0,o.default)(e)[t]},9418:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.scrabble=t.literaki=t.isConfigId=t.getLocaleConfig=t.getConfig=void 0;var o=r(7079);Object.defineProperty(t,"getConfig",{enumerable:!0,get:function(){return n(o).default}});var c=r(3632);Object.defineProperty(t,"getLocaleConfig",{enumerable:!0,get:function(){return n(c).default}});var i=r(5582);Object.defineProperty(t,"isConfigId",{enumerable:!0,get:function(){return n(i).default}});var a=r(3432);Object.defineProperty(t,"literaki",{enumerable:!0,get:function(){return n(a).default}});var u=r(8964);Object.defineProperty(t,"scrabble",{enumerable:!0,get:function(){return n(u).default}})},5582:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=n(r(3432)),c=n(r(8964)),i=[o.default,c.default];t.default=e=>i.some((({id:t})=>t===e))},2376:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(7618),o=[{multiplier:3,score:5,type:n.BONUS_CHARACTER,x:0,y:0},{multiplier:3,type:n.BONUS_WORD,x:2,y:0},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:5,y:0},{multiplier:3,score:5,type:n.BONUS_CHARACTER,x:7,y:0},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:9,y:0},{multiplier:3,type:n.BONUS_WORD,x:12,y:0},{multiplier:3,score:5,type:n.BONUS_CHARACTER,x:14,y:0},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:4,y:1},{multiplier:3,score:5,type:n.BONUS_CHARACTER,x:6,y:1},{multiplier:3,score:5,type:n.BONUS_CHARACTER,x:8,y:1},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:10,y:1},{multiplier:3,type:n.BONUS_WORD,x:0,y:2},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:3,y:2},{multiplier:2,type:n.BONUS_WORD,x:5,y:2},{multiplier:3,score:1,type:n.BONUS_CHARACTER,x:7,y:2},{multiplier:2,type:n.BONUS_WORD,x:9,y:2},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:11,y:2},{multiplier:3,type:n.BONUS_WORD,x:14,y:2},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:2,y:3},{multiplier:2,type:n.BONUS_WORD,x:4,y:3},{multiplier:3,score:1,type:n.BONUS_CHARACTER,x:6,y:3},{multiplier:3,score:1,type:n.BONUS_CHARACTER,x:8,y:3},{multiplier:2,type:n.BONUS_WORD,x:10,y:3},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:12,y:3},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:1,y:4},{multiplier:2,type:n.BONUS_WORD,x:3,y:4},{multiplier:3,score:1,type:n.BONUS_CHARACTER,x:5,y:4},{multiplier:3,score:1,type:n.BONUS_CHARACTER,x:9,y:4},{multiplier:2,type:n.BONUS_WORD,x:11,y:4},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:13,y:4},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:0,y:5},{multiplier:2,type:n.BONUS_WORD,x:2,y:5},{multiplier:3,score:1,type:n.BONUS_CHARACTER,x:4,y:5},{multiplier:3,score:3,type:n.BONUS_CHARACTER,x:7,y:5},{multiplier:3,score:1,type:n.BONUS_CHARACTER,x:10,y:5},{multiplier:2,type:n.BONUS_WORD,x:12,y:5},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:14,y:5},{multiplier:3,score:5,type:n.BONUS_CHARACTER,x:1,y:6},{multiplier:3,score:1,type:n.BONUS_CHARACTER,x:3,y:6},{multiplier:3,score:3,type:n.BONUS_CHARACTER,x:6,y:6},{multiplier:3,score:3,type:n.BONUS_CHARACTER,x:8,y:6},{multiplier:3,score:1,type:n.BONUS_CHARACTER,x:11,y:6},{multiplier:3,score:5,type:n.BONUS_CHARACTER,x:13,y:6},{multiplier:3,score:5,type:n.BONUS_CHARACTER,x:0,y:7},{multiplier:3,score:1,type:n.BONUS_CHARACTER,x:2,y:7},{multiplier:3,score:3,type:n.BONUS_CHARACTER,x:5,y:7},{multiplier:3,score:5,type:n.BONUS_CHARACTER,x:7,y:7},{multiplier:3,score:3,type:n.BONUS_CHARACTER,x:9,y:7},{multiplier:3,score:1,type:n.BONUS_CHARACTER,x:12,y:7},{multiplier:3,score:5,type:n.BONUS_CHARACTER,x:14,y:7},{multiplier:3,score:5,type:n.BONUS_CHARACTER,x:1,y:8},{multiplier:3,score:1,type:n.BONUS_CHARACTER,x:3,y:8},{multiplier:3,score:3,type:n.BONUS_CHARACTER,x:6,y:8},{multiplier:3,score:3,type:n.BONUS_CHARACTER,x:8,y:8},{multiplier:3,score:1,type:n.BONUS_CHARACTER,x:11,y:8},{multiplier:3,score:5,type:n.BONUS_CHARACTER,x:13,y:8},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:0,y:9},{multiplier:2,type:n.BONUS_WORD,x:2,y:9},{multiplier:3,score:1,type:n.BONUS_CHARACTER,x:4,y:9},{multiplier:3,score:3,type:n.BONUS_CHARACTER,x:7,y:9},{multiplier:3,score:1,type:n.BONUS_CHARACTER,x:10,y:9},{multiplier:2,type:n.BONUS_WORD,x:12,y:9},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:14,y:9},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:1,y:10},{multiplier:2,type:n.BONUS_WORD,x:3,y:10},{multiplier:3,score:1,type:n.BONUS_CHARACTER,x:5,y:10},{multiplier:3,score:1,type:n.BONUS_CHARACTER,x:9,y:10},{multiplier:2,type:n.BONUS_WORD,x:11,y:10},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:13,y:10},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:2,y:11},{multiplier:2,type:n.BONUS_WORD,x:4,y:11},{multiplier:3,score:1,type:n.BONUS_CHARACTER,x:6,y:11},{multiplier:3,score:1,type:n.BONUS_CHARACTER,x:8,y:11},{multiplier:2,type:n.BONUS_WORD,x:10,y:11},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:12,y:11},{multiplier:3,type:n.BONUS_WORD,x:0,y:12},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:3,y:12},{multiplier:2,type:n.BONUS_WORD,x:5,y:12},{multiplier:3,score:1,type:n.BONUS_CHARACTER,x:7,y:12},{multiplier:2,type:n.BONUS_WORD,x:9,y:12},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:11,y:12},{multiplier:3,type:n.BONUS_WORD,x:14,y:12},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:4,y:13},{multiplier:3,score:5,type:n.BONUS_CHARACTER,x:6,y:13},{multiplier:3,score:5,type:n.BONUS_CHARACTER,x:8,y:13},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:10,y:13},{multiplier:3,score:5,type:n.BONUS_CHARACTER,x:0,y:14},{multiplier:3,type:n.BONUS_WORD,x:2,y:14},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:5,y:14},{multiplier:3,score:5,type:n.BONUS_CHARACTER,x:7,y:14},{multiplier:3,score:2,type:n.BONUS_CHARACTER,x:9,y:14},{multiplier:3,type:n.BONUS_WORD,x:12,y:14},{multiplier:3,score:5,type:n.BONUS_CHARACTER,x:14,y:14}];t.default=o},3432:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=r(4477);Object.defineProperty(t,"default",{enumerable:!0,get:function(){return n(o).default}})},4477:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(4046),c=n(r(2376)),i=r(7529),a={allTilesBonusScore:50,blankScore:0,blanksCount:2,boardHeight:15,boardWidth:15,bonuses:c.default,id:"literaki",maximumCharactersCount:7,name:"Literaki"},u={id:a.id,name:a.name,[o.Locale.DE_DE]:o.Config.fromJson({...a,tiles:i.tilesDe}),[o.Locale.EN_GB]:o.Config.fromJson({...a,tiles:i.tilesEn}),[o.Locale.EN_US]:o.Config.fromJson({...a,tiles:i.tilesEn}),[o.Locale.ES_ES]:o.Config.fromJson({...a,tiles:i.tilesEs}),[o.Locale.FR_FR]:o.Config.fromJson({...a,tiles:i.tilesFr}),[o.Locale.PL_PL]:o.Config.fromJson({...a,tiles:i.tilesPl})};t.default=u},7529:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.tilesDe=t.tilesPl=t.tilesFr=t.tilesEs=t.tilesEn=void 0;var o=r(7910);Object.defineProperty(t,"tilesEn",{enumerable:!0,get:function(){return n(o).default}});var c=r(3029);Object.defineProperty(t,"tilesEs",{enumerable:!0,get:function(){return n(c).default}});var i=r(9541);Object.defineProperty(t,"tilesFr",{enumerable:!0,get:function(){return n(i).default}});var a=r(2647);Object.defineProperty(t,"tilesPl",{enumerable:!0,get:function(){return n(a).default}});var u=r(7911);Object.defineProperty(t,"tilesDe",{enumerable:!0,get:function(){return n(u).default}})},7911:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.default=[{character:"a",count:5,score:1},{character:"\xe4",count:1,score:6},{character:"b",count:2,score:3},{character:"c",count:2,score:4},{character:"d",count:4,score:1},{character:"e",count:15,score:1},{character:"f",count:2,score:4},{character:"g",count:3,score:2},{character:"h",count:4,score:2},{character:"i",count:6,score:1},{character:"j",count:1,score:6},{character:"k",count:2,score:4},{character:"l",count:3,score:2},{character:"m",count:4,score:3},{character:"n",count:9,score:1},{character:"o",count:3,score:2},{character:"\xf6",count:1,score:8},{character:"p",count:1,score:4},{character:"q",count:1,score:10},{character:"r",count:6,score:1},{character:"s",count:7,score:1},{character:"t",count:6,score:1},{character:"u",count:6,score:1},{character:"\xfc",count:1,score:6},{character:"v",count:1,score:6},{character:"w",count:1,score:3},{character:"x",count:1,score:8},{character:"y",count:1,score:10},{character:"z",count:1,score:3}]},7910:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.default=[{character:"a",count:9,score:1},{character:"b",count:2,score:3},{character:"c",count:2,score:3},{character:"d",count:4,score:2},{character:"e",count:12,score:1},{character:"f",count:2,score:4},{character:"g",count:3,score:2},{character:"h",count:2,score:4},{character:"i",count:9,score:1},{character:"j",count:1,score:8},{character:"k",count:1,score:5},{character:"l",count:4,score:1},{character:"m",count:2,score:3},{character:"n",count:6,score:1},{character:"o",count:8,score:1},{character:"p",count:2,score:3},{character:"q",count:1,score:10},{character:"r",count:6,score:1},{character:"s",count:4,score:1},{character:"t",count:6,score:1},{character:"u",count:4,score:1},{character:"v",count:2,score:4},{character:"w",count:2,score:4},{character:"x",count:1,score:8},{character:"y",count:2,score:4},{character:"z",count:1,score:10}]},3029:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.default=[{character:"a",count:12,score:1},{character:"b",count:2,score:3},{character:"c",count:4,score:3},{character:"ch",count:1,score:5},{character:"d",count:5,score:2},{character:"e",count:12,score:1},{character:"f",count:1,score:4},{character:"g",count:2,score:2},{character:"h",count:2,score:4},{character:"i",count:6,score:1},{character:"j",count:1,score:8},{character:"ll",count:1,score:8},{character:"l",count:4,score:1},{character:"m",count:2,score:3},{character:"n",count:5,score:1},{character:"\xf1",count:1,score:8},{character:"o",count:9,score:1},{character:"p",count:2,score:3},{character:"q",count:1,score:5},{character:"r",count:5,score:1},{character:"rr",count:1,score:8},{character:"s",count:6,score:1},{character:"t",count:4,score:1},{character:"u",count:5,score:1},{character:"v",count:1,score:4},{character:"x",count:1,score:8},{character:"y",count:1,score:4},{character:"z",count:1,score:10}]},9541:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.default=[{character:"a",count:9,score:1},{character:"b",count:2,score:3},{character:"c",count:2,score:3},{character:"d",count:3,score:2},{character:"e",count:15,score:1},{character:"f",count:2,score:1},{character:"g",count:2,score:2},{character:"h",count:2,score:4},{character:"i",count:8,score:1},{character:"j",count:1,score:8},{character:"k",count:1,score:10},{character:"l",count:5,score:1},{character:"m",count:3,score:2},{character:"n",count:6,score:1},{character:"o",count:6,score:1},{character:"p",count:2,score:3},{character:"q",count:1,score:8},{character:"r",count:6,score:1},{character:"s",count:6,score:1},{character:"t",count:6,score:1},{character:"u",count:6,score:1},{character:"v",count:2,score:4},{character:"w",count:1,score:10},{character:"x",count:1,score:10},{character:"y",count:1,score:10},{character:"z",count:1,score:10}]},2647:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.default=[{character:"a",count:9,score:1},{character:"\u0105",count:1,score:5},{character:"b",count:2,score:3},{character:"c",count:3,score:2},{character:"\u0107",count:1,score:5},{character:"d",count:3,score:2},{character:"e",count:7,score:1},{character:"\u0119",count:1,score:5},{character:"f",count:1,score:5},{character:"g",count:2,score:3},{character:"h",count:2,score:3},{character:"i",count:8,score:1},{character:"j",count:2,score:3},{character:"k",count:3,score:2},{character:"l",count:3,score:2},{character:"\u0142",count:2,score:3},{character:"m",count:3,score:2},{character:"n",count:5,score:1},{character:"\u0144",count:1,score:5},{character:"o",count:6,score:1},{character:"\xf3",count:1,score:5},{character:"p",count:3,score:2},{character:"r",count:4,score:1},{character:"s",count:4,score:1},{character:"\u015b",count:1,score:5},{character:"t",count:3,score:2},{character:"u",count:2,score:3},{character:"w",count:4,score:1},{character:"y",count:4,score:2},{character:"z",count:5,score:1},{character:"\u017a",count:1,score:5},{character:"\u017c",count:1,score:5}]},1551:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(7618),o=[{multiplier:3,type:n.BONUS_WORD,x:0,y:0},{multiplier:2,type:n.BONUS_CHARACTER,x:3,y:0},{multiplier:3,type:n.BONUS_WORD,x:7,y:0},{multiplier:2,type:n.BONUS_CHARACTER,x:11,y:0},{multiplier:3,type:n.BONUS_WORD,x:14,y:0},{multiplier:2,type:n.BONUS_WORD,x:1,y:1},{multiplier:3,type:n.BONUS_CHARACTER,x:5,y:1},{multiplier:3,type:n.BONUS_CHARACTER,x:9,y:1},{multiplier:2,type:n.BONUS_WORD,x:13,y:1},{multiplier:2,type:n.BONUS_WORD,x:2,y:2},{multiplier:2,type:n.BONUS_CHARACTER,x:6,y:2},{multiplier:2,type:n.BONUS_CHARACTER,x:8,y:2},{multiplier:2,type:n.BONUS_WORD,x:12,y:2},{multiplier:2,type:n.BONUS_CHARACTER,x:0,y:3},{multiplier:2,type:n.BONUS_WORD,x:3,y:3},{multiplier:2,type:n.BONUS_CHARACTER,x:7,y:3},{multiplier:2,type:n.BONUS_WORD,x:11,y:3},{multiplier:2,type:n.BONUS_CHARACTER,x:14,y:3},{multiplier:2,type:n.BONUS_WORD,x:4,y:4},{multiplier:2,type:n.BONUS_WORD,x:10,y:4},{multiplier:3,type:n.BONUS_CHARACTER,x:1,y:5},{multiplier:3,type:n.BONUS_CHARACTER,x:5,y:5},{multiplier:3,type:n.BONUS_CHARACTER,x:9,y:5},{multiplier:3,type:n.BONUS_CHARACTER,x:13,y:5},{multiplier:2,type:n.BONUS_CHARACTER,x:2,y:6},{multiplier:2,type:n.BONUS_CHARACTER,x:6,y:6},{multiplier:2,type:n.BONUS_CHARACTER,x:8,y:6},{multiplier:2,type:n.BONUS_CHARACTER,x:12,y:6},{multiplier:3,type:n.BONUS_WORD,x:0,y:7},{multiplier:2,type:n.BONUS_CHARACTER,x:3,y:7},{multiplier:2,type:n.BONUS_WORD,x:7,y:7},{multiplier:2,type:n.BONUS_CHARACTER,x:11,y:7},{multiplier:3,type:n.BONUS_WORD,x:14,y:7},{multiplier:2,type:n.BONUS_CHARACTER,x:2,y:8},{multiplier:2,type:n.BONUS_CHARACTER,x:6,y:8},{multiplier:2,type:n.BONUS_CHARACTER,x:8,y:8},{multiplier:2,type:n.BONUS_CHARACTER,x:12,y:8},{multiplier:3,type:n.BONUS_CHARACTER,x:1,y:9},{multiplier:3,type:n.BONUS_CHARACTER,x:5,y:9},{multiplier:3,type:n.BONUS_CHARACTER,x:9,y:9},{multiplier:3,type:n.BONUS_CHARACTER,x:13,y:9},{multiplier:2,type:n.BONUS_WORD,x:4,y:10},{multiplier:2,type:n.BONUS_WORD,x:10,y:10},{multiplier:2,type:n.BONUS_CHARACTER,x:0,y:11},{multiplier:2,type:n.BONUS_WORD,x:3,y:11},{multiplier:2,type:n.BONUS_CHARACTER,x:7,y:11},{multiplier:2,type:n.BONUS_WORD,x:11,y:11},{multiplier:2,type:n.BONUS_CHARACTER,x:14,y:11},{multiplier:2,type:n.BONUS_WORD,x:2,y:12},{multiplier:2,type:n.BONUS_CHARACTER,x:6,y:12},{multiplier:2,type:n.BONUS_CHARACTER,x:8,y:12},{multiplier:2,type:n.BONUS_WORD,x:12,y:12},{multiplier:2,type:n.BONUS_WORD,x:1,y:13},{multiplier:3,type:n.BONUS_CHARACTER,x:5,y:13},{multiplier:3,type:n.BONUS_CHARACTER,x:9,y:13},{multiplier:2,type:n.BONUS_WORD,x:13,y:13},{multiplier:3,type:n.BONUS_WORD,x:0,y:14},{multiplier:2,type:n.BONUS_CHARACTER,x:3,y:14},{multiplier:3,type:n.BONUS_WORD,x:7,y:14},{multiplier:2,type:n.BONUS_CHARACTER,x:11,y:14},{multiplier:3,type:n.BONUS_WORD,x:14,y:14}];t.default=o},8964:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=r(7192);Object.defineProperty(t,"default",{enumerable:!0,get:function(){return n(o).default}})},7192:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(4046),c=n(r(1551)),i=r(9213),a={allTilesBonusScore:50,blankScore:0,blanksCount:2,boardHeight:15,boardWidth:15,bonuses:c.default,id:"scrabble",maximumCharactersCount:7,name:"Scrabble"},u={id:a.id,name:a.name,[o.Locale.EN_GB]:o.Config.fromJson({...a,tiles:i.tilesEn}),[o.Locale.DE_DE]:o.Config.fromJson({...a,tiles:i.tilesDe}),[o.Locale.EN_US]:o.Config.fromJson({...a,tiles:i.tilesEn}),[o.Locale.ES_ES]:o.Config.fromJson({...a,tiles:i.tilesEs}),[o.Locale.FR_FR]:o.Config.fromJson({...a,tiles:i.tilesFr}),[o.Locale.PL_PL]:o.Config.fromJson({...a,tiles:i.tilesPl})};t.default=u},9213:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.tilesDe=t.tilesPl=t.tilesFr=t.tilesEs=t.tilesEn=void 0;var o=r(6149);Object.defineProperty(t,"tilesEn",{enumerable:!0,get:function(){return n(o).default}});var c=r(4537);Object.defineProperty(t,"tilesEs",{enumerable:!0,get:function(){return n(c).default}});var i=r(2866);Object.defineProperty(t,"tilesFr",{enumerable:!0,get:function(){return n(i).default}});var a=r(5667);Object.defineProperty(t,"tilesPl",{enumerable:!0,get:function(){return n(a).default}});var u=r(7355);Object.defineProperty(t,"tilesDe",{enumerable:!0,get:function(){return n(u).default}})},7355:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.default=[{character:"a",count:5,score:1},{character:"\xe4",count:1,score:6},{character:"b",count:2,score:3},{character:"c",count:2,score:4},{character:"d",count:4,score:1},{character:"e",count:15,score:1},{character:"f",count:2,score:4},{character:"g",count:3,score:2},{character:"h",count:4,score:2},{character:"i",count:6,score:1},{character:"j",count:1,score:6},{character:"k",count:2,score:4},{character:"l",count:3,score:2},{character:"m",count:4,score:3},{character:"n",count:9,score:1},{character:"o",count:3,score:2},{character:"\xf6",count:1,score:8},{character:"p",count:1,score:4},{character:"q",count:1,score:10},{character:"r",count:6,score:1},{character:"s",count:7,score:1},{character:"t",count:6,score:1},{character:"u",count:6,score:1},{character:"\xfc",count:1,score:6},{character:"v",count:1,score:6},{character:"w",count:1,score:3},{character:"x",count:1,score:8},{character:"y",count:1,score:10},{character:"z",count:1,score:3}]},6149:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.default=[{character:"a",count:9,score:1},{character:"b",count:2,score:3},{character:"c",count:2,score:3},{character:"d",count:4,score:2},{character:"e",count:12,score:1},{character:"f",count:2,score:4},{character:"g",count:3,score:2},{character:"h",count:2,score:4},{character:"i",count:9,score:1},{character:"j",count:1,score:8},{character:"k",count:1,score:5},{character:"l",count:4,score:1},{character:"m",count:2,score:3},{character:"n",count:6,score:1},{character:"o",count:8,score:1},{character:"p",count:2,score:3},{character:"q",count:1,score:10},{character:"r",count:6,score:1},{character:"s",count:4,score:1},{character:"t",count:6,score:1},{character:"u",count:4,score:1},{character:"v",count:2,score:4},{character:"w",count:2,score:4},{character:"x",count:1,score:8},{character:"y",count:2,score:4},{character:"z",count:1,score:10}]},4537:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.default=[{character:"a",count:12,score:1},{character:"b",count:2,score:3},{character:"c",count:4,score:3},{character:"ch",count:1,score:5},{character:"d",count:5,score:2},{character:"e",count:12,score:1},{character:"f",count:1,score:4},{character:"g",count:2,score:2},{character:"h",count:2,score:4},{character:"i",count:6,score:1},{character:"j",count:1,score:8},{character:"ll",count:1,score:8},{character:"l",count:4,score:1},{character:"m",count:2,score:3},{character:"n",count:5,score:1},{character:"\xf1",count:1,score:8},{character:"o",count:9,score:1},{character:"p",count:2,score:3},{character:"q",count:1,score:5},{character:"r",count:5,score:1},{character:"rr",count:1,score:8},{character:"s",count:6,score:1},{character:"t",count:4,score:1},{character:"u",count:5,score:1},{character:"v",count:1,score:4},{character:"x",count:1,score:8},{character:"y",count:1,score:4},{character:"z",count:1,score:10}]},2866:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.default=[{character:"a",count:9,score:1},{character:"b",count:2,score:3},{character:"c",count:2,score:3},{character:"d",count:3,score:2},{character:"e",count:15,score:1},{character:"f",count:2,score:4},{character:"g",count:2,score:2},{character:"h",count:2,score:4},{character:"i",count:8,score:1},{character:"j",count:1,score:8},{character:"k",count:1,score:10},{character:"l",count:5,score:1},{character:"m",count:3,score:2},{character:"n",count:6,score:1},{character:"o",count:6,score:1},{character:"p",count:2,score:3},{character:"q",count:1,score:8},{character:"r",count:6,score:1},{character:"s",count:6,score:1},{character:"t",count:6,score:1},{character:"u",count:6,score:1},{character:"v",count:2,score:4},{character:"w",count:1,score:10},{character:"x",count:1,score:10},{character:"y",count:1,score:10},{character:"z",count:1,score:10}]},5667:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.default=[{character:"a",count:9,score:1},{character:"\u0105",count:1,score:5},{character:"b",count:2,score:3},{character:"c",count:3,score:2},{character:"\u0107",count:1,score:6},{character:"d",count:3,score:2},{character:"e",count:7,score:1},{character:"\u0119",count:1,score:5},{character:"f",count:1,score:5},{character:"g",count:2,score:3},{character:"h",count:2,score:3},{character:"i",count:8,score:1},{character:"j",count:2,score:3},{character:"k",count:3,score:2},{character:"l",count:3,score:2},{character:"\u0142",count:2,score:3},{character:"m",count:3,score:2},{character:"n",count:5,score:1},{character:"\u0144",count:1,score:7},{character:"o",count:6,score:1},{character:"\xf3",count:1,score:5},{character:"p",count:3,score:2},{character:"r",count:4,score:1},{character:"s",count:4,score:1},{character:"\u015b",count:1,score:5},{character:"t",count:3,score:2},{character:"u",count:2,score:3},{character:"w",count:4,score:1},{character:"y",count:4,score:2},{character:"z",count:5,score:1},{character:"\u017a",count:1,score:9},{character:"\u017c",count:1,score:5}]},7618:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.VOWELS=t.CONSONANTS=t.NO_BONUS=t.EMPTY_CELL=t.BONUS_WORD=t.BONUS_CHARACTER=t.BLANK=void 0,t.BLANK=" ",t.BONUS_CHARACTER="BONUS_CHARACTER",t.BONUS_WORD="BONUS_WORD",t.EMPTY_CELL=" ",t.NO_BONUS={characterMultiplier:1,wordMultiplier:1},t.CONSONANTS=["b","c","\u0107","d","f","g","h","j","k","l","\u0142","m","n","\u0144","p","q","r","s","\u015b","t","v","w","x","z","\u017a","\u017c"],t.VOWELS=["a","\u0105","\xe4","e","\u0119","i","o","\xf3","\xf6","u","\xfc","y"]},8679:function(e,t,r){"use strict";var n=r(9864),o={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},c={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},i={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},a={};function u(e){return n.isMemo(e)?i:a[e.$$typeof]||o}a[n.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},a[n.Memo]=i;var s=Object.defineProperty,l=Object.getOwnPropertyNames,f=Object.getOwnPropertySymbols,p=Object.getOwnPropertyDescriptor,d=Object.getPrototypeOf,h=Object.prototype;e.exports=function e(t,r,n){if("string"!==typeof r){if(h){var o=d(r);o&&o!==h&&e(t,o,n)}var i=l(r);f&&(i=i.concat(f(r)));for(var a=u(t),y=u(r),m=0;m<i.length;++m){var g=i[m];if(!c[g]&&(!n||!n[g])&&(!y||!y[g])&&(!a||!a[g])){var v=p(r,g);try{s(t,g,v)}catch(b){}}}}return t}},3454:function(e,t,r){"use strict";var n,o;e.exports=(null==(n=r.g.process)?void 0:n.env)&&"object"===typeof(null==(o=r.g.process)?void 0:o.env)?r.g.process:r(7663)},6840:function(e,t,r){(window.__NEXT_P=window.__NEXT_P||[]).push(["/_app",function(){return r(2957)}])},2237:function(e,t,r){"use strict";r.d(t,{J8:function(){return o},Ri:function(){return c},DI:function(){return i},np:function(){return u},Ml:function(){return s},Nj:function(){return f},Jp:function(){return p},Dz:function(){return h},ZM:function(){return S},op:function(){return E},vc:function(){return A},Mf:function(){return R},yl:function(){return x},V5:function(){return k},Kj:function(){return N},HP:function(){return T},ZT:function(){return a},uj:function(){return D},DR:function(){return H},gV:function(){return W}});var n,o=Boolean(window.document&&window.document.createElement),c=function(e){return Array.from({length:e})},i=function(e,t,r){return c(t).map((function(t,n){return c(e).map((function(e,t){return r(t,n)}))}))},a=function(){},u=function(e){var t=e.onArrowDown,r=void 0===t?a:t,n=e.onArrowLeft,o=void 0===n?a:n,c=e.onArrowRight,i=void 0===c?a:c,u=e.onArrowUp,s=void 0===u?a:u,l=e.onBackspace,f=void 0===l?a:l,p=e.onDelete,d=void 0===p?a:p,h=e.onEnter,y=void 0===h?a:h,m=e.onKeyDown,g=void 0===m?a:m,v=e.onSpace,b={ArrowUp:s,ArrowDown:r,ArrowLeft:o,ArrowRight:i,Backspace:f,Delete:d,Enter:y," ":void 0===v?a:v};return function(e){(b[e.key]||a)(e),g(e)}},s=function(e){return function(t,r){return t===r?0:null===t?"right"===e?1:-1:null===r?"right"===e?-1:1:0}},l=r(4046),f=function(){return window.navigator.languages.includes("pl")||window.navigator.languages.includes("pl-PL")?l.Locale.PL_PL:window.navigator.languages.includes("en-GB")?l.Locale.EN_GB:window.navigator.languages.includes("fr-FR")?l.Locale.FR_FR:l.Locale.EN_US},p=function(e,t,r){return e.find((function(e){return e.x===t&&e.y===r}))},d=r(485),h=function(e,t,r){var n=(t-d.Uu)/e.boardWidth-d.Uu,o=(r-d.Uu)/e.boardHeight-d.Uu,c=Math.min(n,o);return Math.floor(Math.min(Math.max(c,d.oj),d.Kw))},y=r(6042),m=r(9396),g=r(9815),v=r(7618),b=function(e,t){return e-t},O=function(e,t){return e.localeCompare(t)},_=function(e){return function(t,r){var n=t[e],o=r[e];return"string"===typeof n&&"string"===typeof o?O(n,o):"number"===typeof n&&"number"===typeof o?b(n,o):0}},S=function(e,t,r){var n=t.rows.flat().filter((function(e){return!e.isEmpty})),o=n.filter((function(e){return!e.tile.isBlank})),c=Object.fromEntries(e.tiles.map((function(e){return[e.character,(0,m.Z)((0,y.Z)({},e),{usedCount:0})]}))),i={character:v.BLANK,count:e.blanksCount,score:e.blankScore,usedCount:n.filter((function(e){return e.tile.isBlank})).length+r.filter((function(e){return e===v.BLANK})).length},a=(0,g.Z)(o.map((function(e){return e.tile.character}))).concat((0,g.Z)(r.filter((function(e){return e!==v.BLANK})))),u=a.filter((function(e){return"undefined"===typeof c[e]})),s=!0,l=!1,f=void 0;try{for(var p,d=u[Symbol.iterator]();!(s=(p=d.next()).done);s=!0){var h=p.value;c[h]={character:h,count:0,score:0,usedCount:0}}}catch(A){l=!0,f=A}finally{try{s||null==d.return||d.return()}finally{if(l)throw f}}var b=!0,O=!1,S=void 0;try{for(var C,w=a[Symbol.iterator]();!(b=(C=w.next()).done);b=!0){var E=C.value;++c[E].usedCount}}catch(A){O=!0,S=A}finally{try{b||null==w.return||w.return()}finally{if(O)throw S}}return(0,g.Z)(Object.values(c).sort(_("character"))).concat([i])},C=function(e){return e.reduce((function(e,t){return e+t.count-t.usedCount}),0)},w=function(e){return e.reduce((function(e,t){return e+t.count}),0)},E=function(e){var t=e.filter((function(e){var t=e.character;return v.CONSONANTS.includes(t)})),r=e.filter((function(e){var t=e.character;return v.VOWELS.includes(t)})),n=e.filter((function(e){return 2===e.character.length})),o=e.filter((function(e){return e.character===v.BLANK}));return[{remainingCount:C(r),tiles:r,translationKey:"common.vowels",totalCount:w(r)},{remainingCount:C(t),tiles:t,translationKey:"common.consonants",totalCount:w(t)},{remainingCount:C(n),tiles:n,translationKey:"common.two-letter-tiles",totalCount:w(n)},{remainingCount:C(o),tiles:o,translationKey:"common.blanks",totalCount:w(o)}].filter((function(e){return e.totalCount>0}))},A=function(e){return{pointsFontSize:Math.max(Math.round(.25*e),d.$B),tileFontSize:Math.max(Math.round(.6*e),d.V4),tileSize:e}},R=function(e){return"left"===e?"right":"left"},x=function(e){return e.ctrlKey||e.metaKey},k=function(){return!!globalThis.navigator&&globalThis.navigator.platform.toLowerCase().includes("mac")},N=function(e){try{return new RegExp(e),!0}catch(t){return!1}},j=function(e,t){return e.length===t.length&&e.every((function(e,r){return e===t[r]}))},T=function(e){var t=[],r=function(e){var r;return null===(r=t.find((function(t){return j(t.parameters,e)})))||void 0===r?void 0:r.result},n=function(e,r){t.push({parameters:e,result:r})};return Object.assign((function(){for(var t=arguments.length,o=new Array(t),c=0;c<t;c++)o[c]=arguments[c];var i=r(o);if(i)return i;var a=e.apply(void 0,(0,g.Z)(o));return n(o,a),a}),{hasCache:function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return Boolean(r(t))}})},P=r(4924),B=r(3620),M=function(e){return function(t,r){return-e(t,r)}},U=(n={},(0,P.Z)(n,B.M.BlanksCount,_("blanksCount")),(0,P.Z)(n,B.M.ConsonantsCount,_("consonantsCount")),(0,P.Z)(n,B.M.Points,_("points")),(0,P.Z)(n,B.M.TilesCount,_("tilesCount")),(0,P.Z)(n,B.M.VowelsCount,_("vowelsCount")),(0,P.Z)(n,B.M.Word,_("word")),(0,P.Z)(n,B.M.WordsCount,_("wordsCount")),n),D=function(e,t,r){if("undefined"===typeof e)return e;var n=U[t],o=r===B.S.Descending?M(n):n;return(0,g.Z)(e).sort(o)},L=function(e,t){return"string"===typeof e&&"string"===typeof t?O(e,t):"number"===typeof e&&"number"===typeof t?b(e,t):0},H=function(e,t){if(e.length!==t.length)return!1;var r=(0,g.Z)(e).sort(L),n=(0,g.Z)(t).sort(L);return r.every((function(e,t){return e===n[t]}))},W=function(e,t){var r=(0,g.Z)(t);return e.map((function(e){var t=r.findIndex((function(t){return e===v.BLANK?t.isBlank:e===t.character}));if(t>=0){var n=r[t];return r=(0,g.Z)(r.slice(0,t)).concat((0,g.Z)(r.slice(t+1))),{character:e,tile:n}}return{character:e,tile:null}}))}},2957:function(e,t,r){"use strict";r.r(t);var n=r(6042),o=r(5893),c=r(9008),i=r.n(c),a=r(9473),u=r(6983),s=(r(9067),"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 & Spanish."),l=["Scrabble","Solver","Open-source","Finder","Cheating","Literaki","Word","English","Fran\xe7ais","Deutsch","Polski","Espa\xf1ol","SOWPODS","TWL06","SJP","FISE-2017","FISE-2","CNRTL","Kamil Mielnik"].join(","),f=(0,u.vY)();t.default=function(e){var t=e.Component,r=e.pageProps;return(0,o.jsxs)(o.Fragment,{children:[(0,o.jsxs)(i(),{children:[(0,o.jsx)("title",{children:"Scrabble Solver 2 by Kamil Mielnik"}),(0,o.jsx)("meta",{charSet:"utf-8"}),(0,o.jsx)("meta",{name:"author",content:"Kamil Mielnik"}),(0,o.jsx)("meta",{name:"description",content:s}),(0,o.jsx)("meta",{name:"keywords",content:l}),(0,o.jsx)("meta",{name:"robots",content:"index, follow, notranslate, noimageindex"}),(0,o.jsx)("meta",{name:"viewport",content:"width=device-width, initial-scale=1.0"}),(0,o.jsx)("meta",{property:"og:title",content:s}),(0,o.jsx)("meta",{property:"og:type",content:"website"}),(0,o.jsx)("meta",{property:"og:url",content:"https://scrabble-solver.org"}),(0,o.jsx)("meta",{property:"og:image",content:"https://scrabble-solver.org/og.png"}),(0,o.jsx)("meta",{property:"og:image:type",content:"image/png"}),(0,o.jsx)("meta",{property:"og:image:width",content:"1200"}),(0,o.jsx)("meta",{property:"og:image:height",content:"630"}),(0,o.jsx)("meta",{property:"og:image:alt",content:s})]}),(0,o.jsxs)(a.zt,{store:f,children:[(0,o.jsx)("p",{style:{fontSize:0},children:"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 & Spanish. Source code is available on GitHub - contributions are welcome!"}),(0,o.jsx)(t,(0,n.Z)({},r))]})]})}},485:function(e,t,r){"use strict";r.d(t,{$B:function(){return d},$L:function(){return R},BF:function(){return v},D:function(){return w},F1:function(){return i},I_:function(){return g},Kw:function(){return h},MA:function(){return o},Sg:function(){return l},Uu:function(){return f},V4:function(){return p},a_:function(){return C},d4:function(){return _},fl:function(){return b},h4:function(){return n},ku:function(){return S},mM:function(){return A},n6:function(){return m},oj:function(){return y},pI:function(){return c},qp:function(){return k},rV:function(){return E},rx:function(){return x},tr:function(){return s},uX:function(){return O},yg:function(){return a},yr:function(){return u}});var n="https://github.com/kamilmielnik/scrabble-solver",o=250,c="#c7d8f9",i="#bae3ba",a="#f7c2aa",u="#efe3ae",s=40,l=20,f=1,p=14,d=10,h=64,y=32,m=220,g=80,v=i,b=0,O=0,_={1:u,2:i,3:c,4:a,5:a,6:a,7:a,8:a,9:a,10:a},S=6,C=0,w=0,E=80,A=50,R=35,x=34,k=43},6983:function(e,t,r){"use strict";function n(e){for(var t=arguments.length,r=Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];throw Error("[Immer] minified error nr: "+e+(r.length?" "+r.map((function(e){return"'"+e+"'"})).join(","):"")+". Find the full error at: https://bit.ly/3cXEKWf")}function o(e){return!!e&&!!e[G]}function c(e){return!!e&&(function(e){if(!e||"object"!=typeof e)return!1;var t=Object.getPrototypeOf(e);if(null===t)return!0;var r=Object.hasOwnProperty.call(t,"constructor")&&t.constructor;return r===Object||"function"==typeof r&&Function.toString.call(r)===$}(e)||Array.isArray(e)||!!e[q]||!!e.constructor[q]||p(e)||d(e))}function i(e,t,r){void 0===r&&(r=!1),0===a(e)?(r?Object.keys:K)(e).forEach((function(n){r&&"symbol"==typeof n||t(n,e[n],e)})):e.forEach((function(r,n){return t(n,r,e)}))}function a(e){var t=e[G];return t?t.i>3?t.i-4:t.i:Array.isArray(e)?1:p(e)?2:d(e)?3:0}function u(e,t){return 2===a(e)?e.has(t):Object.prototype.hasOwnProperty.call(e,t)}function s(e,t){return 2===a(e)?e.get(t):e[t]}function l(e,t,r){var n=a(e);2===n?e.set(t,r):3===n?(e.delete(t),e.add(r)):e[t]=r}function f(e,t){return e===t?0!==e||1/e==1/t:e!=e&&t!=t}function p(e){return z&&e instanceof Map}function d(e){return Z&&e instanceof Set}function h(e){return e.o||e.t}function y(e){if(Array.isArray(e))return Array.prototype.slice.call(e);var t=V(e);delete t[G];for(var r=K(t),n=0;n<r.length;n++){var o=r[n],c=t[o];!1===c.writable&&(c.writable=!0,c.configurable=!0),(c.get||c.set)&&(t[o]={configurable:!0,writable:!0,enumerable:c.enumerable,value:e[o]})}return Object.create(Object.getPrototypeOf(e),t)}function m(e,t){return void 0===t&&(t=!1),v(e)||o(e)||!c(e)||(a(e)>1&&(e.set=e.add=e.clear=e.delete=g),Object.freeze(e),t&&i(e,(function(e,t){return m(t,!0)}),!0)),e}function g(){n(2)}function v(e){return null==e||"object"!=typeof e||Object.isFrozen(e)}function b(e){var t=X[e];return t||n(18,e),t}function O(e,t){X[e]||(X[e]=t)}function _(){return W}function S(e,t){t&&(b("Patches"),e.u=[],e.s=[],e.v=t)}function C(e){w(e),e.p.forEach(A),e.p=null}function w(e){e===W&&(W=e.l)}function E(e){return W={p:[],l:W,h:e,m:!0,_:0}}function A(e){var t=e[G];0===t.i||1===t.i?t.j():t.O=!0}function R(e,t){t._=t.p.length;var r=t.p[0],o=void 0!==e&&e!==r;return t.h.g||b("ES5").S(t,e,o),o?(r[G].P&&(C(t),n(4)),c(e)&&(e=x(t,e),t.l||N(t,e)),t.u&&b("Patches").M(r[G].t,e,t.u,t.s)):e=x(t,r,[]),C(t),t.u&&t.v(t.u,t.s),e!==F?e:void 0}function x(e,t,r){if(v(t))return t;var n=t[G];if(!n)return i(t,(function(o,c){return k(e,n,t,o,c,r)}),!0),t;if(n.A!==e)return t;if(!n.P)return N(e,n.t,!0),n.t;if(!n.I){n.I=!0,n.A._--;var o=4===n.i||5===n.i?n.o=y(n.k):n.o;i(3===n.i?new Set(o):o,(function(t,c){return k(e,n,o,t,c,r)})),N(e,o,!1),r&&e.u&&b("Patches").R(n,r,e.u,e.s)}return n.o}function k(e,t,r,n,i,a){if(o(i)){var s=x(e,i,a&&t&&3!==t.i&&!u(t.D,n)?a.concat(n):void 0);if(l(r,n,s),!o(s))return;e.m=!1}if(c(i)&&!v(i)){if(!e.h.F&&e._<1)return;x(e,i),t&&t.A.l||N(e,i)}}function N(e,t,r){void 0===r&&(r=!1),e.h.F&&e.m&&m(t,r)}function j(e,t){var r=e[G];return(r?h(r):e)[t]}function T(e,t){if(t in e)for(var r=Object.getPrototypeOf(e);r;){var n=Object.getOwnPropertyDescriptor(r,t);if(n)return n;r=Object.getPrototypeOf(r)}}function P(e){e.P||(e.P=!0,e.l&&P(e.l))}function B(e){e.o||(e.o=y(e.t))}function M(e,t,r){var n=p(t)?b("MapSet").N(t,r):d(t)?b("MapSet").T(t,r):e.g?function(e,t){var r=Array.isArray(e),n={i:r?1:0,A:t?t.A:_(),P:!1,I:!1,D:{},l:t,t:e,k:null,o:null,j:null,C:!1},o=n,c=Y;r&&(o=[n],c=Q);var i=Proxy.revocable(o,c),a=i.revoke,u=i.proxy;return n.k=u,n.j=a,u}(t,r):b("ES5").J(t,r);return(r?r.A:_()).p.push(n),n}function U(e){return o(e)||n(22,e),function e(t){if(!c(t))return t;var r,n=t[G],o=a(t);if(n){if(!n.P&&(n.i<4||!b("ES5").K(n)))return n.t;n.I=!0,r=D(t,o),n.I=!1}else r=D(t,o);return i(r,(function(t,o){n&&s(n.t,t)===o||l(r,t,e(o))})),3===o?new Set(r):r}(e)}function D(e,t){switch(t){case 2:return new Map(e);case 3:return Array.from(e)}return y(e)}function L(){function e(e,t){var r=c[e];return r?r.enumerable=t:c[e]=r={configurable:!0,enumerable:t,get:function(){var t=this[G];return Y.get(t,e)},set:function(t){var r=this[G];Y.set(r,e,t)}},r}function t(e){for(var t=e.length-1;t>=0;t--){var o=e[t][G];if(!o.P)switch(o.i){case 5:n(o)&&P(o);break;case 4:r(o)&&P(o)}}}function r(e){for(var t=e.t,r=e.k,n=K(r),o=n.length-1;o>=0;o--){var c=n[o];if(c!==G){var i=t[c];if(void 0===i&&!u(t,c))return!0;var a=r[c],s=a&&a[G];if(s?s.t!==i:!f(a,i))return!0}}var l=!!t[G];return n.length!==K(t).length+(l?0:1)}function n(e){var t=e.k;if(t.length!==e.t.length)return!0;var r=Object.getOwnPropertyDescriptor(t,t.length-1);if(r&&!r.get)return!0;for(var n=0;n<t.length;n++)if(!t.hasOwnProperty(n))return!0;return!1}var c={};O("ES5",{J:function(t,r){var n=Array.isArray(t),o=function(t,r){if(t){for(var n=Array(r.length),o=0;o<r.length;o++)Object.defineProperty(n,""+o,e(o,!0));return n}var c=V(r);delete c[G];for(var i=K(c),a=0;a<i.length;a++){var u=i[a];c[u]=e(u,t||!!c[u].enumerable)}return Object.create(Object.getPrototypeOf(r),c)}(n,t),c={i:n?5:4,A:r?r.A:_(),P:!1,I:!1,D:{},l:r,t:t,k:o,o:null,O:!1,C:!1};return Object.defineProperty(o,G,{value:c,writable:!0}),o},S:function(e,r,c){c?o(r)&&r[G].A===e&&t(e.p):(e.u&&function e(t){if(t&&"object"==typeof t){var r=t[G];if(r){var o=r.t,c=r.k,a=r.D,s=r.i;if(4===s)i(c,(function(t){t!==G&&(void 0!==o[t]||u(o,t)?a[t]||e(c[t]):(a[t]=!0,P(r)))})),i(o,(function(e){void 0!==c[e]||u(c,e)||(a[e]=!1,P(r))}));else if(5===s){if(n(r)&&(P(r),a.length=!0),c.length<o.length)for(var l=c.length;l<o.length;l++)a[l]=!1;else for(var f=o.length;f<c.length;f++)a[f]=!0;for(var p=Math.min(c.length,o.length),d=0;d<p;d++)c.hasOwnProperty(d)||(a[d]=!0),void 0===a[d]&&e(c[d])}}}}(e.p[0]),t(e.p))},K:function(e){return 4===e.i?r(e):n(e)}})}r.d(t,{I8:function(){return Pr},mO:function(){return Dr},vY:function(){return Eo},lj:function(){return Hr},j2:function(){return Re},Xb:function(){return Bo},O_:function(){return zr},mc:function(){return xe},_C:function(){return qr},Mj:function(){return io},uz:function(){return Pn},ZO:function(){return Mn},O0:function(){return Vn},id:function(){return Hn},Or:function(){return Xn},$o:function(){return Dn},md:function(){return Un},w1:function(){return Tn},En:function(){return uo},xU:function(){return no},fN:function(){return Bn},QB:function(){return eo},Yj:function(){return so},z$:function(){return $n},QL:function(){return In},R:function(){return zn},sH:function(){return Zn},ZA:function(){return Kn},dN:function(){return Fn},f2:function(){return Jn},Zf:function(){return Yn},xj:function(){return $r},TP:function(){return Kr},qM:function(){return Do},ix:function(){return Uo}});var H,W,I="undefined"!=typeof Symbol&&"symbol"==typeof Symbol("x"),z="undefined"!=typeof Map,Z="undefined"!=typeof Set,J="undefined"!=typeof Proxy&&void 0!==Proxy.revocable&&"undefined"!=typeof Reflect,F=I?Symbol.for("immer-nothing"):((H={})["immer-nothing"]=!0,H),q=I?Symbol.for("immer-draftable"):"__$immer_draftable",G=I?Symbol.for("immer-state"):"__$immer_state",$=("undefined"!=typeof Symbol&&Symbol.iterator,""+Object.prototype.constructor),K="undefined"!=typeof Reflect&&Reflect.ownKeys?Reflect.ownKeys:void 0!==Object.getOwnPropertySymbols?function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:Object.getOwnPropertyNames,V=Object.getOwnPropertyDescriptors||function(e){var t={};return K(e).forEach((function(r){t[r]=Object.getOwnPropertyDescriptor(e,r)})),t},X={},Y={get:function(e,t){if(t===G)return e;var r=h(e);if(!u(r,t))return function(e,t,r){var n,o=T(t,r);return o?"value"in o?o.value:null===(n=o.get)||void 0===n?void 0:n.call(e.k):void 0}(e,r,t);var n=r[t];return e.I||!c(n)?n:n===j(e.t,t)?(B(e),e.o[t]=M(e.A.h,n,e)):n},has:function(e,t){return t in h(e)},ownKeys:function(e){return Reflect.ownKeys(h(e))},set:function(e,t,r){var n=T(h(e),t);if(null==n?void 0:n.set)return n.set.call(e.k,r),!0;if(!e.P){var o=j(h(e),t),c=null==o?void 0:o[G];if(c&&c.t===r)return e.o[t]=r,e.D[t]=!1,!0;if(f(r,o)&&(void 0!==r||u(e.t,t)))return!0;B(e),P(e)}return e.o[t]===r&&"number"!=typeof r&&(void 0!==r||t in e.o)||(e.o[t]=r,e.D[t]=!0,!0)},deleteProperty:function(e,t){return void 0!==j(e.t,t)||t in e.t?(e.D[t]=!1,B(e),P(e)):delete e.D[t],e.o&&delete e.o[t],!0},getOwnPropertyDescriptor:function(e,t){var r=h(e),n=Reflect.getOwnPropertyDescriptor(r,t);return n?{writable:!0,configurable:1!==e.i||"length"!==t,enumerable:n.enumerable,value:r[t]}:n},defineProperty:function(){n(11)},getPrototypeOf:function(e){return Object.getPrototypeOf(e.t)},setPrototypeOf:function(){n(12)}},Q={};i(Y,(function(e,t){Q[e]=function(){return arguments[0]=arguments[0][0],t.apply(this,arguments)}})),Q.deleteProperty=function(e,t){return Q.set.call(this,e,t,void 0)},Q.set=function(e,t,r){return Y.set.call(this,e[0],t,r,e[0])};var ee=function(){function e(e){var t=this;this.g=J,this.F=!0,this.produce=function(e,r,o){if("function"==typeof e&&"function"!=typeof r){var i=r;r=e;var a=t;return function(e){var t=this;void 0===e&&(e=i);for(var n=arguments.length,o=Array(n>1?n-1:0),c=1;c<n;c++)o[c-1]=arguments[c];return a.produce(e,(function(e){var n;return(n=r).call.apply(n,[t,e].concat(o))}))}}var u;if("function"!=typeof r&&n(6),void 0!==o&&"function"!=typeof o&&n(7),c(e)){var s=E(t),l=M(t,e,void 0),f=!0;try{u=r(l),f=!1}finally{f?C(s):w(s)}return"undefined"!=typeof Promise&&u instanceof Promise?u.then((function(e){return S(s,o),R(e,s)}),(function(e){throw C(s),e})):(S(s,o),R(u,s))}if(!e||"object"!=typeof e){if(void 0===(u=r(e))&&(u=e),u===F&&(u=void 0),t.F&&m(u,!0),o){var p=[],d=[];b("Patches").M(e,u,p,d),o(p,d)}return u}n(21,e)},this.produceWithPatches=function(e,r){if("function"==typeof e)return function(r){for(var n=arguments.length,o=Array(n>1?n-1:0),c=1;c<n;c++)o[c-1]=arguments[c];return t.produceWithPatches(r,(function(t){return e.apply(void 0,[t].concat(o))}))};var n,o,c=t.produce(e,r,(function(e,t){n=e,o=t}));return"undefined"!=typeof Promise&&c instanceof Promise?c.then((function(e){return[e,n,o]})):[c,n,o]},"boolean"==typeof(null==e?void 0:e.useProxies)&&this.setUseProxies(e.useProxies),"boolean"==typeof(null==e?void 0:e.autoFreeze)&&this.setAutoFreeze(e.autoFreeze)}var t=e.prototype;return t.createDraft=function(e){c(e)||n(8),o(e)&&(e=U(e));var t=E(this),r=M(this,e,void 0);return r[G].C=!0,w(t),r},t.finishDraft=function(e,t){var r=(e&&e[G]).A;return S(r,t),R(void 0,r)},t.setAutoFreeze=function(e){this.F=e},t.setUseProxies=function(e){e&&!J&&n(20),this.g=e},t.applyPatches=function(e,t){var r;for(r=t.length-1;r>=0;r--){var n=t[r];if(0===n.path.length&&"replace"===n.op){e=n.value;break}}r>-1&&(t=t.slice(r+1));var c=b("Patches").$;return o(e)?c(e,t):this.produce(e,(function(e){return c(e,t)}))},e}(),te=new ee,re=te.produce,ne=(te.produceWithPatches.bind(te),te.setAutoFreeze.bind(te),te.setUseProxies.bind(te),te.applyPatches.bind(te),te.createDraft.bind(te),te.finishDraft.bind(te),re);function oe(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function ce(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function ie(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?ce(Object(r),!0).forEach((function(t){oe(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):ce(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function ae(e){return"Minified Redux error #"+e+"; visit https://redux.js.org/Errors?code="+e+" for the full message or use the non-minified dev environment for full errors. "}var ue="function"===typeof Symbol&&Symbol.observable||"@@observable",se=function(){return Math.random().toString(36).substring(7).split("").join(".")},le={INIT:"@@redux/INIT"+se(),REPLACE:"@@redux/REPLACE"+se(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+se()}};function fe(e){if("object"!==typeof e||null===e)return!1;for(var t=e;null!==Object.getPrototypeOf(t);)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t}function pe(e,t,r){var n;if("function"===typeof t&&"function"===typeof r||"function"===typeof r&&"function"===typeof arguments[3])throw new Error(ae(0));if("function"===typeof t&&"undefined"===typeof r&&(r=t,t=void 0),"undefined"!==typeof r){if("function"!==typeof r)throw new Error(ae(1));return r(pe)(e,t)}if("function"!==typeof e)throw new Error(ae(2));var o=e,c=t,i=[],a=i,u=!1;function s(){a===i&&(a=i.slice())}function l(){if(u)throw new Error(ae(3));return c}function f(e){if("function"!==typeof e)throw new Error(ae(4));if(u)throw new Error(ae(5));var t=!0;return s(),a.push(e),function(){if(t){if(u)throw new Error(ae(6));t=!1,s();var r=a.indexOf(e);a.splice(r,1),i=null}}}function p(e){if(!fe(e))throw new Error(ae(7));if("undefined"===typeof e.type)throw new Error(ae(8));if(u)throw new Error(ae(9));try{u=!0,c=o(c,e)}finally{u=!1}for(var t=i=a,r=0;r<t.length;r++){(0,t[r])()}return e}function d(e){if("function"!==typeof e)throw new Error(ae(10));o=e,p({type:le.REPLACE})}function h(){var e,t=f;return(e={subscribe:function(e){if("object"!==typeof e||null===e)throw new Error(ae(11));function r(){e.next&&e.next(l())}return r(),{unsubscribe:t(r)}}})[ue]=function(){return this},e}return p({type:le.INIT}),(n={dispatch:p,subscribe:f,getState:l,replaceReducer:d})[ue]=h,n}function de(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return 0===t.length?function(e){return e}:1===t.length?t[0]:t.reduce((function(e,t){return function(){return e(t.apply(void 0,arguments))}}))}r(3454);var he=function(){var e=function(t,r){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])},e(t,r)};return function(t,r){if("function"!==typeof r&&null!==r)throw new TypeError("Class extends value "+String(r)+" is not a constructor or null");function n(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(n.prototype=r.prototype,new n)}}(),ye=function(e,t){for(var r=0,n=t.length,o=e.length;r<n;r++,o++)e[o]=t[r];return e},me=Object.defineProperty,ge=(Object.defineProperties,Object.getOwnPropertyDescriptors,Object.getOwnPropertySymbols),ve=Object.prototype.hasOwnProperty,be=Object.prototype.propertyIsEnumerable,Oe=function(e,t,r){return t in e?me(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r},_e=function(e,t){for(var r in t||(t={}))ve.call(t,r)&&Oe(e,r,t[r]);if(ge)for(var n=0,o=ge(t);n<o.length;n++){r=o[n];be.call(t,r)&&Oe(e,r,t[r])}return e};"undefined"!==typeof window&&window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__&&window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__,"undefined"!==typeof window&&window.__REDUX_DEVTOOLS_EXTENSION__&&window.__REDUX_DEVTOOLS_EXTENSION__;!function(e){function t(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];var o=e.apply(this,r)||this;return Object.setPrototypeOf(o,t.prototype),o}he(t,e),Object.defineProperty(t,Symbol.species,{get:function(){return t},enumerable:!1,configurable:!0}),t.prototype.concat=function(){for(var t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];return e.prototype.concat.apply(this,t)},t.prototype.prepend=function(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];return 1===e.length&&Array.isArray(e[0])?new(t.bind.apply(t,ye([void 0],e[0].concat(this)))):new(t.bind.apply(t,ye([void 0],e.concat(this))))}}(Array);function Se(e){return c(e)?ne(e,(function(){})):e}function Ce(e,t){function r(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];if(t){var o=t.apply(void 0,r);if(!o)throw new Error("prepareAction did not return an object");return _e(_e({type:e,payload:o.payload},"meta"in o&&{meta:o.meta}),"error"in o&&{error:o.error})}return{type:e,payload:r[0]}}return r.toString=function(){return""+e},r.type=e,r.match=function(t){return t.type===e},r}function we(e){var t,r={},n=[],o={addCase:function(e,t){var n="string"===typeof e?e:e.type;if(n in r)throw new Error("addCase cannot be called with two reducers for the same action type");return r[n]=t,o},addMatcher:function(e,t){return n.push({matcher:e,reducer:t}),o},addDefaultCase:function(e){return t=e,o}};return e(o),[r,n,t]}function Ee(e){var t=e.name;if(!t)throw new Error("`name` is a required option for createSlice");var r,n="function"==typeof e.initialState?e.initialState:Se(e.initialState),i=e.reducers||{},a=Object.keys(i),u={},s={},l={};function f(){var t="function"===typeof e.extraReducers?we(e.extraReducers):[e.extraReducers],r=t[0],i=void 0===r?{}:r,a=t[1],u=void 0===a?[]:a,l=t[2],f=void 0===l?void 0:l,p=_e(_e({},i),s);return function(e,t,r,n){void 0===r&&(r=[]);var i,a="function"===typeof t?we(t):[t,r,n],u=a[0],s=a[1],l=a[2];if(function(e){return"function"===typeof e}(e))i=function(){return Se(e())};else{var f=Se(e);i=function(){return f}}function p(e,t){void 0===e&&(e=i());var r=ye([u[t.type]],s.filter((function(e){return(0,e.matcher)(t)})).map((function(e){return e.reducer})));return 0===r.filter((function(e){return!!e})).length&&(r=[l]),r.reduce((function(e,r){if(r){var n;if(o(e))return void 0===(n=r(e,t))?e:n;if(c(e))return ne(e,(function(e){return r(e,t)}));if(void 0===(n=r(e,t))){if(null===e)return e;throw Error("A case reducer on a non-draftable value must not return undefined")}return n}return e}),e)}return p.getInitialState=i,p}(n,p,u,f)}return a.forEach((function(e){var r,n,o=i[e],c=t+"/"+e;"reducer"in o?(r=o.reducer,n=o.prepare):r=o,u[e]=r,s[c]=r,l[e]=n?Ce(c,n):Ce(c)})),{name:t,reducer:function(e,t){return r||(r=f()),r(e,t)},actions:l,caseReducers:u,getInitialState:function(){return r||(r=f()),r.getInitialState()}}}Object.assign;var Ae="listenerMiddleware";Ce(Ae+"/add"),Ce(Ae+"/removeAll"),Ce(Ae+"/remove");L();var Re=Ce("initialize"),xe=Ce("reset"),ke=function(e){return"@@redux-saga/"+e},Ne=ke("CANCEL_PROMISE"),je=ke("CHANNEL_END"),Te=ke("IO"),Pe=ke("MATCH"),Be=ke("MULTICAST"),Me=ke("SAGA_ACTION"),Ue=ke("SELF_CANCELLATION"),De=ke("TASK"),Le=ke("TASK_CANCEL"),He=ke("TERMINATE"),We=ke("LOCATION"),Ie=r(7462);var ze=function(e){return null===e||void 0===e},Ze=function(e){return null!==e&&void 0!==e},Je=function(e){return"function"===typeof e},Fe=function(e){return"string"===typeof e},qe=Array.isArray,Ge=function(e){return e&&Je(e.then)},$e=function(e){return e&&Je(e.next)&&Je(e.throw)},Ke=function e(t){return t&&(Fe(t)||Ye(t)||Je(t)||qe(t)&&t.every(e))},Ve=function(e){return e&&Je(e.take)&&Je(e.close)},Xe=function(e){return Je(e)&&e.hasOwnProperty("toString")},Ye=function(e){return Boolean(e)&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype};var Qe=function(e,t){var r;void 0===t&&(t=!0);var n=new Promise((function(n){r=setTimeout(n,Math.min(2147483647,e),t)}));return n[Ne]=function(){clearTimeout(r)},n},et=function(e){return function(){return e}},tt=et(!0),rt=function(){};var nt=function(e){return e};"function"===typeof Symbol&&Symbol.asyncIterator&&Symbol.asyncIterator;var ot=function(e,t){(0,Ie.Z)(e,t),Object.getOwnPropertySymbols&&Object.getOwnPropertySymbols(t).forEach((function(r){e[r]=t[r]}))};function ct(e,t){var r=e.indexOf(t);r>=0&&e.splice(r,1)}var it=function(e){throw e},at=function(e){return{value:e,done:!0}};function ut(e,t,r){void 0===t&&(t=it),void 0===r&&(r="iterator");var n={meta:{name:r},next:e,throw:t,return:at,isSagaIterator:!0};return"undefined"!==typeof Symbol&&(n[Symbol.iterator]=function(){return n}),n}function st(e,t){var r=t.sagaStack;console.error(e),console.error(r)}var lt=function(e){return Array.apply(null,new Array(e))},ft=function(e){return function(t){return e(Object.defineProperty(t,Me,{value:!0}))}},pt=function(e){return e===He},dt=function(e){return e===Le},ht=function(e){return pt(e)||dt(e)};function yt(e,t){var r=Object.keys(e),n=r.length;var o,c=0,i=qe(e)?lt(n):{},a={};return r.forEach((function(e){var r=function(r,a){o||(a||ht(r)?(t.cancel(),t(r,a)):(i[e]=r,++c===n&&(o=!0,t(i))))};r.cancel=rt,a[e]=r})),t.cancel=function(){o||(o=!0,r.forEach((function(e){return a[e].cancel()})))},a}function mt(e){return{name:e.name||"anonymous",location:gt(e)}}function gt(e){return e[We]}function vt(e,t){void 0===e&&(e=10);var r=new Array(e),n=0,o=0,c=0,i=function(t){r[o]=t,o=(o+1)%e,n++},a=function(){if(0!=n){var t=r[c];return r[c]=null,n--,c=(c+1)%e,t}},u=function(){for(var e=[];n;)e.push(a());return e};return{isEmpty:function(){return 0==n},put:function(a){var s;if(n<e)i(a);else switch(t){case 1:throw new Error("Channel's Buffer overflow!");case 3:r[o]=a,c=o=(o+1)%e;break;case 4:s=2*e,r=u(),n=r.length,o=r.length,c=0,r.length=s,e=s,i(a)}},take:a,flush:u}}var bt=function(e){return vt(e,4)},Ot="TAKE",_t="PUT",St="CALL",Ct="FORK",wt="CANCEL",Et="SELECT",At=function(e,t){var r;return(r={})[Te]=!0,r.combinator=!1,r.type=e,r.payload=t,r};function Rt(e,t){return void 0===e&&(e="*"),Ke(e)?(Ze(t)&&console.warn("take(pattern) takes one argument but two were provided. Consider passing an array for listening to several action types"),At(Ot,{pattern:e})):Ve(r=e)&&r[Be]&&Ze(t)&&Ke(t)?At(Ot,{channel:e,pattern:t}):Ve(e)?(Ze(t)&&console.warn("take(channel) takes one argument but two were provided. Second argument is ignored."),At(Ot,{channel:e})):void 0;var r}function xt(e,t){return ze(t)&&(t=e,e=void 0),At(_t,{channel:e,action:t})}function kt(e,t){var r,n=null;return Je(e)?r=e:(qe(e)?(n=e[0],r=e[1]):(n=e.context,r=e.fn),n&&Fe(r)&&Je(n[r])&&(r=n[r])),{context:n,fn:r,args:t}}function Nt(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return At(St,kt(e,r))}function jt(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return At(Ct,kt(e,r))}function Tt(e){return void 0===e&&(e=Ue),At(wt,e)}function Pt(e){void 0===e&&(e=nt);for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return At(Et,{selector:e,args:r})}var Bt=Nt.bind(null,Qe);function Mt(){var e={};return e.promise=new Promise((function(t,r){e.resolve=t,e.reject=r})),e}var Ut=Mt,Dt=[],Lt=0;function Ht(e){try{zt(),e()}finally{Zt()}}function Wt(e){Dt.push(e),Lt||(zt(),Jt())}function It(e){try{return zt(),e()}finally{Jt()}}function zt(){Lt++}function Zt(){Lt--}function Jt(){var e;for(Zt();!Lt&&void 0!==(e=Dt.shift());)Ht(e)}var Ft=function(e){return function(t){return e.some((function(e){return Vt(e)(t)}))}},qt=function(e){return function(t){return e(t)}},Gt=function(e){return function(t){return t.type===String(e)}},$t=function(e){return function(t){return t.type===e}},Kt=function(){return tt};function Vt(e){var t="*"===e?Kt:Fe(e)?Gt:qe(e)?Ft:Xe(e)?Gt:Je(e)?qt:Ye(e)?$t:null;if(null===t)throw new Error("invalid pattern: "+e);return t(e)}var Xt={type:je},Yt=function(e){return e&&e.type===je};function Qt(e){void 0===e&&(e=bt());var t=!1,r=[];return{take:function(n){t&&e.isEmpty()?n(Xt):e.isEmpty()?(r.push(n),n.cancel=function(){ct(r,n)}):n(e.take())},put:function(n){if(!t){if(0===r.length)return e.put(n);r.shift()(n)}},flush:function(r){t&&e.isEmpty()?r(Xt):r(e.flush())},close:function(){if(!t){t=!0;var e=r;r=[];for(var n=0,o=e.length;n<o;n++){(0,e[n])(Xt)}}}}}function er(){var e=function(){var e,t=!1,r=[],n=r,o=function(){n===r&&(n=r.slice())},c=function(){t=!0;var e=r=n;n=[],e.forEach((function(e){e(Xt)}))};return(e={})[Be]=!0,e.put=function(e){if(!t)if(Yt(e))c();else for(var o=r=n,i=0,a=o.length;i<a;i++){var u=o[i];u[Pe](e)&&(u.cancel(),u(e))}},e.take=function(e,r){void 0===r&&(r=Kt),t?e(Xt):(e[Pe]=r,o(),n.push(e),e.cancel=function(e){var t=!1;return function(){t||(t=!0,e())}}((function(){o(),ct(n,e)})))},e.close=c,e}(),t=e.put;return e.put=function(e){e[Me]?t(e):Wt((function(){t(e)}))},e}function tr(e,t){var r=e[Ne];Je(r)&&(t.cancel=r),e.then(t,(function(e){t(e,!0)}))}var rr,nr=0,or=function(){return++nr};function cr(e){e.isRunning()&&e.cancel()}var ir=((rr={}).TAKE=function(e,t,r){var n=t.channel,o=void 0===n?e.channel:n,c=t.pattern,i=t.maybe,a=function(e){e instanceof Error?r(e,!0):!Yt(e)||i?r(e):r(He)};try{o.take(a,Ze(c)?Vt(c):null)}catch(u){return void r(u,!0)}r.cancel=a.cancel},rr.PUT=function(e,t,r){var n=t.channel,o=t.action,c=t.resolve;Wt((function(){var t;try{t=(n?n.put:e.dispatch)(o)}catch(i){return void r(i,!0)}c&&Ge(t)?tr(t,r):r(t)}))},rr.ALL=function(e,t,r,n){var o=n.digestEffect,c=nr,i=Object.keys(t);if(0!==i.length){var a=yt(t,r);i.forEach((function(e){o(t[e],c,a[e],e)}))}else r(qe(t)?[]:{})},rr.RACE=function(e,t,r,n){var o=n.digestEffect,c=nr,i=Object.keys(t),a=qe(t)?lt(i.length):{},u={},s=!1;i.forEach((function(e){var t=function(t,n){s||(n||ht(t)?(r.cancel(),r(t,n)):(r.cancel(),s=!0,a[e]=t,r(a)))};t.cancel=rt,u[e]=t})),r.cancel=function(){s||(s=!0,i.forEach((function(e){return u[e].cancel()})))},i.forEach((function(e){s||o(t[e],c,u[e],e)}))},rr.CALL=function(e,t,r,n){var o=t.context,c=t.fn,i=t.args,a=n.task;try{var u=c.apply(o,i);if(Ge(u))return void tr(u,r);if($e(u))return void mr(e,u,a.context,nr,mt(c),!1,r);r(u)}catch(s){r(s,!0)}},rr.CPS=function(e,t,r){var n=t.context,o=t.fn,c=t.args;try{var i=function(e,t){ze(e)?r(t):r(e,!0)};o.apply(n,c.concat(i)),i.cancel&&(r.cancel=i.cancel)}catch(a){r(a,!0)}},rr.FORK=function(e,t,r,n){var o=t.context,c=t.fn,i=t.args,a=t.detached,u=n.task,s=function(e){var t=e.context,r=e.fn,n=e.args;try{var o=r.apply(t,n);if($e(o))return o;var c=!1;return ut((function(e){return c?{value:e,done:!0}:(c=!0,{value:o,done:!Ge(o)})}))}catch(i){return ut((function(){throw i}))}}({context:o,fn:c,args:i}),l=function(e,t){return e.isSagaIterator?{name:e.meta.name}:mt(t)}(s,c);It((function(){var t=mr(e,s,u.context,nr,l,a,void 0);a?r(t):t.isRunning()?(u.queue.addTask(t),r(t)):t.isAborted()?u.queue.abort(t.error()):r(t)}))},rr.JOIN=function(e,t,r,n){var o=n.task,c=function(e,t){if(e.isRunning()){var r={task:o,cb:t};t.cancel=function(){e.isRunning()&&ct(e.joiners,r)},e.joiners.push(r)}else e.isAborted()?t(e.error(),!0):t(e.result())};if(qe(t)){if(0===t.length)return void r([]);var i=yt(t,r);t.forEach((function(e,t){c(e,i[t])}))}else c(t,r)},rr.CANCEL=function(e,t,r,n){var o=n.task;t===Ue?cr(o):qe(t)?t.forEach(cr):cr(t),r()},rr.SELECT=function(e,t,r){var n=t.selector,o=t.args;try{r(n.apply(void 0,[e.getState()].concat(o)))}catch(c){r(c,!0)}},rr.ACTION_CHANNEL=function(e,t,r){var n=t.pattern,o=Qt(t.buffer),c=Vt(n),i=function t(r){Yt(r)||e.channel.take(t,c),o.put(r)},a=o.close;o.close=function(){i.cancel(),a()},e.channel.take(i,c),r(o)},rr.CANCELLED=function(e,t,r,n){r(n.task.isCancelled())},rr.FLUSH=function(e,t,r){t.flush(r)},rr.GET_CONTEXT=function(e,t,r,n){r(n.task.context[t])},rr.SET_CONTEXT=function(e,t,r,n){var o=n.task;ot(o.context,t),r()},rr);function ar(e,t){return e+"?"+t}function ur(e){var t=e.name,r=e.location;return r?t+" "+ar(r.fileName,r.lineNumber):t}function sr(e){var t=function(e,t){var r;return(r=[]).concat.apply(r,t.map(e))}((function(e){return e.cancelledTasks}),e);return t.length?["Tasks cancelled due to error:"].concat(t).join("\n"):""}var lr=null,fr=[],pr=function(e){e.crashedEffect=lr,fr.push(e)},dr=function(){lr=null,fr.length=0},hr=function(){var e=fr[0],t=fr.slice(1),r=e.crashedEffect?function(e){var t=gt(e);return t?t.code+" "+ar(t.fileName,t.lineNumber):""}(e.crashedEffect):null;return["The above error occurred in task "+ur(e.meta)+(r?" \n when executing effect "+r:"")].concat(t.map((function(e){return" created by "+ur(e.meta)})),[sr(fr)]).join("\n")};function yr(e,t,r,n,o,c,i){var a;void 0===i&&(i=rt);var u,s,l=0,f=null,p=[],d=Object.create(r),h=function(e,t,r){var n,o=[],c=!1;function i(e){t(),u(),r(e,!0)}function a(t){o.push(t),t.cont=function(a,u){c||(ct(o,t),t.cont=rt,u?i(a):(t===e&&(n=a),o.length||(c=!0,r(n))))}}function u(){c||(c=!0,o.forEach((function(e){e.cont=rt,e.cancel()})),o=[])}return a(e),{addTask:a,cancelAll:u,abort:i,getTasks:function(){return o}}}(t,(function(){p.push.apply(p,h.getTasks().map((function(e){return e.meta.name})))}),y);function y(t,r){if(r){if(l=2,pr({meta:o,cancelledTasks:p}),m.isRoot){var n=hr();dr(),e.onError(t,{sagaStack:n})}s=t,f&&f.reject(t)}else t===Le?l=1:1!==l&&(l=3),u=t,f&&f.resolve(t);m.cont(t,r),m.joiners.forEach((function(e){e.cb(t,r)})),m.joiners=null}var m=((a={})[De]=!0,a.id=n,a.meta=o,a.isRoot=c,a.context=d,a.joiners=[],a.queue=h,a.cancel=function(){0===l&&(l=1,h.cancelAll(),y(Le,!1))},a.cont=i,a.end=y,a.setContext=function(e){ot(d,e)},a.toPromise=function(){return f||(f=Ut(),2===l?f.reject(s):0!==l&&f.resolve(u)),f.promise},a.isRunning=function(){return 0===l},a.isCancelled=function(){return 1===l||0===l&&1===t.status},a.isAborted=function(){return 2===l},a.result=function(){return u},a.error=function(){return s},a);return m}function mr(e,t,r,n,o,c,i){var a=e.finalizeRunEffect((function(t,r,n){if(Ge(t))tr(t,n);else if($e(t))mr(e,t,s.context,r,o,!1,n);else if(t&&t[Te]){(0,ir[t.type])(e,t.payload,n,l)}else n(t)}));f.cancel=rt;var u={meta:o,cancel:function(){0===u.status&&(u.status=1,f(Le))},status:0},s=yr(e,u,r,n,o,c,i),l={task:s,digestEffect:p};return i&&(i.cancel=s.cancel),f(),s;function f(e,r){try{var o;r?(o=t.throw(e),dr()):dt(e)?(u.status=1,f.cancel(),o=Je(t.return)?t.return(Le):{done:!0,value:Le}):o=pt(e)?Je(t.return)?t.return():{done:!0}:t.next(e),o.done?(1!==u.status&&(u.status=3),u.cont(o.value)):p(o.value,n,f)}catch(c){if(1===u.status)throw c;u.status=2,u.cont(c,!0)}}function p(t,r,n,o){void 0===o&&(o="");var c,i=or();function u(r,o){c||(c=!0,n.cancel=rt,e.sagaMonitor&&(o?e.sagaMonitor.effectRejected(i,r):e.sagaMonitor.effectResolved(i,r)),o&&function(e){lr=e}(t),n(r,o))}e.sagaMonitor&&e.sagaMonitor.effectTriggered({effectId:i,parentEffectId:r,label:o,effect:t}),u.cancel=rt,n.cancel=function(){c||(c=!0,u.cancel(),u.cancel=rt,e.sagaMonitor&&e.sagaMonitor.effectCancelled(i))},a(t,i,u)}}function gr(e,t){var r=e.channel,n=void 0===r?er():r,o=e.dispatch,c=e.getState,i=e.context,a=void 0===i?{}:i,u=e.sagaMonitor,s=e.effectMiddlewares,l=e.onError,f=void 0===l?st:l;for(var p=arguments.length,d=new Array(p>2?p-2:0),h=2;h<p;h++)d[h-2]=arguments[h];var y=t.apply(void 0,d);var m,g=or();if(u&&(u.rootSagaStarted=u.rootSagaStarted||rt,u.effectTriggered=u.effectTriggered||rt,u.effectResolved=u.effectResolved||rt,u.effectRejected=u.effectRejected||rt,u.effectCancelled=u.effectCancelled||rt,u.actionDispatched=u.actionDispatched||rt,u.rootSagaStarted({effectId:g,saga:t,args:d})),s){var v=de.apply(void 0,s);m=function(e){return function(t,r,n){return v((function(t){return e(t,r,n)}))(t)}}}else m=nt;var b={channel:n,dispatch:ft(o),getState:c,sagaMonitor:u,onError:f,finalizeRunEffect:m};return It((function(){var e=mr(b,y,a,g,mt(t),!0,void 0);return u&&u.effectResolved(g,e),e}))}var vr=function(e){var t,r=void 0===e?{}:e,n=r.context,o=void 0===n?{}:n,c=r.channel,i=void 0===c?er():c,a=r.sagaMonitor,u=function(e,t){if(null==e)return{};var r,n,o={},c=Object.keys(e);for(n=0;n<c.length;n++)r=c[n],t.indexOf(r)>=0||(o[r]=e[r]);return o}(r,["context","channel","sagaMonitor"]);function s(e){var r=e.getState,n=e.dispatch;return t=gr.bind(null,(0,Ie.Z)({},u,{context:o,channel:i,dispatch:n,getState:r,sagaMonitor:a})),function(e){return function(t){a&&a.actionDispatched&&a.actionDispatched(t);var r=e(t);return i.put(t),r}}}return s.run=function(){return t.apply(void 0,arguments)},s.setContext=function(e){ot(o,e)},s},br=vr,Or=r(9418),_r=r(4046),Sr={autoGroupTiles:"left",configId:Or.scrabble.id,locale:_r.Locale.EN_US},Cr=Sr.configId,wr=Sr.locale,Er=(0,Or.getLocaleConfig)(Cr,wr),Ar=Er.boardHeight,Rr=Er.boardWidth,xr=_r.Board.create(Rr,Ar),kr=r(6042),Nr=r(9396),jr=r(7618),Tr=Ee({initialState:xr,name:"board",reducers:{applyResult:function(e,t){var r=e.clone();return t.payload.cells.forEach((function(e){r.updateCell(e.x,e.y,(function(){return new _r.Cell((0,Nr.Z)((0,kr.Z)({},e),{isEmpty:!1}))}))})),r},changeCellValue:function(e,t){var r=e.clone(),n=t.payload,o=n.value,c=n.x,i=n.y,a=!o||o===jr.EMPTY_CELL,u=a?_r.Tile.Null:new _r.Tile({character:o});return r.updateCell(c,i,(function(e){return new _r.Cell((0,Nr.Z)((0,kr.Z)({},e),{isEmpty:a,tile:u}))})),r},change:function(e,t){return t.payload},init:function(e,t){return t.payload},reset:function(){return xr},toggleCellIsBlank:function(e,t){var r=e.clone(),n=t.payload,o=n.x,c=n.y;return r.updateCell(o,c,(function(e){var t=e.isEmpty?e.tile:new _r.Tile((0,Nr.Z)((0,kr.Z)({},e.tile),{isBlank:!e.tile.isBlank}));return new _r.Cell((0,Nr.Z)((0,kr.Z)({},e),{tile:t}))})),r}}}),Pr=Tr,Br=r(9815),Mr=[],Ur=Ee({initialState:Mr,name:"cellFilter",reducers:{toggle:function(e,t){var r=t.payload,n=r.x,o=r.y;return e.some((function(e){return e.x===n&&e.y===o}))?e.filter((function(e){return e.x!==n||e.y!==o})):(0,Br.Z)(e).concat([t.payload])},reset:function(){return Mr}}}),Dr=Ur,Lr={input:"",isLoading:!1,results:[]},Hr=Ee({initialState:Lr,name:"dictionary",reducers:{changeInput:function(e,t){return(0,Nr.Z)((0,kr.Z)({},e),{input:t.payload})},reset:function(){return Lr},submit:function(e){return(0,Nr.Z)((0,kr.Z)({},e),{isLoading:!0,results:Lr.results})},submitFailure:function(e){return(0,Nr.Z)((0,kr.Z)({},e),{isLoading:!1,results:Lr.results})},submitSuccess:function(e,t){return(0,Nr.Z)((0,kr.Z)({},e),{isLoading:!1,results:t.payload})}}}),Wr=r(2237),Ir=[null,null,null,null,null,null,null],zr=Ee({initialState:Ir,name:"rack",reducers:{change:function(e,t){return t.payload},changeCharacter:function(e,t){var r=t.payload,n=r.character,o=r.index;return(0,Br.Z)(e.slice(0,o)).concat([n],(0,Br.Z)(e.slice(o+1)))},groupTiles:function(e,t){var r=t.payload;if(null===r)return e;var n=(0,Wr.Ml)((0,Wr.Mf)(r));return(0,Br.Z)(e).sort(n)},init:function(e,t){return t.payload},removeTiles:function(e,t){var r=t.payload;return(0,Wr.gV)(e,r).map((function(e){var t=e.character;return e.tile?null:t}))},reset:function(){return Ir}}}),Zr=r(3620),Jr={candidate:null,query:"",results:void 0,sort:{column:Zr.M.Points,direction:Zr.S.Descending}},Fr=function(e){return e===Zr.S.Ascending?Zr.S.Descending:Zr.S.Ascending},qr=Ee({initialState:Jr,name:"results",reducers:{applyResult:function(e,t){return Jr},changeQuery:function(e,t){var r=t.payload;return(0,Nr.Z)((0,kr.Z)({},e),{query:r})},changeResultCandidate:function(e,t){var r=t.payload;return(0,Nr.Z)((0,kr.Z)({},e),{candidate:r})},changeResults:function(e,t){var r=t.payload;return(0,Nr.Z)((0,kr.Z)({},e),{candidate:Jr.candidate,query:Jr.query,results:r})},sort:function(e,t){var r=t.payload,n=e.sort,o=n.column,c=n.direction;return(0,Nr.Z)((0,kr.Z)({},e),{sort:{column:r,direction:o===r?Fr(c):c}})},reset:function(){return Jr}}}),Gr=Ee({initialState:Sr,name:"settings",reducers:{changeAutoGroupTiles:function(e,t){var r=t.payload;return(0,Nr.Z)((0,kr.Z)({},e),{autoGroupTiles:r})},changeConfigId:function(e,t){var r=t.payload;return(0,Nr.Z)((0,kr.Z)({},e),{configId:r})},changeLocale:function(e,t){var r=t.payload;return(0,Nr.Z)((0,kr.Z)({},e),{locale:r})},init:function(e,t){return(0,kr.Z)({},e,t.payload)}}}),$r=Gr,Kr=Ee({initialState:{isLoading:!1,lastSolvedParameters:{board:xr,characters:[]}},name:"solve",reducers:{submit:function(e){return(0,Nr.Z)((0,kr.Z)({},e),{isLoading:!0})},submitFailure:function(e){return(0,Nr.Z)((0,kr.Z)({},e),{isLoading:!1})},submitSuccess:function(e,t){var r=t.payload;return(0,Nr.Z)((0,kr.Z)({},e),{isLoading:!1,lastSolvedParameters:r})}}}),Vr=function(e){for(var t=Object.keys(e),r={},n=0;n<t.length;n++){var o=t[n];0,"function"===typeof e[o]&&(r[o]=e[o])}var c,i=Object.keys(r);try{!function(e){Object.keys(e).forEach((function(t){var r=e[t];if("undefined"===typeof r(void 0,{type:le.INIT}))throw new Error(ae(12));if("undefined"===typeof r(void 0,{type:le.PROBE_UNKNOWN_ACTION()}))throw new Error(ae(13))}))}(r)}catch(a){c=a}return function(e,t){if(void 0===e&&(e={}),c)throw c;for(var n=!1,o={},a=0;a<i.length;a++){var u=i[a],s=r[u],l=e[u],f=s(l,t);if("undefined"===typeof f){t&&t.type;throw new Error(ae(14))}o[u]=f,n=n||f!==l}return(n=n||i.length!==Object.keys(e).length)?o:e}}({board:Pr.reducer,cellFilter:Dr.reducer,dictionary:Hr.reducer,rack:zr.reducer,results:qr.reducer,settings:$r.reducer,solve:Kr.reducer}),Xr=Vr,Yr=r(655),Qr=function(e){return{done:!0,value:e}},en={};function tn(e){return Ve(e)?"channel":Xe(e)?String(e):Je(e)?e.name:String(e)}function rn(e,t,r){var n,o,c,i=t;function a(t,r){if(i===en)return Qr(t);if(r&&!o)throw i=en,r;n&&n(t);var a=r?e[o](r):e[i]();return i=a.nextState,c=a.effect,n=a.stateUpdater,o=a.errorState,i===en?Qr(t):c}return ut(a,(function(e){return a(null,e)}),r)}function nn(e,t){for(var r=arguments.length,n=new Array(r>2?r-2:0),o=2;o<r;o++)n[o-2]=arguments[o];var c,i={done:!1,value:Rt(e)},a=function(e){return{done:!1,value:jt.apply(void 0,[t].concat(n,[e]))}},u=function(e){return c=e};return rn({q1:function(){return{nextState:"q2",effect:i,stateUpdater:u}},q2:function(){return{nextState:"q1",effect:a(c)}}},"q1","takeEvery("+tn(e)+", "+t.name+")")}function on(e,t){for(var r=arguments.length,n=new Array(r>2?r-2:0),o=2;o<r;o++)n[o-2]=arguments[o];var c,i,a={done:!1,value:Rt(e)},u=function(e){return{done:!1,value:jt.apply(void 0,[t].concat(n,[e]))}},s=function(e){return{done:!1,value:Tt(e)}},l=function(e){return c=e},f=function(e){return i=e};return rn({q1:function(){return{nextState:"q2",effect:a,stateUpdater:f}},q2:function(){return c?{nextState:"q3",effect:s(c)}:{nextState:"q1",effect:u(i),stateUpdater:l}},q3:function(){return{nextState:"q1",effect:u(i),stateUpdater:l}}},"q1","takeLatest("+tn(e)+", "+t.name+")")}function cn(e,t){for(var r=arguments.length,n=new Array(r>2?r-2:0),o=2;o<r;o++)n[o-2]=arguments[o];return jt.apply(void 0,[nn,e,t].concat(n))}function an(e,t){for(var r=arguments.length,n=new Array(r>2?r-2:0),o=2;o<r;o++)n[o-2]=arguments[o];return jt.apply(void 0,[on,e,t].concat(n))}function un(e,t,r,n,o,c,i){try{var a=e[c](i),u=a.value}catch(s){return void r(s)}a.done?t(u):Promise.resolve(u).then(n,o)}var sn=function(){var e=function(e){return function(){var t=this,r=arguments;return new Promise((function(n,o){var c=e.apply(t,r);function i(e){un(c,n,o,i,a,"next",e)}function a(e){un(c,n,o,i,a,"throw",e)}i(void 0)}))}}((function(e,t){var r;return(0,Yr.__generator)(this,(function(n){switch(n.label){case 0:return r="/api/dictionary/".concat(e,"/").concat(t),[4,fetch(r).then((function(e){return e.json()}))];case 1:return[2,n.sent().map(_r.WordDefinition.fromJson)]}}))}));return function(t,r){return e.apply(this,arguments)}}(),ln=sn,fn=function(e){var t=e.board,r=e.characters,n=e.configId,o=e.locale;return fetch("/api/solve",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({board:t,characters:r,configId:n,locale:o})}).then((function(e){return e.json()}))},pn=function(){return fetch("/api/visit",{method:"PUT"})},dn="NOT_FOUND";var hn=function(e,t){return e===t};function yn(e,t){var r="object"===typeof t?t:{equalityCheck:t},n=r.equalityCheck,o=void 0===n?hn:n,c=r.maxSize,i=void 0===c?1:c,a=r.resultEqualityCheck,u=function(e){return function(t,r){if(null===t||null===r||t.length!==r.length)return!1;for(var n=t.length,o=0;o<n;o++)if(!e(t[o],r[o]))return!1;return!0}}(o),s=1===i?function(e){var t;return{get:function(r){return t&&e(t.key,r)?t.value:dn},put:function(e,r){t={key:e,value:r}},getEntries:function(){return t?[t]:[]},clear:function(){t=void 0}}}(u):function(e,t){var r=[];function n(e){var n=r.findIndex((function(r){return t(e,r.key)}));if(n>-1){var o=r[n];return n>0&&(r.splice(n,1),r.unshift(o)),o.value}return dn}return{get:n,put:function(t,o){n(t)===dn&&(r.unshift({key:t,value:o}),r.length>e&&r.pop())},getEntries:function(){return r},clear:function(){r=[]}}}(i,u);function l(){var t=s.get(arguments);if(t===dn){if(t=e.apply(null,arguments),a){var r=s.getEntries(),n=r.find((function(e){return a(e.value,t)}));n&&(t=n.value)}s.put(arguments,t)}return t}return l.clearCache=function(){return s.clear()},l}function mn(e){var t=Array.isArray(e[0])?e[0]:e;if(!t.every((function(e){return"function"===typeof e}))){var r=t.map((function(e){return"function"===typeof e?"function "+(e.name||"unnamed")+"()":typeof e})).join(", ");throw new Error("createSelector expects all input-selectors to be functions, but received the following types: ["+r+"]")}return t}function gn(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];var o=function(){for(var t=arguments.length,n=new Array(t),o=0;o<t;o++)n[o]=arguments[o];var c,i=0,a={memoizeOptions:void 0},u=n.pop();if("object"===typeof u&&(a=u,u=n.pop()),"function"!==typeof u)throw new Error("createSelector expects an output function after the inputs, but received: ["+typeof u+"]");var s=a,l=s.memoizeOptions,f=void 0===l?r:l,p=Array.isArray(f)?f:[f],d=mn(n),h=e.apply(void 0,[function(){return i++,u.apply(null,arguments)}].concat(p)),y=e((function(){for(var e=[],t=d.length,r=0;r<t;r++)e.push(d[r].apply(null,arguments));return c=h.apply(null,e)}));return Object.assign(y,{resultFunc:u,memoizedResultFunc:h,dependencies:d,lastResult:function(){return c},recomputations:function(){return i},resetRecomputations:function(){return i=0}}),y};return o}var vn,bn=gn(yn),On=r(4924),_n=JSON.parse('{"cell.filter-cell":"Zielort - klicken zum Wechseln","cell.set-blank":"Als Blanko markieren","cell.set-not-blank":"Nicht als Blanko markieren","cell.toggle-direction":"Schreibrichtung - klicken zum Wechseln","common.blanks":"Blankos","common.clear":"L\xf6schen","common.close":"Schlie\xdfen","common.consonants":"Konsonanten","common.loading":"Laden","common.points":"Punkte","common.tiles":"Steine","common.two-letter-tiles":"Zwei-Buchstaben","common.vowels":"Vokale","common.word":"Wort","common.words":"W\xf6rter","dictionary.empty-state.no-definitions":"Wort existiert im W\xf6rterbuch aber hat keine Definition.","dictionary.empty-state.no-results":"Wort kann nicht im W\xf6rterbuch gefunden werden.","dictionary.empty-state.not-allowed":"Dieses Wort ist nicht erlaubt.","dictionary.empty-state.uninitialized":"Die W\xf6rterbuchdefinition des letzten markierten Wortes wird hier angezeigt.","dictionary.input.placeholder":"Durchsuche W\xf6rterbuch...","empty-state.error":"Fehler","empty-state.info":"Info","empty-state.success":"Juhuu!","empty-state.warning":"Oje!","github":"Schau dieses Projekt auf GitHub an","keyMap":"Tastaturk\xfcrzel","keyMap.board":"Brett","keyMap.board.toggle-blank":"Als Blanko markieren / aufheben","keyMap.board.toggle-direction":"Schreibrichtung umschalten","keyMap.board-and-rack":"Brett & Ablage","keyMap.board-and-rack.insert-two-letter-tile":"Zwei-Buchstaben Stein hinzuf\xfcgen","keyMap.board-and-rack.navigate":"Navigieren","keyMap.board-and-rack.remove-tile":"Stein entfernen","keyMap.board-and-rack.submit":"L\xf6sen starten","keyMap.rack":"Ablage","keyMap.rack.insert-blank":"Blanko hinzuf\xfcgen (Leertaste)","rack.placeholder":"Steine\u2026","remaining-tiles":"Restliche Steine","results.empty-state.no-filtered-results":"Keine Ergebnisse f\xfcr diese Anfrage.","results.empty-state.no-results":"Keine Ergebnisse - kein Wort konnte generiert werden.","results.empty-state.outdated":"Ergebnisse sind alt. Klicken zum Aktualisieren.","results.empty-state.uninitialized":"W\xf6rter die aus deinen Buchstaben generiert wurden erscheinen hier.","results.input.placeholder":"Suchergebnisse... (RegExp)","results.solve":"L\xf6sen","settings":"Einstellungen","settings.autoGroupTiles":"Restliche Steine gruppieren","settings.autoGroupTiles.left":"Linke Seite","settings.autoGroupTiles.right":"Rechte Seite","settings.autoGroupTiles.null":"Nicht gruppieren","settings.game":"Spiel","settings.language":"Sprache"}'),Sn=JSON.parse('{"cell.filter-cell":"Target destination - click to toggle","cell.set-blank":"Mark it a blank","cell.set-not-blank":"Mark it not a blank","cell.toggle-direction":"Typing direction - click to toggle","common.blanks":"Blanks","common.clear":"Clear","common.close":"Close","common.consonants":"Consonants","common.loading":"Loading","common.points":"Points","common.tiles":"Tiles","common.two-letter-tiles":"Two-letter","common.vowels":"Vowels","common.word":"Word","common.words":"Words","dictionary.empty-state.no-definitions":"Word exists in the dictionary but it does not have a definition.","dictionary.empty-state.no-results":"Unable to find word definition in dictionary.","dictionary.empty-state.not-allowed":"This word is not allowed.","dictionary.empty-state.uninitialized":"Dictionary definition of the last highlighted word will be shown here.","dictionary.input.placeholder":"Search dictionary...","empty-state.error":"Error","empty-state.info":"Info","empty-state.success":"Yeah!","empty-state.warning":"Oops!","github":"See this project on GitHub","keyMap":"Keyboard shortcuts","keyMap.board":"Board","keyMap.board.toggle-blank":"Mark/unmark tile as a blank","keyMap.board.toggle-direction":"Toggle typing direction","keyMap.board-and-rack":"Board & rack","keyMap.board-and-rack.insert-two-letter-tile":"Insert two-letter tile","keyMap.board-and-rack.navigate":"Navigate","keyMap.board-and-rack.remove-tile":"Remove tile","keyMap.board-and-rack.submit":"Start solving","keyMap.rack":"Rack","keyMap.rack.insert-blank":"Insert blank (spacebar)","rack.placeholder":"Letters","remaining-tiles":"Remaining tiles","results.empty-state.no-filtered-results":"No result matches this query.","results.empty-state.no-results":"No results - unable to generate any words.","results.empty-state.outdated":"Results are outdated. Click below to update.","results.empty-state.uninitialized":"Words generated from your letters will be shown here.","results.input.placeholder":"Search results... (RegExp)","results.solve":"Solve","settings":"Settings","settings.autoGroupTiles":"Group remaining tiles","settings.autoGroupTiles.left":"On the left","settings.autoGroupTiles.right":"On the right","settings.autoGroupTiles.null":"Do not group","settings.game":"Game","settings.language":"Language"}'),Cn=JSON.parse('{"cell.filter-cell":"Destino objetivo: haga clic para alternar","cell.set-blank":"Marcar como en blanco","cell.set-not-blank":"Marcar como no en blanco","cell.toggle-direction":"Direcci\xf3n de escritura: haga clic para alternar","common.blanks":"Blancos","common.clear":"Borrar","common.close":"Cerrar","common.consonants":"Consonantes","common.loading":"Cargando","common.points":"Puntos","common.tiles":"Longitud","common.two-letter-tiles":"Dos letras","common.vowels":"Vocales","common.word":"Palabra","common.words":"Palabras","dictionary.empty-state.no-definitions":"La palabra existe en el diccionario pero no tiene una definici\xf3n.","dictionary.empty-state.no-results":"No se puede encontrar la definici\xf3n de palabra en el diccionario.","dictionary.empty-state.not-allowed":"Esta palabra no es aceptable.","dictionary.empty-state.uninitialized":"Aqu\xed se mostrar\xe1 la definici\xf3n del diccionario de la \xfaltima palabra resaltada.","dictionary.input.placeholder":"Busca el diccionario...","empty-state.error":"Error","empty-state.info":"Info","empty-state.success":"S\xed!","empty-state.warning":"Vaya!","github":"Ver este proyecto en GitHub","keyMap":"Atajos de teclado","keyMap.board":"Tablero","keyMap.board.toggle-blank":"Marcar / desmarcar un espacio en blanco","keyMap.board.toggle-direction":"Alternar direcci\xf3n de escritura","keyMap.board-and-rack":"Tablero y estante","keyMap.board-and-rack.insert-two-letter-tile":"Insertar mosaico de dos letras","keyMap.board-and-rack.navigate":"Navegar","keyMap.board-and-rack.remove-tile":"Quitar Letra","keyMap.board-and-rack.submit":"Empezar a resolver","keyMap.rack":"Estante","keyMap.rack.insert-blank":"Insertar espacio en blanco (barra espaciadora)","rack.placeholder":"Letras\u2026","remaining-tiles":"Casillas restantes","results.empty-state.no-filtered-results":"Ning\xfan resultado coincide con esta consulta.","results.empty-state.no-results":"No hay resultados; no se pueden generar palabras","results.empty-state.outdated":"Los resultados est\xe1n desactualizados. Haga clic a continuaci\xf3n para actualizar.","results.empty-state.uninitialized":"Aqu\xed se mostrar\xe1n las palabras generadas a partir de sus letras.","results.input.placeholder":"Busque una soluci\xf3n... (RegExp)","results.solve":"Resolver","settings":"Configuraci\xf3n","settings.autoGroupTiles":"Agrupar casillas restantes","settings.autoGroupTiles.left":"A la izquierda","settings.autoGroupTiles.right":"A la derecha","settings.autoGroupTiles.null":"No agrupar","settings.game":"Juego","settings.language":"Idioma"}'),wn=JSON.parse('{"cell.filter-cell":"Destination cible - cliquer pour changer","cell.set-blank":"Marquer comme vide","cell.set-not-blank":"Marquer comme non vide","cell.toggle-direction":"Direction d\'\xe9criture - cliquer pour changer","common.blanks":"Cases vides","common.clear":"Effacer","common.close":"Fermer","common.consonants":"Consonnes","common.loading":"Chargement","common.points":"Points","common.tiles":"Cases","common.two-letter-tiles":"Deux lettres","common.vowels":"Voyelles","common.word":"Mot","common.words":"Mots","dictionary.empty-state.no-definitions":"Le mot existe dans le dictionary mais n\'a pas de d\xe9finition.","dictionary.empty-state.no-results":"Impossible de trouver une d\xe9finition pour ce mot dans le dictionaire.","dictionary.empty-state.not-allowed":"Ce mot n\'est pas pas acceptable.","dictionary.empty-state.uninitialized":"La d\xe9finition dictionaire du dernier mot surlign\xe9 sera affich\xe9e ici.","dictionary.input.placeholder":"Rechercher dans le dictionnaire...","empty-state.error":"Erreur","empty-state.info":"Info","empty-state.success":"Ouais!","empty-state.warning":"Oups!","github":"Voir ce projet sur GitHub","keyMap":"Raccourcis clavier","keyMap.board":"Plateau","keyMap.board.toggle-blank":"Marqu\xe9/D\xe9marqu\xe9 la case en tant que vide","keyMap.board.toggle-direction":"Faire basculer la direction d\'\xe9criture","keyMap.board-and-rack":"Plateau & chevalet","keyMap.board-and-rack.insert-two-letter-tile":"Ins\xe9rer une tuile de deux lettres","keyMap.board-and-rack.navigate":"Naviguer","keyMap.board-and-rack.remove-tile":"Supprimer une case","keyMap.board-and-rack.submit":"Commencer la r\xe9solution","keyMap.rack":"Chevalet","keyMap.rack.insert-blank":"Inserer une case vide (spacebar)","rack.placeholder":"Lettres","remaining-tiles":"Cases restantes","results.empty-state.no-filtered-results":"Aucun r\xe9sultat ne correspond \xe0 cette requ\xeate","results.empty-state.no-results":"Pas de r\xe9sultats - impossible de g\xe9n\xe9rer des mots.","results.empty-state.outdated":"Les r\xe9sultats sont d\xe9pass\xe9. Cliquer ci-dessous pour mettre \xe0 jour.","results.empty-state.uninitialized":"Words generated from your letters will be shown here.","results.input.placeholder":"Rechercher les r\xe9sultats... (RegExp)","results.solve":"R\xe9soudre","settings":"Options","settings.autoGroupTiles":"Grouper les cases restantes","settings.autoGroupTiles.left":"Vers la droite","settings.autoGroupTiles.right":"Vers la gauche","settings.autoGroupTiles.null":"Ne pas grouper","settings.game":"Jeu","settings.language":"Langue"}'),En=JSON.parse('{"cell.filter-cell":"Miejsce docelowe - kliknij aby zmieni\u0107","cell.set-blank":"Oznacz jako blank","cell.set-not-blank":"Oznacz jako nie blank","cell.toggle-direction":"Kierunek wpisywania - kliknij aby zmieni\u0107","common.blanks":"Blanki","common.clear":"Wyczy\u015b\u0107","common.close":"Zamknij","common.consonants":"Sp\xf3\u0142g\u0142oski","common.loading":"\u0141adowanie","common.points":"Punkty","common.tiles":"P\u0142ytki","common.two-letter-tiles":"Dwuliterowe","common.vowels":"Samog\u0142oski","common.word":"S\u0142owo","common.words":"S\u0142owa","dictionary.empty-state.no-definitions":"S\u0142owo istnieje w s\u0142owniku ale nie posiada definicji.","dictionary.empty-state.no-results":"Nie uda\u0142o si\u0119 znale\u017a\u0107 definicji s\u0142owa w s\u0142owniku.","dictionary.empty-state.not-allowed":"To s\u0142owo nie jest dopuszczalne w grach.","dictionary.empty-state.uninitialized":"Tu zostanie wy\u015bwietlona s\u0142ownikowa definicja ostatnio pod\u015bwietlonego s\u0142owa.","dictionary.input.placeholder":"Szukaj w s\u0142owniku...","empty-state.error":"B\u0142\u0105d","empty-state.info":"Info","empty-state.success":"Hurra!","empty-state.warning":"Ups!","github":"Zobacz ten projekt na GitHubie","keyMap":"Skr\xf3ty klawiszowe","keyMap.board":"Plansza","keyMap.board.toggle-blank":"Oznacz/odznacz p\u0142ytk\u0119 jako blank","keyMap.board.toggle-direction":"Zmie\u0144 kierunek wpisywania","keyMap.board-and-rack":"Plansza i stojak","keyMap.board-and-rack.insert-two-letter-tile":"Wstaw dwuliterow\u0105 p\u0142ytk\u0119","keyMap.board-and-rack.navigate":"Nawigacja","keyMap.board-and-rack.remove-tile":"Zdejmij p\u0142ytk\u0119","keyMap.board-and-rack.submit":"Rozpocznij wyszukiwanie","keyMap.rack":"Stojak","keyMap.rack.insert-blank":"Wstaw blanka (spacja)","rack.placeholder":"Literki","remaining-tiles":"Pozosta\u0142e p\u0142ytki","results.empty-state.no-filtered-results":"\u017baden wynik nie pasuje do tej kwerendy.","results.empty-state.no-results":"Brak wynik\xf3w - nie mo\u017cna wygenerowa\u0107 \u017cadnego s\u0142owa.","results.empty-state.outdated":"Wyniki s\u0105 nieaktualne. Kliknij poni\u017cej, aby zaktualizowa\u0107.","results.empty-state.uninitialized":"Tu zostan\u0105 wy\u015bwietlone s\u0142owa wygenerowane z Twoich liter.","results.input.placeholder":"Szukaj rozwi\u0105zania... (RegExp)","results.solve":"Rozwi\u0105\u017c","settings":"Opcje","settings.autoGroupTiles":"Grupuj pozosta\u0142e p\u0142ytki","settings.autoGroupTiles.left":"Po lewej","settings.autoGroupTiles.right":"Po prawej","settings.autoGroupTiles.null":"Nie grupuj","settings.game":"Gra","settings.language":"J\u0119zyk"}'),An=(vn={},(0,On.Z)(vn,_r.Locale.DE_DE,_n),(0,On.Z)(vn,_r.Locale.EN_GB,Sn),(0,On.Z)(vn,_r.Locale.EN_US,Sn),(0,On.Z)(vn,_r.Locale.ES_ES,Cn),(0,On.Z)(vn,_r.Locale.FR_FR,wn),(0,On.Z)(vn,_r.Locale.PL_PL,En),vn),Rn=function(e){return e.board},xn=function(e){return e.rack},kn=function(e){return e.results},Nn=function(e){return e.settings},jn=function(e){return e.solve},Tn=function(e){return e.dictionary},Pn=bn([Nn],(function(e){return e.autoGroupTiles})),Bn=bn([Nn],(function(e){return e.locale})),Mn=Rn,Un=bn([Nn],(function(e){return e.configId})),Dn=bn([Un,Bn],Or.getLocaleConfig),Ln=function(e){return e.cellFilter},Hn=bn([Ln,function(e,t){return t}],(function(e,t){var r=t.x,n=t.y;return e.some((function(e){return e.x===r&&e.y===n}))})),Wn=bn([kn],(function(e){return e.results})),In=bn([kn],(function(e){return e.query})),zn=bn([kn],(function(e){return e.sort.column})),Zn=bn([kn],(function(e){return e.sort.direction})),Jn=bn([Wn,zn,Zn],Wr.uj),Fn=bn([Jn,In,Ln],(function(e,t,r){if(!e)return e;var n=function(e,t){if(0===t.trim().length)return e;var r;try{r=new RegExp(t,"gi")}catch(n){return e}return e.filter((function(e){return r.test(e.word)}))}(e,t);return r?n.filter((function(e){return r.every((function(t){var r=t.x,n=t.y;return e.cells.some((function(e){return e.x===r&&e.y===n}))}))})):n})),qn=bn([kn],(function(e){return e.candidate})),Gn=bn([qn],(function(e){return(null===e||void 0===e?void 0:e.cells)||[]})),$n=bn([qn],(function(e){return(null===e||void 0===e?void 0:e.tiles)||[]})),Kn=bn([Rn,Gn],(function(e,t){return e.rows.map((function(e,r){return e.map((function(e,n){return(0,Wr.Jp)(t,n,r)||e}))}))})),Vn=bn([Dn,function(e,t){return t}],(function(e,t){return e.getCellBonus(t)})),Xn=bn([Dn,function(e,t){return t}],(function(e,t){return e.getCharacterPoints(t)})),Yn=bn([Dn,function(e,t){return t}],(function(e,t){return e.getTilePoints(t)})),Qn=bn([Bn],(function(e){return An[e]})),eo=(bn([Qn,Bn,function(e,t){return t}],(function(e,t,r){var n=e[r];if("undefined"===typeof n)throw new Error('Untranslated key "'.concat(r,'" in locale "').concat(t,'"'));return n})),xn),to=bn(xn,(function(e){return e.filter((function(e){return null!==e}))})),ro=bn([jn],(function(e){return e.lastSolvedParameters})),no=bn([jn],(function(e){return e.isLoading})),oo=bn([ro,to],(function(e,t){return!(0,Wr.DR)(e.characters,t)})),co=bn([ro,Rn],(function(e,t){return!e.board.equals(t)})),io=bn([co,oo],(function(e,t){return e||t})),ao=bn([Dn,Rn,to],Wr.ZM),uo=bn([ao],(function(e){return e.some((function(e){var t=e.count;return e.usedCount>t}))})),so=bn([ao],Wr.op),lo=(0,Wr.HP)(ln);function fo(){return(0,Yr.__generator)(this,(function(e){switch(e.label){case 0:return[4,cn(Pr.actions.changeCellValue.type,po)];case 1:return e.sent(),[4,cn(qr.actions.applyResult.type,ho)];case 2:return e.sent(),[4,cn(qr.actions.changeResultCandidate.type,Oo)];case 3:return e.sent(),[4,cn($r.actions.changeConfigId.type,yo)];case 4:return e.sent(),[4,cn($r.actions.changeLocale.type,bo)];case 5:return e.sent(),[4,an(Hr.actions.submit.type,mo)];case 6:return e.sent(),[4,an(Re.type,go)];case 7:return e.sent(),[4,an(xe.type,vo)];case 8:return e.sent(),[4,an(Kr.actions.submit.type,_o)];case 9:return e.sent(),[2]}}))}function po(e){var t;return(0,Yr.__generator)(this,(function(r){switch(r.label){case 0:return t=e.payload,[4,Pt((function(e){return Hn(e,t)}))];case 1:return r.sent()?[4,xt(Dr.actions.toggle(t))]:[3,3];case 2:r.sent(),r.label=3;case 3:return[2]}}))}function ho(e){var t,r;return(0,Yr.__generator)(this,(function(n){switch(n.label){case 0:return t=e.payload,[4,Pt(Pn)];case 1:return r=n.sent(),[4,xt(Pr.actions.applyResult(t))];case 2:return n.sent(),[4,xt(Dr.actions.reset())];case 3:return n.sent(),[4,xt(zr.actions.removeTiles(t.tiles))];case 4:return n.sent(),[4,xt(zr.actions.groupTiles(r))];case 5:return n.sent(),[2]}}))}function yo(){return(0,Yr.__generator)(this,(function(e){switch(e.label){case 0:return[4,xt(qr.actions.reset())];case 1:return e.sent(),[4,xt(Kr.actions.submit())];case 2:return e.sent(),[5,(0,Yr.__values)(So())];case 3:return e.sent(),[2]}}))}function mo(){var e,t,r,n;return(0,Yr.__generator)(this,(function(o){switch(o.label){case 0:return[4,Pt(Tn)];case 1:return e=o.sent(),t=e.input,[4,Pt(Bn)];case 2:return r=o.sent(),lo.hasCache(r,t)?[3,4]:[4,Bt(150)];case 3:o.sent(),o.label=4;case 4:return o.trys.push([4,7,,9]),[4,Nt(lo,r,t)];case 5:return n=o.sent(),[4,xt(Hr.actions.submitSuccess(n))];case 6:return o.sent(),[3,9];case 7:return o.sent(),[4,xt(Hr.actions.submitFailure())];case 8:return o.sent(),[3,9];case 9:return[2]}}))}function go(){return(0,Yr.__generator)(this,(function(e){switch(e.label){case 0:return[4,Nt(pn)];case 1:return e.sent(),[5,(0,Yr.__values)(So())];case 2:return e.sent(),[2]}}))}function vo(){return(0,Yr.__generator)(this,(function(e){switch(e.label){case 0:return[4,xt(Pr.actions.reset())];case 1:return e.sent(),[4,xt(Dr.actions.reset())];case 2:return e.sent(),[4,xt(Hr.actions.reset())];case 3:return e.sent(),[4,xt(zr.actions.reset())];case 4:return e.sent(),[4,xt(qr.actions.reset())];case 5:return e.sent(),[2]}}))}function bo(){return(0,Yr.__generator)(this,(function(e){switch(e.label){case 0:return[4,xt(Kr.actions.submit())];case 1:return e.sent(),[4,xt(qr.actions.changeResultCandidate(null))];case 2:return e.sent(),[4,xt(Hr.actions.reset())];case 3:return e.sent(),[2]}}))}function Oo(e){var t;return(0,Yr.__generator)(this,(function(r){switch(r.label){case 0:return(t=e.payload)?[4,xt(Hr.actions.changeInput(t.words.join(", ")))]:[3,3];case 1:return r.sent(),[4,xt(Hr.actions.submit())];case 2:r.sent(),r.label=3;case 3:return[2]}}))}function _o(){var e,t,r,n,o;return(0,Yr.__generator)(this,(function(c){switch(c.label){case 0:return[4,Pt(Mn)];case 1:return e=c.sent(),[4,Pt(Dn)];case 2:return t=c.sent().config,[4,Pt(Bn)];case 3:return r=c.sent(),[4,Pt(to)];case 4:return 0!==(n=c.sent()).length?[3,7]:[4,xt(Kr.actions.submitSuccess({board:e,characters:n}))];case 5:return c.sent(),[4,xt(qr.actions.changeResults([]))];case 6:return c.sent(),[2];case 7:return c.trys.push([7,11,,14]),[4,Nt(fn,{board:e.toJson(),characters:n,configId:t.id,locale:r})];case 8:return o=c.sent(),[4,xt(Kr.actions.submitSuccess({board:e,characters:n}))];case 9:return c.sent(),[4,xt(qr.actions.changeResults(o.map(_r.Result.fromJson)))];case 10:case 13:return c.sent(),[3,14];case 11:return c.sent(),[4,xt(qr.actions.changeResults([]))];case 12:return c.sent(),[4,xt(Kr.actions.submitFailure())];case 14:return[2]}}))}function So(){var e,t,r,n,o,c;return(0,Yr.__generator)(this,(function(i){switch(i.label){case 0:return[4,Pt(Dn)];case 1:return e=i.sent().config,[4,Pt(to)];case 2:return t=i.sent(),e.maximumCharactersCount>t.length?(r=Math.abs(e.maximumCharactersCount-t.length),[4,xt(zr.actions.init((0,Br.Z)(t).concat((0,Br.Z)(Array(r).fill(null)))))]):[3,4];case 3:return i.sent(),[3,8];case 4:return e.maximumCharactersCount<t.length?(n=t.filter(Boolean).slice(0,e.maximumCharactersCount),o=Math.abs(e.maximumCharactersCount-n.length),[4,Pt(Pn)]):[3,8];case 5:return c=i.sent(),[4,xt(zr.actions.init((0,Br.Z)(n).concat((0,Br.Z)(Array(o).fill(null)))))];case 6:return i.sent(),[4,xt(zr.actions.groupTiles(c))];case 7:i.sent(),i.label=8;case 8:return[2]}}))}var Co=br(),wo=function(){return function(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return function(e){return function(){var r=e.apply(void 0,arguments),n=function(){throw new Error(ae(15))},o={getState:r.getState,dispatch:function(){return n.apply(void 0,arguments)}},c=t.map((function(e){return e(o)}));return n=de.apply(void 0,c)(r.dispatch),ie(ie({},r),{},{dispatch:n})}}}(Co)},Eo=function(){var e=pe(Xr,undefined,wo());return Co.run(fo),e},Ao=r(1860),Ro="board",xo="config-id",ko="has-visited",No="locale",jo="rack",To=r.n(Ao)().namespace("scrabble-solver"),Po={getBoard:function(){var e=To.get(Ro);return e?_r.Board.fromJson(JSON.parse(e)):e},setBoard:function(e){var t=e?JSON.stringify(e.toJson()):e;To.set(Ro,t,!0)},getConfigId:function(){return To.get(xo)},setConfigId:function(e){To.set(xo,e,!0)},getHasVisited:function(){return Boolean(To.get(ko))},setHasVisited:function(e){To.set(ko,e,!0)},getLocale:function(){return To.get(No)},setLocale:function(e){To.set(No,e,!0)},getRack:function(){return To.get(jo)},setRack:function(e){To.set(jo,e,!0)}},Bo=Po,Mo=r(7294),Uo=r(9473).v9,Do=function(){var e=Uo(Qn),t=Uo(Bn);return(0,Mo.useCallback)((function(r){var n=e[r];if("undefined"===typeof n)throw new Error('Untranslated key "'.concat(r,'" in locale "').concat(t,'"'));return n}),[e,t])}},3620:function(e,t,r){"use strict";var n,o;r.d(t,{M:function(){return o},S:function(){return n}}),function(e){e.Ascending="ascending",e.Descending="descending"}(n||(n={})),function(e){e.BlanksCount="blanks-count",e.ConsonantsCount="consonants-count",e.Points="points",e.TilesCount="tiles-count",e.VowelsCount="vowels-count",e.Word="word",e.WordsCount="words-count"}(o||(o={}))},9067:function(){},7663:function(e){!function(){var t={229:function(e){var t,r,n=e.exports={};function o(){throw new Error("setTimeout has not been defined")}function c(){throw new Error("clearTimeout has not been defined")}function i(e){if(t===setTimeout)return setTimeout(e,0);if((t===o||!t)&&setTimeout)return t=setTimeout,setTimeout(e,0);try{return t(e,0)}catch(n){try{return t.call(null,e,0)}catch(n){return t.call(this,e,0)}}}!function(){try{t="function"===typeof setTimeout?setTimeout:o}catch(e){t=o}try{r="function"===typeof clearTimeout?clearTimeout:c}catch(e){r=c}}();var a,u=[],s=!1,l=-1;function f(){s&&a&&(s=!1,a.length?u=a.concat(u):l=-1,u.length&&p())}function p(){if(!s){var e=i(f);s=!0;for(var t=u.length;t;){for(a=u,u=[];++l<t;)a&&a[l].run();l=-1,t=u.length}a=null,s=!1,function(e){if(r===clearTimeout)return clearTimeout(e);if((r===c||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(e);try{r(e)}catch(t){try{return r.call(null,e)}catch(t){return r.call(this,e)}}}(e)}}function d(e,t){this.fun=e,this.array=t}function h(){}n.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)t[r-1]=arguments[r];u.push(new d(e,t)),1!==u.length||s||i(p)},d.prototype.run=function(){this.fun.apply(null,this.array)},n.title="browser",n.browser=!0,n.env={},n.argv=[],n.version="",n.versions={},n.on=h,n.addListener=h,n.once=h,n.off=h,n.removeListener=h,n.removeAllListeners=h,n.emit=h,n.prependListener=h,n.prependOnceListener=h,n.listeners=function(e){return[]},n.binding=function(e){throw new Error("process.binding is not supported")},n.cwd=function(){return"/"},n.chdir=function(e){throw new Error("process.chdir is not supported")},n.umask=function(){return 0}}},r={};function n(e){var o=r[e];if(void 0!==o)return o.exports;var c=r[e]={exports:{}},i=!0;try{t[e](c,c.exports,n),i=!1}finally{i&&delete r[e]}return c.exports}n.ab="//";var o=n(229);e.exports=o}()},9008:function(e,t,r){e.exports=r(5443)},9921:function(e,t){"use strict";var r="function"===typeof Symbol&&Symbol.for,n=r?Symbol.for("react.element"):60103,o=r?Symbol.for("react.portal"):60106,c=r?Symbol.for("react.fragment"):60107,i=r?Symbol.for("react.strict_mode"):60108,a=r?Symbol.for("react.profiler"):60114,u=r?Symbol.for("react.provider"):60109,s=r?Symbol.for("react.context"):60110,l=r?Symbol.for("react.async_mode"):60111,f=r?Symbol.for("react.concurrent_mode"):60111,p=r?Symbol.for("react.forward_ref"):60112,d=r?Symbol.for("react.suspense"):60113,h=r?Symbol.for("react.suspense_list"):60120,y=r?Symbol.for("react.memo"):60115,m=r?Symbol.for("react.lazy"):60116,g=r?Symbol.for("react.block"):60121,v=r?Symbol.for("react.fundamental"):60117,b=r?Symbol.for("react.responder"):60118,O=r?Symbol.for("react.scope"):60119;function _(e){if("object"===typeof e&&null!==e){var t=e.$$typeof;switch(t){case n:switch(e=e.type){case l:case f:case c:case a:case i:case d:return e;default:switch(e=e&&e.$$typeof){case s:case p:case m:case y:case u:return e;default:return t}}case o:return t}}}function S(e){return _(e)===f}t.AsyncMode=l,t.ConcurrentMode=f,t.ContextConsumer=s,t.ContextProvider=u,t.Element=n,t.ForwardRef=p,t.Fragment=c,t.Lazy=m,t.Memo=y,t.Portal=o,t.Profiler=a,t.StrictMode=i,t.Suspense=d,t.isAsyncMode=function(e){return S(e)||_(e)===l},t.isConcurrentMode=S,t.isContextConsumer=function(e){return _(e)===s},t.isContextProvider=function(e){return _(e)===u},t.isElement=function(e){return"object"===typeof e&&null!==e&&e.$$typeof===n},t.isForwardRef=function(e){return _(e)===p},t.isFragment=function(e){return _(e)===c},t.isLazy=function(e){return _(e)===m},t.isMemo=function(e){return _(e)===y},t.isPortal=function(e){return _(e)===o},t.isProfiler=function(e){return _(e)===a},t.isStrictMode=function(e){return _(e)===i},t.isSuspense=function(e){return _(e)===d},t.isValidElementType=function(e){return"string"===typeof e||"function"===typeof e||e===c||e===f||e===a||e===i||e===d||e===h||"object"===typeof e&&null!==e&&(e.$$typeof===m||e.$$typeof===y||e.$$typeof===u||e.$$typeof===s||e.$$typeof===p||e.$$typeof===v||e.$$typeof===b||e.$$typeof===O||e.$$typeof===g)},t.typeOf=_},9864:function(e,t,r){"use strict";e.exports=r(9921)},9473:function(e,t,r){"use strict";r.d(t,{zt:function(){return b},I0:function(){return C},v9:function(){return h}});var n=r(1688),o=r(2798),c=r(3935);let i=function(e){e()};const a=()=>i;var u=r(7294);const s=(0,u.createContext)(null);function l(){return(0,u.useContext)(s)}let f=()=>{throw new Error("uSES not initialized!")};const p=(e,t)=>e===t;function d(e=s){const t=e===s?l:()=>(0,u.useContext)(e);return function(e,r=p){const{store:n,subscription:o,getServerState:c}=t(),i=f(o.addNestedSub,n.getState,c||n.getState,e,r);return(0,u.useDebugValue)(i),i}}const h=d();r(8679),r(2973);const y={notify(){},get:()=>[]};function m(e,t){let r,n=y;function o(){i.onStateChange&&i.onStateChange()}function c(){r||(r=t?t.addNestedSub(o):e.subscribe(o),n=function(){const e=a();let t=null,r=null;return{clear(){t=null,r=null},notify(){e((()=>{let e=t;for(;e;)e.callback(),e=e.next}))},get(){let e=[],r=t;for(;r;)e.push(r),r=r.next;return e},subscribe(e){let n=!0,o=r={callback:e,next:null,prev:r};return o.prev?o.prev.next=o:t=o,function(){n&&null!==t&&(n=!1,o.next?o.next.prev=o.prev:r=o.prev,o.prev?o.prev.next=o.next:t=o.next)}}}}())}const i={addNestedSub:function(e){return c(),n.subscribe(e)},notifyNestedSubs:function(){n.notify()},handleChangeWrapper:o,isSubscribed:function(){return Boolean(r)},trySubscribe:c,tryUnsubscribe:function(){r&&(r(),r=void 0,n.clear(),n=y)},getListeners:()=>n};return i}const g=!("undefined"===typeof window||"undefined"===typeof window.document||"undefined"===typeof window.document.createElement)?u.useLayoutEffect:u.useEffect;let v=null;var b=function({store:e,context:t,children:r,serverState:n}){const o=(0,u.useMemo)((()=>{const t=m(e);return{store:e,subscription:t,getServerState:n?()=>n:void 0}}),[e,n]),c=(0,u.useMemo)((()=>e.getState()),[e]);g((()=>{const{subscription:t}=o;return t.onStateChange=t.notifyNestedSubs,t.trySubscribe(),c!==e.getState()&&t.notifyNestedSubs(),()=>{t.tryUnsubscribe(),t.onStateChange=void 0}}),[o,c]);const i=t||s;return u.createElement(i.Provider,{value:o},r)};function O(e=s){const t=e===s?l:()=>(0,u.useContext)(e);return function(){const{store:e}=t();return e}}const _=O();function S(e=s){const t=e===s?_:O(e);return function(){return t().dispatch}}const C=S();var w,E;w=o.useSyncExternalStoreWithSelector,f=w,(e=>{v=e})(n.useSyncExternalStore),E=c.unstable_batchedUpdates,i=E},8359:function(e,t){"use strict";var r,n=Symbol.for("react.element"),o=Symbol.for("react.portal"),c=Symbol.for("react.fragment"),i=Symbol.for("react.strict_mode"),a=Symbol.for("react.profiler"),u=Symbol.for("react.provider"),s=Symbol.for("react.context"),l=Symbol.for("react.server_context"),f=Symbol.for("react.forward_ref"),p=Symbol.for("react.suspense"),d=Symbol.for("react.suspense_list"),h=Symbol.for("react.memo"),y=Symbol.for("react.lazy"),m=Symbol.for("react.offscreen");function g(e){if("object"===typeof e&&null!==e){var t=e.$$typeof;switch(t){case n:switch(e=e.type){case c:case a:case i:case p:case d:return e;default:switch(e=e&&e.$$typeof){case l:case s:case f:case y:case h:case u:return e;default:return t}}case o:return t}}}r=Symbol.for("react.module.reference")},2973:function(e,t,r){"use strict";r(8359)},1860:function(e){!function(t,r){var n={version:"2.14.2",areas:{},apis:{},nsdelim:".",inherit:function(e,t){for(var r in e)t.hasOwnProperty(r)||Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(e,r));return t},stringify:function(e,t){return void 0===e||"function"===typeof e?e+"":JSON.stringify(e,t||n.replace)},parse:function(e,t){try{return JSON.parse(e,t||n.revive)}catch(r){return e}},fn:function(e,t){for(var r in n.storeAPI[e]=t,n.apis)n.apis[r][e]=t},get:function(e,t){return e.getItem(t)},set:function(e,t,r){e.setItem(t,r)},remove:function(e,t){e.removeItem(t)},key:function(e,t){return e.key(t)},length:function(e){return e.length},clear:function(e){e.clear()},Store:function(e,t,r){var o=n.inherit(n.storeAPI,(function(e,t,r){return 0===arguments.length?o.getAll():"function"===typeof t?o.transact(e,t,r):void 0!==t?o.set(e,t,r):"string"===typeof e||"number"===typeof e?o.get(e):"function"===typeof e?o.each(e):e?o.setAll(e,t):o.clear()}));o._id=e;try{var c="__store2_test";t.setItem(c,"ok"),o._area=t,t.removeItem(c)}catch(i){o._area=n.storage("fake")}return o._ns=r||"",n.areas[e]||(n.areas[e]=o._area),n.apis[o._ns+o._id]||(n.apis[o._ns+o._id]=o),o},storeAPI:{area:function(e,t){var r=this[e];return r&&r.area||(r=n.Store(e,t,this._ns),this[e]||(this[e]=r)),r},namespace:function(e,t,r){if(r=r||this._delim||n.nsdelim,!e)return this._ns?this._ns.substring(0,this._ns.length-r.length):"";var o=e,c=this[o];if((!c||!c.namespace)&&((c=n.Store(this._id,this._area,this._ns+o+r))._delim=r,this[o]||(this[o]=c),!t))for(var i in n.areas)c.area(i,n.areas[i]);return c},isFake:function(e){return e?(this._real=this._area,this._area=n.storage("fake")):!1===e&&(this._area=this._real||this._area),"fake"===this._area.name},toString:function(){return"store"+(this._ns?"."+this.namespace():"")+"["+this._id+"]"},has:function(e){return this._area.has?this._area.has(this._in(e)):!!(this._in(e)in this._area)},size:function(){return this.keys().length},each:function(e,t){for(var r=0,o=n.length(this._area);r<o;r++){var c=this._out(n.key(this._area,r));if(void 0!==c&&!1===e.call(this,c,this.get(c),t))break;o>n.length(this._area)&&(o--,r--)}return t||this},keys:function(e){return this.each((function(e,t,r){r.push(e)}),e||[])},get:function(e,t){var r,o=n.get(this._area,this._in(e));return"function"===typeof t&&(r=t,t=null),null!==o?n.parse(o,r):null!=t?t:o},getAll:function(e){return this.each((function(e,t,r){r[e]=t}),e||{})},transact:function(e,t,r){var n=this.get(e,r),o=t(n);return this.set(e,void 0===o?n:o),this},set:function(e,t,r){var o,c=this.get(e);return null!=c&&!1===r?t:("function"===typeof r&&(o=r,r=void 0),n.set(this._area,this._in(e),n.stringify(t,o),r)||c)},setAll:function(e,t){var r,n;for(var o in e)n=e[o],this.set(o,n,t)!==n&&(r=!0);return r},add:function(e,t,r){var o=this.get(e);if(o instanceof Array)t=o.concat(t);else if(null!==o){var c=typeof o;if(c===typeof t&&"object"===c){for(var i in t)o[i]=t[i];t=o}else t=o+t}return n.set(this._area,this._in(e),n.stringify(t,r)),t},remove:function(e,t){var r=this.get(e,t);return n.remove(this._area,this._in(e)),r},clear:function(){return this._ns?this.each((function(e){n.remove(this._area,this._in(e))}),1):n.clear(this._area),this},clearAll:function(){var e=this._area;for(var t in n.areas)n.areas.hasOwnProperty(t)&&(this._area=n.areas[t],this.clear());return this._area=e,this},_in:function(e){return"string"!==typeof e&&(e=n.stringify(e)),this._ns?this._ns+e:e},_out:function(e){return this._ns?e&&0===e.indexOf(this._ns)?e.substring(this._ns.length):void 0:e}},storage:function(e){return n.inherit(n.storageAPI,{items:{},name:e})},storageAPI:{length:0,has:function(e){return this.items.hasOwnProperty(e)},key:function(e){var t=0;for(var r in this.items)if(this.has(r)&&e===t++)return r},setItem:function(e,t){this.has(e)||this.length++,this.items[e]=t},removeItem:function(e){this.has(e)&&(delete this.items[e],this.length--)},getItem:function(e){return this.has(e)?this.items[e]:null},clear:function(){for(var e in this.items)this.removeItem(e)}}},o=n.Store("local",function(){try{return localStorage}catch(e){}}());o.local=o,o._=n,o.area("session",function(){try{return sessionStorage}catch(e){}}()),o.area("page",n.storage("page")),"function"===typeof r&&void 0!==r.amd?r("store2",[],(function(){return o})):e.exports?e.exports=o:(t.store&&(n.conflict=t.store),t.store=o)}(this,this&&this.define)},3250:function(e,t,r){"use strict";var n=r(7294);var o="function"===typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e===1/t)||e!==e&&t!==t},c=n.useState,i=n.useEffect,a=n.useLayoutEffect,u=n.useDebugValue;function s(e){var t=e.getSnapshot;e=e.value;try{var r=t();return!o(e,r)}catch(n){return!0}}var l="undefined"===typeof window||"undefined"===typeof window.document||"undefined"===typeof window.document.createElement?function(e,t){return t()}:function(e,t){var r=t(),n=c({inst:{value:r,getSnapshot:t}}),o=n[0].inst,l=n[1];return a((function(){o.value=r,o.getSnapshot=t,s(o)&&l({inst:o})}),[e,r,t]),i((function(){return s(o)&&l({inst:o}),e((function(){s(o)&&l({inst:o})}))}),[e]),u(r),r};t.useSyncExternalStore=void 0!==n.useSyncExternalStore?n.useSyncExternalStore:l},139:function(e,t,r){"use strict";var n=r(7294),o=r(1688);var c="function"===typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e===1/t)||e!==e&&t!==t},i=o.useSyncExternalStore,a=n.useRef,u=n.useEffect,s=n.useMemo,l=n.useDebugValue;t.useSyncExternalStoreWithSelector=function(e,t,r,n,o){var f=a(null);if(null===f.current){var p={hasValue:!1,value:null};f.current=p}else p=f.current;f=s((function(){function e(e){if(!u){if(u=!0,i=e,e=n(e),void 0!==o&&p.hasValue){var t=p.value;if(o(t,e))return a=t}return a=e}if(t=a,c(i,e))return t;var r=n(e);return void 0!==o&&o(t,r)?t:(i=e,a=r)}var i,a,u=!1,s=void 0===r?null:r;return[function(){return e(t())},null===s?void 0:function(){return e(s())}]}),[t,r,n,o]);var d=i(e,f[0],f[1]);return u((function(){p.hasValue=!0,p.value=d}),[d]),l(d),d}},1688:function(e,t,r){"use strict";e.exports=r(3250)},2798:function(e,t,r){"use strict";e.exports=r(139)},559:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(7618),c=n(r(2251)),i=n(r(5275));class a{constructor({rows:e}){this.rows=e,this.columnsCount=e[0].length,this.rowsCount=e.length}static create(e,t){return a.fromStringArray(Array(t).fill(Array(e).fill(" ").join("")))}static fromJson(e){return new a({rows:e.map((e=>e.map(c.default.fromJson)))})}static fromStringArray(e){return new a({rows:e.map(((e,t)=>e.split("").map(((e,r)=>new c.default({isEmpty:!e||e===o.EMPTY_CELL,tile:e===o.EMPTY_CELL?i.default.Null:new i.default({character:e}),x:r,y:t})))))})}get center(){const e=Math.floor(this.columnsCount/2),t=Math.floor(this.rowsCount/2);return this.rows[t][e]}clone(){const e=this.rows.map((e=>e.map((e=>e.clone()))));return new a({rows:e})}collides(e){return this.collidesUp(e)||this.collidesDown(e)||this.collidesLeft(e)||this.collidesRight(e)}collidesDown({x:e,y:t}){return t<this.rowsCount-1&&!this.rows[t+1][e].isEmpty}collidesLeft({x:e,y:t}){return e>0&&!this.rows[t][e-1].isEmpty}collidesRight({x:e,y:t}){return e<this.columnsCount-1&&!this.rows[t][e+1].isEmpty}collidesUp({x:e,y:t}){return t>0&&!this.rows[t-1][e].isEmpty}equals(e){return this.columnsCount===e.columnsCount&&this.rowsCount===e.rowsCount&&this.rows.every(((t,r)=>t.every(((t,n)=>t.equals(e.rows[r][n])))))}getBlanksCount(){return this.rows.reduce(((e,t)=>e+t.reduce(((e,t)=>t.tile.isBlank?e+1:e),0)),0)}getColumn(e){return this.rows.map((t=>t[e]))}getRow(e){return this.rows[e]}getTilesCount(){return this.rows.reduce(((e,t)=>e+t.reduce(((e,t)=>t.hasTile()?e+1:e),0)),0)}isEmpty(){return this.rows.every((e=>e.every((({isEmpty:e})=>e))))}toJson(){return this.rows.map((e=>e.map((e=>e.toJson()))))}toString(){return this.rows.map((e=>e.map(String))).join("\n")}updateCell(e,t,r){this.rows[t][e]=r(this.rows[t][e])}updateRow(e,t){this.rows[e]=t(this.rows[e])}}t.default=a},6489:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isBoardJson=void 0;const n=r(9819);t.isBoardJson=e=>{if(!Array.isArray(e))return!1;for(const t of e){if(!Array.isArray(e))return!1;for(const e of t)if(!(0,n.isCellJson)(e))return!1}return!0}},7706:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.default=class{constructor({multiplier:e,score:t,x:r,y:n}){this.multiplier=e,this.score=t,this.x=r,this.y=n}canApply(e,t){return t.isEmpty&&this.matchesCellCoordinates(t)}matchesCellCoordinates(e){return this.x===e.x&&this.y===e.y}toJson(){return{multiplier:this.multiplier,score:this.score,type:this.type,x:this.x,y:this.y}}get value(){return{characterMultiplier:1,wordMultiplier:1}}}},2251:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=n(r(5275));class c{constructor({isEmpty:e=!0,tile:t=o.default.Null,x:r,y:n}){this.isEmpty=e,this.tile=t,this.x=r,this.y=n}static fromJson(e){return new c({isEmpty:e.isEmpty,tile:o.default.fromJson(e.tile),x:e.x,y:e.y})}clone(){return new c({isEmpty:this.isEmpty,tile:this.tile.clone(),x:this.x,y:this.y})}equals(e){return this.x===e.x&&this.y===e.y&&this.isEmpty===e.isEmpty&&this.tile.equals(e.tile)}hasTile(){return this.tile!==o.default.Null}isCandidate(){return this.isEmpty&&this.hasTile()}toJson(){return{isEmpty:this.isEmpty,tile:this.tile.toJson(),x:this.x,y:this.y}}toString(){return this.tile.toString()}}t.default=c},9819:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.isCellJson=void 0;const o=n(r(4814)),c=r(214);t.isCellJson=e=>(0,o.default)(e)&&"boolean"===typeof e.isEmpty&&((0,c.isTileJson)(e.tile)||null===e.tile)&&"number"===typeof e.x&&"number"===typeof e.y},9582:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(7618),c=n(r(7706));class i extends c.default{constructor(){super(...arguments),this.type=o.BONUS_CHARACTER}canApply(e,t){return super.canApply(e,t)&&this.matchesCellTileScore(e,t)}matchesCellTileScore(e,t){return"undefined"===typeof this.score||this.score===e.pointsMap[t.tile.character]}get value(){return{characterMultiplier:this.multiplier,wordMultiplier:1}}}t.default=i},8433:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(7618),c=n(r(9582)),i=n(r(8627));class a{constructor(e){this.bonuses=u(e),this.config=e,this.pointsMap=l(this.config)}static fromJson(e){return new a(e)}get allTilesBonusScore(){return this.config.allTilesBonusScore}get alphabet(){return s(this.config)}get blankScore(){return this.config.blankScore}get blanksCount(){return this.config.blanksCount}get boardHeight(){return this.config.boardHeight}get boardWidth(){return this.config.boardWidth}get twoCharacterTiles(){return this.config.tiles.filter((e=>2===e.character.length)).map((e=>e.character))}getCellBonus(e){return this.bonuses.find((t=>t.matchesCellCoordinates(e)))}getCellBonusValue(e){return this.getCellBonus(e)?.value||o.NO_BONUS}getCharacterPoints(e){if(null!==e)return e===o.BLANK?this.blankScore:this.pointsMap[e]}getTwoCharacterTileByPrefix(e){if(1===e.length)return this.twoCharacterTiles.find((t=>t.startsWith(e)))}getTilePoints(e){if(null!==e)return e.isBlank?this.blankScore:this.getCharacterPoints(e.character)}hasCharacter(e){return this.alphabet.includes(e)}isTwoCharacterTilePrefix(e){return"undefined"!==typeof this.getTwoCharacterTileByPrefix(e)}get maximumCharactersCount(){return this.config.maximumCharactersCount}get tiles(){return this.config.tiles}toJson(){return this.config}}const u=e=>e.bonuses.map((e=>{if(e.type===o.BONUS_CHARACTER)return new c.default(e);if(e.type===o.BONUS_WORD)return new i.default(e);throw new Error(`Unsupported Bonus type: "${e.type}"`)})),s=e=>e.tiles.map((({character:e})=>e)),l=e=>e.tiles.reduce(((e,{character:t,score:r})=>({...e,[t]:r})),{});t.default=a},9594:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=n(r(3207));class c extends o.default{clone(){return new c({board:this.board,cells:this.cells.map((e=>e.clone()))})}getCollisions(){const e=[];return this.cells.filter((e=>e.isEmpty&&(this.board.collidesUp(e)||this.board.collidesDown(e)))).forEach((t=>{const r=this.board.getColumn(t.x);let n=t.y-1;for(;n>=0&&r[n].hasTile();)--n;const c=r.slice(n+1,t.y);for(n=t.y+1;n<r.length&&r[n].hasTile();)++n;const i=[...c,t,...r.slice(t.y+1,n)];if(i.length>1){const t=new o.default({board:this.board,cells:i});e.push(t)}})),e}}t.default=c},6634:function(e,t){"use strict";var r;Object.defineProperty(t,"__esModule",{value:!0}),t.isLocale=void 0,function(e){e.EN_GB="en-GB",e.EN_US="en-US",e.ES_ES="es-ES",e.FR_FR="fr-FR",e.PL_PL="pl-PL",e.DE_DE="de-DE"}(r||(r={}));const n=Object.values(r);t.isLocale=e=>n.includes(e),t.default=r},3207:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});class r{constructor({board:e,cells:t}){this.board=e,this.cells=t}canBePlaced(e){const t=this.getEmptyCellsCount();return t>=1&&t<=e.maximumCharactersCount&&(this.hasAtLeast1NonEmptyCell()||this.collides()||this.goesThroughBoardCenter()&&this.board.isEmpty())}clone(){return new r({board:this.board,cells:this.cells.map((e=>e.clone()))})}collides(){return this.cells.some((e=>e.isEmpty&&this.board.collides(e)))}getIndexOfFirstCellWithoutTile(){return this.cells.findIndex((e=>!e.hasTile()))}getEmptyCellsCount(){return this.cells.filter((e=>e.isEmpty)).length}goesThroughBoardCenter(){return this.cells.some((e=>e.x===this.board.center.x&&e.y===this.board.center.y&&e.isEmpty))}hasAtLeast1EmptyCell(){return this.cells.some((e=>e.isEmpty))}hasAtLeast1NonEmptyCell(){return this.cells.some((e=>!e.isEmpty))}getCollisions(){return[]}toJson(){return{cells:this.cells.map((e=>e.toJson())),collisions:this.getCollisions().map((e=>e.toJson())),word:this.toString()}}toString(){return this.cells.reduce(((e,t)=>e+t.toString()),"")}}t.default=r},91:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(7618),c=n(r(2251));class i{constructor({cells:e,id:t,collisions:r,points:n}){const o=d(e);this.blanksCount=u(o).length,this.cells=e,this.collisions=r,this.consonantsCount=s(o).length,this.id=t,this.length=e.length,this.points=n,this.pointsRatio=p(o,n),this.tiles=o,this.tilesCharacters=h(o),this.tilesCount=o.length,this.vowelsCount=l(o).length,this.word=y(e),this.words=m(e,r),this.wordsCount=1+this.collisions.length}static fromJson(e){return new i({id:e.id,cells:e.cells.map(c.default.fromJson),collisions:e.collisions.map((e=>e.map(c.default.fromJson))),points:e.points})}toJson(){return{cells:this.cells.map((e=>e.toJson())),id:this.id,collisions:this.collisions.map((e=>e.map((e=>e.toJson())))),points:this.points}}}const a=(e,t)=>e.localeCompare(t),u=e=>e.filter((({isBlank:e})=>e)),s=e=>e.filter(g),l=e=>e.filter(v),f=e=>e.filter((({isBlank:e})=>!e)),p=(e,t)=>t/e.length,d=e=>e.filter((({isEmpty:e})=>e)).map((({tile:e})=>e)),h=e=>(e=>f(e).map((({character:e})=>e)))(e).sort(a).join(""),y=e=>e.map(String).join(""),m=(e,t)=>[y(e),...t.map((e=>e.map(String).join("")))],g=({character:e,isBlank:t})=>o.CONSONANTS.includes(e)&&!t,v=({character:e,isBlank:t})=>o.VOWELS.includes(e)&&!t;t.default=i},5275:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const n=r(7618);class o{constructor({character:e,isBlank:t=!1}){this.character=e,this.isBlank=t}static fromJson(e){return e?new o({character:e.character,isBlank:e.isBlank}):o.Null}clone(){return new o({character:this.character,isBlank:this.isBlank})}equals(e){return this.character===e.character&&this.isBlank===e.isBlank}toJson(){return{character:this.character,isBlank:this.isBlank}}toString(){return this.character}}o.Null=Object.freeze({character:n.EMPTY_CELL,isBlank:!1,clone:()=>o.Null,equals:e=>e===o.Null,toJson:()=>null,toString:()=>n.EMPTY_CELL}),t.default=o},214:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.isTileJson=void 0;const o=n(r(4814));t.isTileJson=e=>(0,o.default)(e)&&"string"===typeof e.character&&"boolean"===typeof e.isBlank},5168:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=n(r(3207));class c extends o.default{clone(){return new c({board:this.board,cells:this.cells.map((e=>e.clone()))})}getCollisions(){const e=[];return this.cells.filter((e=>e.isEmpty&&(this.board.collidesLeft(e)||this.board.collidesRight(e)))).forEach((t=>{const r=this.board.getRow(t.y);let n=t.x-1;for(;n>=0&&r[n].hasTile();)--n;const c=r.slice(n+1,t.x);for(n=t.x+1;n<r.length&&r[n].hasTile();)++n;const i=[...c,t,...r.slice(t.x+1,n)];if(i.length>1){const t=new o.default({board:this.board,cells:i});e.push(t)}})),e}}t.default=c},8627:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});const o=r(7618),c=n(r(7706));class i extends c.default{constructor(){super(...arguments),this.type=o.BONUS_WORD}get value(){return{characterMultiplier:1,wordMultiplier:this.multiplier}}}t.default=i},1560:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});class r{constructor({definitions:e,isAllowed:t,word:r}){this.definitions=e,this.isAllowed=t,this.word=r}static fromJson(e){return e?new r({definitions:e.definitions,isAllowed:e.isAllowed,word:e.word}):r.Null}toJson(){return{definitions:this.definitions,isAllowed:this.isAllowed,word:this.word}}}r.Null=Object.freeze({definitions:[],isAllowed:!1,word:"",toJson:()=>null}),t.default=r},4046:function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.WordDefinition=t.WordBonus=t.VerticalPattern=t.isTileJson=t.Tile=t.Result=t.Pattern=t.isLocale=t.Locale=t.isObject=t.HorizontalPattern=t.Config=t.CharacterBonus=t.isCellJson=t.Cell=t.Bonus=t.isBoardJson=t.Board=void 0;var o=r(559);Object.defineProperty(t,"Board",{enumerable:!0,get:function(){return n(o).default}});var c=r(6489);Object.defineProperty(t,"isBoardJson",{enumerable:!0,get:function(){return c.isBoardJson}});var i=r(7706);Object.defineProperty(t,"Bonus",{enumerable:!0,get:function(){return n(i).default}});var a=r(2251);Object.defineProperty(t,"Cell",{enumerable:!0,get:function(){return n(a).default}});var u=r(9819);Object.defineProperty(t,"isCellJson",{enumerable:!0,get:function(){return u.isCellJson}});var s=r(9582);Object.defineProperty(t,"CharacterBonus",{enumerable:!0,get:function(){return n(s).default}});var l=r(8433);Object.defineProperty(t,"Config",{enumerable:!0,get:function(){return n(l).default}});var f=r(9594);Object.defineProperty(t,"HorizontalPattern",{enumerable:!0,get:function(){return n(f).default}});var p=r(4814);Object.defineProperty(t,"isObject",{enumerable:!0,get:function(){return n(p).default}});var d=r(6634);Object.defineProperty(t,"Locale",{enumerable:!0,get:function(){return n(d).default}}),Object.defineProperty(t,"isLocale",{enumerable:!0,get:function(){return d.isLocale}});var h=r(3207);Object.defineProperty(t,"Pattern",{enumerable:!0,get:function(){return n(h).default}});var y=r(91);Object.defineProperty(t,"Result",{enumerable:!0,get:function(){return n(y).default}});var m=r(5275);Object.defineProperty(t,"Tile",{enumerable:!0,get:function(){return n(m).default}});var g=r(214);Object.defineProperty(t,"isTileJson",{enumerable:!0,get:function(){return g.isTileJson}});var v=r(5168);Object.defineProperty(t,"VerticalPattern",{enumerable:!0,get:function(){return n(v).default}});var b=r(8627);Object.defineProperty(t,"WordBonus",{enumerable:!0,get:function(){return n(b).default}});var O=r(1560);Object.defineProperty(t,"WordDefinition",{enumerable:!0,get:function(){return n(O).default}})},4814:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.default=e=>"object"===typeof e&&null!==e},7462:function(e,t,r){"use strict";function n(){return n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},n.apply(this,arguments)}r.d(t,{Z:function(){return n}})},943:function(e,t,r){"use strict";function n(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}r.d(t,{Z:function(){return n}})},4924:function(e,t,r){"use strict";function n(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}r.d(t,{Z:function(){return n}})},3375:function(e,t,r){"use strict";function n(e){if("undefined"!==typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}r.d(t,{Z:function(){return n}})},6042:function(e,t,r){"use strict";r.d(t,{Z:function(){return o}});var n=r(4924);function o(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{},o=Object.keys(r);"function"===typeof Object.getOwnPropertySymbols&&(o=o.concat(Object.getOwnPropertySymbols(r).filter((function(e){return Object.getOwnPropertyDescriptor(r,e).enumerable})))),o.forEach((function(t){(0,n.Z)(e,t,r[t])}))}return e}},9396:function(e,t,r){"use strict";function n(e,t){return t=null!=t?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):function(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}(Object(t)).forEach((function(r){Object.defineProperty(e,r,Object.getOwnPropertyDescriptor(t,r))})),e}r.d(t,{Z:function(){return n}})},9815:function(e,t,r){"use strict";r.d(t,{Z:function(){return i}});var n=r(943);var o=r(3375);var c=r(1566);function i(e){return function(e){if(Array.isArray(e))return(0,n.Z)(e)}(e)||(0,o.Z)(e)||(0,c.Z)(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}},1566:function(e,t,r){"use strict";r.d(t,{Z:function(){return o}});var n=r(943);function o(e,t){if(e){if("string"===typeof e)return(0,n.Z)(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(r):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?(0,n.Z)(e,t):void 0}}}},function(e){var t=function(t){return e(e.s=t)};e.O(0,[774,179],(function(){return t(6840),t(387)}));var r=e.O();_N_E=r}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[405],{8312:function(n,e,t){(window.__NEXT_P=window.__NEXT_P||[]).push(["/",function(){return t(3332)}])},3332:function(n,e,t){"use strict";t.r(e),t.d(e,{__N_SSG:function(){return w},default:function(){return C}});var i=t(4924),s=t(828),r=t(5893),o=t(4184),a=t.n(o),c=t(7294),u=t(3253),d=t.n(u),_=t(9473),l=t(6362),x=l.jU?c.useLayoutEffect:c.useEffect,h={x:0,y:0,width:0,height:0,top:0,left:0,bottom:0,right:0};var f=l.jU&&"undefined"!==typeof window.ResizeObserver?function(){var n=(0,c.useState)(null),e=n[0],t=n[1],i=(0,c.useState)(h),s=i[0],r=i[1],o=(0,c.useMemo)((function(){return new window.ResizeObserver((function(n){if(n[0]){var e=n[0].contentRect,t=e.x,i=e.y,s=e.width,o=e.height,a=e.top,c=e.left,u=e.bottom,d=e.right;r({x:t,y:i,width:s,height:o,top:a,left:c,bottom:u,right:d})}}))}),[]);return x((function(){if(e)return o.observe(e),function(){o.disconnect()}}),[e]),[t,s]}:function(){return[l.ZT,h]},m=t(8127),p=t(6615),j=t(3165),g=t(2237),v=t(485),b=t(6983),y=t(9004),N=t.n(y);d().setAppElement("#__next");var w=!0,C=function(n){var e=n.version,t=(0,_.I0)(),o=(0,j.Av)(),u=(0,c.useState)(!1),d=u[0],l=u[1],x=(0,c.useState)(!1),h=x[0],y=x[1],w=(0,c.useState)(!1),C=w[0],S=w[1],I=(0,s.Z)(f(),2),O=I[0],E=I[1].height,k=(0,s.Z)(f(),2),z=k[0],X=k[1],Z=X.height,T=X.width,W=(0,s.Z)(f(),2),R=W[0],A=W[1],D=A.height,L=A.width,F=(0,b.ix)(b.$o),P=(0,g.Dz)(F,T-L,Z),U=T>0&&E>0&&L>0,V=E-v.n6-(o?v.Sg:v.tr),B=function(n){n.preventDefault(),t(b.TP.actions.submit())};return(0,j._)(),(0,m.Z)((function(){t((0,b.j2)())})),(0,r.jsxs)(r.Fragment,{children:[(0,r.jsxs)("div",{className:a()(N().index,(0,i.Z)({},N().initialized,U)),children:[(0,r.jsxs)("div",{className:N().nav,children:[(0,r.jsx)("div",{className:N().navLogo,children:(0,r.jsx)("a",{className:N().logoContainer,href:"/",title:e,children:(0,r.jsx)(p.TR,{className:N().logo})})}),(0,r.jsx)(p._m,{onClear:function(){t((0,b.mc)())},onShowKeyMap:function(){return l(!0)},onShowRemainingTiles:function(){return y(!0)},onShowSettings:function(){return S(!0)}})]}),(0,r.jsx)("div",{className:N().contentWrapper,children:(0,r.jsxs)("div",{className:N().content,ref:z,children:[(0,r.jsxs)("form",{className:N().boardContainer,onSubmit:B,children:[T>0&&(0,r.jsx)(p.$l,{cellSize:P,innerRef:O}),(0,r.jsx)("input",{className:N().submitInput,tabIndex:-1,type:"submit"})]}),(0,r.jsxs)("div",{className:N().sidebar,style:{height:E+1},children:[(0,r.jsx)(p.tW,{className:N().resultsContainer,ref:R,children:L>0&&D>0&&(0,r.jsx)(p.u9,{height:V,width:L})}),(0,r.jsx)(p.tW,{children:(0,r.jsxs)("div",{className:N().dictionary,style:{height:v.n6},children:[(0,r.jsx)(p.Xy,{className:N().dictionaryOutput}),(0,r.jsx)(p.Z$,{className:N().dictionaryInput})]})})]})]})}),(0,r.jsxs)("form",{className:N().rackContainer,onSubmit:B,children:[(0,r.jsx)(p.F4,{className:N().rack}),(0,r.jsx)("input",{className:N().submitInput,tabIndex:-1,type:"submit"})]})]}),(0,r.jsx)(p.Zr,{isOpen:C,onClose:function(){return S(!1)}}),(0,r.jsx)(p.d4,{isOpen:d,onClose:function(){return l(!1)}}),(0,r.jsx)(p.fs,{isOpen:h,onClose:function(){return y(!1)}}),(0,r.jsx)(p.hX,{forceShow:!U,onAnimationEnd:function(n){n.target!==n.currentTarget||b.Xb.getHasVisited()||(S(!0),b.Xb.setHasVisited(!0))}})]})}},9004:function(n){n.exports={index:"index_index__5hyIO",initialized:"index_initialized__GEDww",nav:"index_nav__FjsLl",navLogo:"index_navLogo__dBrd4",logoContainer:"index_logoContainer___rrXU",logo:"index_logo__IeyQD",contentWrapper:"index_contentWrapper__o0SKW",content:"index_content__8u6Oo",boardContainer:"index_boardContainer__O1DyN",sidebar:"index_sidebar__i_2dV",dictionary:"index_dictionary__Umhfc",dictionaryOutput:"index_dictionaryOutput__vSlhp",dictionaryInput:"index_dictionaryInput__iCFs7",resultsContainer:"index_resultsContainer__yBEuy",rackContainer:"index_rackContainer__Az99V",rack:"index_rack__XHWIp",submitInput:"index_submitInput__jPA3B"}}},function(n){n.O(0,[758,615,774,888,179],(function(){return e=8312,n(n.s=e);var e}));var e=n.O();_N_E=e}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.Tile_tile__14nuL{position:relative;background-color:transparent;transition:var(--transition)}.Tile_tile__14nuL.Tile_raised__WKori{box-shadow:inset -2px -2px 2px -1px rgba(34,34,34,.8)}.Tile_tile__14nuL.Tile_points1__yl4Jl{background-color:var(--color--yellow)}.Tile_tile__14nuL.Tile_points2__Xsbcp{background-color:var(--color--green)}.Tile_tile__14nuL.Tile_points3__lJKOJ,.Tile_tile__14nuL.Tile_points4__IylBI{background-color:var(--color--blue)}.Tile_tile__14nuL.Tile_points5__Kzick{background-color:var(--color--red)}.Tile_tile__14nuL.Tile_blank__q2Ujv{background-color:#fff}.Tile_tile__14nuL.Tile_blank__q2Ujv .Tile_character__2XzcR{color:#000}.Tile_tile__14nuL.Tile_highlighted__eg00X{background-color:var(--color--primary);color:#fff}.Tile_tile__14nuL.Tile_highlighted__eg00X .Tile_character__2XzcR,.Tile_tile__14nuL.Tile_highlighted__eg00X .Tile_points__z39vV{color:inherit}.Tile_character__2XzcR{width:100%;height:100%;padding:0;box-sizing:border-box;background-color:transparent;border:none;font-weight:700;text-transform:uppercase;text-align:center;caret-color:transparent}.Tile_character__2XzcR::-moz-placeholder{color:var(--color--inactive)}.Tile_character__2XzcR:-ms-input-placeholder{color:var(--color--inactive)}.Tile_character__2XzcR::placeholder{color:var(--color--inactive)}.Tile_character__2XzcR:disabled{color:inherit}.Tile_points__z39vV{position:absolute;right:9%;bottom:1%;font-weight:700;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;letter-spacing:-1px}.Tooltip_tooltip__98Sw9{padding:var(--spacing--s) var(--spacing--m);box-shadow:var(--box-shadow);border-radius:var(--border--radius);background-color:var(--tooltip--background);color:var(--tooltip--foreground);font-size:var(--font--size--s);z-index:200}.Tooltip_tooltip__98Sw9.Tooltip_top__Vk7yg .Tooltip_arrow__9oy08{bottom:-4px}.Tooltip_tooltip__98Sw9.Tooltip_top__Vk7yg .Tooltip_arrow__9oy08:after{left:0;bottom:0;border-top-color:var(--tooltip--background);border-bottom:none}.Tooltip_tooltip__98Sw9.Tooltip_right__kORxq .Tooltip_arrow__9oy08{left:-4px}.Tooltip_tooltip__98Sw9.Tooltip_right__kORxq .Tooltip_arrow__9oy08:after{left:0;top:0;border-right-color:var(--tooltip--background);border-left:none}.Tooltip_tooltip__98Sw9.Tooltip_bottom__QwH6o .Tooltip_arrow__9oy08{top:-4px}.Tooltip_tooltip__98Sw9.Tooltip_bottom__QwH6o .Tooltip_arrow__9oy08:after{top:0;left:0;border-bottom-color:var(--tooltip--background);border-top:none}.Tooltip_tooltip__98Sw9.Tooltip_left__bSM_7 .Tooltip_arrow__9oy08{right:-4px}.Tooltip_tooltip__98Sw9.Tooltip_left__bSM_7 .Tooltip_arrow__9oy08:after{right:0;top:0;border-left-color:var(--tooltip--background);border-right:none}.Tooltip_arrow__9oy08{position:absolute;width:8px;height:8px}.Tooltip_arrow__9oy08:after{content:" ";position:absolute;height:0;width:0;pointer-events:none;border:4px solid transparent}.Cell_cell__2GOSl{position:relative;display:table-cell;background-color:#fff;border-right:var(--border);border-bottom:var(--border);transition:var(--transition);background-clip:padding-box}.Cell_cell__2GOSl:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;transition:var(--transition);border-radius:var(--border--radius);box-shadow:0 0 0 var(--focus--box-shadow--size) transparent;pointer-events:none}.Cell_cell__2GOSl:focus-within,.Cell_cell__2GOSl:focus-within *{outline:none}.Cell_cell__2GOSl:focus-within:after{box-shadow:0 0 0 var(--focus--box-shadow--size) var(--color--focus)}.Cell_cell__2GOSl.Cell_bonusWord2__Ztd1C,.Cell_cell__2GOSl.Cell_bonusWord3__eTB6G{position:relative}.Cell_cell__2GOSl.Cell_bonusWord2__Ztd1C:before,.Cell_cell__2GOSl.Cell_bonusWord3__eTB6G:before{display:flex;justify-content:center;align-items:center;position:absolute;top:0;bottom:0;left:0;right:0;font-weight:700;pointer-events:none}.Cell_cell__2GOSl.Cell_bonusStart__zy3BV{background-color:var(--color--violet--light)}.Cell_cell__2GOSl.Cell_bonusCharacter1__zJUuA{background-color:var(--color--yellow--light)}.Cell_cell__2GOSl.Cell_bonusCharacter2__HZDn8{background-color:var(--color--green--light)}.Cell_cell__2GOSl.Cell_bonusCharacter3__pWf1f{background-color:var(--color--blue--light)}.Cell_cell__2GOSl.Cell_bonusCharacter5__LdDrj{background-color:var(--color--red--light)}.Cell_cell__2GOSl.Cell_bonusCharacterMultiplier2__Qpcd7{background-color:var(--color--light-blue--light)}.Cell_cell__2GOSl.Cell_bonusCharacterMultiplier3__0qtZY{background-color:var(--color--dark-blue--light)}.Cell_cell__2GOSl.Cell_bonusWord2__Ztd1C,.Cell_cell__2GOSl.Cell_bonusWord3__eTB6G{background-color:var(--color--inactive)}.Cell_cell__2GOSl.Cell_bonusWord2__Ztd1C:before,.Cell_cell__2GOSl.Cell_bonusWord3__eTB6G:before{font-size:75%;color:#fff}.Cell_cell__2GOSl.Cell_bonusWord2__Ztd1C:before{content:"x2"}.Cell_cell__2GOSl.Cell_bonusWord3__eTB6G:before{content:"x3"}.Cell_cell__2GOSl.Cell_characterPoints1__CKxm0{background-color:var(--color--yellow)}.Cell_cell__2GOSl.Cell_characterPoints2__QkYnj{background-color:var(--color--green)}.Cell_cell__2GOSl.Cell_characterPoints3___SyO2{background-color:var(--color--blue)}.Cell_cell__2GOSl.Cell_characterPoints5___OS_7{background-color:var(--color--red)}.Cell_cell__2GOSl.Cell_candidate__qGOhc{background-color:var(--color--primary)}.Cell_cell__2GOSl.Cell_candidate__qGOhc:before{display:none}.Cell_cell__2GOSl:focus-within{z-index:1}.Cell_cell__2GOSl:focus-within .Cell_actions__YOyrG{display:flex}.Cell_cell__2GOSl:focus-within .Cell_action___13Yo{-webkit-user-select:initial;-moz-user-select:initial;-ms-user-select:initial;user-select:auto;pointer-events:auto}.Cell_actions__YOyrG{display:none;position:absolute;left:calc(100% + var(--spacing--s) - 16px);top:-16px;z-index:2;box-shadow:var(--box-shadow);border-radius:var(--border--radius)}.Cell_action___13Yo,.Cell_actions__YOyrG{transition:var(--transition);pointer-events:none}.Cell_action___13Yo{padding:0;border:none;outline:none;font:inherit;color:inherit;background:none;display:flex;justify-content:center;padding:var(--spacing--s);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;box-sizing:content-box;background-color:#fff;border:var(--border);border-top-left-radius:var(--border--radius);border-bottom-left-radius:var(--border--radius);font-size:var(--font--size--m);line-height:16px;color:var(--color--foreground--secondary);cursor:pointer}.Cell_action___13Yo+.Cell_action___13Yo{border-left:none;border-top-left-radius:0;border-bottom-left-radius:0}.Cell_action___13Yo:last-child{border-top-right-radius:var(--border--radius);border-bottom-right-radius:var(--border--radius)}.Cell_action___13Yo,.Cell_action___13Yo .Cell_filterCell__f5FRe,.Cell_action___13Yo .Cell_toggleDirection__1WgpQ{width:16px;height:16px}.Cell_action___13Yo:active,.Cell_action___13Yo:hover{color:var(--color--foreground)}.Cell_toggleDirection__1WgpQ.Cell_right__ItPQR{transform:rotate(-90deg)}.Cell_blank__n7TRD{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.Cell_blank__n7TRD.Cell_active__L88UB{font-weight:700}.Cell_filterCell__f5FRe{color:var(--color--inactive)}.Cell_filterCell__f5FRe.Cell_filtered__16gx1{color:var(--color--foreground--secondary)}.Cell_iconContainer__luGh5{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:center}.Cell_flagContainer__A_IDX{background-color:var(--color--primary)}.Cell_flag__hPqWD,.Cell_star__qeUuH{width:24px;height:24px;color:#fff}.Board_board__eA_bB{display:table;box-shadow:var(--box-shadow);border-top:var(--border);border-left:var(--border)}.Board_row__mezHN{display:table-row}.Button_button__PjVhE{padding:0;border:none;outline:none;font:inherit;color:inherit;background:none;position:relative;display:inline-block;box-shadow:none;color:var(--color--inactive);cursor:pointer;opacity:.9}.Button_button__PjVhE,.Button_button__PjVhE:after{transition:var(--transition);border-radius:var(--border--radius)}.Button_button__PjVhE:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;box-shadow:0 0 0 var(--focus--box-shadow--size) transparent;pointer-events:none}.Button_button__PjVhE:focus-within,.Button_button__PjVhE:focus-within *{outline:none}.Button_button__PjVhE:focus-within:after{box-shadow:0 0 0 var(--focus--box-shadow--size) var(--color--focus)}.Button_button__PjVhE,.Button_button__PjVhE:active,.Button_button__PjVhE:focus,.Button_button__PjVhE:hover{background-color:var(--color--primary);box-shadow:var(--box-shadow);color:#fff}.Button_button__PjVhE:active:not(:disabled) .Button_content__XZA3a{position:relative;top:1px}.Button_button__PjVhE:disabled{background-color:var(--color--background);color:var(--color--inactive);box-shadow:none;cursor:not-allowed}.Button_button__PjVhE:disabled .Button_icon__DJGKY{transform:scale(1)}.Button_button__PjVhE:hover{opacity:1}.Button_button__PjVhE:hover:not(:disabled) .Button_icon__DJGKY{transform:scale(1.1)}.Button_content__XZA3a{display:flex;align-items:center;padding:var(--spacing--xs) var(--spacing--m)}.Button_icon__DJGKY,.Button_label__vFl5U{transition:var(--transition)}.Button_icon__DJGKY{width:32px;height:32px;transform:scale(1);color:inherit}.Button_icon__DJGKY,.Button_label__vFl5U{pointer-events:none;transition:var(--transition)}.Button_label__vFl5U{padding:0 var(--spacing--m);font-size:var(--font--size--m);text-transform:uppercase;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@-webkit-keyframes PlainTiles_hide__ZXQ7t{0%{opacity:1}to{opacity:0}}@keyframes PlainTiles_hide__ZXQ7t{0%{opacity:1}to{opacity:0}}@-webkit-keyframes PlainTiles_progress__GEq5G{0%{-webkit-clip-path:polygon(0 0,0 0,0 100%,0 100%);clip-path:polygon(0 0,0 0,0 100%,0 100%)}to{-webkit-clip-path:polygon(0 0,100% 0,100% 100%,0 100%);clip-path:polygon(0 0,100% 0,100% 100%,0 100%)}}@keyframes PlainTiles_progress__GEq5G{0%{-webkit-clip-path:polygon(0 0,0 0,0 100%,0 100%);clip-path:polygon(0 0,0 0,0 100%,0 100%)}to{-webkit-clip-path:polygon(0 0,100% 0,100% 100%,0 100%);clip-path:polygon(0 0,100% 0,100% 100%,0 100%)}}@-webkit-keyframes PlainTiles_pulse__MTQRB{0%{transform:scale(1)}to{transform:scale(1.2)}}@keyframes PlainTiles_pulse__MTQRB{0%{transform:scale(1)}to{transform:scale(1.2)}}@-webkit-keyframes PlainTiles_wave__MUPo5{0%{transform:translateY(0)}25%{transform:translateY(6px)}75%{transform:translateY(-6px)}to{transform:translateY(0)}}@keyframes PlainTiles_wave__MUPo5{0%{transform:translateY(0)}25%{transform:translateY(6px)}75%{transform:translateY(-6px)}to{transform:translateY(0)}}.PlainTiles_wave__MUPo5 .PlainTiles_tile__4eIjX{-webkit-animation:PlainTiles_wave__MUPo5 .75s infinite;animation:PlainTiles_wave__MUPo5 .75s infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}.PlainTiles_wave__MUPo5 .PlainTiles_tile__4eIjX:first-child{-webkit-animation-delay:-2.85s;animation-delay:-2.85s}.PlainTiles_wave__MUPo5 .PlainTiles_tile__4eIjX:nth-child(2){-webkit-animation-delay:-2.7s;animation-delay:-2.7s}.PlainTiles_wave__MUPo5 .PlainTiles_tile__4eIjX:nth-child(3){-webkit-animation-delay:-2.55s;animation-delay:-2.55s}.PlainTiles_wave__MUPo5 .PlainTiles_tile__4eIjX:nth-child(4){-webkit-animation-delay:-2.4s;animation-delay:-2.4s}.PlainTiles_wave__MUPo5 .PlainTiles_tile__4eIjX:nth-child(5){-webkit-animation-delay:-2.25s;animation-delay:-2.25s}.PlainTiles_wave__MUPo5 .PlainTiles_tile__4eIjX:nth-child(6){-webkit-animation-delay:-2.1s;animation-delay:-2.1s}.PlainTiles_wave__MUPo5 .PlainTiles_tile__4eIjX:nth-child(7){-webkit-animation-delay:-1.95s;animation-delay:-1.95s}.PlainTiles_wave__MUPo5 .PlainTiles_tile__4eIjX:nth-child(8){-webkit-animation-delay:-1.8s;animation-delay:-1.8s}.PlainTiles_wave__MUPo5 .PlainTiles_tile__4eIjX:nth-child(9){-webkit-animation-delay:-1.65s;animation-delay:-1.65s}.PlainTiles_wave__MUPo5 .PlainTiles_tile__4eIjX:nth-child(10){-webkit-animation-delay:-1.5s;animation-delay:-1.5s}.PlainTiles_wave__MUPo5 .PlainTiles_tile__4eIjX:nth-child(11){-webkit-animation-delay:-1.35s;animation-delay:-1.35s}.PlainTiles_wave__MUPo5 .PlainTiles_tile__4eIjX:nth-child(12){-webkit-animation-delay:-1.2s;animation-delay:-1.2s}.PlainTiles_wave__MUPo5 .PlainTiles_tile__4eIjX:nth-child(13){-webkit-animation-delay:-1.05s;animation-delay:-1.05s}.PlainTiles_wave__MUPo5 .PlainTiles_tile__4eIjX:nth-child(14){-webkit-animation-delay:-.9s;animation-delay:-.9s}.PlainTiles_wave__MUPo5 .PlainTiles_tile__4eIjX:nth-child(15){-webkit-animation-delay:-.75s;animation-delay:-.75s}.PlainTiles_wave__MUPo5 .PlainTiles_tile__4eIjX:nth-child(16){-webkit-animation-delay:-.6s;animation-delay:-.6s}.PlainTiles_wave__MUPo5 .PlainTiles_tile__4eIjX:nth-child(17){-webkit-animation-delay:-.45s;animation-delay:-.45s}.PlainTiles_wave__MUPo5 .PlainTiles_tile__4eIjX:nth-child(18){-webkit-animation-delay:-.3s;animation-delay:-.3s}.PlainTiles_wave__MUPo5 .PlainTiles_tile__4eIjX:nth-child(19){-webkit-animation-delay:-.15s;animation-delay:-.15s}.PlainTiles_wave__MUPo5 .PlainTiles_tile__4eIjX:nth-child(20){-webkit-animation-delay:0ms;animation-delay:0ms}.PlainTiles_dropShadow__TjPAL{filter:drop-shadow(0 0 4px rgba(0,0,0,.4))}.EmptyState_emptyState__iOAMZ{margin:0 auto;max-width:calc(2*var(--sidebar--width)/3);padding:var(--spacing--xl);font-family:var(--font--family);color:var(--color--foreground--secondary);text-align:center;text-transform:none}.EmptyState_emptyState__iOAMZ .EmptyState_tiles____Cln{margin-bottom:var(--spacing--m);height:32px;overflow:visible}.Loading_dim__H3eXg,.Loading_loading__RkVCa{position:absolute;top:0;bottom:0;left:0;right:0}.Loading_loading__RkVCa{display:flex;align-items:center;justify-content:center}.Loading_dim__H3eXg{background-color:var(--color--background--overlay);z-index:1;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.Loading_logo__1hwt4{position:relative;z-index:2;width:100%;height:100%;display:flex;align-items:center;justify-content:center}.Loading_tiles__RNn33{width:298px;height:100%}.Dictionary_dictionary__0CM4j{position:relative;min-height:calc(var(--dictionary--height) - var(--text-input--height));overflow-y:auto;word-break:break-word;transition:var(--transition);font-size:var(--font--size--s)}.Dictionary_result__eFJ65{transition:var(--transition)}.Dictionary_result__eFJ65.Dictionary_isAllowed__VfACe+.Dictionary_result__eFJ65.Dictionary_isAllowed__VfACe .Dictionary_content__Ehz1U,.Dictionary_result__eFJ65.Dictionary_isNotAllowed__HvWIM+.Dictionary_result__eFJ65.Dictionary_isNotAllowed__HvWIM .Dictionary_content__Ehz1U{padding-top:0}.Dictionary_content__Ehz1U{padding:var(--spacing--l)}.Dictionary_word__Y2PlX{margin-bottom:var(--spacing--m);font-family:var(--font--family--title);font-size:var(--font--size--h2);text-transform:uppercase}.Dictionary_isAllowed__VfACe{background-color:var(--color--green--light)}.Dictionary_isNotAllowed__HvWIM{background-color:var(--color--red--light)}.Dictionary_definitions__UBslC{margin:0;padding-left:var(--spacing--l)}.Dictionary_definition__lU1Vz{margin-bottom:var(--spacing--s)}.Dictionary_definition__lU1Vz:last-child{margin-bottom:0}.DictionaryInput_dictionaryInput__fsGZD:focus-within{position:relative}.DictionaryInput_dictionaryInput__fsGZD:focus-within:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;transition:var(--transition);border-radius:var(--border--radius);box-shadow:0 0 0 var(--focus--box-shadow--size) transparent;pointer-events:none}.DictionaryInput_dictionaryInput__fsGZD:focus-within:focus-within,.DictionaryInput_dictionaryInput__fsGZD:focus-within:focus-within *{outline:none}.DictionaryInput_dictionaryInput__fsGZD:focus-within:focus-within:after{box-shadow:0 0 0 var(--focus--box-shadow--size) var(--color--focus)}.DictionaryInput_input__0ed6F{width:100%;min-height:var(--text-input--height);height:var(--text-input--height);max-height:var(--text-input--height);padding:0 var(--spacing--l);transition:var(--transition);font-size:var(--font--size--s);font-family:var(--font--family);border:none}.Key_key__JS7L0{position:relative;top:calc(0px - 2*var(--border--width));display:inline-block;min-width:28px;height:28px;padding:var(--spacing--s) var(--spacing--m);background-color:#fff;border:var(--border);border-radius:var(--border--radius);box-shadow:var(--box-shadow);font-family:var(--font--family--monospace);font-size:var(--font--size--s);line-height:calc(28px - 2 * (var(--spacing--s) + var(--border--width)));vertical-align:middle;text-align:center;white-space:nowrap}.Key_key__JS7L0+.Key_key__JS7L0{margin-left:var(--spacing--xs)}.Key_key__JS7L0 svg{position:absolute;top:calc(6.5px - var(--border--width));left:calc(6.5px - var(--border--width));width:15px;height:15px}.SquareButton_squareButton__qwR9a{padding:0;border:none;outline:none;font:inherit;color:inherit;background:none;position:relative;display:inline-block;color:var(--color--inactive);cursor:pointer;transition:var(--transition)}.SquareButton_squareButton__qwR9a:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;transition:var(--transition);border-radius:var(--border--radius);box-shadow:0 0 0 var(--focus--box-shadow--size) transparent;pointer-events:none}.SquareButton_squareButton__qwR9a:focus-within,.SquareButton_squareButton__qwR9a:focus-within *{outline:none}.SquareButton_squareButton__qwR9a:focus-within:after{box-shadow:0 0 0 var(--focus--box-shadow--size) var(--color--focus)}.SquareButton_squareButton__qwR9a:focus,.SquareButton_squareButton__qwR9a:hover{text-decoration:none;color:var(--color--foreground--secondary)}.SquareButton_squareButton__qwR9a:active{color:var(--color--foreground)}.SquareButton_content__1ucqM{display:flex;align-items:center;justify-content:center}.SquareButton_icon__t5YSC{width:var(--square-button-size);height:var(--square-button-size);pointer-events:none;color:inherit;transition:var(--transition)}.Section_section__Rd7qk+.Section_section__Rd7qk{margin-top:var(--spacing--xl)}.Section_heading___PU_r{margin-bottom:var(--spacing--m);font-size:var(--font--size--h2);font-family:var(--font--family--title);font-weight:300}.Sidebar_modal__pavmk{position:fixed;top:0;right:0;z-index:100;height:100vh;width:370px;padding:0;border-radius:0;border:none}.Sidebar_modal__pavmk:focus{outline:none}.Sidebar_afterOpen__Y7kOz .Sidebar_sidebar__pTTPu{transform:translateX(0);opacity:1}.Sidebar_beforeClose__vzZNQ .Sidebar_sidebar__pTTPu{transform:translateX(370px);opacity:0}.Sidebar_overlay__fZ2ki{background-color:transparent}.Sidebar_sidebar__pTTPu{display:flex;flex-direction:column;height:100%;background-color:var(--color--background);box-shadow:var(--box-shadow--left);transition:var(--transition);transition-duration:var(--transition--duration--long);transform:translateX(370px);opacity:0}.Sidebar_header__6FiSo{flex:0 0 auto;position:relative;padding:var(--spacing--l)}.Sidebar_title__pzTL8{padding-right:calc(var(--square-button-size) + var(--spacing--s));font-size:var(--font--size--h1);font-weight:300}.Sidebar_closeButton__TjUpw{position:absolute!important;top:0;right:0;z-index:101;margin:var(--spacing--l)}.Sidebar_content__lLjwZ{flex:1 1;position:relative;padding:var(--spacing--l);padding-top:0;overflow:auto}.Mapping_mapping__GQrAe{margin-bottom:var(--spacing--l)}.Mapping_mapping__GQrAe:last-child{margin-bottom:0}.Mapping_description__osefE{margin-bottom:var(--spacing--m);font-size:var(--font--size--h3);font-family:var(--font--family--title);font-weight:300}.Mapping_group__4H8Aw,.Mapping_keys__BBLHM{display:flex;flex-wrap:wrap}.Mapping_group__4H8Aw,.Mapping_plus__aoyZw{margin:0 var(--spacing--s)}.Mapping_slash__xSLL1{margin:0 var(--spacing--m)}.Mapping_group__4H8Aw:first-child{margin-left:0}.Mapping_group__4H8Aw:last-child{margin-right:0}.NavButtons_navButtons__2jdaO{display:flex;align-items:center}.NavButtons_button__1mjyl,.NavButtons_separator__4FwOF{margin-right:calc(var(--spacing--l) - 2*var(--spacing--xs))}.NavButtons_button__1mjyl:last-child,.NavButtons_separator__4FwOF:last-child{margin-right:0}.NavButtons_separator__4FwOF{margin-right:calc(var(--spacing--l) - var(--spacing--xs));margin-left:var(--spacing--xs);border-right:var(--border);border-color:var(--color--inactive);height:calc(32px - 2 * var(--spacing--xs))}.NavButtons_error__UMVHy,.NavButtons_error__UMVHy:active,.NavButtons_error__UMVHy:focus,.NavButtons_error__UMVHy:hover{color:var(--color--error)}.NotFound_notFound__yhPFA{height:100%;padding:var(--spacing--l)}.NotFound_link__a1OqI,.NotFound_notFound__yhPFA{display:flex;align-items:center;justify-content:center}.NotFound_link__a1OqI{flex-direction:column;padding:var(--spacing--xxl)}.NotFound_icon__zBP4O{height:204px;width:204px;margin-bottom:var(--spacing--xxl);color:var(--color--red)}.NotFound_tiles__Nxd8Z{height:60px}.Rack_rack__uEE8X{display:flex;box-shadow:var(--box-shadow)}.Rack_tile__kMzR_{position:relative}.Rack_tile__kMzR_:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;transition:var(--transition);border-radius:var(--border--radius);box-shadow:0 0 0 var(--focus--box-shadow--size) transparent;pointer-events:none}.Rack_tile__kMzR_:focus-within,.Rack_tile__kMzR_:focus-within *{outline:none}.Rack_tile__kMzR_:focus-within:after{box-shadow:0 0 0 var(--focus--box-shadow--size) var(--color--focus)}.Radio_radio__06IBr{position:relative;display:flex;align-items:center;padding:var(--spacing--m);transition:var(--transition);cursor:pointer}.Radio_radio__06IBr:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;transition:var(--transition);border-radius:var(--border--radius);box-shadow:0 0 0 var(--focus--box-shadow--size) transparent;pointer-events:none}.Radio_radio__06IBr:focus-within,.Radio_radio__06IBr:focus-within *{outline:none}.Radio_radio__06IBr:focus-within:after{box-shadow:0 0 0 var(--focus--box-shadow--size) var(--color--focus)}.Radio_radio__06IBr.Radio_checked__MlqJv .Radio_icon__ORxR0,.Radio_radio__06IBr:hover .Radio_icon__ORxR0{box-shadow:var(--box-shadow)}.Radio_radio__06IBr.Radio_checked__MlqJv .Radio_icon__ORxR0:after{background-color:var(--color--primary)}.Radio_input__PFpGB{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0;cursor:pointer}.Radio_icon__ORxR0{flex:0 0 auto;position:relative;width:22px;height:22px;border-radius:50%;border:2px solid var(--color--primary);box-shadow:var(--box-shadow--null);pointer-events:none}.Radio_icon__ORxR0:after{content:" ";position:absolute;top:2px;left:2px;width:14px;height:14px;background-color:transparent;border-radius:50%;transition:var(--transition)}.Radio_content__08chi{flex:1 1;margin-left:var(--spacing--l)}.Character_character__FN97z{display:flex;flex-direction:column;align-items:center;transition:var(--transition)}.Character_character__FN97z.Character_finished__DsFyj{opacity:.2}.Character_character__FN97z.Character_overused__PEXhw{color:red;opacity:1}.Character_character__FN97z.Character_overused__PEXhw .Character_tile__lqZEb:after{position:absolute;top:0;left:0;width:100%;height:100%;content:" ";box-shadow:var(--box-shadow--error)}.Character_count__SSxGA{padding:var(--spacing--xs) 0;text-align:center;font-size:var(--font--size--s)}.RemainingTiles_group___8ILF{margin-bottom:var(--spacing--l)}.RemainingTiles_title__QQYTv{margin-bottom:var(--spacing--m);font-size:var(--font--size--h2);font-weight:300}.RemainingTiles_content__5cnQv{display:grid;grid-template-columns:repeat(5,1fr);grid-gap:var(--spacing--m);gap:var(--spacing--m)}.ResultsInput_resultsInput__geMao:focus-within{position:relative}.ResultsInput_resultsInput__geMao:focus-within:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;transition:var(--transition);border-radius:var(--border--radius);box-shadow:0 0 0 var(--focus--box-shadow--size) transparent;pointer-events:none}.ResultsInput_resultsInput__geMao:focus-within:focus-within,.ResultsInput_resultsInput__geMao:focus-within:focus-within *{outline:none}.ResultsInput_resultsInput__geMao:focus-within:focus-within:after{box-shadow:0 0 0 var(--focus--box-shadow--size) var(--color--focus)}.ResultsInput_input__dc2PT{width:100%;min-height:var(--text-input--height);height:var(--text-input--height);max-height:var(--text-input--height);padding:0 var(--spacing--l);transition:var(--transition);font-size:var(--font--size--s);font-family:var(--font--family);border:none}.Results_results__258ah{position:relative;display:flex;flex-direction:column;height:100%;font-family:var(--font--family--title);font-size:var(--font--size--s)}.Results_emptyState__qSRMr{flex:1 1}.Results_list__zp7CV{transition:var(--transition)}.Results_list__zp7CV.Results_outdated__4j0Ql{filter:blur(2px)}.Results_header__RmHXo{position:relative;z-index:1;display:flex;align-items:center;justify-content:space-between;border-bottom:var(--border);font-size:var(--font--size--s);font-weight:700}.Results_headerButton__qNx0w{padding:0;border:none;outline:none;font:inherit;color:inherit;background:none;position:relative;cursor:pointer;text-transform:uppercase;transition:var(--transition)}.Results_headerButton__qNx0w:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;transition:var(--transition);border-radius:var(--border--radius);box-shadow:0 0 0 var(--focus--box-shadow--size) transparent;pointer-events:none}.Results_headerButton__qNx0w:focus-within,.Results_headerButton__qNx0w:focus-within *{outline:none}.Results_headerButton__qNx0w:focus-within:after{box-shadow:0 0 0 var(--focus--box-shadow--size) var(--color--focus)}.Results_headerButton__qNx0w:focus,.Results_headerButton__qNx0w:hover{background-color:var(--color--primary);color:#fff}.Results_headerButtonLabel__XQiIP{display:block;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;flex:0 1 auto;text-align:left}.Results_result__bpPGb{padding:0;border:none;outline:none;font:inherit;color:inherit;background:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;transition:var(--transition);cursor:pointer;font-weight:400}.Results_result__bpPGb:focus:not(:disabled),.Results_result__bpPGb:hover:not(:disabled){background-color:var(--color--primary);color:#fff}.Results_resultContent__fynvQ{display:flex;align-items:center;justify-content:space-between}.Results_resultContent__fynvQ .Results_word__j20u_{display:block;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.Results_cell__13BH5{display:flex;align-items:center;justify-content:center;padding:var(--spacing--s)}.Results_headerButton__qNx0w:first-child .Results_cell__13BH5,.Results_result__bpPGb .Results_cell__13BH5:first-child{padding-left:calc(var(--spacing--m) + var(--spacing--s));justify-content:flex-start;text-align:left}.Results_headerButton__qNx0w:last-child .Results_cell__13BH5,.Results_result__bpPGb .Results_cell__13BH5:last-child{padding-right:calc(var(--spacing--m) + var(--spacing--s))}.Results_cell__13BH5:last-child{flex:1 1}.Results_word__j20u_{flex:0 0 180px;max-width:180px;text-transform:uppercase}.Results_stat__EguZM{flex:0 0 50px;max-width:50px;justify-content:center}.Results_points__7BAKE{flex:1 0 80px;font-weight:700}.Results_outdatedButton__5fzwS{display:block;margin:0 auto;margin-top:var(--spacing--xxl)}@media(max-width:1024px){.Results_outdatedButton__5fzwS{margin-top:var(--spacing--l)}}@media(max-height:800px){.Results_outdatedButton__5fzwS{margin-top:var(--spacing--l)}}.Results_sortIcon__y02RA{flex:0 0 auto;width:15px;height:15px;margin-left:var(--spacing--s)}.Results_input__B3K40{border-top:var(--border)}.Screen_screen__VnMC9{position:fixed;top:0;bottom:0;left:0;right:0;background-color:var(--color--background);opacity:1;z-index:100}.Screen_closeButton__0QT6U{position:fixed;top:0;right:0;z-index:101;margin:var(--spacing--l)}.Screen_content__t2VCW{position:relative}.AutoGroupTilesSetting_option__cNX7P{margin-bottom:var(--spacing--m)}.AutoGroupTilesSetting_option__cNX7P:last-child{margin-bottom:0}.AutoGroupTilesSetting_label__njnKi{display:flex;align-items:center}.ConfigSetting_option__T_XJr{margin-bottom:var(--spacing--m)}.ConfigSetting_option__T_XJr:last-child{margin-bottom:0}.ConfigSetting_label__SKiut{display:flex;align-items:center}.LocaleSetting_option__86eJS{margin-bottom:var(--spacing--m)}.LocaleSetting_option__86eJS:last-child{margin-bottom:0}.LocaleSetting_option__86eJS.LocaleSetting_checked__9aDcB .LocaleSetting_flag__B1FNp,.LocaleSetting_option__86eJS:hover .LocaleSetting_flag__B1FNp{box-shadow:var(--box-shadow)}.LocaleSetting_label__Nl2tL{display:flex;align-items:center}.LocaleSetting_flag__B1FNp{height:32px;margin-right:var(--spacing--l);box-shadow:var(--box-shadow--null);transition:var(--transition)}.LocaleSetting_flag__B1FNp.LocaleSetting_es__o6mp8{width:48px}.LocaleSetting_flag__B1FNp.LocaleSetting_fr__h7FxL{width:51.2px}.LocaleSetting_flag__B1FNp.LocaleSetting_gb__qt9o9{width:64px}.LocaleSetting_flag__B1FNp.LocaleSetting_pl__Xg3Ib{width:51.2px}.LocaleSetting_flag__B1FNp.LocaleSetting_us__ov8al{width:60.8px}.LocaleSetting_flag__B1FNp.LocaleSetting_de__73PFW{width:51.2px}@-webkit-keyframes Splash_hide__4sfov{0%{opacity:1}to{opacity:0}}@keyframes Splash_hide__4sfov{0%{opacity:1}to{opacity:0}}@-webkit-keyframes Splash_progress__82M_I{0%{-webkit-clip-path:polygon(0 0,0 0,0 100%,0 100%);clip-path:polygon(0 0,0 0,0 100%,0 100%)}to{-webkit-clip-path:polygon(0 0,100% 0,100% 100%,0 100%);clip-path:polygon(0 0,100% 0,100% 100%,0 100%)}}@keyframes Splash_progress__82M_I{0%{-webkit-clip-path:polygon(0 0,0 0,0 100%,0 100%);clip-path:polygon(0 0,0 0,0 100%,0 100%)}to{-webkit-clip-path:polygon(0 0,100% 0,100% 100%,0 100%);clip-path:polygon(0 0,100% 0,100% 100%,0 100%)}}@-webkit-keyframes Splash_pulse__bc8xX{0%{transform:scale(1)}to{transform:scale(1.2)}}@keyframes Splash_pulse__bc8xX{0%{transform:scale(1)}to{transform:scale(1.2)}}@-webkit-keyframes Splash_wave___xjSZ{0%{transform:translateY(0)}25%{transform:translateY(6px)}75%{transform:translateY(-6px)}to{transform:translateY(0)}}@keyframes Splash_wave___xjSZ{0%{transform:translateY(0)}25%{transform:translateY(6px)}75%{transform:translateY(-6px)}to{transform:translateY(0)}}.Splash_splash__DJBx_{display:flex;align-items:center;justify-content:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.Splash_splash__DJBx_.Splash_animated__p0GNp{-webkit-animation:Splash_hide__4sfov;animation:Splash_hide__4sfov;-webkit-animation-delay:.55s;animation-delay:.55s;-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.Splash_splash__DJBx_.Splash_animated__p0GNp .Splash_logos__pFer4{-webkit-animation:Splash_pulse__bc8xX;animation:Splash_pulse__bc8xX;-webkit-animation-delay:.55s;animation-delay:.55s;-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.Splash_splash__DJBx_.Splash_animated__p0GNp .Splash_logoColor__InOR_{-webkit-animation:Splash_progress__82M_I;animation:Splash_progress__82M_I;-webkit-animation-duration:.45s;animation-duration:.45s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.Splash_logos__pFer4{position:relative;width:50vw;max-width:688px;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;transition:var(--transition)}.Splash_logoGrayscale__qe_QT{filter:grayscale(1);opacity:.3}.Splash_logoColor__InOR_{position:absolute;top:0;left:0;-webkit-clip-path:polygon(0 0,0 0,0 100%,0 100%);clip-path:polygon(0 0,0 0,0 100%,0 100%)}.Splash_author__0gDgp{margin-top:var(--spacing--l);font-family:var(--font--family--title);font-size:var(--font--size--h1);font-weight:300;text-align:center}.Well_well__WTn5e{position:relative;background:#fff;border:var(--border);box-shadow:var(--box-shadow)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.index_index__5hyIO{display:flex;flex-direction:column;height:100%;min-width:900px;min-height:700px;opacity:0;overflow:hidden;transition:var(--transition);transition-duration:var(--transition--duration--long)}.index_index__5hyIO.index_initialized__GEDww{opacity:1}.index_nav__FjsLl{position:relative;z-index:1;flex:0 0 auto;display:flex;align-items:flex-start;padding:var(--spacing--l)}.index_navLogo__dBrd4{display:flex;flex:1 1}.index_logoContainer___rrXU{display:flex}.index_logo__IeyQD{height:60px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@media(max-width:1024px){.index_logo__IeyQD{height:48px}}@media(max-height:800px){.index_logo__IeyQD{height:48px}}.index_contentWrapper__o0SKW{flex:1 1;padding:0 var(--spacing--xl);max-height:916px}.index_content__8u6Oo{display:flex;align-items:center;justify-content:center;height:100%}.index_boardContainer__O1DyN{display:flex;position:relative}.index_sidebar__i_2dV{display:flex;flex-direction:column;padding-left:var(--spacing--xl);flex:0 0 var(--sidebar--width)}.index_sidebar__i_2dV>*{margin-bottom:var(--spacing--xl)}.index_sidebar__i_2dV>:last-child{margin-bottom:0}@media(max-width:1024px){.index_sidebar__i_2dV{padding-left:var(--spacing--l)}.index_sidebar__i_2dV>*{margin-bottom:var(--spacing--l)}.index_sidebar__i_2dV>:last-child{margin-bottom:0}}@media(max-height:800px){.index_sidebar__i_2dV{padding-left:var(--spacing--l)}.index_sidebar__i_2dV>*{margin-bottom:var(--spacing--l)}.index_sidebar__i_2dV>:last-child{margin-bottom:0}}.index_dictionary__Umhfc{display:flex;flex-direction:column}.index_dictionaryOutput__vSlhp{flex:1 1;border-bottom:var(--border)}.index_dictionaryInput__iCFs7{flex:0 0 auto}.index_resultsContainer__yBEuy{flex:1 1;position:relative}.index_rackContainer__Az99V{position:relative;z-index:1;flex:0 0 auto;display:flex;justify-content:center;margin:var(--spacing--xl) var(--spacing--l)}@media(max-width:1024px){.index_rackContainer__Az99V{margin:var(--spacing--l)}}@media(max-height:800px){.index_rackContainer__Az99V{margin:var(--spacing--l)}}.index_rack__XHWIp{border:var(--border)}.index_submitInput__jPA3B{display:none}
|