@scrabble-solver/scrabble-solver 2.11.6 → 2.11.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.
Files changed (86) hide show
  1. package/.next/BUILD_ID +1 -1
  2. package/.next/build-manifest.json +11 -11
  3. package/.next/cache/.tsbuildinfo +1 -1
  4. package/.next/cache/eslint/.cache_8dgz12 +1 -1
  5. package/.next/cache/next-server.js.nft.json +1 -1
  6. package/.next/cache/webpack/client-production/0.pack +0 -0
  7. package/.next/cache/webpack/client-production/index.pack +0 -0
  8. package/.next/cache/webpack/edge-server-production/0.pack +0 -0
  9. package/.next/cache/webpack/edge-server-production/index.pack +0 -0
  10. package/.next/cache/webpack/server-production/0.pack +0 -0
  11. package/.next/cache/webpack/server-production/index.pack +0 -0
  12. package/.next/next-server.js.nft.json +1 -1
  13. package/.next/prerender-manifest.json +1 -1
  14. package/.next/routes-manifest.json +1 -1
  15. package/.next/server/chunks/277.js +653 -399
  16. package/.next/server/chunks/865.js +153 -115
  17. package/.next/server/middleware-build-manifest.js +1 -1
  18. package/.next/server/pages/404.html +1 -1
  19. package/.next/server/pages/404.js.nft.json +1 -1
  20. package/.next/server/pages/500.html +1 -1
  21. package/.next/server/pages/_app.js +9 -2
  22. package/.next/server/pages/_app.js.nft.json +1 -1
  23. package/.next/server/pages/api/solve.js +30 -1
  24. package/.next/server/pages/index.html +1 -1
  25. package/.next/server/pages/index.js +35 -6
  26. package/.next/server/pages/index.js.nft.json +1 -1
  27. package/.next/server/pages/index.json +1 -1
  28. package/.next/server/pages-manifest.json +3 -3
  29. package/.next/static/5ttGCAW8jcIKxpR8om9fK/_buildManifest.js +1 -0
  30. package/.next/static/chunks/framework-2c5cac93e8c637b5.js +49 -0
  31. package/.next/static/chunks/pages/{404-8176f4acd0cfeb42.js → 404-ca203fa27afc37d8.js} +1 -1
  32. package/.next/static/chunks/pages/_app-76a8840b6244d5a2.js +28 -0
  33. package/.next/static/chunks/pages/index-6894f40e6cac9243.js +1 -0
  34. package/.next/static/css/af871fef886ef5b7.css +2 -0
  35. package/.next/static/css/c6e0e01f44fc0425.css +1 -0
  36. package/.next/trace +50 -50
  37. package/package.json +9 -9
  38. package/src/components/Board/Board.module.scss +2 -59
  39. package/src/components/Board/Board.tsx +22 -10
  40. package/src/components/Board/BoardPure.tsx +13 -8
  41. package/src/components/Board/components/Cell/Cell.module.scss +8 -140
  42. package/src/components/Board/components/Cell/Cell.tsx +18 -37
  43. package/src/components/Board/hooks/index.ts +1 -0
  44. package/src/components/Board/hooks/useBackgroundImage.tsx +174 -0
  45. package/src/components/Board/hooks/useGrid.ts +17 -1
  46. package/src/components/Board/lib/getBonusColor.ts +18 -0
  47. package/src/components/Board/lib/index.ts +1 -0
  48. package/src/components/DictionaryInput/DictionaryInput.tsx +5 -3
  49. package/src/components/Key/Key.module.scss +7 -11
  50. package/src/components/Rack/Rack.tsx +4 -1
  51. package/src/components/Rack/RackTile.tsx +12 -2
  52. package/src/components/Results/Cell.tsx +2 -2
  53. package/src/components/Results/Result.tsx +4 -8
  54. package/src/components/Results/Results.module.scss +5 -3
  55. package/src/components/Solver/Solver.tsx +2 -2
  56. package/src/components/Tile/Tile.module.scss +4 -0
  57. package/src/components/Tooltip/Tooltip.module.scss +2 -0
  58. package/src/hooks/useAppLayout.ts +1 -0
  59. package/src/i18n/constants.ts +25 -8
  60. package/src/i18n/de.json +2 -2
  61. package/src/i18n/en.json +2 -2
  62. package/src/i18n/es.json +2 -2
  63. package/src/i18n/fa.json +2 -2
  64. package/src/i18n/fr.json +2 -2
  65. package/src/i18n/pl.json +2 -2
  66. package/src/lib/dataUrlToBlob.ts +20 -0
  67. package/src/lib/index.ts +2 -0
  68. package/src/lib/isCtrl.ts +7 -0
  69. package/src/modals/KeyMapModal/KeyMapModal.tsx +20 -4
  70. package/src/modals/KeyMapModal/components/Mapping/Mapping.module.scss +10 -4
  71. package/src/pages/_app.tsx +1 -3
  72. package/src/parameters/index.ts +33 -2
  73. package/src/state/index.ts +1 -1
  74. package/src/state/sagas.ts +3 -4
  75. package/src/state/store.ts +34 -0
  76. package/src/styles/variables.scss +4 -0
  77. package/.next/static/Jmk00rVXCbdjFgP77tKXQ/_buildManifest.js +0 -1
  78. package/.next/static/chunks/framework-2c79e2a64abdb08b.js +0 -33
  79. package/.next/static/chunks/pages/_app-b4fa92112b8f0385.js +0 -28
  80. package/.next/static/chunks/pages/index-ccd762f8f5028729.js +0 -1
  81. package/.next/static/css/1cd302e7648d209c.css +0 -2
  82. package/.next/static/css/34adfcf12a7d9bb6.css +0 -1
  83. package/src/components/Board/components/Cell/CellPure.tsx +0 -93
  84. package/src/components/Board/components/Cell/lib.ts +0 -59
  85. package/src/state/createAppStore.ts +0 -38
  86. /package/.next/static/{Jmk00rVXCbdjFgP77tKXQ → 5ttGCAW8jcIKxpR8om9fK}/_ssgManifest.js +0 -0
@@ -9566,10 +9566,10 @@ var Parser = /** @class */ (function () {
9566
9566
  * Entities can be emitted on the character, or directly after.
9567
9567
  * We use the section start here to get accurate indices.
9568
9568
  */
9569
- var idx = this.tokenizer.getSectionStart();
9570
- this.endIndex = idx - 1;
9569
+ var index = this.tokenizer.getSectionStart();
9570
+ this.endIndex = index - 1;
9571
9571
  (_b = (_a = this.cbs).ontext) === null || _b === void 0 ? void 0 : _b.call(_a, (0, decode_js_1.fromCodePoint)(cp));
9572
- this.startIndex = idx;
9572
+ this.startIndex = index;
9573
9573
  };
9574
9574
  Parser.prototype.isVoidElement = function (name) {
9575
9575
  return !this.options.xmlMode && voidElements.has(name);
@@ -9591,8 +9591,8 @@ var Parser = /** @class */ (function () {
9591
9591
  if (impliesClose) {
9592
9592
  while (this.stack.length > 0 &&
9593
9593
  impliesClose.has(this.stack[this.stack.length - 1])) {
9594
- var el = this.stack.pop();
9595
- (_b = (_a = this.cbs).onclosetag) === null || _b === void 0 ? void 0 : _b.call(_a, el, true);
9594
+ var element = this.stack.pop();
9595
+ (_b = (_a = this.cbs).onclosetag) === null || _b === void 0 ? void 0 : _b.call(_a, element, true);
9596
9596
  }
9597
9597
  }
9598
9598
  if (!this.isVoidElement(name)) {
@@ -9727,8 +9727,8 @@ var Parser = /** @class */ (function () {
9727
9727
  this.attribvalue = "";
9728
9728
  };
9729
9729
  Parser.prototype.getInstructionName = function (value) {
9730
- var idx = value.search(reNameEnd);
9731
- var name = idx < 0 ? value : value.substr(0, idx);
9730
+ var index = value.search(reNameEnd);
9731
+ var name = index < 0 ? value : value.substr(0, index);
9732
9732
  if (this.lowerCaseTagNames) {
9733
9733
  name = name.toLowerCase();
9734
9734
  }
@@ -9788,7 +9788,7 @@ var Parser = /** @class */ (function () {
9788
9788
  if (this.cbs.onclosetag) {
9789
9789
  // Set the end index for all remaining tags
9790
9790
  this.endIndex = this.startIndex;
9791
- for (var i = this.stack.length; i > 0; this.cbs.onclosetag(this.stack[--i], true))
9791
+ for (var index = this.stack.length; index > 0; this.cbs.onclosetag(this.stack[--index], true))
9792
9792
  ;
9793
9793
  }
9794
9794
  (_b = (_a = this.cbs).onend) === null || _b === void 0 ? void 0 : _b.call(_a);
@@ -9826,12 +9826,12 @@ var Parser = /** @class */ (function () {
9826
9826
  while (start - this.bufferOffset >= this.buffers[0].length) {
9827
9827
  this.shiftBuffer();
9828
9828
  }
9829
- var str = this.buffers[0].slice(start - this.bufferOffset, end - this.bufferOffset);
9829
+ var slice = this.buffers[0].slice(start - this.bufferOffset, end - this.bufferOffset);
9830
9830
  while (end - this.bufferOffset > this.buffers[0].length) {
9831
9831
  this.shiftBuffer();
9832
- str += this.buffers[0].slice(0, end - this.bufferOffset);
9832
+ slice += this.buffers[0].slice(0, end - this.bufferOffset);
9833
9833
  }
9834
- return str;
9834
+ return slice;
9835
9835
  };
9836
9836
  Parser.prototype.shiftBuffer = function () {
9837
9837
  this.bufferOffset += this.buffers[0].length;
@@ -9863,7 +9863,7 @@ var Parser = /** @class */ (function () {
9863
9863
  Parser.prototype.end = function (chunk) {
9864
9864
  var _a, _b;
9865
9865
  if (this.ended) {
9866
- (_b = (_a = this.cbs).onerror) === null || _b === void 0 ? void 0 : _b.call(_a, Error(".end() after done!"));
9866
+ (_b = (_a = this.cbs).onerror) === null || _b === void 0 ? void 0 : _b.call(_a, new Error(".end() after done!"));
9867
9867
  return;
9868
9868
  }
9869
9869
  if (chunk)
@@ -9930,7 +9930,7 @@ var CharCodes;
9930
9930
  CharCodes[CharCodes["CarriageReturn"] = 13] = "CarriageReturn";
9931
9931
  CharCodes[CharCodes["Space"] = 32] = "Space";
9932
9932
  CharCodes[CharCodes["ExclamationMark"] = 33] = "ExclamationMark";
9933
- CharCodes[CharCodes["Num"] = 35] = "Num";
9933
+ CharCodes[CharCodes["Number"] = 35] = "Number";
9934
9934
  CharCodes[CharCodes["Amp"] = 38] = "Amp";
9935
9935
  CharCodes[CharCodes["SingleQuote"] = 39] = "SingleQuote";
9936
9936
  CharCodes[CharCodes["DoubleQuote"] = 34] = "DoubleQuote";
@@ -10052,6 +10052,7 @@ var Tokenizer = /** @class */ (function () {
10052
10052
  this.running = true;
10053
10053
  /** The offset of the current buffer. */
10054
10054
  this.offset = 0;
10055
+ this.currentSequence = undefined;
10055
10056
  this.sequenceIndex = 0;
10056
10057
  this.trieIndex = 0;
10057
10058
  this.trieCurrent = 0;
@@ -10320,6 +10321,7 @@ var Tokenizer = /** @class */ (function () {
10320
10321
  // Skip everything until ">"
10321
10322
  if (c === CharCodes.Gt || this.fastForwardTo(CharCodes.Gt)) {
10322
10323
  this.state = State.Text;
10324
+ this.baseState = State.Text;
10323
10325
  this.sectionStart = this.index + 1;
10324
10326
  }
10325
10327
  };
@@ -10491,7 +10493,7 @@ var Tokenizer = /** @class */ (function () {
10491
10493
  // Start excess with 1 to include the '&'
10492
10494
  this.entityExcess = 1;
10493
10495
  this.entityResult = 0;
10494
- if (c === CharCodes.Num) {
10496
+ if (c === CharCodes.Number) {
10495
10497
  this.state = State.BeforeNumericEntity;
10496
10498
  }
10497
10499
  else if (c === CharCodes.Amp) {
@@ -10547,13 +10549,15 @@ var Tokenizer = /** @class */ (function () {
10547
10549
  var valueLength = (this.entityTrie[this.entityResult] & decode_js_1.BinTrieFlags.VALUE_LENGTH) >>
10548
10550
  14;
10549
10551
  switch (valueLength) {
10550
- case 1:
10552
+ case 1: {
10551
10553
  this.emitCodePoint(this.entityTrie[this.entityResult] &
10552
10554
  ~decode_js_1.BinTrieFlags.VALUE_LENGTH);
10553
10555
  break;
10554
- case 2:
10556
+ }
10557
+ case 2: {
10555
10558
  this.emitCodePoint(this.entityTrie[this.entityResult + 1]);
10556
10559
  break;
10560
+ }
10557
10561
  case 3: {
10558
10562
  this.emitCodePoint(this.entityTrie[this.entityResult + 1]);
10559
10563
  this.emitCodePoint(this.entityTrie[this.entityResult + 2]);
@@ -10659,93 +10663,123 @@ var Tokenizer = /** @class */ (function () {
10659
10663
  Tokenizer.prototype.parse = function () {
10660
10664
  while (this.shouldContinue()) {
10661
10665
  var c = this.buffer.charCodeAt(this.index - this.offset);
10662
- if (this.state === State.Text) {
10663
- this.stateText(c);
10664
- }
10665
- else if (this.state === State.SpecialStartSequence) {
10666
- this.stateSpecialStartSequence(c);
10667
- }
10668
- else if (this.state === State.InSpecialTag) {
10669
- this.stateInSpecialTag(c);
10670
- }
10671
- else if (this.state === State.CDATASequence) {
10672
- this.stateCDATASequence(c);
10673
- }
10674
- else if (this.state === State.InAttributeValueDq) {
10675
- this.stateInAttributeValueDoubleQuotes(c);
10676
- }
10677
- else if (this.state === State.InAttributeName) {
10678
- this.stateInAttributeName(c);
10679
- }
10680
- else if (this.state === State.InCommentLike) {
10681
- this.stateInCommentLike(c);
10682
- }
10683
- else if (this.state === State.InSpecialComment) {
10684
- this.stateInSpecialComment(c);
10685
- }
10686
- else if (this.state === State.BeforeAttributeName) {
10687
- this.stateBeforeAttributeName(c);
10688
- }
10689
- else if (this.state === State.InTagName) {
10690
- this.stateInTagName(c);
10691
- }
10692
- else if (this.state === State.InClosingTagName) {
10693
- this.stateInClosingTagName(c);
10694
- }
10695
- else if (this.state === State.BeforeTagName) {
10696
- this.stateBeforeTagName(c);
10697
- }
10698
- else if (this.state === State.AfterAttributeName) {
10699
- this.stateAfterAttributeName(c);
10700
- }
10701
- else if (this.state === State.InAttributeValueSq) {
10702
- this.stateInAttributeValueSingleQuotes(c);
10703
- }
10704
- else if (this.state === State.BeforeAttributeValue) {
10705
- this.stateBeforeAttributeValue(c);
10706
- }
10707
- else if (this.state === State.BeforeClosingTagName) {
10708
- this.stateBeforeClosingTagName(c);
10709
- }
10710
- else if (this.state === State.AfterClosingTagName) {
10711
- this.stateAfterClosingTagName(c);
10712
- }
10713
- else if (this.state === State.BeforeSpecialS) {
10714
- this.stateBeforeSpecialS(c);
10715
- }
10716
- else if (this.state === State.InAttributeValueNq) {
10717
- this.stateInAttributeValueNoQuotes(c);
10718
- }
10719
- else if (this.state === State.InSelfClosingTag) {
10720
- this.stateInSelfClosingTag(c);
10721
- }
10722
- else if (this.state === State.InDeclaration) {
10723
- this.stateInDeclaration(c);
10724
- }
10725
- else if (this.state === State.BeforeDeclaration) {
10726
- this.stateBeforeDeclaration(c);
10727
- }
10728
- else if (this.state === State.BeforeComment) {
10729
- this.stateBeforeComment(c);
10730
- }
10731
- else if (this.state === State.InProcessingInstruction) {
10732
- this.stateInProcessingInstruction(c);
10733
- }
10734
- else if (this.state === State.InNamedEntity) {
10735
- this.stateInNamedEntity(c);
10736
- }
10737
- else if (this.state === State.BeforeEntity) {
10738
- this.stateBeforeEntity(c);
10739
- }
10740
- else if (this.state === State.InHexEntity) {
10741
- this.stateInHexEntity(c);
10742
- }
10743
- else if (this.state === State.InNumericEntity) {
10744
- this.stateInNumericEntity(c);
10745
- }
10746
- else {
10747
- // `this._state === State.BeforeNumericEntity`
10748
- this.stateBeforeNumericEntity(c);
10666
+ switch (this.state) {
10667
+ case State.Text: {
10668
+ this.stateText(c);
10669
+ break;
10670
+ }
10671
+ case State.SpecialStartSequence: {
10672
+ this.stateSpecialStartSequence(c);
10673
+ break;
10674
+ }
10675
+ case State.InSpecialTag: {
10676
+ this.stateInSpecialTag(c);
10677
+ break;
10678
+ }
10679
+ case State.CDATASequence: {
10680
+ this.stateCDATASequence(c);
10681
+ break;
10682
+ }
10683
+ case State.InAttributeValueDq: {
10684
+ this.stateInAttributeValueDoubleQuotes(c);
10685
+ break;
10686
+ }
10687
+ case State.InAttributeName: {
10688
+ this.stateInAttributeName(c);
10689
+ break;
10690
+ }
10691
+ case State.InCommentLike: {
10692
+ this.stateInCommentLike(c);
10693
+ break;
10694
+ }
10695
+ case State.InSpecialComment: {
10696
+ this.stateInSpecialComment(c);
10697
+ break;
10698
+ }
10699
+ case State.BeforeAttributeName: {
10700
+ this.stateBeforeAttributeName(c);
10701
+ break;
10702
+ }
10703
+ case State.InTagName: {
10704
+ this.stateInTagName(c);
10705
+ break;
10706
+ }
10707
+ case State.InClosingTagName: {
10708
+ this.stateInClosingTagName(c);
10709
+ break;
10710
+ }
10711
+ case State.BeforeTagName: {
10712
+ this.stateBeforeTagName(c);
10713
+ break;
10714
+ }
10715
+ case State.AfterAttributeName: {
10716
+ this.stateAfterAttributeName(c);
10717
+ break;
10718
+ }
10719
+ case State.InAttributeValueSq: {
10720
+ this.stateInAttributeValueSingleQuotes(c);
10721
+ break;
10722
+ }
10723
+ case State.BeforeAttributeValue: {
10724
+ this.stateBeforeAttributeValue(c);
10725
+ break;
10726
+ }
10727
+ case State.BeforeClosingTagName: {
10728
+ this.stateBeforeClosingTagName(c);
10729
+ break;
10730
+ }
10731
+ case State.AfterClosingTagName: {
10732
+ this.stateAfterClosingTagName(c);
10733
+ break;
10734
+ }
10735
+ case State.BeforeSpecialS: {
10736
+ this.stateBeforeSpecialS(c);
10737
+ break;
10738
+ }
10739
+ case State.InAttributeValueNq: {
10740
+ this.stateInAttributeValueNoQuotes(c);
10741
+ break;
10742
+ }
10743
+ case State.InSelfClosingTag: {
10744
+ this.stateInSelfClosingTag(c);
10745
+ break;
10746
+ }
10747
+ case State.InDeclaration: {
10748
+ this.stateInDeclaration(c);
10749
+ break;
10750
+ }
10751
+ case State.BeforeDeclaration: {
10752
+ this.stateBeforeDeclaration(c);
10753
+ break;
10754
+ }
10755
+ case State.BeforeComment: {
10756
+ this.stateBeforeComment(c);
10757
+ break;
10758
+ }
10759
+ case State.InProcessingInstruction: {
10760
+ this.stateInProcessingInstruction(c);
10761
+ break;
10762
+ }
10763
+ case State.InNamedEntity: {
10764
+ this.stateInNamedEntity(c);
10765
+ break;
10766
+ }
10767
+ case State.BeforeEntity: {
10768
+ this.stateBeforeEntity(c);
10769
+ break;
10770
+ }
10771
+ case State.InHexEntity: {
10772
+ this.stateInHexEntity(c);
10773
+ break;
10774
+ }
10775
+ case State.InNumericEntity: {
10776
+ this.stateInNumericEntity(c);
10777
+ break;
10778
+ }
10779
+ default: {
10780
+ // `this._state === State.BeforeNumericEntity`
10781
+ this.stateBeforeNumericEntity(c);
10782
+ }
10749
10783
  }
10750
10784
  this.index++;
10751
10785
  }
@@ -10857,12 +10891,15 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
10857
10891
  return (mod && mod.__esModule) ? mod : { "default": mod };
10858
10892
  };
10859
10893
  Object.defineProperty(exports, "__esModule", ({ value: true }));
10860
- exports.DefaultHandler = exports.DomUtils = exports.parseFeed = exports.getFeed = exports.ElementType = exports.Tokenizer = exports.createDomStream = exports.parseDOM = exports.parseDocument = exports.DomHandler = exports.Parser = void 0;
10894
+ exports.DomUtils = exports.parseFeed = exports.getFeed = exports.ElementType = exports.Tokenizer = exports.createDomStream = exports.parseDOM = exports.parseDocument = exports.DefaultHandler = exports.DomHandler = exports.Parser = void 0;
10861
10895
  var Parser_js_1 = __webpack_require__(45625);
10862
- Object.defineProperty(exports, "Parser", ({ enumerable: true, get: function () { return Parser_js_1.Parser; } }));
10896
+ var Parser_js_2 = __webpack_require__(45625);
10897
+ Object.defineProperty(exports, "Parser", ({ enumerable: true, get: function () { return Parser_js_2.Parser; } }));
10863
10898
  var domhandler_1 = __webpack_require__(67122);
10864
- Object.defineProperty(exports, "DomHandler", ({ enumerable: true, get: function () { return domhandler_1.DomHandler; } }));
10865
- Object.defineProperty(exports, "DefaultHandler", ({ enumerable: true, get: function () { return domhandler_1.DomHandler; } }));
10899
+ var domhandler_2 = __webpack_require__(67122);
10900
+ Object.defineProperty(exports, "DomHandler", ({ enumerable: true, get: function () { return domhandler_2.DomHandler; } }));
10901
+ // Old name for DomHandler
10902
+ Object.defineProperty(exports, "DefaultHandler", ({ enumerable: true, get: function () { return domhandler_2.DomHandler; } }));
10866
10903
  // Helper methods
10867
10904
  /**
10868
10905
  * Parses the data, returns the resulting document.
@@ -10893,12 +10930,12 @@ exports.parseDOM = parseDOM;
10893
10930
  /**
10894
10931
  * Creates a parser instance, with an attached DOM handler.
10895
10932
  *
10896
- * @param cb A callback that will be called once parsing has been completed.
10933
+ * @param callback A callback that will be called once parsing has been completed.
10897
10934
  * @param options Optional options for the parser and DOM builder.
10898
- * @param elementCb An optional callback that will be called every time a tag has been completed inside of the DOM.
10935
+ * @param elementCallback An optional callback that will be called every time a tag has been completed inside of the DOM.
10899
10936
  */
10900
- function createDomStream(cb, options, elementCb) {
10901
- var handler = new domhandler_1.DomHandler(cb, options, elementCb);
10937
+ function createDomStream(callback, options, elementCallback) {
10938
+ var handler = new domhandler_1.DomHandler(callback, options, elementCallback);
10902
10939
  return new Parser_js_1.Parser(handler, options);
10903
10940
  }
10904
10941
  exports.createDomStream = createDomStream;
@@ -10908,10 +10945,11 @@ Object.defineProperty(exports, "Tokenizer", ({ enumerable: true, get: function (
10908
10945
  * All of the following exports exist for backwards-compatibility.
10909
10946
  * They should probably be removed eventually.
10910
10947
  */
10911
- var ElementType = __importStar(__webpack_require__(18534));
10912
- exports.ElementType = ElementType;
10948
+ exports.ElementType = __importStar(__webpack_require__(18534));
10913
10949
  var domutils_1 = __webpack_require__(10616);
10914
- Object.defineProperty(exports, "getFeed", ({ enumerable: true, get: function () { return domutils_1.getFeed; } }));
10950
+ var domutils_2 = __webpack_require__(10616);
10951
+ Object.defineProperty(exports, "getFeed", ({ enumerable: true, get: function () { return domutils_2.getFeed; } }));
10952
+ var parseFeedDefaultOptions = { xmlMode: true };
10915
10953
  /**
10916
10954
  * Parse a feed.
10917
10955
  *
@@ -10919,7 +10957,7 @@ Object.defineProperty(exports, "getFeed", ({ enumerable: true, get: function ()
10919
10957
  * @param options Optionally, options for parsing. When using this, you should set `xmlMode` to `true`.
10920
10958
  */
10921
10959
  function parseFeed(feed, options) {
10922
- if (options === void 0) { options = { xmlMode: true }; }
10960
+ if (options === void 0) { options = parseFeedDefaultOptions; }
10923
10961
  return (0, domutils_1.getFeed)(parseDOM(feed, options));
10924
10962
  }
10925
10963
  exports.parseFeed = parseFeed;
@@ -1 +1 @@
1
- self.__BUILD_MANIFEST={polyfillFiles:["static/chunks/polyfills-c67a75d1b6f99dc8.js"],devFiles:[],ampDevFiles:[],lowPriorityFiles:["static/Jmk00rVXCbdjFgP77tKXQ/_buildManifest.js","static/Jmk00rVXCbdjFgP77tKXQ/_ssgManifest.js"],rootMainFiles:[],pages:{"/":["static/chunks/webpack-6ef43a8d4a395f49.js","static/chunks/framework-2c79e2a64abdb08b.js","static/chunks/main-0ecb9ccfcb6c9b24.js","static/css/34adfcf12a7d9bb6.css","static/chunks/pages/index-ccd762f8f5028729.js"],"/404":["static/chunks/webpack-6ef43a8d4a395f49.js","static/chunks/framework-2c79e2a64abdb08b.js","static/chunks/main-0ecb9ccfcb6c9b24.js","static/chunks/pages/404-8176f4acd0cfeb42.js"],"/_app":["static/chunks/webpack-6ef43a8d4a395f49.js","static/chunks/framework-2c79e2a64abdb08b.js","static/chunks/main-0ecb9ccfcb6c9b24.js","static/css/1cd302e7648d209c.css","static/chunks/pages/_app-b4fa92112b8f0385.js"],"/_error":["static/chunks/webpack-6ef43a8d4a395f49.js","static/chunks/framework-2c79e2a64abdb08b.js","static/chunks/main-0ecb9ccfcb6c9b24.js","static/chunks/pages/_error-54de1933a164a1ff.js"]},ampFirstPages:[]};
1
+ self.__BUILD_MANIFEST={polyfillFiles:["static/chunks/polyfills-c67a75d1b6f99dc8.js"],devFiles:[],ampDevFiles:[],lowPriorityFiles:["static/5ttGCAW8jcIKxpR8om9fK/_buildManifest.js","static/5ttGCAW8jcIKxpR8om9fK/_ssgManifest.js"],rootMainFiles:[],pages:{"/":["static/chunks/webpack-6ef43a8d4a395f49.js","static/chunks/framework-2c5cac93e8c637b5.js","static/chunks/main-0ecb9ccfcb6c9b24.js","static/css/c6e0e01f44fc0425.css","static/chunks/pages/index-6894f40e6cac9243.js"],"/404":["static/chunks/webpack-6ef43a8d4a395f49.js","static/chunks/framework-2c5cac93e8c637b5.js","static/chunks/main-0ecb9ccfcb6c9b24.js","static/chunks/pages/404-ca203fa27afc37d8.js"],"/_app":["static/chunks/webpack-6ef43a8d4a395f49.js","static/chunks/framework-2c5cac93e8c637b5.js","static/chunks/main-0ecb9ccfcb6c9b24.js","static/css/af871fef886ef5b7.css","static/chunks/pages/_app-76a8840b6244d5a2.js"],"/_error":["static/chunks/webpack-6ef43a8d4a395f49.js","static/chunks/framework-2c5cac93e8c637b5.js","static/chunks/main-0ecb9ccfcb6c9b24.js","static/chunks/pages/_error-54de1933a164a1ff.js"]},ampFirstPages:[]};
@@ -1 +1 @@
1
- <!DOCTYPE html><html lang="en"><head><title>Scrabble Solver 2 by Kamil Mielnik</title><meta charSet="utf-8"/><meta name="author" content="Kamil Mielnik"/><meta name="description" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><meta name="keywords" content="Scrabble Solver,Scrabble,Solver,Board,Open-source,Open,Source,Word,Finder,Cheating,Literaki,Word,English,Français,Deutsch,Polski,فارسی,Español,SOWPODS,TWL06,SJP,FISE-2017,FISE-2,CNRTL,Kamil Mielnik"/><meta name="robots" content="index, follow, notranslate, noimageindex"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><meta property="og:title" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><meta property="og:type" content="website"/><meta property="og:url" content="https://scrabble-solver.org"/><meta property="og:image" content="https://scrabble-solver.org/og.png"/><meta property="og:image:type" content="image/png"/><meta property="og:image:width" content="1200"/><meta property="og:image:height" content="630"/><meta property="og:image:alt" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><meta name="next-head-count" content="15"/><link crossorigin="anonymous" href="https://fonts.gstatic.com" rel="preconnect"/><link rel="apple-touch-icon-precomposed" sizes="57x57" href="icons/apple-touch-icon-57x57.png"/><link rel="apple-touch-icon-precomposed" sizes="114x114" href="icons/apple-touch-icon-114x114.png"/><link rel="apple-touch-icon-precomposed" sizes="72x72" href="icons/apple-touch-icon-72x72.png"/><link rel="apple-touch-icon-precomposed" sizes="144x144" href="icons/apple-touch-icon-144x144.png"/><link rel="apple-touch-icon-precomposed" sizes="60x60" href="icons/apple-touch-icon-60x60.png"/><link rel="apple-touch-icon-precomposed" sizes="120x120" href="icons/apple-touch-icon-120x120.png"/><link rel="apple-touch-icon-precomposed" sizes="76x76" href="icons/apple-touch-icon-76x76.png"/><link rel="apple-touch-icon-precomposed" sizes="152x152" href="icons/apple-touch-icon-152x152.png"/><link rel="icon" type="image/png" href="icons/favicon-196x196.png" sizes="196x196"/><link rel="icon" type="image/png" href="icons/favicon-96x96.png" sizes="96x96"/><link rel="icon" type="image/png" href="icons/favicon-32x32.png" sizes="32x32"/><link rel="icon" type="image/png" href="icons/favicon-16x16.png" sizes="16x16"/><link rel="icon" type="image/png" href="icons/favicon-128.png" sizes="128x128"/><meta name="application-name" content="Scrabble Solver"/><meta name="msapplication-TileColor" content="#EFE3AE"/><meta name="msapplication-TileImage" content="icons/mstile-144x144.png"/><meta name="msapplication-square70x70logo" content="icons/mstile-70x70.png"/><meta name="msapplication-square150x150logo" content="icons/mstile-150x150.png"/><meta name="msapplication-wide310x150logo" content="icons/mstile-310x150.png"/><meta name="msapplication-square310x310logo" content="icons/mstile-310x310.png"/><link rel="preload" href="/_next/static/css/1cd302e7648d209c.css" as="style"/><link rel="stylesheet" href="/_next/static/css/1cd302e7648d209c.css" data-n-g=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script src="/_next/static/chunks/webpack-6ef43a8d4a395f49.js" defer=""></script><script src="/_next/static/chunks/framework-2c79e2a64abdb08b.js" defer=""></script><script src="/_next/static/chunks/main-0ecb9ccfcb6c9b24.js" defer=""></script><script src="/_next/static/chunks/pages/_app-b4fa92112b8f0385.js" defer=""></script><script src="/_next/static/chunks/pages/404-8176f4acd0cfeb42.js" defer=""></script><script src="/_next/static/Jmk00rVXCbdjFgP77tKXQ/_buildManifest.js" defer=""></script><script src="/_next/static/Jmk00rVXCbdjFgP77tKXQ/_ssgManifest.js" defer=""></script></head><body><div id="__next"><p style="color:transparent;pointer-events:none;position:absolute;user-select:none;transform:translateY(-9999px)">Scrabble Solver 2 is a free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish. Source code is available on GitHub - contributions are welcome!</p><div class="NotFound_notFound__yhPFA"><a class="NotFound_link__a1OqI" href="/"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="NotFound_icon__zBP4O"><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"></path></svg><svg class="NotFound_tiles__Nxd8Z" viewBox="0 0 682 80" xmlns="http://www.w3.org/2000/svg"><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#f7c2aa" height="80" rx="12" width="80" x="0" y="0"></rect><text dominant-baseline="central" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="40">H</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#efe3ae" height="80" rx="12" width="80" x="86" y="0"></rect><text dominant-baseline="central" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="40">T</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" rx="12" width="80" x="172" y="0"></rect><text dominant-baseline="central" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="40">T</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#c7d8f9" height="80" rx="12" width="80" x="258" y="0"></rect><text dominant-baseline="central" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="40">P</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#bae3ba" height="80" rx="12" width="80" x="430" y="0"></rect><text dominant-baseline="central" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="40">4</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 556, 40)"><rect fill="#bae3ba" height="80" rx="12" width="80" x="516" y="0"></rect><text dominant-baseline="central" font-size="48" font-weight="bold" text-anchor="middle" x="556" y="40">0</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#bae3ba" height="80" rx="12" width="80" x="602" y="0"></rect><text dominant-baseline="central" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="40">4</text></g></svg></a></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{}},"page":"/404","query":{},"buildId":"Jmk00rVXCbdjFgP77tKXQ","nextExport":true,"autoExport":true,"isFallback":false,"scriptLoader":[]}</script></body></html>
1
+ <!DOCTYPE html><html lang="en"><head><title>Scrabble Solver 2 by Kamil Mielnik</title><meta charSet="utf-8"/><meta name="author" content="Kamil Mielnik"/><meta name="description" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><meta name="keywords" content="Scrabble Solver,Scrabble,Solver,Board,Open-source,Open,Source,Word,Finder,Cheating,Literaki,Word,English,Français,Deutsch,Polski,فارسی,Español,SOWPODS,TWL06,SJP,FISE-2017,FISE-2,CNRTL,Kamil Mielnik"/><meta name="robots" content="index, follow, notranslate, noimageindex"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><meta property="og:title" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><meta property="og:type" content="website"/><meta property="og:url" content="https://scrabble-solver.org"/><meta property="og:image" content="https://scrabble-solver.org/og.png"/><meta property="og:image:type" content="image/png"/><meta property="og:image:width" content="1200"/><meta property="og:image:height" content="630"/><meta property="og:image:alt" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><meta name="next-head-count" content="15"/><link crossorigin="anonymous" href="https://fonts.gstatic.com" rel="preconnect"/><link rel="apple-touch-icon-precomposed" sizes="57x57" href="icons/apple-touch-icon-57x57.png"/><link rel="apple-touch-icon-precomposed" sizes="114x114" href="icons/apple-touch-icon-114x114.png"/><link rel="apple-touch-icon-precomposed" sizes="72x72" href="icons/apple-touch-icon-72x72.png"/><link rel="apple-touch-icon-precomposed" sizes="144x144" href="icons/apple-touch-icon-144x144.png"/><link rel="apple-touch-icon-precomposed" sizes="60x60" href="icons/apple-touch-icon-60x60.png"/><link rel="apple-touch-icon-precomposed" sizes="120x120" href="icons/apple-touch-icon-120x120.png"/><link rel="apple-touch-icon-precomposed" sizes="76x76" href="icons/apple-touch-icon-76x76.png"/><link rel="apple-touch-icon-precomposed" sizes="152x152" href="icons/apple-touch-icon-152x152.png"/><link rel="icon" type="image/png" href="icons/favicon-196x196.png" sizes="196x196"/><link rel="icon" type="image/png" href="icons/favicon-96x96.png" sizes="96x96"/><link rel="icon" type="image/png" href="icons/favicon-32x32.png" sizes="32x32"/><link rel="icon" type="image/png" href="icons/favicon-16x16.png" sizes="16x16"/><link rel="icon" type="image/png" href="icons/favicon-128.png" sizes="128x128"/><meta name="application-name" content="Scrabble Solver"/><meta name="msapplication-TileColor" content="#EFE3AE"/><meta name="msapplication-TileImage" content="icons/mstile-144x144.png"/><meta name="msapplication-square70x70logo" content="icons/mstile-70x70.png"/><meta name="msapplication-square150x150logo" content="icons/mstile-150x150.png"/><meta name="msapplication-wide310x150logo" content="icons/mstile-310x150.png"/><meta name="msapplication-square310x310logo" content="icons/mstile-310x310.png"/><link rel="preload" href="/_next/static/css/af871fef886ef5b7.css" as="style"/><link rel="stylesheet" href="/_next/static/css/af871fef886ef5b7.css" data-n-g=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script src="/_next/static/chunks/webpack-6ef43a8d4a395f49.js" defer=""></script><script src="/_next/static/chunks/framework-2c5cac93e8c637b5.js" defer=""></script><script src="/_next/static/chunks/main-0ecb9ccfcb6c9b24.js" defer=""></script><script src="/_next/static/chunks/pages/_app-76a8840b6244d5a2.js" defer=""></script><script src="/_next/static/chunks/pages/404-ca203fa27afc37d8.js" defer=""></script><script src="/_next/static/5ttGCAW8jcIKxpR8om9fK/_buildManifest.js" defer=""></script><script src="/_next/static/5ttGCAW8jcIKxpR8om9fK/_ssgManifest.js" defer=""></script></head><body><div id="__next"><p style="color:transparent;pointer-events:none;position:absolute;user-select:none;transform:translateY(-9999px)">Scrabble Solver 2 is a free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish. Source code is available on GitHub - contributions are welcome!</p><div class="NotFound_notFound__yhPFA"><a class="NotFound_link__a1OqI" href="/"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="NotFound_icon__zBP4O"><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"></path></svg><svg class="NotFound_tiles__Nxd8Z" viewBox="0 0 682 80" xmlns="http://www.w3.org/2000/svg"><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#f7c2aa" height="80" rx="12" width="80" x="0" y="0"></rect><text dominant-baseline="central" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="40">H</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#efe3ae" height="80" rx="12" width="80" x="86" y="0"></rect><text dominant-baseline="central" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="40">T</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" rx="12" width="80" x="172" y="0"></rect><text dominant-baseline="central" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="40">T</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#c7d8f9" height="80" rx="12" width="80" x="258" y="0"></rect><text dominant-baseline="central" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="40">P</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#bae3ba" height="80" rx="12" width="80" x="430" y="0"></rect><text dominant-baseline="central" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="40">4</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 556, 40)"><rect fill="#bae3ba" height="80" rx="12" width="80" x="516" y="0"></rect><text dominant-baseline="central" font-size="48" font-weight="bold" text-anchor="middle" x="556" y="40">0</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#bae3ba" height="80" rx="12" width="80" x="602" y="0"></rect><text dominant-baseline="central" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="40">4</text></g></svg></a></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{}},"page":"/404","query":{},"buildId":"5ttGCAW8jcIKxpR8om9fK","nextExport":true,"autoExport":true,"isFallback":false,"scriptLoader":[]}</script></body></html>
@@ -1 +1 @@
1
- {"version":1,"files":["../webpack-runtime.js","../chunks/636.js","../chunks/675.js","../chunks/277.js","../../package.json","../../../node_modules/classnames/package.json","../../../node_modules/include-media-query-builder/package.json","../../../node_modules/react-modal/package.json","../../../node_modules/react-portal/package.json","../../../node_modules/react-redux/package.json","../../../node_modules/react-window/package.json","../../../node_modules/store2/package.json","../../../node_modules/@reduxjs/toolkit/package.json","../../../node_modules/next/dist/shared/lib/amp-context.js","../../../node_modules/next/dist/shared/lib/amp-mode.js","../../../node_modules/next/dist/shared/lib/head-manager-context.js","../../../node_modules/next/dist/shared/lib/image-blur-svg.js","../../../node_modules/next/dist/shared/lib/image-config-context.js","../../../node_modules/next/dist/shared/lib/image-config.js","../../../node_modules/next/dist/shared/lib/side-effect.js","../../../node_modules/next/dist/shared/lib/utils/warn-once.js","../../../node_modules/classnames/index.js","../../../node_modules/include-media-query-builder/build/index.js","../../../node_modules/react-modal/lib/index.js","../../../node_modules/react-portal/lib/index.js","../../../node_modules/react-redux/lib/index.js","../../../node_modules/react-window/dist/index.cjs.js","../../../node_modules/store2/dist/store2.js","../../../node_modules/@reduxjs/toolkit/dist/index.js","../../../node_modules/next/dist/shared/lib/image-loader.js","../../../node_modules/next/package.json","../../../node_modules/react/package.json","../../../node_modules/react/index.js","../../../node_modules/react-dom/package.json","../../../node_modules/react-dom/client.js","../../../node_modules/react/jsx-runtime.js","../../../node_modules/redux-saga/package.json","../../../node_modules/redux-saga/import-condition-proxy.mjs","../../../node_modules/redux-saga/dist/redux-saga-core-npm-proxy.cjs.js","../../../node_modules/@floating-ui/react/package.json","../../../node_modules/@floating-ui/react/dist/floating-ui.react.mjs","../../../node_modules/@floating-ui/react/dist/floating-ui.react.umd.js","../../../node_modules/@reduxjs/toolkit/dist/redux-toolkit.cjs.production.min.js","../../../node_modules/@reduxjs/toolkit/dist/redux-toolkit.cjs.development.js","../../../node_modules/react/cjs/react.production.min.js","../../../node_modules/react/cjs/react.development.js","../../../node_modules/react/cjs/react-jsx-runtime.production.min.js","../../../node_modules/react/cjs/react-jsx-runtime.development.js","../../../node_modules/redux-saga/effects/package.json","../../../node_modules/redux-saga/dist/redux-saga-effects-npm-proxy.cjs.js","../../../node_modules/@swc/helpers/lib/_interop_require_default.js","../../../node_modules/@swc/helpers/lib/_interop_require_wildcard.js","../../../node_modules/@swc/helpers/package.json","../../../node_modules/include-media-query-builder/build/buildParsedQuery.js","../../../node_modules/include-media-query-builder/build/buildMediaQuery.js","../../../node_modules/include-media-query-builder/build/constants.js","../../../node_modules/include-media-query-builder/build/isOperator.js","../../../node_modules/include-media-query-builder/build/isSize.js","../../../node_modules/include-media-query-builder/build/types.js","../../../node_modules/react-portal/lib/PortalCompat.js","../../../node_modules/react-portal/lib/PortalWithState.js","../../../node_modules/react-redux/lib/exports.js","../../../node_modules/react-modal/lib/components/Modal.js","../../../node_modules/react-redux/lib/utils/reactBatchedUpdates.js","../../../node_modules/react-redux/lib/utils/batch.js","../../../node_modules/react-redux/lib/hooks/useSelector.js","../../../node_modules/react-redux/lib/components/connect.js","../../../node_modules/next/dist/shared/lib/match-remote-pattern.js","../../../node_modules/react-dom/index.js","../../../node_modules/react-portal/lib/Portal.js","../../../node_modules/include-media-query-builder/build/parseQuery.js","../../../node_modules/react-portal/lib/LegacyPortal.js","../../../node_modules/react-redux/lib/components/Provider.js","../../../node_modules/react-redux/lib/components/Context.js","../../../node_modules/react-redux/lib/hooks/useDispatch.js","../../../node_modules/react-redux/lib/hooks/useStore.js","../../../node_modules/react-redux/lib/utils/shallowEqual.js","../../../node_modules/react-redux/lib/types.js","../../../node_modules/react-modal/lib/components/ModalPortal.js","../../../node_modules/react-redux/lib/hooks/useReduxContext.js","../../../node_modules/react-redux/lib/utils/useSyncExternalStore.js","../../../node_modules/react-redux/lib/utils/Subscription.js","../../../node_modules/react-redux/lib/utils/useIsomorphicLayoutEffect.js","../../../node_modules/react-redux/lib/utils/warning.js","../../../node_modules/@babel/runtime/package.json","../../../node_modules/@babel/runtime/helpers/assertThisInitialized.js","../../../node_modules/@babel/runtime/helpers/extends.js","../../../node_modules/@babel/runtime/helpers/inheritsLoose.js","../../../node_modules/@babel/runtime/helpers/objectWithoutPropertiesLoose.js","../../../node_modules/react-dom/cjs/react-dom.production.min.js","../../../node_modules/react-dom/cjs/react-dom.development.js","../../../node_modules/react-modal/lib/helpers/safeHTMLElement.js","../../../node_modules/react-modal/lib/helpers/ariaAppHider.js","../../../node_modules/react-redux/lib/connect/selectorFactory.js","../../../node_modules/react-redux/lib/connect/mapDispatchToProps.js","../../../node_modules/react-redux/lib/connect/mapStateToProps.js","../../../node_modules/react-redux/lib/connect/mergeProps.js","../../../node_modules/memoize-one/package.json","../../../node_modules/memoize-one/dist/memoize-one.cjs.js","../../../node_modules/@floating-ui/react-dom/package.json","../../../node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.umd.js","../../../node_modules/tabbable/package.json","../../../node_modules/tabbable/dist/index.js","../../../node_modules/@redux-saga/core/package.json","../../../node_modules/@redux-saga/core/dist/redux-saga-core.cjs.js","../../../node_modules/aria-hidden/package.json","../../../node_modules/aria-hidden/dist/es5/index.js","../../../node_modules/use-sync-external-store/shim/with-selector.js","../../../node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.mjs","../../../node_modules/react-portal/lib/utils.js","../../../node_modules/@babel/runtime/helpers/interopRequireDefault.js","../../../node_modules/@redux-saga/core/effects/package.json","../../../node_modules/@redux-saga/core/dist/redux-saga-effects.cjs.js","../../../node_modules/next/dist/compiled/micromatch/package.json","../../../node_modules/next/dist/compiled/micromatch/index.js","../../../node_modules/prop-types/package.json","../../../node_modules/prop-types/index.js","../../../node_modules/react-modal/lib/helpers/focusManager.js","../../../node_modules/react-modal/lib/helpers/scopeTab.js","../../../node_modules/react-modal/lib/helpers/classList.js","../../../node_modules/react-modal/lib/helpers/portalOpenInstances.js","../../../node_modules/react-modal/lib/helpers/bodyTrap.js","../../../node_modules/use-sync-external-store/package.json","../../../node_modules/@babel/runtime/helpers/setPrototypeOf.js","../../../node_modules/redux/package.json","../../../node_modules/redux/lib/redux.js","../../../node_modules/immer/package.json","../../../node_modules/immer/dist/index.js","../../../node_modules/reselect/package.json","../../../node_modules/reselect/lib/index.js","../../../node_modules/redux-thunk/package.json","../../../node_modules/redux-thunk/lib/index.js","../../../node_modules/react-redux/node_modules/react-is/package.json","../../../node_modules/react-redux/node_modules/react-is/index.js","../../../node_modules/react-redux/lib/connect/verifySubselectors.js","../../../node_modules/react-redux/lib/connect/wrapMapToProps.js","../../../node_modules/react-redux/lib/connect/invalidArgFactory.js","../../../node_modules/react-redux/lib/utils/bindActionCreators.js","../../../node_modules/react-redux/lib/utils/verifyPlainObject.js","../../../node_modules/react-lifecycles-compat/package.json","../../../node_modules/react-lifecycles-compat/react-lifecycles-compat.cjs.js","../../../node_modules/use-sync-external-store/shim/index.js","../../../node_modules/@redux-saga/core/dist/redux-saga-core.prod.cjs.js","../../../node_modules/@redux-saga/core/dist/redux-saga-core.dev.cjs.js","../../../node_modules/@redux-saga/core/dist/redux-saga-effects.prod.cjs.js","../../../node_modules/@redux-saga/core/dist/redux-saga-effects.dev.cjs.js","../../../node_modules/react-modal/lib/helpers/tabbable.js","../../../node_modules/hoist-non-react-statics/package.json","../../../node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js","../../../node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.production.min.js","../../../node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.development.js","../../../node_modules/immer/dist/immer.cjs.production.min.js","../../../node_modules/immer/dist/immer.cjs.development.js","../../../node_modules/prop-types/factoryWithTypeCheckers.js","../../../node_modules/prop-types/factoryWithThrowingShims.js","../../../node_modules/react-redux/node_modules/react-is/cjs/react-is.production.min.js","../../../node_modules/react-redux/node_modules/react-is/cjs/react-is.development.js","../../../node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.production.min.js","../../../node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.development.js","../../../node_modules/react-redux/lib/utils/isPlainObject.js","../../../node_modules/@redux-saga/core/dist/io-d39dbb58.js","../../../node_modules/scheduler/package.json","../../../node_modules/scheduler/index.js","../../../node_modules/@redux-saga/core/dist/io-a03c6210.js","../../../node_modules/reselect/lib/defaultMemoize.js","../../../node_modules/warning/package.json","../../../node_modules/warning/warning.js","../../../node_modules/exenv/package.json","../../../node_modules/exenv/index.js","../../../node_modules/@babel/runtime/helpers/objectSpread2.js","../../../node_modules/prop-types/checkPropTypes.js","../../../node_modules/@floating-ui/dom/package.json","../../../node_modules/@floating-ui/dom/dist/floating-ui.dom.umd.js","../../../node_modules/prop-types/lib/ReactPropTypesSecret.js","../../../node_modules/prop-types/lib/has.js","../../../node_modules/react-is/package.json","../../../node_modules/react-is/index.js","../../../node_modules/scheduler/cjs/scheduler.production.min.js","../../../node_modules/scheduler/cjs/scheduler.development.js","../../../node_modules/@babel/runtime/helpers/defineProperty.js","../../../node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs","../../../node_modules/@redux-saga/symbols/package.json","../../../node_modules/@redux-saga/symbols/dist/redux-saga-symbols.cjs.js","../../../node_modules/@redux-saga/is/package.json","../../../node_modules/@redux-saga/is/dist/redux-saga-is.cjs.js","../../../node_modules/@redux-saga/deferred/package.json","../../../node_modules/@redux-saga/deferred/dist/redux-saga-deferred.cjs.js","../../../node_modules/@redux-saga/delay-p/package.json","../../../node_modules/@redux-saga/delay-p/dist/redux-saga-delay-p.cjs.js","../../../node_modules/@babel/runtime/helpers/toPropertyKey.js","../../../node_modules/object-assign/index.js","../../../node_modules/react-is/cjs/react-is.development.js","../../../node_modules/react-is/cjs/react-is.production.min.js","../../../node_modules/object-assign/package.json","../../../node_modules/@babel/runtime/helpers/typeof.js","../../../node_modules/@babel/runtime/helpers/toPrimitive.js","../../../node_modules/@floating-ui/core/package.json","../../../node_modules/@floating-ui/core/dist/floating-ui.core.umd.js","../../../node_modules/@floating-ui/core/dist/floating-ui.core.mjs","../../../package.json","../../../src/i18n/de.json","../../../src/i18n/en.json","../../../src/i18n/es.json","../../../src/i18n/fa.json","../../../src/i18n/fr.json","../../../src/i18n/pl.json"]}
1
+ {"version":1,"files":["../webpack-runtime.js","../chunks/636.js","../chunks/675.js","../chunks/277.js","../../package.json","../../../node_modules/classnames/package.json","../../../node_modules/include-media-query-builder/package.json","../../../node_modules/react-modal/package.json","../../../node_modules/react-portal/package.json","../../../node_modules/react-redux/package.json","../../../node_modules/react-window/package.json","../../../node_modules/store2/package.json","../../../node_modules/@reduxjs/toolkit/package.json","../../../node_modules/next/dist/shared/lib/amp-context.js","../../../node_modules/next/dist/shared/lib/amp-mode.js","../../../node_modules/next/dist/shared/lib/head-manager-context.js","../../../node_modules/next/dist/shared/lib/image-blur-svg.js","../../../node_modules/next/dist/shared/lib/image-config-context.js","../../../node_modules/next/dist/shared/lib/image-config.js","../../../node_modules/next/dist/shared/lib/side-effect.js","../../../node_modules/next/dist/shared/lib/utils/warn-once.js","../../../node_modules/classnames/index.js","../../../node_modules/include-media-query-builder/build/index.js","../../../node_modules/react-modal/lib/index.js","../../../node_modules/react-portal/lib/index.js","../../../node_modules/react-redux/lib/index.js","../../../node_modules/react-window/dist/index.cjs.js","../../../node_modules/store2/dist/store2.js","../../../node_modules/@reduxjs/toolkit/dist/index.js","../../../node_modules/next/dist/shared/lib/image-loader.js","../../../node_modules/next/package.json","../../../node_modules/react/package.json","../../../node_modules/react/index.js","../../../node_modules/react-dom/package.json","../../../node_modules/react-dom/client.js","../../../node_modules/react/jsx-runtime.js","../../../node_modules/redux-saga/package.json","../../../node_modules/redux-saga/import-condition-proxy.mjs","../../../node_modules/redux-saga/dist/redux-saga-core-npm-proxy.cjs.js","../../../node_modules/@floating-ui/react/package.json","../../../node_modules/@floating-ui/react/dist/floating-ui.react.mjs","../../../node_modules/@floating-ui/react/dist/floating-ui.react.umd.js","../../../node_modules/react-dom/server.node.js","../../../node_modules/react-dom/server.js","../../../node_modules/@reduxjs/toolkit/dist/redux-toolkit.cjs.production.min.js","../../../node_modules/@reduxjs/toolkit/dist/redux-toolkit.cjs.development.js","../../../node_modules/redux-saga/effects/package.json","../../../node_modules/redux-saga/dist/redux-saga-effects-npm-proxy.cjs.js","../../../node_modules/react/cjs/react.production.min.js","../../../node_modules/react/cjs/react.development.js","../../../node_modules/react/cjs/react-jsx-runtime.production.min.js","../../../node_modules/react/cjs/react-jsx-runtime.development.js","../../../node_modules/@swc/helpers/lib/_interop_require_default.js","../../../node_modules/@swc/helpers/lib/_interop_require_wildcard.js","../../../node_modules/@swc/helpers/package.json","../../../node_modules/include-media-query-builder/build/buildMediaQuery.js","../../../node_modules/include-media-query-builder/build/buildParsedQuery.js","../../../node_modules/include-media-query-builder/build/constants.js","../../../node_modules/include-media-query-builder/build/isOperator.js","../../../node_modules/include-media-query-builder/build/isSize.js","../../../node_modules/include-media-query-builder/build/types.js","../../../node_modules/react-portal/lib/PortalCompat.js","../../../node_modules/react-portal/lib/PortalWithState.js","../../../node_modules/react-redux/lib/exports.js","../../../node_modules/react-modal/lib/components/Modal.js","../../../node_modules/react-redux/lib/utils/reactBatchedUpdates.js","../../../node_modules/react-redux/lib/utils/batch.js","../../../node_modules/react-redux/lib/hooks/useSelector.js","../../../node_modules/react-redux/lib/components/connect.js","../../../node_modules/next/dist/shared/lib/match-remote-pattern.js","../../../node_modules/react-dom/cjs/react-dom-server-legacy.node.production.min.js","../../../node_modules/react-dom/cjs/react-dom-server-legacy.node.development.js","../../../node_modules/react-dom/cjs/react-dom-server.node.production.min.js","../../../node_modules/react-dom/cjs/react-dom-server.node.development.js","../../../node_modules/react-dom/index.js","../../../node_modules/include-media-query-builder/build/parseQuery.js","../../../node_modules/react-portal/lib/Portal.js","../../../node_modules/react-portal/lib/LegacyPortal.js","../../../node_modules/react-redux/lib/components/Provider.js","../../../node_modules/react-redux/lib/components/Context.js","../../../node_modules/react-redux/lib/hooks/useDispatch.js","../../../node_modules/react-redux/lib/hooks/useStore.js","../../../node_modules/react-redux/lib/utils/shallowEqual.js","../../../node_modules/react-redux/lib/types.js","../../../node_modules/react-dom/cjs/react-dom.production.min.js","../../../node_modules/react-dom/cjs/react-dom.development.js","../../../node_modules/react-modal/lib/components/ModalPortal.js","../../../node_modules/react-redux/lib/hooks/useReduxContext.js","../../../node_modules/react-redux/lib/utils/useSyncExternalStore.js","../../../node_modules/react-redux/lib/utils/Subscription.js","../../../node_modules/react-redux/lib/utils/useIsomorphicLayoutEffect.js","../../../node_modules/react-redux/lib/utils/warning.js","../../../node_modules/@babel/runtime/package.json","../../../node_modules/@babel/runtime/helpers/extends.js","../../../node_modules/@babel/runtime/helpers/inheritsLoose.js","../../../node_modules/@babel/runtime/helpers/assertThisInitialized.js","../../../node_modules/@babel/runtime/helpers/objectWithoutPropertiesLoose.js","../../../node_modules/react-modal/lib/helpers/safeHTMLElement.js","../../../node_modules/react-modal/lib/helpers/ariaAppHider.js","../../../node_modules/react-redux/lib/connect/selectorFactory.js","../../../node_modules/react-redux/lib/connect/mapDispatchToProps.js","../../../node_modules/react-redux/lib/connect/mapStateToProps.js","../../../node_modules/react-redux/lib/connect/mergeProps.js","../../../node_modules/memoize-one/package.json","../../../node_modules/memoize-one/dist/memoize-one.cjs.js","../../../node_modules/@floating-ui/react-dom/package.json","../../../node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.umd.js","../../../node_modules/tabbable/package.json","../../../node_modules/tabbable/dist/index.js","../../../node_modules/@redux-saga/core/package.json","../../../node_modules/@redux-saga/core/dist/redux-saga-core.cjs.js","../../../node_modules/aria-hidden/package.json","../../../node_modules/aria-hidden/dist/es5/index.js","../../../node_modules/use-sync-external-store/shim/with-selector.js","../../../node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.mjs","../../../node_modules/react-portal/lib/utils.js","../../../node_modules/@babel/runtime/helpers/interopRequireDefault.js","../../../node_modules/@redux-saga/core/effects/package.json","../../../node_modules/@redux-saga/core/dist/redux-saga-effects.cjs.js","../../../node_modules/next/dist/compiled/micromatch/package.json","../../../node_modules/next/dist/compiled/micromatch/index.js","../../../node_modules/prop-types/package.json","../../../node_modules/prop-types/index.js","../../../node_modules/react-modal/lib/helpers/focusManager.js","../../../node_modules/react-modal/lib/helpers/scopeTab.js","../../../node_modules/react-modal/lib/helpers/portalOpenInstances.js","../../../node_modules/react-modal/lib/helpers/classList.js","../../../node_modules/react-modal/lib/helpers/bodyTrap.js","../../../node_modules/use-sync-external-store/package.json","../../../node_modules/@babel/runtime/helpers/setPrototypeOf.js","../../../node_modules/reselect/package.json","../../../node_modules/reselect/lib/index.js","../../../node_modules/immer/package.json","../../../node_modules/immer/dist/index.js","../../../node_modules/redux/package.json","../../../node_modules/redux/lib/redux.js","../../../node_modules/redux-thunk/package.json","../../../node_modules/redux-thunk/lib/index.js","../../../node_modules/react-redux/node_modules/react-is/package.json","../../../node_modules/react-redux/node_modules/react-is/index.js","../../../node_modules/react-redux/lib/utils/bindActionCreators.js","../../../node_modules/react-redux/lib/connect/wrapMapToProps.js","../../../node_modules/react-redux/lib/connect/invalidArgFactory.js","../../../node_modules/react-redux/lib/connect/verifySubselectors.js","../../../node_modules/react-redux/lib/utils/verifyPlainObject.js","../../../node_modules/react-lifecycles-compat/package.json","../../../node_modules/react-lifecycles-compat/react-lifecycles-compat.cjs.js","../../../node_modules/use-sync-external-store/shim/index.js","../../../node_modules/@redux-saga/core/dist/redux-saga-core.prod.cjs.js","../../../node_modules/@redux-saga/core/dist/redux-saga-core.dev.cjs.js","../../../node_modules/@redux-saga/core/dist/redux-saga-effects.prod.cjs.js","../../../node_modules/@redux-saga/core/dist/redux-saga-effects.dev.cjs.js","../../../node_modules/scheduler/package.json","../../../node_modules/scheduler/index.js","../../../node_modules/react-modal/lib/helpers/tabbable.js","../../../node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.production.min.js","../../../node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.development.js","../../../node_modules/hoist-non-react-statics/package.json","../../../node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js","../../../node_modules/immer/dist/immer.cjs.production.min.js","../../../node_modules/immer/dist/immer.cjs.development.js","../../../node_modules/prop-types/factoryWithThrowingShims.js","../../../node_modules/prop-types/factoryWithTypeCheckers.js","../../../node_modules/react-redux/node_modules/react-is/cjs/react-is.production.min.js","../../../node_modules/react-redux/node_modules/react-is/cjs/react-is.development.js","../../../node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.production.min.js","../../../node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.development.js","../../../node_modules/react-redux/lib/utils/isPlainObject.js","../../../node_modules/@redux-saga/core/dist/io-a03c6210.js","../../../node_modules/@redux-saga/core/dist/io-d39dbb58.js","../../../node_modules/reselect/lib/defaultMemoize.js","../../../node_modules/exenv/package.json","../../../node_modules/exenv/index.js","../../../node_modules/warning/package.json","../../../node_modules/warning/warning.js","../../../node_modules/@babel/runtime/helpers/objectSpread2.js","../../../node_modules/scheduler/cjs/scheduler.production.min.js","../../../node_modules/scheduler/cjs/scheduler.development.js","../../../node_modules/@floating-ui/dom/package.json","../../../node_modules/@floating-ui/dom/dist/floating-ui.dom.umd.js","../../../node_modules/prop-types/checkPropTypes.js","../../../node_modules/prop-types/lib/ReactPropTypesSecret.js","../../../node_modules/prop-types/lib/has.js","../../../node_modules/react-is/package.json","../../../node_modules/react-is/index.js","../../../node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs","../../../node_modules/@babel/runtime/helpers/defineProperty.js","../../../node_modules/@redux-saga/symbols/package.json","../../../node_modules/@redux-saga/symbols/dist/redux-saga-symbols.cjs.js","../../../node_modules/@redux-saga/is/package.json","../../../node_modules/@redux-saga/is/dist/redux-saga-is.cjs.js","../../../node_modules/@redux-saga/deferred/package.json","../../../node_modules/@redux-saga/deferred/dist/redux-saga-deferred.cjs.js","../../../node_modules/@redux-saga/delay-p/package.json","../../../node_modules/@redux-saga/delay-p/dist/redux-saga-delay-p.cjs.js","../../../node_modules/@babel/runtime/helpers/toPropertyKey.js","../../../node_modules/object-assign/index.js","../../../node_modules/react-is/cjs/react-is.production.min.js","../../../node_modules/react-is/cjs/react-is.development.js","../../../node_modules/object-assign/package.json","../../../node_modules/@babel/runtime/helpers/typeof.js","../../../node_modules/@babel/runtime/helpers/toPrimitive.js","../../../node_modules/@floating-ui/core/package.json","../../../node_modules/@floating-ui/core/dist/floating-ui.core.umd.js","../../../node_modules/@floating-ui/core/dist/floating-ui.core.mjs","../../../package.json","../../../src/i18n/de.json","../../../src/i18n/en.json","../../../src/i18n/es.json","../../../src/i18n/fa.json","../../../src/i18n/fr.json","../../../src/i18n/pl.json"]}
@@ -1 +1 @@
1
- <!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="author" content="Kamil Mielnik"/><meta name="description" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><meta name="keywords" content="Scrabble Solver,Scrabble,Solver,Board,Open-source,Open,Source,Word,Finder,Cheating,Literaki,Word,English,Français,Deutsch,Polski,فارسی,Español,SOWPODS,TWL06,SJP,FISE-2017,FISE-2,CNRTL,Kamil Mielnik"/><meta name="robots" content="index, follow, notranslate, noimageindex"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><meta property="og:title" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><meta property="og:type" content="website"/><meta property="og:url" content="https://scrabble-solver.org"/><meta property="og:image" content="https://scrabble-solver.org/og.png"/><meta property="og:image:type" content="image/png"/><meta property="og:image:width" content="1200"/><meta property="og:image:height" content="630"/><meta property="og:image:alt" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><title>500: Internal Server Error</title><meta name="next-head-count" content="15"/><link crossorigin="anonymous" href="https://fonts.gstatic.com" rel="preconnect"/><link rel="apple-touch-icon-precomposed" sizes="57x57" href="icons/apple-touch-icon-57x57.png"/><link rel="apple-touch-icon-precomposed" sizes="114x114" href="icons/apple-touch-icon-114x114.png"/><link rel="apple-touch-icon-precomposed" sizes="72x72" href="icons/apple-touch-icon-72x72.png"/><link rel="apple-touch-icon-precomposed" sizes="144x144" href="icons/apple-touch-icon-144x144.png"/><link rel="apple-touch-icon-precomposed" sizes="60x60" href="icons/apple-touch-icon-60x60.png"/><link rel="apple-touch-icon-precomposed" sizes="120x120" href="icons/apple-touch-icon-120x120.png"/><link rel="apple-touch-icon-precomposed" sizes="76x76" href="icons/apple-touch-icon-76x76.png"/><link rel="apple-touch-icon-precomposed" sizes="152x152" href="icons/apple-touch-icon-152x152.png"/><link rel="icon" type="image/png" href="icons/favicon-196x196.png" sizes="196x196"/><link rel="icon" type="image/png" href="icons/favicon-96x96.png" sizes="96x96"/><link rel="icon" type="image/png" href="icons/favicon-32x32.png" sizes="32x32"/><link rel="icon" type="image/png" href="icons/favicon-16x16.png" sizes="16x16"/><link rel="icon" type="image/png" href="icons/favicon-128.png" sizes="128x128"/><meta name="application-name" content="Scrabble Solver"/><meta name="msapplication-TileColor" content="#EFE3AE"/><meta name="msapplication-TileImage" content="icons/mstile-144x144.png"/><meta name="msapplication-square70x70logo" content="icons/mstile-70x70.png"/><meta name="msapplication-square150x150logo" content="icons/mstile-150x150.png"/><meta name="msapplication-wide310x150logo" content="icons/mstile-310x150.png"/><meta name="msapplication-square310x310logo" content="icons/mstile-310x310.png"/><link rel="preload" href="/_next/static/css/1cd302e7648d209c.css" as="style"/><link rel="stylesheet" href="/_next/static/css/1cd302e7648d209c.css" data-n-g=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script src="/_next/static/chunks/webpack-6ef43a8d4a395f49.js" defer=""></script><script src="/_next/static/chunks/framework-2c79e2a64abdb08b.js" defer=""></script><script src="/_next/static/chunks/main-0ecb9ccfcb6c9b24.js" defer=""></script><script src="/_next/static/chunks/pages/_app-b4fa92112b8f0385.js" defer=""></script><script src="/_next/static/chunks/pages/_error-54de1933a164a1ff.js" defer=""></script><script src="/_next/static/Jmk00rVXCbdjFgP77tKXQ/_buildManifest.js" defer=""></script><script src="/_next/static/Jmk00rVXCbdjFgP77tKXQ/_ssgManifest.js" defer=""></script></head><body><div id="__next"><p style="color:transparent;pointer-events:none;position:absolute;user-select:none;transform:translateY(-9999px)">Scrabble Solver 2 is a free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish. Source code is available on GitHub - contributions are welcome!</p><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding-right:23px;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">500</h1><div style="display:inline-block;text-align:left"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">Internal Server Error<!-- -->.</h2></div></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"statusCode":500}},"page":"/_error","query":{},"buildId":"Jmk00rVXCbdjFgP77tKXQ","nextExport":true,"isFallback":false,"gip":true,"scriptLoader":[]}</script></body></html>
1
+ <!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="author" content="Kamil Mielnik"/><meta name="description" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><meta name="keywords" content="Scrabble Solver,Scrabble,Solver,Board,Open-source,Open,Source,Word,Finder,Cheating,Literaki,Word,English,Français,Deutsch,Polski,فارسی,Español,SOWPODS,TWL06,SJP,FISE-2017,FISE-2,CNRTL,Kamil Mielnik"/><meta name="robots" content="index, follow, notranslate, noimageindex"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><meta property="og:title" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><meta property="og:type" content="website"/><meta property="og:url" content="https://scrabble-solver.org"/><meta property="og:image" content="https://scrabble-solver.org/og.png"/><meta property="og:image:type" content="image/png"/><meta property="og:image:width" content="1200"/><meta property="og:image:height" content="630"/><meta property="og:image:alt" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish."/><title>500: Internal Server Error</title><meta name="next-head-count" content="15"/><link crossorigin="anonymous" href="https://fonts.gstatic.com" rel="preconnect"/><link rel="apple-touch-icon-precomposed" sizes="57x57" href="icons/apple-touch-icon-57x57.png"/><link rel="apple-touch-icon-precomposed" sizes="114x114" href="icons/apple-touch-icon-114x114.png"/><link rel="apple-touch-icon-precomposed" sizes="72x72" href="icons/apple-touch-icon-72x72.png"/><link rel="apple-touch-icon-precomposed" sizes="144x144" href="icons/apple-touch-icon-144x144.png"/><link rel="apple-touch-icon-precomposed" sizes="60x60" href="icons/apple-touch-icon-60x60.png"/><link rel="apple-touch-icon-precomposed" sizes="120x120" href="icons/apple-touch-icon-120x120.png"/><link rel="apple-touch-icon-precomposed" sizes="76x76" href="icons/apple-touch-icon-76x76.png"/><link rel="apple-touch-icon-precomposed" sizes="152x152" href="icons/apple-touch-icon-152x152.png"/><link rel="icon" type="image/png" href="icons/favicon-196x196.png" sizes="196x196"/><link rel="icon" type="image/png" href="icons/favicon-96x96.png" sizes="96x96"/><link rel="icon" type="image/png" href="icons/favicon-32x32.png" sizes="32x32"/><link rel="icon" type="image/png" href="icons/favicon-16x16.png" sizes="16x16"/><link rel="icon" type="image/png" href="icons/favicon-128.png" sizes="128x128"/><meta name="application-name" content="Scrabble Solver"/><meta name="msapplication-TileColor" content="#EFE3AE"/><meta name="msapplication-TileImage" content="icons/mstile-144x144.png"/><meta name="msapplication-square70x70logo" content="icons/mstile-70x70.png"/><meta name="msapplication-square150x150logo" content="icons/mstile-150x150.png"/><meta name="msapplication-wide310x150logo" content="icons/mstile-310x150.png"/><meta name="msapplication-square310x310logo" content="icons/mstile-310x310.png"/><link rel="preload" href="/_next/static/css/af871fef886ef5b7.css" as="style"/><link rel="stylesheet" href="/_next/static/css/af871fef886ef5b7.css" data-n-g=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script src="/_next/static/chunks/webpack-6ef43a8d4a395f49.js" defer=""></script><script src="/_next/static/chunks/framework-2c5cac93e8c637b5.js" defer=""></script><script src="/_next/static/chunks/main-0ecb9ccfcb6c9b24.js" defer=""></script><script src="/_next/static/chunks/pages/_app-76a8840b6244d5a2.js" defer=""></script><script src="/_next/static/chunks/pages/_error-54de1933a164a1ff.js" defer=""></script><script src="/_next/static/5ttGCAW8jcIKxpR8om9fK/_buildManifest.js" defer=""></script><script src="/_next/static/5ttGCAW8jcIKxpR8om9fK/_ssgManifest.js" defer=""></script></head><body><div id="__next"><p style="color:transparent;pointer-events:none;position:absolute;user-select:none;transform:translateY(-9999px)">Scrabble Solver 2 is a free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish &amp; Spanish. Source code is available on GitHub - contributions are welcome!</p><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding-right:23px;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">500</h1><div style="display:inline-block;text-align:left"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">Internal Server Error<!-- -->.</h2></div></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"statusCode":500}},"page":"/_error","query":{},"buildId":"5ttGCAW8jcIKxpR8om9fK","nextExport":true,"isFallback":false,"gip":true,"scriptLoader":[]}</script></body></html>
@@ -60,7 +60,6 @@ const KEYWORDS = [
60
60
  "CNRTL",
61
61
  "Kamil Mielnik"
62
62
  ].join(",");
63
- const store = (0,state__WEBPACK_IMPORTED_MODULE_4__/* .createAppStore */ .vY)();
64
63
  const App = ({ Component , pageProps })=>/*#__PURE__*/ (0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.Fragment, {
65
64
  children: [
66
65
  /*#__PURE__*/ (0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)((next_head__WEBPACK_IMPORTED_MODULE_1___default()), {
@@ -126,7 +125,7 @@ const App = ({ Component , pageProps })=>/*#__PURE__*/ (0,react_jsx_runtime__WE
126
125
  ]
127
126
  }),
128
127
  /*#__PURE__*/ (0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(react_redux__WEBPACK_IMPORTED_MODULE_2__.Provider, {
129
- store: store,
128
+ store: state__WEBPACK_IMPORTED_MODULE_4__/* .store */ .h,
130
129
  children: [
131
130
  /*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx(components__WEBPACK_IMPORTED_MODULE_3__/* .SeoMessage */ .QR, {}),
132
131
  /*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx(Component, {
@@ -270,6 +269,14 @@ module.exports = require("react-dom/client");
270
269
 
271
270
  /***/ }),
272
271
 
272
+ /***/ 78684:
273
+ /***/ ((module) => {
274
+
275
+ "use strict";
276
+ module.exports = require("react-dom/server");
277
+
278
+ /***/ }),
279
+
273
280
  /***/ 19931:
274
281
  /***/ ((module) => {
275
282