puzlink 0.1.0

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 (233) hide show
  1. package/LICENSE.md +21 -0
  2. package/README.md +35 -0
  3. package/dist/data/answerLengths.d.ts +10 -0
  4. package/dist/data/answerLengths.d.ts.map +1 -0
  5. package/dist/data/answerLengths.js +63 -0
  6. package/dist/data/answerLengths.js.map +1 -0
  7. package/dist/data/categories/compass.d.ts +3 -0
  8. package/dist/data/categories/compass.d.ts.map +1 -0
  9. package/dist/data/categories/compass.js +11 -0
  10. package/dist/data/categories/compass.js.map +1 -0
  11. package/dist/data/categories/countryAlpha2.d.ts +3 -0
  12. package/dist/data/categories/countryAlpha2.d.ts.map +1 -0
  13. package/dist/data/categories/countryAlpha2.js +252 -0
  14. package/dist/data/categories/countryAlpha2.js.map +1 -0
  15. package/dist/data/categories/countryAlpha3.d.ts +3 -0
  16. package/dist/data/categories/countryAlpha3.d.ts.map +1 -0
  17. package/dist/data/categories/countryAlpha3.js +252 -0
  18. package/dist/data/categories/countryAlpha3.js.map +1 -0
  19. package/dist/data/categories/daysOfTheWeek.d.ts +3 -0
  20. package/dist/data/categories/daysOfTheWeek.d.ts.map +1 -0
  21. package/dist/data/categories/daysOfTheWeek.js +10 -0
  22. package/dist/data/categories/daysOfTheWeek.js.map +1 -0
  23. package/dist/data/categories/elementSymbols.d.ts +3 -0
  24. package/dist/data/categories/elementSymbols.d.ts.map +1 -0
  25. package/dist/data/categories/elementSymbols.js +121 -0
  26. package/dist/data/categories/elementSymbols.js.map +1 -0
  27. package/dist/data/categories/greekLetters.d.ts +3 -0
  28. package/dist/data/categories/greekLetters.d.ts.map +1 -0
  29. package/dist/data/categories/greekLetters.js +27 -0
  30. package/dist/data/categories/greekLetters.js.map +1 -0
  31. package/dist/data/categories/months.d.ts +3 -0
  32. package/dist/data/categories/months.d.ts.map +1 -0
  33. package/dist/data/categories/months.js +15 -0
  34. package/dist/data/categories/months.js.map +1 -0
  35. package/dist/data/categories/natoAlphabet.d.ts +3 -0
  36. package/dist/data/categories/natoAlphabet.d.ts.map +1 -0
  37. package/dist/data/categories/natoAlphabet.js +29 -0
  38. package/dist/data/categories/natoAlphabet.js.map +1 -0
  39. package/dist/data/categories/numbers.d.ts +3 -0
  40. package/dist/data/categories/numbers.d.ts.map +1 -0
  41. package/dist/data/categories/numbers.js +16 -0
  42. package/dist/data/categories/numbers.js.map +1 -0
  43. package/dist/data/categories/romanNumerals.d.ts +3 -0
  44. package/dist/data/categories/romanNumerals.d.ts.map +1 -0
  45. package/dist/data/categories/romanNumerals.js +134 -0
  46. package/dist/data/categories/romanNumerals.js.map +1 -0
  47. package/dist/data/categories/solfege.d.ts +3 -0
  48. package/dist/data/categories/solfege.d.ts.map +1 -0
  49. package/dist/data/categories/solfege.js +11 -0
  50. package/dist/data/categories/solfege.js.map +1 -0
  51. package/dist/data/categories/usStateAbbreviations.d.ts +3 -0
  52. package/dist/data/categories/usStateAbbreviations.d.ts.map +1 -0
  53. package/dist/data/categories/usStateAbbreviations.js +53 -0
  54. package/dist/data/categories/usStateAbbreviations.js.map +1 -0
  55. package/dist/data/categories.d.ts +10 -0
  56. package/dist/data/categories.d.ts.map +1 -0
  57. package/dist/data/categories.js +31 -0
  58. package/dist/data/categories.js.map +1 -0
  59. package/dist/data/knownLogProbs.d.ts +6 -0
  60. package/dist/data/knownLogProbs.d.ts.map +1 -0
  61. package/dist/data/knownLogProbs.js +2975 -0
  62. package/dist/data/knownLogProbs.js.map +1 -0
  63. package/dist/data/morse.d.ts +2 -0
  64. package/dist/data/morse.d.ts.map +1 -0
  65. package/dist/data/morse.js +29 -0
  66. package/dist/data/morse.js.map +1 -0
  67. package/dist/data/scrabble.d.ts +2 -0
  68. package/dist/data/scrabble.d.ts.map +1 -0
  69. package/dist/data/scrabble.js +29 -0
  70. package/dist/data/scrabble.js.map +1 -0
  71. package/dist/features/index.d.ts +32 -0
  72. package/dist/features/index.d.ts.map +1 -0
  73. package/dist/features/index.js +79 -0
  74. package/dist/features/index.js.map +1 -0
  75. package/dist/features/letterCount.d.ts +7 -0
  76. package/dist/features/letterCount.d.ts.map +1 -0
  77. package/dist/features/letterCount.js +121 -0
  78. package/dist/features/letterCount.js.map +1 -0
  79. package/dist/features/letterSequence.d.ts +7 -0
  80. package/dist/features/letterSequence.d.ts.map +1 -0
  81. package/dist/features/letterSequence.js +155 -0
  82. package/dist/features/letterSequence.js.map +1 -0
  83. package/dist/features/logProbCache.d.ts +16 -0
  84. package/dist/features/logProbCache.d.ts.map +1 -0
  85. package/dist/features/logProbCache.js +36 -0
  86. package/dist/features/logProbCache.js.map +1 -0
  87. package/dist/features/other.d.ts +4 -0
  88. package/dist/features/other.d.ts.map +1 -0
  89. package/dist/features/other.js +190 -0
  90. package/dist/features/other.js.map +1 -0
  91. package/dist/features/substring.d.ts +3 -0
  92. package/dist/features/substring.d.ts.map +1 -0
  93. package/dist/features/substring.js +146 -0
  94. package/dist/features/substring.js.map +1 -0
  95. package/dist/features/wordplay.d.ts +7 -0
  96. package/dist/features/wordplay.d.ts.map +1 -0
  97. package/dist/features/wordplay.js +387 -0
  98. package/dist/features/wordplay.js.map +1 -0
  99. package/dist/index.d.ts +4 -0
  100. package/dist/index.d.ts.map +1 -0
  101. package/dist/index.js +3 -0
  102. package/dist/index.js.map +1 -0
  103. package/dist/lib/affixDistribution.d.ts +26 -0
  104. package/dist/lib/affixDistribution.d.ts.map +1 -0
  105. package/dist/lib/affixDistribution.js +105 -0
  106. package/dist/lib/affixDistribution.js.map +1 -0
  107. package/dist/lib/counter.d.ts +23 -0
  108. package/dist/lib/counter.d.ts.map +1 -0
  109. package/dist/lib/counter.js +55 -0
  110. package/dist/lib/counter.js.map +1 -0
  111. package/dist/lib/distribution.d.ts +40 -0
  112. package/dist/lib/distribution.d.ts.map +1 -0
  113. package/dist/lib/distribution.js +176 -0
  114. package/dist/lib/distribution.js.map +1 -0
  115. package/dist/lib/lengthDistribution.d.ts +30 -0
  116. package/dist/lib/lengthDistribution.d.ts.map +1 -0
  117. package/dist/lib/lengthDistribution.js +137 -0
  118. package/dist/lib/lengthDistribution.js.map +1 -0
  119. package/dist/lib/letterBitset.d.ts +49 -0
  120. package/dist/lib/letterBitset.d.ts.map +1 -0
  121. package/dist/lib/letterBitset.js +101 -0
  122. package/dist/lib/letterBitset.js.map +1 -0
  123. package/dist/lib/letterDistribution.d.ts +60 -0
  124. package/dist/lib/letterDistribution.d.ts.map +1 -0
  125. package/dist/lib/letterDistribution.js +230 -0
  126. package/dist/lib/letterDistribution.js.map +1 -0
  127. package/dist/lib/letterIndices.d.ts +13 -0
  128. package/dist/lib/letterIndices.d.ts.map +1 -0
  129. package/dist/lib/letterIndices.js +41 -0
  130. package/dist/lib/letterIndices.js.map +1 -0
  131. package/dist/lib/logCounter.d.ts +23 -0
  132. package/dist/lib/logCounter.d.ts.map +1 -0
  133. package/dist/lib/logCounter.js +49 -0
  134. package/dist/lib/logCounter.js.map +1 -0
  135. package/dist/lib/logNum.d.ts +36 -0
  136. package/dist/lib/logNum.d.ts.map +1 -0
  137. package/dist/lib/logNum.js +193 -0
  138. package/dist/lib/logNum.js.map +1 -0
  139. package/dist/lib/memoize.d.ts +5 -0
  140. package/dist/lib/memoize.d.ts.map +1 -0
  141. package/dist/lib/memoize.js +104 -0
  142. package/dist/lib/memoize.js.map +1 -0
  143. package/dist/lib/util.d.ts +30 -0
  144. package/dist/lib/util.d.ts.map +1 -0
  145. package/dist/lib/util.js +111 -0
  146. package/dist/lib/util.js.map +1 -0
  147. package/dist/lib/wordlist.d.ts +66 -0
  148. package/dist/lib/wordlist.d.ts.map +1 -0
  149. package/dist/lib/wordlist.js +166 -0
  150. package/dist/lib/wordlist.js.map +1 -0
  151. package/dist/linkers/index.d.ts +34 -0
  152. package/dist/linkers/index.d.ts.map +1 -0
  153. package/dist/linkers/index.js +25 -0
  154. package/dist/linkers/index.js.map +1 -0
  155. package/dist/linkers/indexing.d.ts +5 -0
  156. package/dist/linkers/indexing.d.ts.map +1 -0
  157. package/dist/linkers/indexing.js +152 -0
  158. package/dist/linkers/indexing.js.map +1 -0
  159. package/dist/linkers/length.d.ts +5 -0
  160. package/dist/linkers/length.d.ts.map +1 -0
  161. package/dist/linkers/length.js +101 -0
  162. package/dist/linkers/length.js.map +1 -0
  163. package/dist/linkers/letterDistribution.d.ts +4 -0
  164. package/dist/linkers/letterDistribution.d.ts.map +1 -0
  165. package/dist/linkers/letterDistribution.js +46 -0
  166. package/dist/linkers/letterDistribution.js.map +1 -0
  167. package/dist/linkers/other.d.ts +5 -0
  168. package/dist/linkers/other.d.ts.map +1 -0
  169. package/dist/linkers/other.js +90 -0
  170. package/dist/linkers/other.js.map +1 -0
  171. package/dist/parse.d.ts +8 -0
  172. package/dist/parse.d.ts.map +1 -0
  173. package/dist/parse.js +23 -0
  174. package/dist/parse.js.map +1 -0
  175. package/dist/puzlink.d.ts +84 -0
  176. package/dist/puzlink.d.ts.map +1 -0
  177. package/dist/puzlink.js +59 -0
  178. package/dist/puzlink.js.map +1 -0
  179. package/package.json +57 -0
  180. package/src/data/answerLengths.ts +63 -0
  181. package/src/data/categories/README.md +3 -0
  182. package/src/data/categories/compass.ts +1 -0
  183. package/src/data/categories/countryAlpha2.ts +251 -0
  184. package/src/data/categories/countryAlpha3.ts +251 -0
  185. package/src/data/categories/daysOfTheWeek.ts +1 -0
  186. package/src/data/categories/elementSymbols.ts +120 -0
  187. package/src/data/categories/greekLetters.ts +26 -0
  188. package/src/data/categories/months.ts +14 -0
  189. package/src/data/categories/natoAlphabet.ts +28 -0
  190. package/src/data/categories/numbers.ts +15 -0
  191. package/src/data/categories/romanNumerals.ts +133 -0
  192. package/src/data/categories/solfege.ts +1 -0
  193. package/src/data/categories/txt/compass.txt +8 -0
  194. package/src/data/categories/txt/daysOfTheWeek.txt +7 -0
  195. package/src/data/categories/txt/elementSymbols.txt +118 -0
  196. package/src/data/categories/txt/greekLetters.txt +24 -0
  197. package/src/data/categories/txt/months.txt +12 -0
  198. package/src/data/categories/txt/natoAlphabet.txt +26 -0
  199. package/src/data/categories/txt/numbers.txt +13 -0
  200. package/src/data/categories/txt/solfege.txt +8 -0
  201. package/src/data/categories/txt/usStateAbbreviations.txt +50 -0
  202. package/src/data/categories/usStateAbbreviations.ts +52 -0
  203. package/src/data/categories.ts +42 -0
  204. package/src/data/knownLogProbs.ts +2992 -0
  205. package/src/data/morse.ts +28 -0
  206. package/src/data/scrabble.ts +28 -0
  207. package/src/features/index.ts +120 -0
  208. package/src/features/letterCount.ts +174 -0
  209. package/src/features/letterSequence.ts +222 -0
  210. package/src/features/logProbCache.ts +48 -0
  211. package/src/features/other.ts +214 -0
  212. package/src/features/substring.ts +173 -0
  213. package/src/features/wordplay.ts +428 -0
  214. package/src/index.ts +3 -0
  215. package/src/lib/affixDistribution.ts +70 -0
  216. package/src/lib/counter.ts +71 -0
  217. package/src/lib/distribution.ts +162 -0
  218. package/src/lib/lengthDistribution.ts +108 -0
  219. package/src/lib/letterBitset.ts +123 -0
  220. package/src/lib/letterDistribution.ts +236 -0
  221. package/src/lib/letterIndices.ts +51 -0
  222. package/src/lib/logCounter.ts +74 -0
  223. package/src/lib/logNum.ts +193 -0
  224. package/src/lib/memoize.ts +136 -0
  225. package/src/lib/testUtils.ts +1 -0
  226. package/src/lib/util.ts +150 -0
  227. package/src/lib/wordlist.ts +162 -0
  228. package/src/linkers/index.ts +56 -0
  229. package/src/linkers/indexing.ts +194 -0
  230. package/src/linkers/length.ts +122 -0
  231. package/src/linkers/other.ts +117 -0
  232. package/src/parse.ts +20 -0
  233. package/src/puzlink.ts +141 -0
@@ -0,0 +1,2992 @@
1
+ /**
2
+ * Computing feature LogProbs can be expensive; so we've precomputed some
3
+ * cached values.
4
+ */
5
+ export const knownLogProbs: Record<string, number> = {
6
+ "can prepend a": -4.067807042213865,
7
+ "can prepend b": -4.091674523620508,
8
+ "can prepend c": -4.068917536497892,
9
+ "can prepend d": -4.397807480379983,
10
+ "can prepend e": -4.704844576727946,
11
+ "can prepend f": -4.552794738009499,
12
+ "can prepend g": -4.445633231320071,
13
+ "can prepend h": -4.524799130520072,
14
+ "can prepend i": -4.886117365727816,
15
+ "can prepend j": -5.185184760404722,
16
+ "can prepend k": -4.527871329557042,
17
+ "can prepend l": -4.549195993684726,
18
+ "can prepend m": -4.229151496827841,
19
+ "can prepend n": -4.6918133785135785,
20
+ "can prepend o": -4.9038843305424615,
21
+ "can prepend p": -4.245919931814246,
22
+ "can prepend q": -6.810869289275783,
23
+ "can prepend r": -4.561394021595686,
24
+ "can prepend s": -3.6891501755883134,
25
+ "can prepend t": -4.231109721996681,
26
+ "can prepend u": -5.408540378308635,
27
+ "can prepend v": -5.206617213874048,
28
+ "can prepend w": -4.789664328656241,
29
+ "can prepend x": -6.521034363462901,
30
+ "can prepend y": -5.739935388029818,
31
+ "can prepend z": -5.882581841113996,
32
+ "can prepend 1": -2.460925112723775,
33
+ "can append a": -3.4729851261013422,
34
+ "can append b": -5.53257301877525,
35
+ "can append c": -4.9935765180425635,
36
+ "can append d": -3.775833414757116,
37
+ "can append e": -3.4885658500832903,
38
+ "can append f": -5.437590296267963,
39
+ "can append g": -4.707471318453664,
40
+ "can append h": -4.7805681886223965,
41
+ "can append i": -4.000739811967781,
42
+ "can append j": -6.828261031987652,
43
+ "can append k": -5.044575001107224,
44
+ "can append l": -4.28135471719647,
45
+ "can append m": -4.880472948108139,
46
+ "can append n": -3.7098842644910324,
47
+ "can append o": -4.007247709464799,
48
+ "can append p": -5.189434660554051,
49
+ "can append q": -7.1824328457082665,
50
+ "can append r": -3.9214558448214305,
51
+ "can append s": -1.893534701076721,
52
+ "can append t": -4.120503271302791,
53
+ "can append u": -5.037232824218144,
54
+ "can append v": -5.872412261944367,
55
+ "can append w": -5.942248659419758,
56
+ "can append x": -5.729648743319543,
57
+ "can append y": -4.036396567017023,
58
+ "can append z": -5.634870336992253,
59
+ "can append 1": -1.470454879358904,
60
+ "can insert a": -2.6309931321411533,
61
+ "can insert b": -3.6104383931041095,
62
+ "can insert c": -3.3735505991996337,
63
+ "can insert d": -3.0871512226648257,
64
+ "can insert e": -2.672466595168631,
65
+ "can insert f": -4.067529611223044,
66
+ "can insert g": -3.561598052061189,
67
+ "can insert h": -3.321308475713657,
68
+ "can insert i": -2.9023870276478263,
69
+ "can insert j": -4.742262089761657,
70
+ "can insert k": -3.696779432505794,
71
+ "can insert l": -3.004111018651983,
72
+ "can insert m": -3.425748725744187,
73
+ "can insert n": -2.871382074135962,
74
+ "can insert o": -3.06930741984279,
75
+ "can insert p": -3.6360534542016136,
76
+ "can insert q": -6.191498570838346,
77
+ "can insert r": -2.749831925071451,
78
+ "can insert s": -1.7282608946605205,
79
+ "can insert t": -3.0257005110513493,
80
+ "can insert u": -3.5023418976274083,
81
+ "can insert v": -4.338978007599853,
82
+ "can insert w": -4.143880574971346,
83
+ "can insert x": -5.110047389752639,
84
+ "can insert y": -3.5409070879778,
85
+ "can insert z": -4.639355563065398,
86
+ "can insert 1": -0.9777109551951622,
87
+ "can behead 1": -1.3385986156043082,
88
+ "can curtail 1": -0.8295639310371836,
89
+ "can delete a": -2.4256151101110355,
90
+ "can delete b": -3.438089120337205,
91
+ "can delete c": -3.1889450672978477,
92
+ "can delete d": -2.94479995742142,
93
+ "can delete e": -2.494186097303084,
94
+ "can delete f": -3.8495589167866537,
95
+ "can delete g": -3.4060863892510316,
96
+ "can delete h": -3.179998001419868,
97
+ "can delete i": -2.6913416264178824,
98
+ "can delete j": -4.620854548506314,
99
+ "can delete k": -3.5580919127319017,
100
+ "can delete l": -2.8284520958129296,
101
+ "can delete m": -3.231670011964189,
102
+ "can delete n": -2.714802073742236,
103
+ "can delete o": -2.880481471321085,
104
+ "can delete p": -3.438089120337205,
105
+ "can delete q": -6.031069991654627,
106
+ "can delete r": -2.5599754483335833,
107
+ "can delete s": -1.6470197142280156,
108
+ "can delete t": -2.8514528253236566,
109
+ "can delete u": -3.3197313956128305,
110
+ "can delete v": -4.150489190191703,
111
+ "can delete w": -3.983504658649762,
112
+ "can delete x": -4.987989911333924,
113
+ "can delete y": -3.4504340380253904,
114
+ "can delete z": -4.55324549303178,
115
+ "can delete 1": -0.5498712777255506,
116
+ "can change to a": -1.41079703748078,
117
+ "can change to b": -1.6882403550002127,
118
+ "can change to c": -1.69406346284622,
119
+ "can change to d": -1.5412130676393847,
120
+ "can change to e": -1.4657958456158635,
121
+ "can change to f": -1.986494333280982,
122
+ "can change to g": -1.7984826561062572,
123
+ "can change to h": -1.7847227352821946,
124
+ "can change to i": -1.5871175592755389,
125
+ "can change to j": -2.3827758176557694,
126
+ "can change to k": -1.8159604585723361,
127
+ "can change to l": -1.556882219321638,
128
+ "can change to m": -1.6063890500757285,
129
+ "can change to n": -1.5241708863538737,
130
+ "can change to o": -1.611753284058521,
131
+ "can change to p": -1.7545411240421824,
132
+ "can change to q": -3.5324241659833238,
133
+ "can change to r": -1.4717368247829974,
134
+ "can change to s": -1.3149560908829176,
135
+ "can change to t": -1.4953939320662197,
136
+ "can change to u": -1.9231162165099622,
137
+ "can change to v": -2.121262878237962,
138
+ "can change to w": -2.0637282081432655,
139
+ "can change to x": -2.8430201747561643,
140
+ "can change to y": -1.9753402655603072,
141
+ "can change to z": -2.481214116209797,
142
+ "can change 1": -0.5316445477676197,
143
+ "can reverse": -2.6273724442056245,
144
+ "is anagram": -1.0068124875796407,
145
+ "has transadd a": -1.4299395751115735,
146
+ "has transadd b": -2.0057183009194777,
147
+ "has transadd c": -1.8080518313017695,
148
+ "has transadd d": -1.7468566670031898,
149
+ "has transadd e": -1.4389890498525624,
150
+ "has transadd f": -2.3926520581227493,
151
+ "has transadd g": -1.989094123295823,
152
+ "has transadd h": -1.8375897817232971,
153
+ "has transadd i": -1.537803419913299,
154
+ "has transadd j": -3.0568117018094423,
155
+ "has transadd k": -2.132697037990095,
156
+ "has transadd l": -1.599265538410041,
157
+ "has transadd m": -1.8286512079031034,
158
+ "has transadd n": -1.5219493891972178,
159
+ "has transadd o": -1.6335026858564756,
160
+ "has transadd p": -2.0029694005100698,
161
+ "has transadd q": -4.321661557588392,
162
+ "has transadd r": -1.5032419470801361,
163
+ "has transadd s": -1.107632940730797,
164
+ "has transadd t": -1.583432350390602,
165
+ "has transadd u": -1.896314586617228,
166
+ "has transadd v": -2.508786588418104,
167
+ "has transadd w": -2.500417366023264,
168
+ "has transadd x": -3.4307253168114595,
169
+ "has transadd y": -2.1155747605157327,
170
+ "has transadd z": -2.918609256757648,
171
+ "has transadd 1": -0.44069525681355337,
172
+ "has transdelete a": -1.613039274090717,
173
+ "has transdelete b": -2.646143930291883,
174
+ "has transdelete c": -2.349081816888697,
175
+ "has transdelete d": -2.2408797127994546,
176
+ "has transdelete e": -1.6743358283041534,
177
+ "has transdelete f": -3.155519874406165,
178
+ "has transdelete g": -2.591108066542228,
179
+ "has transdelete h": -2.436957386714969,
180
+ "has transdelete i": -1.85750397710909,
181
+ "has transdelete j": -4.0313006729265854,
182
+ "has transdelete k": -2.8637787455319863,
183
+ "has transdelete l": -2.041720033417347,
184
+ "has transdelete m": -2.3457046098049474,
185
+ "has transdelete n": -1.8554369185866673,
186
+ "has transdelete o": -2.014544546120085,
187
+ "has transdelete p": -2.630861240819412,
188
+ "has transdelete q": -5.210089439584797,
189
+ "has transdelete r": -1.7715683491880458,
190
+ "has transdelete s": -1.3602193972048262,
191
+ "has transdelete t": -2.0011058603002247,
192
+ "has transdelete u": -2.47911559858065,
193
+ "has transdelete v": -3.2875559991150904,
194
+ "has transdelete w": -3.3139699550324995,
195
+ "has transdelete x": -4.44401510798966,
196
+ "has transdelete y": -2.8729769038692208,
197
+ "has transdelete z": -3.9260204173113387,
198
+ "has transdelete 1": -0.21846265339839377,
199
+ "has a at index -5": -2.2419965072690164,
200
+ "has a at index -4": -2.244950851405312,
201
+ "has a at index -3": -2.3095760456552927,
202
+ "has a at index -2": -2.4306762311281194,
203
+ "has a at index -1": -2.5710942236997987,
204
+ "has a at index 1": -2.759534217764088,
205
+ "has a at index 2": -1.718521594686031,
206
+ "has a at index 3": -2.4708776690161613,
207
+ "has a at index 4": -2.48456953779003,
208
+ "has a at index 5": -2.4493642903226984,
209
+ "has a at index 6": -2.644070420301789,
210
+ "has a at index 7": -2.8484154302207454,
211
+ "has a at index 8": -3.320913972453889,
212
+ "has a at index 9": -3.8329674511364633,
213
+ "has a at index 10": -4.46237173193992,
214
+ "has b at index -5": -3.812769131717996,
215
+ "has b at index -4": -3.7033103815743527,
216
+ "has b at index -3": -3.8029273749150985,
217
+ "has b at index -2": -4.538921165743627,
218
+ "has b at index -1": -5.232957630488457,
219
+ "has b at index 1": -2.730996759662217,
220
+ "has b at index 2": -4.694925414220209,
221
+ "has b at index 3": -3.665862738261559,
222
+ "has b at index 4": -3.866430310109342,
223
+ "has b at index 5": -4.263311674526116,
224
+ "has b at index 6": -4.544268772070223,
225
+ "has b at index 7": -5.14283721257563,
226
+ "has b at index 8": -5.580523199694957,
227
+ "has b at index 9": -6.049016634845464,
228
+ "has b at index 10": -6.629985547251456,
229
+ "has c at index -5": -3.314100528904854,
230
+ "has c at index -4": -3.452081608232577,
231
+ "has c at index -3": -3.6201446371349117,
232
+ "has c at index -2": -3.438828491905083,
233
+ "has c at index -1": -4.048026177466516,
234
+ "has c at index 1": -2.5067459498648805,
235
+ "has c at index 2": -3.8491128864491966,
236
+ "has c at index 3": -3.093938697164342,
237
+ "has c at index 4": -3.2558907541809177,
238
+ "has c at index 5": -3.7235563524594326,
239
+ "has c at index 6": -3.782486245947764,
240
+ "has c at index 7": -4.195804386403745,
241
+ "has c at index 8": -4.453355277413981,
242
+ "has c at index 9": -4.860045125418041,
243
+ "has c at index 10": -5.219700697494911,
244
+ "has d at index -5": -3.715135662341588,
245
+ "has d at index -4": -3.5617653180982103,
246
+ "has d at index -3": -3.514075027315126,
247
+ "has d at index -2": -3.60361242803371,
248
+ "has d at index -1": -2.743833906422898,
249
+ "has d at index 1": -2.973922894741701,
250
+ "has d at index 2": -4.67690690871753,
251
+ "has d at index 3": -3.384138605608463,
252
+ "has d at index 4": -3.234801412812752,
253
+ "has d at index 5": -3.7793622196644296,
254
+ "has d at index 6": -3.7957147853109454,
255
+ "has d at index 7": -3.862807117739923,
256
+ "has d at index 8": -4.013535390646307,
257
+ "has d at index 9": -4.333534336018676,
258
+ "has d at index 10": -4.767077258881382,
259
+ "has e at index -5": -2.5631748604025564,
260
+ "has e at index -4": -2.639537079204679,
261
+ "has e at index -3": -2.359835415402074,
262
+ "has e at index -2": -1.7725741044273224,
263
+ "has e at index -1": -2.198612205807567,
264
+ "has e at index 1": -3.3411005809028893,
265
+ "has e at index 2": -1.9741769575288863,
266
+ "has e at index 3": -2.737431411872995,
267
+ "has e at index 4": -2.331917400422279,
268
+ "has e at index 5": -2.1642014749903833,
269
+ "has e at index 6": -2.4564841150839936,
270
+ "has e at index 7": -2.727286450214967,
271
+ "has e at index 8": -2.9784867735710847,
272
+ "has e at index 9": -3.245717227689749,
273
+ "has e at index 10": -3.6857359082351593,
274
+ "has f at index -5": -4.304991549291094,
275
+ "has f at index -4": -4.263649113368528,
276
+ "has f at index -3": -4.663728816336975,
277
+ "has f at index -2": -4.7499165831221895,
278
+ "has f at index -1": -4.970730249191393,
279
+ "has f at index 1": -3.2833684414445123,
280
+ "has f at index 2": -5.132323569431382,
281
+ "has f at index 3": -4.1690448556658595,
282
+ "has f at index 4": -4.249906648058067,
283
+ "has f at index 5": -4.704320055341674,
284
+ "has f at index 6": -4.916122808578932,
285
+ "has f at index 7": -5.53618096015145,
286
+ "has f at index 8": -5.982844639700154,
287
+ "has f at index 9": -6.704647076020476,
288
+ "has f at index 10": -7.56625877871295,
289
+ "has g at index -5": -3.8439977857824257,
290
+ "has g at index -4": -3.758984855111292,
291
+ "has g at index -3": -3.770872677010564,
292
+ "has g at index -2": -3.9219353461492457,
293
+ "has g at index -1": -3.0662452555637127,
294
+ "has g at index 1": -3.2482814882071196,
295
+ "has g at index 2": -5.189434660554051,
296
+ "has g at index 3": -3.6189040521286575,
297
+ "has g at index 4": -3.606932078151374,
298
+ "has g at index 5": -4.137612833216988,
299
+ "has g at index 6": -4.148381707852138,
300
+ "has g at index 7": -4.066143609615166,
301
+ "has g at index 8": -4.294146594303123,
302
+ "has g at index 9": -4.5899805693571025,
303
+ "has g at index 10": -4.837626737280258,
304
+ "has h at index -5": -3.544846685981881,
305
+ "has h at index -4": -3.4612677280963613,
306
+ "has h at index -3": -3.6206767879235215,
307
+ "has h at index -2": -4.017485362865621,
308
+ "has h at index -1": -3.8091206675356464,
309
+ "has h at index 1": -3.1595395314486954,
310
+ "has h at index 2": -3.1217743411409717,
311
+ "has h at index 3": -4.0412483285559375,
312
+ "has h at index 4": -3.576425619420405,
313
+ "has h at index 5": -3.5232075108783985,
314
+ "has h at index 6": -3.993243331210426,
315
+ "has h at index 7": -4.398966005321302,
316
+ "has h at index 8": -4.693886992527727,
317
+ "has h at index 9": -5.173380238844177,
318
+ "has h at index 10": -5.619038871775572,
319
+ "has i at index -5": -2.6656841213210782,
320
+ "has i at index -4": -2.458535625326393,
321
+ "has i at index -3": -1.8767365207603248,
322
+ "has i at index -2": -2.5888925252023434,
323
+ "has i at index -1": -3.329231401088462,
324
+ "has i at index 1": -3.5067652855665603,
325
+ "has i at index 2": -2.318365938700147,
326
+ "has i at index 3": -2.7958074266716544,
327
+ "has i at index 4": -2.5599754483335833,
328
+ "has i at index 5": -2.4546579337845778,
329
+ "has i at index 6": -2.67384239506921,
330
+ "has i at index 7": -2.8621154051617967,
331
+ "has i at index 8": -3.2199543967916266,
332
+ "has i at index 9": -3.586319934188456,
333
+ "has i at index 10": -4.05979262872089,
334
+ "has j at index -5": -5.504168742344313,
335
+ "has j at index -4": -5.53257301877525,
336
+ "has j at index -3": -5.586840340096219,
337
+ "has j at index -2": -5.686723698602509,
338
+ "has j at index -1": -6.659184701943718,
339
+ "has j at index 1": -4.209777303484252,
340
+ "has j at index 2": -6.346810016901566,
341
+ "has j at index 3": -5.316416605873719,
342
+ "has j at index 4": -5.869045255396463,
343
+ "has j at index 5": -6.612159763298855,
344
+ "has j at index 6": -6.969339630247558,
345
+ "has j at index 7": -7.642486144100833,
346
+ "has j at index 8": -8.450944171171773,
347
+ "has j at index 9": -9.21308422321867,
348
+ "has j at index 10": -10.31169651188678,
349
+ "has k at index -5": -4.3063995044691215,
350
+ "has k at index -4": -4.08600718059663,
351
+ "has k at index -3": -4.1085827928903225,
352
+ "has k at index -2": -3.9891312719594954,
353
+ "has k at index -1": -4.0730929079083715,
354
+ "has k at index 1": -3.5214385950838647,
355
+ "has k at index 2": -5.248197728233456,
356
+ "has k at index 3": -4.365902001611986,
357
+ "has k at index 4": -3.6981205573356046,
358
+ "has k at index 5": -4.1807806296432855,
359
+ "has k at index 6": -5.021987519875343,
360
+ "has k at index 7": -4.972100112419307,
361
+ "has k at index 8": -5.182643462976049,
362
+ "has k at index 9": -5.530174936091237,
363
+ "has k at index 10": -6.3911386040087965,
364
+ "has l at index -5": -3.0329689842650858,
365
+ "has l at index -4": -2.797675567636853,
366
+ "has l at index -3": -2.8181406659741537,
367
+ "has l at index -2": -2.7149455148957493,
368
+ "has l at index -1": -3.2857773174112417,
369
+ "has l at index 1": -3.268910964156385,
370
+ "has l at index 2": -3.175213303296532,
371
+ "has l at index 3": -2.662207990635409,
372
+ "has l at index 4": -2.900571909815106,
373
+ "has l at index 5": -3.00171947400994,
374
+ "has l at index 6": -3.1754406276894187,
375
+ "has l at index 7": -3.4532815483795556,
376
+ "has l at index 8": -3.7657312775101452,
377
+ "has l at index 9": -4.241618849914856,
378
+ "has l at index 10": -4.620854548506314,
379
+ "has m at index -5": -3.5342126389419573,
380
+ "has m at index -4": -3.508191254278442,
381
+ "has m at index -3": -3.5451756874653544,
382
+ "has m at index -2": -3.959814034561232,
383
+ "has m at index -1": -3.802076129917962,
384
+ "has m at index 1": -2.657253285416667,
385
+ "has m at index 2": -4.1580523785657295,
386
+ "has m at index 3": -3.1424564759696594,
387
+ "has m at index 4": -3.4641462998893733,
388
+ "has m at index 5": -3.76532110523204,
389
+ "has m at index 6": -4.0069865787674015,
390
+ "has m at index 7": -4.439578722411364,
391
+ "has m at index 8": -4.831653003864552,
392
+ "has m at index 9": -5.1962722940316555,
393
+ "has m at index 10": -5.686723698602509,
394
+ "has n at index -5": -2.9703052478297813,
395
+ "has n at index -4": -2.797675567636853,
396
+ "has n at index -3": -2.7570623989706196,
397
+ "has n at index -2": -2.1926382174838626,
398
+ "has n at index -1": -2.40683446607796,
399
+ "has n at index 1": -3.5634395190584964,
400
+ "has n at index 2": -3.090382580039538,
401
+ "has n at index 3": -2.4598685885895737,
402
+ "has n at index 4": -2.840984094727112,
403
+ "has n at index 5": -2.8315905524992218,
404
+ "has n at index 6": -2.6575918667640703,
405
+ "has n at index 7": -2.9962880442012807,
406
+ "has n at index 8": -3.2172245867764655,
407
+ "has n at index 9": -3.5519441821456663,
408
+ "has n at index 10": -3.993243331210426,
409
+ "has o at index -5": -2.82404274085153,
410
+ "has o at index -4": -2.779837945541397,
411
+ "has o at index -3": -2.5733951481936863,
412
+ "has o at index -2": -2.713870207433448,
413
+ "has o at index -1": -3.2797028871917124,
414
+ "has o at index 1": -3.7543095747179667,
415
+ "has o at index 2": -2.0190049363943228,
416
+ "has o at index 3": -2.8710466443634246,
417
+ "has o at index 4": -2.8606207606919014,
418
+ "has o at index 5": -2.7461991969040067,
419
+ "has o at index 6": -3.0605541832928456,
420
+ "has o at index 7": -3.271285223316074,
421
+ "has o at index 8": -3.729473529487521,
422
+ "has o at index 9": -4.21233894433429,
423
+ "has o at index 10": -4.686648077773083,
424
+ "has p at index -5": -3.758577440153527,
425
+ "has p at index -4": -3.8222744960061767,
426
+ "has p at index -3": -4.093950484773661,
427
+ "has p at index -2": -4.355119223779238,
428
+ "has p at index -1": -4.667259715339528,
429
+ "has p at index 1": -2.7128676292916065,
430
+ "has p at index 2": -4.100236219755319,
431
+ "has p at index 3": -3.470081035409187,
432
+ "has p at index 4": -3.6180188613122493,
433
+ "has p at index 5": -4.1863881209722305,
434
+ "has p at index 6": -4.6088668719858505,
435
+ "has p at index 7": -5.006261677569879,
436
+ "has p at index 8": -5.358892126612105,
437
+ "has p at index 9": -5.845788393232196,
438
+ "has p at index 10": -6.517813748762859,
439
+ "has q at index -5": -6.266142113834111,
440
+ "has q at index -4": -6.354973327540727,
441
+ "has q at index -3": -6.2102344818958155,
442
+ "has q at index -2": -7.461816115345352,
443
+ "has q at index -1": -6.934596681803685,
444
+ "has q at index 1": -5.314484238122665,
445
+ "has q at index 2": -6.212601346906081,
446
+ "has q at index 3": -6.071398037041599,
447
+ "has q at index 4": -6.139509462900745,
448
+ "has q at index 5": -6.841506258737673,
449
+ "has q at index 6": -6.964301836217601,
450
+ "has q at index 7": -7.814955404451776,
451
+ "has q at index 8": -8.28731474738997,
452
+ "has q at index 9": -8.961769794937764,
453
+ "has q at index 10": -9.692657303480557,
454
+ "has r at index -5": -2.7176028942740285,
455
+ "has r at index -4": -2.6535364370761663,
456
+ "has r at index -3": -2.847841824272294,
457
+ "has r at index -2": -2.6177591863775085,
458
+ "has r at index -1": -2.8218852427115095,
459
+ "has r at index 1": -3.0387030583054226,
460
+ "has r at index 2": -2.602516367194843,
461
+ "has r at index 3": -2.282170609093381,
462
+ "has r at index 4": -2.7568379908461047,
463
+ "has r at index 5": -2.7735056718551743,
464
+ "has r at index 6": -2.7959629718578434,
465
+ "has r at index 7": -3.160099097240254,
466
+ "has r at index 8": -3.5864913872535986,
467
+ "has r at index 9": -4.043953957912095,
468
+ "has r at index 10": -4.535371916232486,
469
+ "has s at index -5": -3.049368497057781,
470
+ "has s at index -4": -3.009777844554918,
471
+ "has s at index -3": -3.0958264795812873,
472
+ "has s at index -2": -3.109780194355153,
473
+ "has s at index -1": -1.6159985622032877,
474
+ "has s at index 1": -2.298779013372801,
475
+ "has s at index 2": -4.089120243815412,
476
+ "has s at index 3": -2.815202640277141,
477
+ "has s at index 4": -2.8724729985927464,
478
+ "has s at index 5": -2.8721372027534606,
479
+ "has s at index 6": -2.9167644809017528,
480
+ "has s at index 7": -2.9210742637281513,
481
+ "has s at index 8": -3.109248081321791,
482
+ "has s at index 9": -3.3805037630771935,
483
+ "has s at index 10": -3.6735027642432296,
484
+ "has t at index -5": -3.0057405421374117,
485
+ "has t at index -4": -2.635090415166303,
486
+ "has t at index -3": -2.7283035964810978,
487
+ "has t at index -2": -2.7786141424209347,
488
+ "has t at index -1": -3.021403629440183,
489
+ "has t at index 1": -2.980262060185437,
490
+ "has t at index 2": -3.8061260128912373,
491
+ "has t at index 3": -2.8011095833427007,
492
+ "has t at index 4": -2.6235684125966863,
493
+ "has t at index 5": -2.980823332417197,
494
+ "has t at index 6": -3.0325747402229197,
495
+ "has t at index 7": -3.1609950542942524,
496
+ "has t at index 8": -3.398243211790005,
497
+ "has t at index 9": -3.7841563924737738,
498
+ "has t at index 10": -4.262300040651271,
499
+ "has u at index -5": -3.400660904783072,
500
+ "has u at index -4": -3.349588338157206,
501
+ "has u at index -3": -3.3314876897887107,
502
+ "has u at index -2": -3.352569370175093,
503
+ "has u at index -1": -4.523047816587337,
504
+ "has u at index 1": -3.991699326786346,
505
+ "has u at index 2": -2.5912981986846386,
506
+ "has u at index 3": -3.2742923675443443,
507
+ "has u at index 4": -3.4751303920175545,
508
+ "has u at index 5": -3.6331747188562566,
509
+ "has u at index 6": -3.9774024276621187,
510
+ "has u at index 7": -4.19265576919295,
511
+ "has u at index 8": -4.633964714430522,
512
+ "has u at index 9": -5.070705640530462,
513
+ "has u at index 10": -5.736985533383397,
514
+ "has v at index -5": -4.507853254667656,
515
+ "has v at index -4": -4.418081079237415,
516
+ "has v at index -3": -4.439578722411364,
517
+ "has v at index -2": -4.62278598319655,
518
+ "has v at index -1": -5.258184193434132,
519
+ "has v at index 1": -3.9718412404277625,
520
+ "has v at index 2": -4.823940120775925,
521
+ "has v at index 3": -4.050750232542443,
522
+ "has v at index 4": -4.393186755947528,
523
+ "has v at index 5": -5.121123452351846,
524
+ "has v at index 6": -5.002721850864755,
525
+ "has v at index 7": -5.3896322519718005,
526
+ "has v at index 8": -5.616424491201502,
527
+ "has v at index 9": -6.126380171458952,
528
+ "has v at index 10": -6.648134865757133,
529
+ "has w at index -5": -4.6252055343406395,
530
+ "has w at index -4": -4.226221330316559,
531
+ "has w at index -3": -4.8352329599552695,
532
+ "has w at index -2": -5.009814079174247,
533
+ "has w at index -1": -5.296310615031926,
534
+ "has w at index 1": -3.607107102217631,
535
+ "has w at index 2": -4.964588981169311,
536
+ "has w at index 3": -4.535371916232486,
537
+ "has w at index 4": -4.7603994377387755,
538
+ "has w at index 5": -5.024151242320654,
539
+ "has w at index 6": -5.035770835653644,
540
+ "has w at index 7": -5.741413584899129,
541
+ "has w at index 8": -6.179964417593059,
542
+ "has w at index 9": -6.944400681900306,
543
+ "has w at index 10": -7.838766053145495,
544
+ "has x at index -5": -6.196149742014076,
545
+ "has x at index -4": -5.962340659502447,
546
+ "has x at index -3": -5.842509701770497,
547
+ "has x at index -2": -6.330680634971682,
548
+ "has x at index -1": -5.146910537963266,
549
+ "has x at index 1": -6.157287708922029,
550
+ "has x at index 2": -5.093659976599546,
551
+ "has x at index 3": -5.198848508423429,
552
+ "has x at index 4": -6.00763141868261,
553
+ "has x at index 5": -6.273670380254902,
554
+ "has x at index 6": -6.268645244052229,
555
+ "has x at index 7": -6.517813748762859,
556
+ "has x at index 8": -6.979492001711575,
557
+ "has x at index 9": -7.672639182271521,
558
+ "has x at index 10": -8.407459059232036,
559
+ "has y at index -5": -4.675377466665632,
560
+ "has y at index -4": -4.388587284443069,
561
+ "has y at index -3": -4.704844576727946,
562
+ "has y at index -2": -4.365902001611986,
563
+ "has y at index -1": -2.8393582102944777,
564
+ "has y at index 1": -4.94839429524933,
565
+ "has y at index 2": -4.175822454007092,
566
+ "has y at index 3": -4.233726668207215,
567
+ "has y at index 4": -4.505271497639801,
568
+ "has y at index 5": -4.126075950337841,
569
+ "has y at index 6": -4.187638511882252,
570
+ "has y at index 7": -4.416900209192693,
571
+ "has y at index 8": -4.707471318453664,
572
+ "has y at index 9": -5.104555026004613,
573
+ "has y at index 10": -5.302014052545796,
574
+ "has z at index -5": -5.457436592639893,
575
+ "has z at index -4": -4.952418445549056,
576
+ "has z at index -3": -4.758183370349864,
577
+ "has z at index -2": -5.0737359458796405,
578
+ "has z at index -1": -5.19798903265071,
579
+ "has z at index 1": -5.054201139858998,
580
+ "has z at index 2": -6.146139321439414,
581
+ "has z at index 3": -4.976220997371811,
582
+ "has z at index 4": -4.9038843305424615,
583
+ "has z at index 5": -5.372096990907275,
584
+ "has z at index 6": -5.788356344146321,
585
+ "has z at index 7": -5.824666568202914,
586
+ "has z at index 8": -5.999939073059454,
587
+ "has z at index 9": -6.2102344818958155,
588
+ "has z at index 10": -6.793774855916483,
589
+ "is palindrome": -5.558106320780415,
590
+ "is almost palindrome": -2.524433046075643,
591
+ "has a with 0 letters between, 1 times": -5.668680183408574,
592
+ "has a with 1 letters between, 1 times": -3.2129667447436283,
593
+ "has a with 2 letters between, 1 times": -3.155965705889251,
594
+ "has a with 3 letters between, 1 times": -3.4394203830144026,
595
+ "has b with 0 letters between, 1 times": -5.520639702940238,
596
+ "has b with 1 letters between, 1 times": -6.278720896040971,
597
+ "has b with 2 letters between, 1 times": -5.999939073059454,
598
+ "has b with 3 letters between, 1 times": -6.810869289275783,
599
+ "has c with 0 letters between, 1 times": -5.117153617840935,
600
+ "has c with 1 letters between, 1 times": -5.663193201192315,
601
+ "has c with 2 letters between, 1 times": -4.896866757883815,
602
+ "has c with 3 letters between, 1 times": -5.390673376480211,
603
+ "has d with 0 letters between, 1 times": -5.286876582798568,
604
+ "has d with 1 letters between, 1 times": -5.510020134112778,
605
+ "has d with 2 letters between, 1 times": -5.82306014215464,
606
+ "has d with 3 letters between, 1 times": -5.613816927794421,
607
+ "has e with 0 letters between, 1 times": -4.014850315227616,
608
+ "has e with 1 letters between, 1 times": -3.1865283562994176,
609
+ "has e with 2 letters between, 1 times": -3.0261899633639935,
610
+ "has e with 3 letters between, 1 times": -3.492928586825487,
611
+ "has f with 0 letters between, 1 times": -4.808690558397893,
612
+ "has f with 1 letters between, 1 times": -7.863157506269654,
613
+ "has f with 2 letters between, 1 times": -7.735818083893053,
614
+ "has f with 3 letters between, 1 times": -7.662486810807503,
615
+ "has g with 0 letters between, 1 times": -5.276600920220363,
616
+ "has g with 1 letters between, 1 times": -6.8195273520188975,
617
+ "has g with 2 letters between, 1 times": -5.653662836341621,
618
+ "has g with 3 letters between, 1 times": -6.184562126841688,
619
+ "has h with 0 letters between, 1 times": -7.4292929236397915,
620
+ "has h with 1 letters between, 1 times": -6.379870879162454,
621
+ "has h with 2 letters between, 1 times": -5.802408097601971,
622
+ "has h with 3 letters between, 1 times": -5.581783439307245,
623
+ "has i with 0 letters between, 1 times": -6.6666196804312365,
624
+ "has i with 1 letters between, 1 times": -3.3578758660613968,
625
+ "has i with 2 letters between, 1 times": -3.6549699877083874,
626
+ "has i with 3 letters between, 1 times": -3.7852016523159904,
627
+ "has j with 0 letters between, 1 times": -9.122112445012943,
628
+ "has j with 1 letters between, 1 times": -8.620020501215707,
629
+ "has j with 2 letters between, 1 times": -8.961769794937764,
630
+ "has j with 3 letters between, 1 times": -9.772700011154093,
631
+ "has k with 0 letters between, 1 times": -6.929730492152512,
632
+ "has k with 1 letters between, 1 times": -7.151661187041513,
633
+ "has k with 2 letters between, 1 times": -6.601614850122241,
634
+ "has k with 3 letters between, 1 times": -6.328017517552198,
635
+ "has l with 0 letters between, 1 times": -3.1149029376817214,
636
+ "has l with 1 letters between, 1 times": -5.852378202911251,
637
+ "has l with 2 letters between, 1 times": -5.530174936091237,
638
+ "has l with 3 letters between, 1 times": -5.104555026004613,
639
+ "has m with 0 letters between, 1 times": -4.871755582816884,
640
+ "has m with 1 letters between, 1 times": -5.942248659419758,
641
+ "has m with 2 letters between, 1 times": -6.3911386040087965,
642
+ "has m with 3 letters between, 1 times": -5.927885755419397,
643
+ "has n with 0 letters between, 1 times": -4.2976321328615565,
644
+ "has n with 1 letters between, 1 times": -4.379072464801731,
645
+ "has n with 2 letters between, 1 times": -4.005160570695141,
646
+ "has n with 3 letters between, 1 times": -4.302181572029421,
647
+ "has o with 0 letters between, 1 times": -4.043412246089529,
648
+ "has o with 1 letters between, 1 times": -3.8989403777540925,
649
+ "has o with 2 letters between, 1 times": -4.114961474999298,
650
+ "has o with 3 letters between, 1 times": -4.309221375830194,
651
+ "has p with 0 letters between, 1 times": -4.746628908927998,
652
+ "has p with 1 letters between, 1 times": -5.849077869882595,
653
+ "has p with 2 letters between, 1 times": -5.689528749530117,
654
+ "has p with 3 letters between, 1 times": -6.309571671761447,
655
+ "has q with 0 letters between, 1 times": -10.31169651188678,
656
+ "has q with 1 letters between, 1 times": -11.564459480382148,
657
+ "has q with 2 letters between, 1 times": -10.871312299822202,
658
+ "has q with 3 letters between, 1 times": -9.618549331326834,
659
+ "has r with 0 letters between, 1 times": -4.327040806708128,
660
+ "has r with 1 letters between, 1 times": -5.17003295538412,
661
+ "has r with 2 letters between, 1 times": -4.2445945505731775,
662
+ "has r with 3 letters between, 1 times": -4.274166597935551,
663
+ "has s with 0 letters between, 1 times": -3.6029149563402214,
664
+ "has s with 1 letters between, 1 times": -4.255581842725983,
665
+ "has s with 2 letters between, 1 times": -4.376046743885194,
666
+ "has s with 3 letters between, 1 times": -4.222327749797426,
667
+ "has t with 0 letters between, 1 times": -3.972850067751658,
668
+ "has t with 1 letters between, 1 times": -4.753215101780855,
669
+ "has t with 2 letters between, 1 times": -4.4129740164774125,
670
+ "has t with 3 letters between, 1 times": -4.395494449279345,
671
+ "has u with 0 letters between, 1 times": -7.725007167788837,
672
+ "has u with 1 letters between, 1 times": -5.400092598396703,
673
+ "has u with 2 letters between, 1 times": -5.285938056216303,
674
+ "has u with 3 letters between, 1 times": -5.668680183408574,
675
+ "has v with 0 letters between, 1 times": -8.568727206828157,
676
+ "has v with 1 letters between, 1 times": -7.301779603340832,
677
+ "has v with 2 letters between, 1 times": -7.539107789646999,
678
+ "has v with 3 letters between, 1 times": -7.693258469474257,
679
+ "has w with 0 letters between, 1 times": -8.345583655513947,
680
+ "has w with 1 letters between, 1 times": -7.980940541926038,
681
+ "has w with 2 letters between, 1 times": -7.967147219793702,
682
+ "has w with 3 letters between, 1 times": -7.548076459629759,
683
+ "has x with 0 letters between, 1 times": -8.114471934550561,
684
+ "has x with 1 letters between, 1 times": -8.890310830955618,
685
+ "has x with 2 letters between, 1 times": -9.618549331326834,
686
+ "has x with 3 letters between, 1 times": -9.859711388143722,
687
+ "has y with 0 letters between, 1 times": -8.306362942360666,
688
+ "has y with 1 letters between, 1 times": -7.703729769341552,
689
+ "has y with 2 letters between, 1 times": -7.3748047383557225,
690
+ "has y with 3 letters between, 1 times": -7.3748047383557225,
691
+ "has z with 0 letters between, 1 times": -6.128556450881548,
692
+ "has z with 1 letters between, 1 times": -8.28731474738997,
693
+ "has z with 2 letters between, 1 times": -8.791870758142366,
694
+ "has z with 3 letters between, 1 times": -9.261874387388103,
695
+ "has a with 0 letters between, 2 times": -8.428965264452998,
696
+ "has a with 0 letters between, 3 times": -8.890310830955618,
697
+ "has a with 1 letters between, 2 times": -5.205751037986199,
698
+ "has a with 1 letters between, 3 times": -7.240326824127169,
699
+ "has b with 0 letters between, 2 times": -11.158994372273984,
700
+ "has b with 0 letters between, 3 times": -Infinity,
701
+ "has b with 1 letters between, 2 times": -12.257606660942093,
702
+ "has b with 1 letters between, 3 times": -Infinity,
703
+ "has c with 0 letters between, 2 times": -9.859711388143722,
704
+ "has c with 0 letters between, 3 times": -12.257606660942093,
705
+ "has c with 1 letters between, 2 times": -10.178165119262257,
706
+ "has c with 1 letters between, 3 times": -Infinity,
707
+ "has d with 0 letters between, 2 times": -10.648168748507993,
708
+ "has d with 0 letters between, 3 times": -11.158994372273984,
709
+ "has d with 1 letters between, 2 times": -10.871312299822202,
710
+ "has d with 1 letters between, 3 times": -11.564459480382148,
711
+ "has e with 0 letters between, 2 times": -8.098723577582422,
712
+ "has e with 0 letters between, 3 times": -9.692657303480557,
713
+ "has e with 1 letters between, 2 times": -6.035030392870724,
714
+ "has e with 1 letters between, 3 times": -9.313167681775653,
715
+ "has f with 0 letters between, 2 times": -9.955021567948048,
716
+ "has f with 0 letters between, 3 times": -11.158994372273984,
717
+ "has f with 1 letters between, 2 times": -11.158994372273984,
718
+ "has f with 1 letters between, 3 times": -12.257606660942093,
719
+ "has g with 0 letters between, 2 times": -11.158994372273984,
720
+ "has g with 0 letters between, 3 times": -Infinity,
721
+ "has g with 1 letters between, 2 times": -11.564459480382148,
722
+ "has g with 1 letters between, 3 times": -Infinity,
723
+ "has h with 0 letters between, 2 times": -9.079552830594148,
724
+ "has h with 0 letters between, 3 times": -9.313167681775653,
725
+ "has h with 1 letters between, 2 times": -8.70225859945268,
726
+ "has h with 1 letters between, 3 times": -9.36723490304593,
727
+ "has i with 0 letters between, 2 times": -8.496406545248531,
728
+ "has i with 0 letters between, 3 times": -10.871312299822202,
729
+ "has i with 1 letters between, 2 times": -5.844147703774736,
730
+ "has i with 1 letters between, 3 times": -8.519937042658725,
731
+ "has j with 0 letters between, 2 times": -12.257606660942093,
732
+ "has j with 0 letters between, 3 times": -Infinity,
733
+ "has j with 1 letters between, 2 times": -12.257606660942093,
734
+ "has j with 1 letters between, 3 times": -Infinity,
735
+ "has k with 0 letters between, 2 times": -11.158994372273984,
736
+ "has k with 0 letters between, 3 times": -12.257606660942093,
737
+ "has k with 1 letters between, 2 times": -11.564459480382148,
738
+ "has k with 1 letters between, 3 times": -Infinity,
739
+ "has l with 0 letters between, 2 times": -7.85088741367784,
740
+ "has l with 0 letters between, 3 times": -10.871312299822202,
741
+ "has l with 1 letters between, 2 times": -10.178165119262257,
742
+ "has l with 1 letters between, 3 times": -10.465847191714039,
743
+ "has m with 0 letters between, 2 times": -9.859711388143722,
744
+ "has m with 0 letters between, 3 times": -10.871312299822202,
745
+ "has m with 1 letters between, 2 times": -10.178165119262257,
746
+ "has m with 1 letters between, 3 times": -11.158994372273984,
747
+ "has n with 0 letters between, 2 times": -10.178165119262257,
748
+ "has n with 0 letters between, 3 times": -10.871312299822202,
749
+ "has n with 1 letters between, 2 times": -8.620020501215707,
750
+ "has n with 1 letters between, 3 times": -11.564459480382148,
751
+ "has o with 0 letters between, 2 times": -7.888158808475072,
752
+ "has o with 0 letters between, 3 times": -9.122112445012943,
753
+ "has o with 1 letters between, 2 times": -6.263645233635524,
754
+ "has o with 1 letters between, 3 times": -8.64668874829787,
755
+ "has p with 0 letters between, 2 times": -10.465847191714039,
756
+ "has p with 0 letters between, 3 times": -12.257606660942093,
757
+ "has p with 1 letters between, 2 times": -11.158994372273984,
758
+ "has p with 1 letters between, 3 times": -Infinity,
759
+ "has q with 0 letters between, 2 times": -12.257606660942093,
760
+ "has q with 0 letters between, 3 times": -Infinity,
761
+ "has q with 1 letters between, 2 times": -Infinity,
762
+ "has q with 1 letters between, 3 times": -Infinity,
763
+ "has r with 0 letters between, 2 times": -9.859711388143722,
764
+ "has r with 0 letters between, 3 times": -10.178165119262257,
765
+ "has r with 1 letters between, 2 times": -9.692657303480557,
766
+ "has r with 1 letters between, 3 times": -10.871312299822202,
767
+ "has s with 0 letters between, 2 times": -6.974402932204105,
768
+ "has s with 0 letters between, 3 times": -10.648168748507993,
769
+ "has s with 1 letters between, 2 times": -8.856409279279937,
770
+ "has s with 1 letters between, 3 times": -11.564459480382148,
771
+ "has t with 0 letters between, 2 times": -9.955021567948048,
772
+ "has t with 0 letters between, 3 times": -12.257606660942093,
773
+ "has t with 1 letters between, 2 times": -7.632633847657822,
774
+ "has t with 1 letters between, 3 times": -12.257606660942093,
775
+ "has u with 0 letters between, 2 times": -9.772700011154093,
776
+ "has u with 0 letters between, 3 times": -9.955021567948048,
777
+ "has u with 1 letters between, 2 times": -8.620020501215707,
778
+ "has u with 1 letters between, 3 times": -10.465847191714039,
779
+ "has v with 0 letters between, 2 times": -12.257606660942093,
780
+ "has v with 0 letters between, 3 times": -Infinity,
781
+ "has v with 1 letters between, 2 times": -12.257606660942093,
782
+ "has v with 1 letters between, 3 times": -Infinity,
783
+ "has w with 0 letters between, 2 times": -10.465847191714039,
784
+ "has w with 0 letters between, 3 times": -11.564459480382148,
785
+ "has w with 1 letters between, 2 times": -10.871312299822202,
786
+ "has w with 1 letters between, 3 times": -11.564459480382148,
787
+ "has x with 0 letters between, 2 times": -9.485017938702311,
788
+ "has x with 0 letters between, 3 times": -12.257606660942093,
789
+ "has x with 1 letters between, 2 times": -11.564459480382148,
790
+ "has x with 1 letters between, 3 times": -12.257606660942093,
791
+ "has y with 0 letters between, 2 times": -10.060382083605873,
792
+ "has y with 0 letters between, 3 times": -10.465847191714039,
793
+ "has y with 1 letters between, 2 times": -10.178165119262257,
794
+ "has y with 1 letters between, 3 times": -11.158994372273984,
795
+ "has z with 0 letters between, 2 times": -10.871312299822202,
796
+ "has z with 0 letters between, 3 times": -12.257606660942093,
797
+ "has z with 1 letters between, 2 times": -12.257606660942093,
798
+ "has z with 1 letters between, 3 times": -12.257606660942093,
799
+ "is one change to a palindrome": -2.57376877046592,
800
+ "is one deletion to a palindrome": -3.486081376755628,
801
+ "is a hill": -2.3964526614220443,
802
+ "is a valley": -2.331770704742203,
803
+ "alternates vowels and consonants": -2.0718391008681785,
804
+ "has equal letters with 0 letters between, 1 times": -1.6747919864468823,
805
+ "has equal letters with 0 letters between, 2 times": -4.381347778638867,
806
+ "has equal letters with 0 letters between, 3 times": -6.901020386270081,
807
+ "has equal letters with 1 letters between, 1 times": -1.7533339577181888,
808
+ "has equal letters with 1 letters between, 2 times": -3.6023921716284804,
809
+ "has equal letters with 1 letters between, 3 times": -5.757819620286239,
810
+ "has equal letters with 2 letters between, 1 times": -1.7230335191086983,
811
+ "has equal letters with 2 letters between, 2 times": -3.6306626055667373,
812
+ "has equal letters with 2 letters between, 3 times": -5.50067427169454,
813
+ "has equal letters with 3 letters between, 1 times": -1.9600857612602205,
814
+ "has equal letters with 3 letters between, 2 times": -3.8340650256073108,
815
+ "has equal letters with 3 letters between, 3 times": -5.674197438783328,
816
+ "has 0 alphabetical bigrams": -4.137910407984844,
817
+ "has 1 alphabetical bigrams": -2.101610948461852,
818
+ "has 2 alphabetical bigrams": -1.375868176409039,
819
+ "has 3 alphabetical bigrams": -1.3368253409154445,
820
+ "has 4 alphabetical bigrams": -1.6957445484472782,
821
+ "has 5 alphabetical bigrams": -2.3310375489626445,
822
+ "has 6 alphabetical bigrams": -3.144768870327148,
823
+ "has 7 alphabetical bigrams": -4.142085779395323,
824
+ "has 8 alphabetical bigrams": -5.320292579718411,
825
+ "has 9 alphabetical bigrams": -6.534021558989712,
826
+ "has 10 alphabetical bigrams": -7.803259364688586,
827
+ "has 0 reverse alphabetical bigrams": -3.992213730089869,
828
+ "has 1 reverse alphabetical bigrams": -2.0268317813618246,
829
+ "has 2 reverse alphabetical bigrams": -1.3684888984531973,
830
+ "has 3 reverse alphabetical bigrams": -1.3286870172793677,
831
+ "has 4 reverse alphabetical bigrams": -1.7019762306500876,
832
+ "has 5 reverse alphabetical bigrams": -2.3845267708273905,
833
+ "has 6 reverse alphabetical bigrams": -3.288573810907792,
834
+ "has 7 reverse alphabetical bigrams": -4.343719946086011,
835
+ "has 8 reverse alphabetical bigrams": -5.4995121565143625,
836
+ "has 9 reverse alphabetical bigrams": -6.756348450397366,
837
+ "has 10 reverse alphabetical bigrams": -8.023500156344834,
838
+ "has 0 sequential bigrams": -0.28386968509504484,
839
+ "has 1 sequential bigrams": -1.543611203572759,
840
+ "has 2 sequential bigrams": -3.4815939417591757,
841
+ "has 3 sequential bigrams": -5.940441974194809,
842
+ "has 4 sequential bigrams": -8.961769794937764,
843
+ "has 5 sequential bigrams": -11.564459480382148,
844
+ "has 6 sequential bigrams": -Infinity,
845
+ "has 7 sequential bigrams": -Infinity,
846
+ "has 8 sequential bigrams": -Infinity,
847
+ "has 9 sequential bigrams": -Infinity,
848
+ "has 10 sequential bigrams": -Infinity,
849
+ "has 0 reverse sequential bigrams": -0.2602139213654109,
850
+ "has 1 reverse sequential bigrams": -1.5940612225633934,
851
+ "has 2 reverse sequential bigrams": -3.720414783019166,
852
+ "has 3 reverse sequential bigrams": -6.352244812887522,
853
+ "has 4 reverse sequential bigrams": -9.955021567948048,
854
+ "has 5 reverse sequential bigrams": -Infinity,
855
+ "has 6 reverse sequential bigrams": -Infinity,
856
+ "has 7 reverse sequential bigrams": -Infinity,
857
+ "has 8 reverse sequential bigrams": -Infinity,
858
+ "has 9 reverse sequential bigrams": -Infinity,
859
+ "has 10 reverse sequential bigrams": -Infinity,
860
+ "has at least 1 alphabetical bigrams": -0.016084828608198265,
861
+ "has at least 2 alphabetical bigrams": -0.14875001012833877,
862
+ "has at least 3 alphabetical bigrams": -0.4956671894109981,
863
+ "has at least 4 alphabetical bigrams": -1.0599126242888879,
864
+ "has at least 5 alphabetical bigrams": -1.813860903956268,
865
+ "has at least 6 alphabetical bigrams": -2.720700098464164,
866
+ "has at least 7 alphabetical bigrams": -3.7831122240589714,
867
+ "has at least 8 alphabetical bigrams": -4.98174206039556,
868
+ "has at least 9 alphabetical bigrams": -6.229328140711395,
869
+ "has at least 10 alphabetical bigrams": -7.56625877871295,
870
+ "has at least 1 reverse alphabetical bigrams": -0.018631295736211584,
871
+ "has at least 2 reverse alphabetical bigrams": -0.16276729761020547,
872
+ "has at least 3 reverse alphabetical bigrams": -0.5186936925259236,
873
+ "has at least 4 reverse alphabetical bigrams": -1.1072305031031977,
874
+ "has at least 5 reverse alphabetical bigrams": -1.9095294456137513,
875
+ "has at least 6 reverse alphabetical bigrams": -2.8820908910069267,
876
+ "has at least 7 reverse alphabetical bigrams": -3.9786706586501133,
877
+ "has at least 8 reverse alphabetical bigrams": -5.163371815017338,
878
+ "has at least 9 reverse alphabetical bigrams": -6.416965003568695,
879
+ "has at least 10 reverse alphabetical bigrams": -7.662486810807503,
880
+ "has at least 1 sequential bigrams": -1.3978195125125747,
881
+ "has at least 2 sequential bigrams": -3.395406330454806,
882
+ "has at least 3 sequential bigrams": -5.889419474591601,
883
+ "has at least 4 sequential bigrams": -8.890310830955618,
884
+ "has at least 5 sequential bigrams": -11.564459480382148,
885
+ "has at least 6 sequential bigrams": -Infinity,
886
+ "has at least 7 sequential bigrams": -Infinity,
887
+ "has at least 8 sequential bigrams": -Infinity,
888
+ "has at least 9 sequential bigrams": -Infinity,
889
+ "has at least 10 sequential bigrams": -Infinity,
890
+ "has at least 1 reverse sequential bigrams": -1.4735384591658889,
891
+ "has at least 2 reverse sequential bigrams": -3.6491113111190696,
892
+ "has at least 3 reverse sequential bigrams": -6.325361473494082,
893
+ "has at least 4 reverse sequential bigrams": -9.955021567948048,
894
+ "has at least 5 reverse sequential bigrams": -Infinity,
895
+ "has at least 6 reverse sequential bigrams": -Infinity,
896
+ "has at least 7 reverse sequential bigrams": -Infinity,
897
+ "has at least 8 reverse sequential bigrams": -Infinity,
898
+ "has at least 9 reverse sequential bigrams": -Infinity,
899
+ "has at least 10 reverse sequential bigrams": -Infinity,
900
+ "has 2 vowels in a row": -1.2804486300420646,
901
+ "has 3 vowels in a row": -4.378693748644961,
902
+ "has 4 vowels in a row": -7.170010325709709,
903
+ "has 5 vowels in a row": -8.268622614377819,
904
+ "has 2 consonants in a row": -0.6062854037463143,
905
+ "has 3 consonants in a row": -1.6087827848506873,
906
+ "has 4 consonants in a row": -3.193564546583209,
907
+ "has 5 consonants in a row": -4.9984905328449925,
908
+ "has at least 2 vowels in a row": -1.2317089162233952,
909
+ "has at least 3 vowels in a row": -4.277240895830847,
910
+ "has at least 4 vowels in a row": -6.615699590003979,
911
+ "has at least 5 vowels in a row": -7.470114918160047,
912
+ "has at least 2 consonants in a row": -0.22975797882002524,
913
+ "has at least 3 consonants in a row": -1.3888858430187945,
914
+ "has at least 4 consonants in a row": -3.0114166360722123,
915
+ "has at least 5 consonants in a row": -4.80404478929872,
916
+ "starts and ends with the same 1 letters": -2.907504346590752,
917
+ "starts and ends with the same 2 letters": -5.431061437385499,
918
+ "starts and ends with the same 3 letters": -6.984607102378346,
919
+ "has 1 a": -0.9305650903626095,
920
+ "has at least 1 a": -0.6169390286209531,
921
+ "has 2 a": -2.0898336137605806,
922
+ "has at least 2 a": -1.9292109147531935,
923
+ "has 3 a": -3.9613095482995853,
924
+ "has at least 3 a": -3.8371446584856272,
925
+ "has 4 a": -6.132923270047888,
926
+ "has at least 4 a": -5.984729654395926,
927
+ "has 5 a": -8.28731474738997,
928
+ "has at least 5 a": -7.967147219793702,
929
+ "has 1 b": -1.9707973649834898,
930
+ "has at least 1 b": -1.9009755649810582,
931
+ "has 2 b": -4.653210312145755,
932
+ "has at least 2 b": -4.597492341768165,
933
+ "has 3 b": -7.530218842229752,
934
+ "has at least 3 b": -7.512674532578843,
935
+ "has 4 b": -11.564459480382148,
936
+ "has at least 4 b": -11.564459480382148,
937
+ "has 5 b": -Infinity,
938
+ "has at least 5 b": -Infinity,
939
+ "has 1 c": -1.5276874407001468,
940
+ "has at least 1 c": -1.394194339511749,
941
+ "has 2 c": -3.539597330095736,
942
+ "has at least 2 c": -3.473903962306876,
943
+ "has 3 c": -6.2586700989954105,
944
+ "has at least 3 c": -6.229328140711395,
945
+ "has 4 c": -9.772700011154093,
946
+ "has at least 4 c": -9.772700011154093,
947
+ "has 5 c": -Infinity,
948
+ "has at least 5 c": -Infinity,
949
+ "has 1 d": -1.5984667224946225,
950
+ "has at least 1 d": -1.4919678226324589,
951
+ "has 2 d": -3.8413393881158164,
952
+ "has at least 2 d": -3.784365357055039,
953
+ "has 3 d": -6.712429216462531,
954
+ "has at least 3 d": -6.677876834955871,
955
+ "has 4 d": -10.31169651188678,
956
+ "has at least 4 d": -10.060382083605873,
957
+ "has 5 d": -11.564459480382148,
958
+ "has at least 5 d": -11.564459480382148,
959
+ "has 1 e": -0.9705910700310447,
960
+ "has at least 1 e": -0.6046410314345163,
961
+ "has 2 e": -1.9729125404445806,
962
+ "has at least 2 e": -1.7873007499400426,
963
+ "has 3 e": -3.6656771234118377,
964
+ "has at least 3 e": -3.562769502283013,
965
+ "has 4 e": -5.966037521383773,
966
+ "has at least 4 e": -5.887705678113866,
967
+ "has 5 e": -8.620020501215707,
968
+ "has at least 5 e": -8.473417027023832,
969
+ "has 1 f": -2.5455823231172037,
970
+ "has at least 1 f": -2.428896535363789,
971
+ "has 2 f": -4.664736373097275,
972
+ "has at least 2 f": -4.634942709618498,
973
+ "has 3 f": -8.345583655513947,
974
+ "has at least 3 f": -8.163262098719994,
975
+ "has 4 f": -10.178165119262257,
976
+ "has at least 4 f": -9.955021567948048,
977
+ "has 5 f": -12.257606660942093,
978
+ "has at least 5 f": -11.564459480382148,
979
+ "has 1 g": -1.8357122946196611,
980
+ "has at least 1 g": -1.7461486252536123,
981
+ "has 2 g": -4.274507720231201,
982
+ "has at least 2 g": -4.203401763877686,
983
+ "has 3 g": -6.924887867676724,
984
+ "has at least 3 g": -6.882328253257928,
985
+ "has 4 g": -10.060382083605873,
986
+ "has at least 4 g": -10.060382083605873,
987
+ "has 5 g": -Infinity,
988
+ "has at least 5 g": -Infinity,
989
+ "has 1 h": -1.7068849848604266,
990
+ "has at least 1 h": -1.624760545883447,
991
+ "has 2 h": -4.226221330316559,
992
+ "has at least 2 h": -4.165061397050794,
993
+ "has 3 h": -7.390072210486511,
994
+ "has at least 3 h": -6.989748501878765,
995
+ "has 4 h": -8.761099099475613,
996
+ "has at least 4 h": -8.098723577582422,
997
+ "has 5 h": -9.772700011154093,
998
+ "has at least 5 h": -8.823619456456946,
999
+ "has 1 i": -1.0177899765741856,
1000
+ "has at least 1 i": -0.7650982119661336,
1001
+ "has 2 i": -2.4230941229094967,
1002
+ "has at least 2 i": -2.2643698162623576,
1003
+ "has 3 i": -4.316666898614302,
1004
+ "has at least 3 i": -4.183268966852578,
1005
+ "has 4 i": -6.371502629491937,
1006
+ "has at least 4 i": -6.263645233635524,
1007
+ "has 5 i": -8.731246136325932,
1008
+ "has at least 5 i": -8.544034594237786,
1009
+ "has 1 j": -3.6306626055667373,
1010
+ "has at least 1 j": -3.6129001492268955,
1011
+ "has 2 j": -7.714311878672089,
1012
+ "has at least 2 j": -7.652436474954001,
1013
+ "has 3 j": -10.465847191714039,
1014
+ "has at least 3 j": -10.465847191714039,
1015
+ "has 4 j": -Infinity,
1016
+ "has at least 4 j": -Infinity,
1017
+ "has 5 j": -Infinity,
1018
+ "has at least 5 j": -Infinity,
1019
+ "has 1 k": -2.30709240297821,
1020
+ "has at least 1 k": -2.2408797127994546,
1021
+ "has 2 k": -5.01982846901865,
1022
+ "has at least 2 k": -4.988686532748371,
1023
+ "has 3 k": -8.544034594237786,
1024
+ "has at least 3 k": -8.473417027023832,
1025
+ "has 4 k": -11.158994372273984,
1026
+ "has at least 4 k": -11.158994372273984,
1027
+ "has 5 k": -Infinity,
1028
+ "has at least 5 k": -Infinity,
1029
+ "has 1 l": -1.3360482628703583,
1030
+ "has at least 1 l": -1.126659295987574,
1031
+ "has 2 l": -2.882854152715524,
1032
+ "has at least 2 l": -2.7930892950715283,
1033
+ "has 3 l": -5.343869310282408,
1034
+ "has at least 3 l": -5.248197728233456,
1035
+ "has 4 l": -7.780269846463886,
1036
+ "has at least 4 l": -7.642486144100833,
1037
+ "has 5 l": -10.465847191714039,
1038
+ "has at least 5 l": -9.692657303480557,
1039
+ "has 1 m": -1.6335270087674427,
1040
+ "has at least 1 m": -1.541301785008086,
1041
+ "has 2 m": -4.02862901758378,
1042
+ "has at least 2 m": -3.9705816357770303,
1043
+ "has 3 m": -6.939486667097877,
1044
+ "has at least 3 m": -6.8459606090870535,
1045
+ "has 4 m": -9.955021567948048,
1046
+ "has at least 4 m": -9.261874387388103,
1047
+ "has 5 m": -10.871312299822202,
1048
+ "has at least 5 m": -9.955021567948048,
1049
+ "has 1 n": -1.0766077797452311,
1050
+ "has at least 1 n": -0.8642420610308328,
1051
+ "has 2 n": -2.6289507688789264,
1052
+ "has at least 2 n": -2.517991895131459,
1053
+ "has 3 n": -4.837626737280258,
1054
+ "has at least 3 n": -4.771554043078953,
1055
+ "has 4 n": -7.60364631078457,
1056
+ "has at least 4 n": -7.521408212547597,
1057
+ "has 5 n": -10.178165119262257,
1058
+ "has at least 5 n": -10.060382083605873,
1059
+ "has 1 o": -1.1884714184016971,
1060
+ "has at least 1 o": -0.9510536712858766,
1061
+ "has 2 o": -2.6340314435933845,
1062
+ "has at least 2 o": -2.5053490577222455,
1063
+ "has 3 o": -4.73845670327227,
1064
+ "has at least 3 o": -4.619408416656314,
1065
+ "has 4 o": -7.121808223891831,
1066
+ "has at least 4 o": -6.806568207376393,
1067
+ "has 5 o": -8.961769794937764,
1068
+ "has at least 5 o": -8.114471934550561,
1069
+ "has 1 p": -1.931600245731973,
1070
+ "has at least 1 p": -1.810342384500288,
1071
+ "has 2 p": -4.043141500182907,
1072
+ "has at least 2 p": -3.980194661993089,
1073
+ "has 3 p": -6.802285545584391,
1074
+ "has at least 3 p": -6.776967737600102,
1075
+ "has 4 p": -10.465847191714039,
1076
+ "has at least 4 p": -10.465847191714039,
1077
+ "has 5 p": -Infinity,
1078
+ "has at least 5 p": -Infinity,
1079
+ "has 1 q": -4.266014378874001,
1080
+ "has at least 1 q": -4.256586699618442,
1081
+ "has 2 q": -8.961769794937764,
1082
+ "has at least 2 q": -8.925402150766889,
1083
+ "has 3 q": -12.257606660942093,
1084
+ "has at least 3 q": -12.257606660942093,
1085
+ "has 4 q": -Infinity,
1086
+ "has at least 4 q": -Infinity,
1087
+ "has 5 q": -Infinity,
1088
+ "has at least 5 q": -Infinity,
1089
+ "has 1 r": -0.9833191682447229,
1090
+ "has at least 1 r": -0.8102335642121012,
1091
+ "has 2 r": -2.7214217554197813,
1092
+ "has at least 2 r": -2.6494973874922163,
1093
+ "has 3 r": -5.353859403357495,
1094
+ "has at least 3 r": -5.3173841918224545,
1095
+ "has 4 r": -8.823619456456946,
1096
+ "has at least 4 r": -8.64668874829787,
1097
+ "has 5 r": -10.648168748507993,
1098
+ "has at least 5 r": -10.465847191714039,
1099
+ "has 1 s": -1.0847659498833604,
1100
+ "has at least 1 s": -0.8407956991575336,
1101
+ "has 2 s": -2.5193475877737423,
1102
+ "has at least 2 s": -2.3710109760761835,
1103
+ "has 3 s": -4.4852750857724795,
1104
+ "has at least 3 s": -4.352533811443427,
1105
+ "has 4 s": -6.605117480673442,
1106
+ "has at least 4 s": -6.4375237305897315,
1107
+ "has 5 s": -8.407459059232036,
1108
+ "has at least 5 s": -8.306362942360666,
1109
+ "has 1 t": -1.234055225937146,
1110
+ "has at least 1 t": -1.0207773122388097,
1111
+ "has 2 t": -2.756090327259873,
1112
+ "has at least 2 t": -2.670680880408396,
1113
+ "has 3 t": -5.217070270726137,
1114
+ "has at least 3 t": -5.173380238844177,
1115
+ "has 4 t": -8.325781028217767,
1116
+ "has at least 4 t": -8.325781028217767,
1117
+ "has 5 t": -Infinity,
1118
+ "has at least 5 t": -Infinity,
1119
+ "has 1 u": -1.5758039154761416,
1120
+ "has at least 1 u": -1.4919467102194144,
1121
+ "has 2 u": -4.062825022498734,
1122
+ "has at least 2 u": -4.012222192821346,
1123
+ "has 3 u": -7.17620229595763,
1124
+ "has at least 3 u": -7.021164698112144,
1125
+ "has 4 u": -9.424393316885876,
1126
+ "has at least 4 u": -8.961769794937764,
1127
+ "has 5 u": -10.465847191714039,
1128
+ "has at least 5 u": -9.955021567948048,
1129
+ "has 1 v": -2.565025342055696,
1130
+ "has at least 1 v": -2.5307369622832407,
1131
+ "has 2 v": -5.929669877212898,
1132
+ "has at least 2 v": -5.920780929795652,
1133
+ "has 3 v": -10.871312299822202,
1134
+ "has at least 3 v": -10.648168748507993,
1135
+ "has 4 v": -Infinity,
1136
+ "has at least 4 v": -12.257606660942093,
1137
+ "has 5 v": -Infinity,
1138
+ "has at least 5 v": -12.257606660942093,
1139
+ "has 1 w": -2.6849174719313744,
1140
+ "has at least 1 w": -2.6491615352640387,
1141
+ "has 2 w": -6.033048231666733,
1142
+ "has at least 2 w": -5.99802519687717,
1143
+ "has 3 w": -9.859711388143722,
1144
+ "has at least 3 w": -9.36723490304593,
1145
+ "has 4 w": -11.158994372273984,
1146
+ "has at least 4 w": -10.31169651188678,
1147
+ "has 5 w": -11.564459480382148,
1148
+ "has at least 5 w": -10.871312299822202,
1149
+ "has 1 x": -3.8382468298746186,
1150
+ "has at least 1 x": -3.8101923641337727,
1151
+ "has 2 x": -7.652436474954001,
1152
+ "has at least 2 x": -7.397794256580421,
1153
+ "has 3 x": -9.549556459839883,
1154
+ "has at least 3 x": -8.890310830955618,
1155
+ "has 4 x": -11.158994372273984,
1156
+ "has at least 4 x": -9.618549331326834,
1157
+ "has 5 x": -12.257606660942093,
1158
+ "has at least 5 x": -9.859711388143722,
1159
+ "has 1 y": -2.15653954922303,
1160
+ "has at least 1 y": -2.1228089944253625,
1161
+ "has 2 y": -5.576751982151878,
1162
+ "has at least 2 y": -5.528978047857391,
1163
+ "has 3 y": -8.961769794937764,
1164
+ "has at least 3 y": -8.594045014812448,
1165
+ "has 4 y": -10.465847191714039,
1166
+ "has at least 4 y": -9.772700011154093,
1167
+ "has 5 y": -11.158994372273984,
1168
+ "has at least 5 y": -10.465847191714039,
1169
+ "has 1 z": -3.3643085167241775,
1170
+ "has at least 1 z": -3.287428845449714,
1171
+ "has 2 z": -5.910217451286083,
1172
+ "has at least 2 z": -5.891136213210655,
1173
+ "has 3 z": -10.31169651188678,
1174
+ "has at least 3 z": -9.859711388143722,
1175
+ "has 4 z": -11.158994372273984,
1176
+ "has at least 4 z": -10.871312299822202,
1177
+ "has 5 z": -12.257606660942093,
1178
+ "has at least 5 z": -12.257606660942093,
1179
+ "has 1 unique vowels": -1.6642272205666924,
1180
+ "has 2 unique vowels": -0.7986623098383774,
1181
+ "has 3 unique vowels": -1.340629073154691,
1182
+ "has 4 unique vowels": -2.7261977974964964,
1183
+ "has 5 unique vowels": -5.247294793634864,
1184
+ "has 1 unique consonants": -3.9703299051274943,
1185
+ "has 2 unique consonants": -2.0323255063254155,
1186
+ "has 3 unique consonants": -1.3339910202925562,
1187
+ "has 4 unique consonants": -1.330230365933792,
1188
+ "has 5 unique consonants": -1.666990000171582,
1189
+ "has 6 unique consonants": -2.372130341207816,
1190
+ "has 7 unique consonants": -3.4757441713831483,
1191
+ "has 8 unique consonants": -4.958485198231293,
1192
+ "has 9 unique consonants": -6.6892621571809965,
1193
+ "has 10 unique consonants": -8.64668874829787,
1194
+ "has 11 unique consonants": -10.871312299822202,
1195
+ "has 12 unique consonants": -Infinity,
1196
+ "has 13 unique consonants": -Infinity,
1197
+ "has 14 unique consonants": -Infinity,
1198
+ "has 15 unique consonants": -Infinity,
1199
+ "has 1 unique letters": -7.359766860991182,
1200
+ "has 2 unique letters": -4.4247991444172285,
1201
+ "has 3 unique letters": -2.6431354038708825,
1202
+ "has 4 unique letters": -2.023341627598599,
1203
+ "has 5 unique letters": -1.6778129450420458,
1204
+ "has 6 unique letters": -1.6128248275406971,
1205
+ "has 7 unique letters": -1.7697828337042,
1206
+ "has 8 unique letters": -2.139048052182641,
1207
+ "has 9 unique letters": -2.708867338222422,
1208
+ "has 10 unique letters": -3.5232075108783985,
1209
+ "has 11 unique letters": -4.597492341768165,
1210
+ "has 12 unique letters": -5.877484124042328,
1211
+ "has 13 unique letters": -7.308846770563925,
1212
+ "has 14 unique letters": -9.079552830594148,
1213
+ "has 15 unique letters": -11.158994372273984,
1214
+ "has 16 unique letters": -Infinity,
1215
+ "has 17 unique letters": -Infinity,
1216
+ "has 18 unique letters": -Infinity,
1217
+ "has 19 unique letters": -Infinity,
1218
+ "has 20 unique letters": -Infinity,
1219
+ "has 21 unique letters": -Infinity,
1220
+ "has 22 unique letters": -Infinity,
1221
+ "has 23 unique letters": -Infinity,
1222
+ "has 24 unique letters": -Infinity,
1223
+ "has 25 unique letters": -Infinity,
1224
+ "has 26 unique letters": -Infinity,
1225
+ "has 1 letters, each repeating 2 times": -0.9815560921723723,
1226
+ "has 1 letters, each repeating at least 2 times": -0.9849327583237582,
1227
+ "has 1 letters, each repeating 3 times": -2.3499279037874974,
1228
+ "has 1 letters, each repeating at least 3 times": -2.264598382467552,
1229
+ "has 1 letters, each repeating 4 times": -4.58857837235241,
1230
+ "has 1 letters, each repeating at least 4 times": -4.449283610551038,
1231
+ "has 2 letters, each repeating 2 times": -1.766832568545528,
1232
+ "has 2 letters, each repeating at least 2 times": -1.6417577089222153,
1233
+ "has 2 letters, each repeating 3 times": -5.0365015627595975,
1234
+ "has 2 letters, each repeating at least 3 times": -4.814528286593578,
1235
+ "has 2 letters, each repeating 4 times": -8.823619456456946,
1236
+ "has 2 letters, each repeating at least 4 times": -8.180069217036372,
1237
+ "has 3 letters, each repeating 2 times": -2.9817594867637904,
1238
+ "has 3 letters, each repeating at least 2 times": -2.738973092610019,
1239
+ "has 3 letters, each repeating 3 times": -7.725007167788837,
1240
+ "has 3 letters, each repeating at least 3 times": -7.437325095337056,
1241
+ "has 3 letters, each repeating 4 times": -11.564459480382148,
1242
+ "has 3 letters, each repeating at least 4 times": -11.158994372273984,
1243
+ "has 4 letters, each repeating 2 times": -4.422818553553899,
1244
+ "has 4 letters, each repeating at least 2 times": -4.04097816780865,
1245
+ "has 4 letters, each repeating 3 times": -11.564459480382148,
1246
+ "has 4 letters, each repeating at least 3 times": -10.465847191714039,
1247
+ "has 4 letters, each repeating 4 times": -Infinity,
1248
+ "has 4 letters, each repeating at least 4 times": -Infinity,
1249
+ "has 5 letters, each repeating 2 times": -6.085906063531178,
1250
+ "has 5 letters, each repeating at least 2 times": -5.454101403333755,
1251
+ "has 5 letters, each repeating 3 times": -Infinity,
1252
+ "has 5 letters, each repeating at least 3 times": -11.564459480382148,
1253
+ "has 5 letters, each repeating 4 times": -Infinity,
1254
+ "has 5 letters, each repeating at least 4 times": -Infinity,
1255
+ "has 1 bigrams, each repeating 2 times": -2.8649447321719563,
1256
+ "has 1 bigrams, each repeating at least 2 times": -2.8381405294199045,
1257
+ "has 1 bigrams, each repeating 3 times": -6.708530576046873,
1258
+ "has 1 bigrams, each repeating at least 3 times": -6.1731072478669216,
1259
+ "has 1 bigrams, each repeating 4 times": -7.757796990611828,
1260
+ "has 1 bigrams, each repeating at least 4 times": -6.984607102378346,
1261
+ "has 2 bigrams, each repeating 2 times": -4.972100112419307,
1262
+ "has 2 bigrams, each repeating at least 2 times": -4.920018917403497,
1263
+ "has 2 bigrams, each repeating 3 times": -9.618549331326834,
1264
+ "has 2 bigrams, each repeating at least 3 times": -8.620020501215707,
1265
+ "has 2 bigrams, each repeating 4 times": -10.178165119262257,
1266
+ "has 2 bigrams, each repeating at least 4 times": -9.313167681775653,
1267
+ "has 3 bigrams, each repeating 2 times": -7.2206540585284635,
1268
+ "has 3 bigrams, each repeating at least 2 times": -7.157740233117894,
1269
+ "has 3 bigrams, each repeating 3 times": -12.257606660942093,
1270
+ "has 3 bigrams, each repeating at least 3 times": -11.564459480382148,
1271
+ "has 3 bigrams, each repeating 4 times": -Infinity,
1272
+ "has 3 bigrams, each repeating at least 4 times": -Infinity,
1273
+ "has 4 bigrams, each repeating 2 times": -9.485017938702311,
1274
+ "has 4 bigrams, each repeating at least 2 times": -9.424393316885876,
1275
+ "has 4 bigrams, each repeating 3 times": -Infinity,
1276
+ "has 4 bigrams, each repeating at least 3 times": -Infinity,
1277
+ "has 4 bigrams, each repeating 4 times": -Infinity,
1278
+ "has 4 bigrams, each repeating at least 4 times": -Infinity,
1279
+ "has 5 bigrams, each repeating 2 times": -10.31169651188678,
1280
+ "has 5 bigrams, each repeating at least 2 times": -10.178165119262257,
1281
+ "has 5 bigrams, each repeating 3 times": -Infinity,
1282
+ "has 5 bigrams, each repeating at least 3 times": -Infinity,
1283
+ "has 5 bigrams, each repeating 4 times": -Infinity,
1284
+ "has 5 bigrams, each repeating at least 4 times": -Infinity,
1285
+ "has 1 trigrams, each repeating 2 times": -5.1116221932277055,
1286
+ "has 1 trigrams, each repeating at least 2 times": -4.979668087996432,
1287
+ "has 1 trigrams, each repeating 3 times": -7.672639182271521,
1288
+ "has 1 trigrams, each repeating at least 3 times": -6.959289294394057,
1289
+ "has 1 trigrams, each repeating 4 times": -8.250273475709623,
1290
+ "has 1 trigrams, each repeating at least 4 times": -7.495432726144337,
1291
+ "has 2 trigrams, each repeating 2 times": -7.445422305569676,
1292
+ "has 2 trigrams, each repeating at least 2 times": -7.240326824127169,
1293
+ "has 2 trigrams, each repeating 3 times": -10.31169651188678,
1294
+ "has 2 trigrams, each repeating at least 3 times": -9.079552830594148,
1295
+ "has 2 trigrams, each repeating 4 times": -10.871312299822202,
1296
+ "has 2 trigrams, each repeating at least 4 times": -9.859711388143722,
1297
+ "has 3 trigrams, each repeating 2 times": -9.21308422321867,
1298
+ "has 3 trigrams, each repeating at least 2 times": -9.038730836073892,
1299
+ "has 3 trigrams, each repeating 3 times": -Infinity,
1300
+ "has 3 trigrams, each repeating at least 3 times": -12.257606660942093,
1301
+ "has 3 trigrams, each repeating 4 times": -Infinity,
1302
+ "has 3 trigrams, each repeating at least 4 times": -Infinity,
1303
+ "has 4 trigrams, each repeating 2 times": -Infinity,
1304
+ "has 4 trigrams, each repeating at least 2 times": -12.257606660942093,
1305
+ "has 4 trigrams, each repeating 3 times": -Infinity,
1306
+ "has 4 trigrams, each repeating at least 3 times": -Infinity,
1307
+ "has 4 trigrams, each repeating 4 times": -Infinity,
1308
+ "has 4 trigrams, each repeating at least 4 times": -Infinity,
1309
+ "has 5 trigrams, each repeating 2 times": -Infinity,
1310
+ "has 5 trigrams, each repeating at least 2 times": -Infinity,
1311
+ "has 5 trigrams, each repeating 3 times": -Infinity,
1312
+ "has 5 trigrams, each repeating at least 3 times": -Infinity,
1313
+ "has 5 trigrams, each repeating 4 times": -Infinity,
1314
+ "has 5 trigrams, each repeating at least 4 times": -Infinity,
1315
+ "has repeated vowels": -0.7828504620893675,
1316
+ "has repeated consonants": -0.8366320247197727,
1317
+ "has equal letter counts": -1.056300832801341,
1318
+ "has one of two letter counts": -0.5394653906427394,
1319
+ "has letter counts in arithmetic sequence": -4.734665742869723,
1320
+ "has greek letters substring": -2.940656553907653,
1321
+ "has solfege substring": -1.2950275779001394,
1322
+ "has iso 2-letter country codes substring": -0.04172725922153475,
1323
+ "has iso 3-letter country codes substring": -1.445417098180485,
1324
+ "has days of the week substring": -4.2879030776634375,
1325
+ "has element symbols substring": -0.004330824103769615,
1326
+ "has months substring": -4.057043863933529,
1327
+ "has nato alphabet substring": -6.464593052557949,
1328
+ "has numbers substring": -4.173044245706789,
1329
+ "has us state abbreviations substring": -0.39043920927483455,
1330
+ "starts with iso 2-letter country codes": -0.4808257361966479,
1331
+ "starts with iso 3-letter country codes": -2.6041201138900583,
1332
+ "starts with days of the week": -5.029944162213438,
1333
+ "starts with element symbols": -0.3175981158392336,
1334
+ "starts with greek letters": -3.990671313331637,
1335
+ "starts with months": -4.58857837235241,
1336
+ "starts with nato alphabet": -7.005333232895463,
1337
+ "starts with numbers": -6.179964417593059,
1338
+ "starts with solfege": -2.6286217457456313,
1339
+ "starts with us state abbreviations": -1.4640902197207346,
1340
+ "ends with iso 2-letter country codes": -0.6523846434932921,
1341
+ "ends with iso 3-letter country codes": -3.1427864908233225,
1342
+ "ends with days of the week": -6.537294884334681,
1343
+ "ends with element symbols": -0.35244318144479436,
1344
+ "ends with greek letters": -5.705098773907503,
1345
+ "ends with months": -6.6372057952249435,
1346
+ "ends with nato alphabet": -8.083219391046455,
1347
+ "ends with numbers": -5.3896322519718005,
1348
+ "ends with solfege": -3.658833482533433,
1349
+ "ends with us state abbreviations": -1.9905182043964995,
1350
+ "can be broken into iso 2-letter country codes": -2.731142542882827,
1351
+ "can be broken into iso 3-letter country codes": -6.322712465322505,
1352
+ "can be broken into days of the week": -10.178165119262257,
1353
+ "can be broken into element symbols": -1.5729381570124712,
1354
+ "can be broken into months": -9.618549331326834,
1355
+ "can be broken into solfege": -7.926873320655762,
1356
+ "can be broken into us state abbreviations": -5.5742457151758185,
1357
+ "can rotate": -2.1048011161222924,
1358
+ "can swap adjacent letters": -2.0786487969139884,
1359
+ "can swap ends": -2.1695500790715307,
1360
+ "can take odd or even letters": -0.4739367588280139,
1361
+ "has caesar shift": -2.1652771887887763,
1362
+ "has scrabble score 1": -9.955021567948048,
1363
+ "has scrabble score 2": -7.632633847657822,
1364
+ "has scrabble score 3": -5.352855890980255,
1365
+ "has scrabble score 4": -4.277583068631448,
1366
+ "has scrabble score 5": -3.681578683804963,
1367
+ "has scrabble score 6": -3.1486347833541988,
1368
+ "has scrabble score 7": -2.8171868466505874,
1369
+ "has scrabble score 8": -2.58851321049303,
1370
+ "has scrabble score 9": -2.5009963042667245,
1371
+ "has scrabble score 10": -2.4867366330208043,
1372
+ "has scrabble score 11": -2.4796823313813103,
1373
+ "has scrabble score 12": -2.5025031141722227,
1374
+ "has scrabble score 13": -2.593582608587271,
1375
+ "has scrabble score 14": -2.696116581070015,
1376
+ "has scrabble score 15": -2.8099043004141446,
1377
+ "has scrabble score 16": -2.979888053635962,
1378
+ "has scrabble score 17": -3.1695469236747424,
1379
+ "has scrabble score 18": -3.369401789487071,
1380
+ "has scrabble score 19": -3.5992611897699724,
1381
+ "has scrabble score 20": -3.832090258097759,
1382
+ "has scrabble score 21": -4.104832608198018,
1383
+ "has scrabble score 22": -4.338250470281476,
1384
+ "has scrabble score 23": -4.643294514490093,
1385
+ "has scrabble score 24": -4.924583646555612,
1386
+ "has scrabble score 25": -5.131519387642968,
1387
+ "has scrabble score 26": -5.435409270321602,
1388
+ "has scrabble score 27": -5.725272368719744,
1389
+ "has scrabble score 28": -6.039006541250364,
1390
+ "has scrabble score 29": -6.309571671761447,
1391
+ "has scrabble score 30": -6.748218324314116,
1392
+ "has scrabble score 31": -7.098551361727564,
1393
+ "has scrabble score 32": -7.390072210486511,
1394
+ "has scrabble score 33": -7.888158808475072,
1395
+ "has scrabble score 34": -8.163262098719994,
1396
+ "has scrabble score 35": -8.594045014812448,
1397
+ "has scrabble score 36": -8.856409279279937,
1398
+ "has scrabble score 37": -8.568727206828157,
1399
+ "has scrabble score 38": -9.21308422321867,
1400
+ "has scrabble score 39": -10.31169651188678,
1401
+ "has scrabble score 40": -9.485017938702311,
1402
+ "has morse code with equal dot/dash count": -2.7440554148965024,
1403
+ "has morse code with 1 dots": -6.241449501243739,
1404
+ "has morse code with 2 dots": -5.153462567954566,
1405
+ "has morse code with 3 dots": -4.266352731101895,
1406
+ "has morse code with 4 dots": -3.6274419908666946,
1407
+ "has morse code with 5 dots": -3.1757817112013385,
1408
+ "has morse code with 6 dots": -2.8761742141235036,
1409
+ "has morse code with 7 dots": -2.6777738413165633,
1410
+ "has morse code with 8 dots": -2.5414130068264775,
1411
+ "has morse code with 9 dots": -2.498740338017093,
1412
+ "has morse code with 10 dots": -2.484284742982762,
1413
+ "has morse code with 11 dots": -2.489996106957319,
1414
+ "has morse code with 12 dots": -2.5641613578005202,
1415
+ "has morse code with 13 dots": -2.637079014522417,
1416
+ "has morse code with 14 dots": -2.7571372128710774,
1417
+ "has morse code with 15 dots": -2.9210742637281513,
1418
+ "has morse code with 16 dots": -3.0881924555785556,
1419
+ "has morse code with 17 dots": -3.2935505327217633,
1420
+ "has morse code with 18 dots": -3.54139868979024,
1421
+ "has morse code with 19 dots": -3.8050586630193877,
1422
+ "has morse code with 20 dots": -4.0928118566973275,
1423
+ "has morse code with 21 dots": -4.41611373648208,
1424
+ "has morse code with 22 dots": -4.672833583329894,
1425
+ "has morse code with 23 dots": -5.065424602228847,
1426
+ "has morse code with 24 dots": -5.414923378703671,
1427
+ "has morse code with 25 dots": -5.889419474591601,
1428
+ "has morse code with 26 dots": -6.207873205710135,
1429
+ "has morse code with 27 dots": -6.5877257379615735,
1430
+ "has morse code with 28 dots": -7.115943104439433,
1431
+ "has morse code with 29 dots": -7.367257532720339,
1432
+ "has morse code with 30 dots": -8.038098955765985,
1433
+ "has morse code with 31 dots": -8.70225859945268,
1434
+ "has morse code with 32 dots": -9.122112445012943,
1435
+ "has morse code with 33 dots": -9.122112445012943,
1436
+ "has morse code with 34 dots": -10.31169651188678,
1437
+ "has morse code with 35 dots": -10.465847191714039,
1438
+ "has morse code with 36 dots": -10.465847191714039,
1439
+ "has morse code with 37 dots": -10.465847191714039,
1440
+ "has morse code with 38 dots": -11.564459480382148,
1441
+ "has morse code with 39 dots": -11.564459480382148,
1442
+ "has morse code with 40 dots": -11.158994372273984,
1443
+ "has morse code with 1 dashes": -5.015524301685131,
1444
+ "has morse code with 2 dashes": -3.6697686299565238,
1445
+ "has morse code with 3 dashes": -2.83425388485116,
1446
+ "has morse code with 4 dashes": -2.399534971936447,
1447
+ "has morse code with 5 dashes": -2.176140301046148,
1448
+ "has morse code with 6 dashes": -2.0966900791252048,
1449
+ "has morse code with 7 dashes": -2.1089792592198595,
1450
+ "has morse code with 8 dashes": -2.2195445101097455,
1451
+ "has morse code with 9 dashes": -2.3809252028264716,
1452
+ "has morse code with 10 dashes": -2.61886620957525,
1453
+ "has morse code with 11 dashes": -2.87972001775411,
1454
+ "has morse code with 12 dashes": -3.2109623816366994,
1455
+ "has morse code with 13 dashes": -3.5560939100692277,
1456
+ "has morse code with 14 dashes": -3.8637116858703493,
1457
+ "has morse code with 15 dashes": -4.312405528529334,
1458
+ "has morse code with 16 dashes": -4.698568405498709,
1459
+ "has morse code with 17 dashes": -5.113989058237972,
1460
+ "has morse code with 18 dashes": -5.465262233471284,
1461
+ "has morse code with 19 dashes": -5.951331373994077,
1462
+ "has morse code with 20 dashes": -6.489285665148321,
1463
+ "has morse code with 21 dashes": -6.83265664346069,
1464
+ "has morse code with 22 dashes": -7.3748047383557225,
1465
+ "has morse code with 23 dashes": -7.967147219793702,
1466
+ "has morse code with 24 dashes": -8.428965264452998,
1467
+ "has morse code with 25 dashes": -8.823619456456946,
1468
+ "has morse code with 26 dashes": -8.999510122920611,
1469
+ "has morse code with 27 dashes": -9.549556459839883,
1470
+ "has morse code with 28 dashes": -9.485017938702311,
1471
+ "has morse code with 29 dashes": -10.465847191714039,
1472
+ "has morse code with 30 dashes": -10.871312299822202,
1473
+ "has morse code with 31 dashes": -11.158994372273984,
1474
+ "has morse code with 32 dashes": -Infinity,
1475
+ "has morse code with 33 dashes": -10.871312299822202,
1476
+ "has morse code with 34 dashes": -12.257606660942093,
1477
+ "has morse code with 35 dashes": -Infinity,
1478
+ "has morse code with 36 dashes": -12.257606660942093,
1479
+ "has morse code with 37 dashes": -11.564459480382148,
1480
+ "has morse code with 38 dashes": -Infinity,
1481
+ "has morse code with 39 dashes": -Infinity,
1482
+ "has morse code with 40 dashes": -12.257606660942093,
1483
+ "has morse code with 1 dots and dashes": -11.564459480382148,
1484
+ "has morse code with 2 dots and dashes": -10.178165119262257,
1485
+ "has morse code with 3 dots and dashes": -8.791870758142366,
1486
+ "has morse code with 4 dots and dashes": -7.521408212547597,
1487
+ "has morse code with 5 dots and dashes": -6.461548910176721,
1488
+ "has morse code with 6 dots and dashes": -5.507675467153523,
1489
+ "has morse code with 7 dots and dashes": -4.736288680742853,
1490
+ "has morse code with 8 dots and dashes": -4.137315346973532,
1491
+ "has morse code with 9 dots and dashes": -3.707559132654909,
1492
+ "has morse code with 10 dots and dashes": -3.403941232904643,
1493
+ "has morse code with 11 dots and dashes": -3.210373626836061,
1494
+ "has morse code with 12 dots and dashes": -3.0893390653878186,
1495
+ "has morse code with 13 dots and dashes": -2.981104086712241,
1496
+ "has morse code with 14 dots and dashes": -2.894974478623652,
1497
+ "has morse code with 15 dots and dashes": -2.8547469071955103,
1498
+ "has morse code with 16 dots and dashes": -2.8539223688902204,
1499
+ "has morse code with 17 dots and dashes": -2.8375727853761052,
1500
+ "has morse code with 18 dots and dashes": -2.859045500240965,
1501
+ "has morse code with 19 dots and dashes": -2.897984586250155,
1502
+ "has morse code with 20 dots and dashes": -2.9351883855605596,
1503
+ "has morse code with 21 dots and dashes": -2.9869240599597493,
1504
+ "has morse code with 22 dots and dashes": -3.0684899254175377,
1505
+ "has morse code with 23 dots and dashes": -3.183888166508874,
1506
+ "has morse code with 24 dots and dashes": -3.2558907541809177,
1507
+ "has morse code with 25 dots and dashes": -3.4052277744301076,
1508
+ "has morse code with 26 dots and dashes": -3.5423826190267214,
1509
+ "has morse code with 27 dots and dashes": -3.6710739914472423,
1510
+ "has morse code with 28 dots and dashes": -3.8591970055158225,
1511
+ "has morse code with 29 dots and dashes": -4.056220705703485,
1512
+ "has morse code with 30 dots and dashes": -4.20086288596678,
1513
+ "has morse code with 31 dots and dashes": -4.39433993693252,
1514
+ "has morse code with 32 dots and dashes": -4.606962109505196,
1515
+ "has morse code with 33 dots and dashes": -4.781134279778188,
1516
+ "has morse code with 34 dots and dashes": -5.027043507532801,
1517
+ "has morse code with 35 dots and dashes": -5.239204861872892,
1518
+ "has morse code with 36 dots and dashes": -5.463020080065594,
1519
+ "has morse code with 37 dots and dashes": -5.741413584899129,
1520
+ "has morse code with 38 dots and dashes": -5.913726226815762,
1521
+ "has morse code with 39 dots and dashes": -6.182260629853409,
1522
+ "has morse code with 40 dots and dashes": -6.393975485343996,
1523
+ "has a and a with 0 letters between": -Infinity,
1524
+ "has a and a with 1 letters between": -Infinity,
1525
+ "has a and b with 0 letters between": -3.8723461407866804,
1526
+ "has a and b with 1 letters between": -4.654706198737338,
1527
+ "has a and c with 0 letters between": -3.5083498208370862,
1528
+ "has a and c with 1 letters between": -4.060343289527758,
1529
+ "has a and d with 0 letters between": -3.67969473449115,
1530
+ "has a and d with 1 letters between": -3.5113673725590324,
1531
+ "has a and e with 0 letters between": -5.1962722940316555,
1532
+ "has a and e with 1 letters between": -2.7285943998273847,
1533
+ "has a and f with 0 letters between": -5.0534573689061535,
1534
+ "has a and f with 1 letters between": -5.377222578756088,
1535
+ "has a and g with 0 letters between": -4.050204827565738,
1536
+ "has a and g with 1 letters between": -4.279295691074371,
1537
+ "has a and h with 0 letters between": -4.6861330120908224,
1538
+ "has a and h with 1 letters between": -3.922175183061297,
1539
+ "has a and i with 0 letters between": -3.8785267716554905,
1540
+ "has a and i with 1 letters between": -2.5972102975298714,
1541
+ "has a and j with 0 letters between": -5.933247698560782,
1542
+ "has a and j with 1 letters between": -6.3742842724538145,
1543
+ "has a and k with 0 letters between": -4.388204948365003,
1544
+ "has a and k with 1 letters between": -4.190457621031987,
1545
+ "has a and l with 0 letters between": -2.6849174719313744,
1546
+ "has a and l with 1 letters between": -3.4326346953749525,
1547
+ "has a and m with 0 letters between": -3.441049892300237,
1548
+ "has a and m with 1 letters between": -4.4793951864296,
1549
+ "has a and n with 0 letters between": -2.2827291123192914,
1550
+ "has a and n with 1 letters between": -3.9738599138359625,
1551
+ "has a and o with 0 letters between": -6.266142113834111,
1552
+ "has a and o with 1 letters between": -3.4927724466112586,
1553
+ "has a and p with 0 letters between": -4.105696788001188,
1554
+ "has a and p with 1 letters between": -4.557764253545107,
1555
+ "has a and q with 0 letters between": -6.651804594646095,
1556
+ "has a and q with 1 letters between": -6.655487840062392,
1557
+ "has a and r with 0 letters between": -2.5267477932290205,
1558
+ "has a and r with 1 letters between": -3.9774024276621187,
1559
+ "has a and s with 0 letters between": -3.128476344391453,
1560
+ "has a and s with 1 letters between": -3.340564100203327,
1561
+ "has a and t with 0 letters between": -2.6823454361733265,
1562
+ "has a and t with 1 letters between": -3.1313002845759197,
1563
+ "has a and u with 0 letters between": -4.193599313845432,
1564
+ "has a and u with 1 letters between": -4.32776023119959,
1565
+ "has a and v with 0 letters between": -4.481910911026848,
1566
+ "has a and v with 1 letters between": -5.702249769131428,
1567
+ "has a and w with 0 letters between": -5.009102588571483,
1568
+ "has a and w with 1 letters between": -6.126380171458952,
1569
+ "has a and x with 0 letters between": -5.947688382715577,
1570
+ "has a and x with 1 letters between": -7.11011218412864,
1571
+ "has a and y with 0 letters between": -4.36254316285052,
1572
+ "has a and y with 1 letters between": -4.812189104240406,
1573
+ "has a and z with 0 letters between": -5.133933875737486,
1574
+ "has a and z with 1 letters between": -5.805557706504867,
1575
+ "has b and a with 0 letters between": -3.6001299240788,
1576
+ "has b and a with 1 letters between": -4.330282300632299,
1577
+ "has b and b with 0 letters between": -Infinity,
1578
+ "has b and b with 1 letters between": -Infinity,
1579
+ "has b and c with 0 letters between": -6.964301836217601,
1580
+ "has b and c with 1 letters between": -5.145279216231182,
1581
+ "has b and d with 0 letters between": -6.964301836217601,
1582
+ "has b and d with 1 letters between": -5.528978047857391,
1583
+ "has b and e with 0 letters between": -3.666048387570548,
1584
+ "has b and e with 1 letters between": -4.127253113510855,
1585
+ "has b and f with 0 letters between": -7.994926783900778,
1586
+ "has b and f with 1 letters between": -7.170010325709709,
1587
+ "has b and g with 0 letters between": -8.038098955765985,
1588
+ "has b and g with 1 letters between": -6.02909565735091,
1589
+ "has b and h with 0 letters between": -6.574026893603412,
1590
+ "has b and h with 1 letters between": -6.601614850122241,
1591
+ "has b and i with 0 letters between": -4.100522875913223,
1592
+ "has b and i with 1 letters between": -4.733045434656733,
1593
+ "has b and j with 0 letters between": -7.632633847657822,
1594
+ "has b and j with 1 letters between": -7.746747154425243,
1595
+ "has b and k with 0 letters between": -8.345583655513947,
1596
+ "has b and k with 1 letters between": -6.570631304602273,
1597
+ "has b and l with 0 letters between": -4.082903778472632,
1598
+ "has b and l with 1 letters between": -4.288594879835615,
1599
+ "has b and m with 0 letters between": -7.330352975784888,
1600
+ "has b and m with 1 letters between": -6.6372057952249435,
1601
+ "has b and n with 0 letters between": -7.470114918160047,
1602
+ "has b and n with 1 letters between": -4.502696388920663,
1603
+ "has b and o with 0 letters between": -3.9262612360963693,
1604
+ "has b and o with 1 letters between": -4.629089034367038,
1605
+ "has b and p with 0 letters between": -7.863157506269654,
1606
+ "has b and p with 1 letters between": -7.201360855593785,
1607
+ "has b and q with 0 letters between": -10.060382083605873,
1608
+ "has b and q with 1 letters between": -8.306362942360666,
1609
+ "has b and r with 0 letters between": -4.175822454007092,
1610
+ "has b and r with 1 letters between": -3.832309484230393,
1611
+ "has b and s with 0 letters between": -5.560572413275609,
1612
+ "has b and s with 1 letters between": -4.850288950472676,
1613
+ "has b and t with 0 letters between": -6.969339630247558,
1614
+ "has b and t with 1 letters between": -4.789664328656241,
1615
+ "has b and u with 0 letters between": -4.310635303248503,
1616
+ "has b and u with 1 letters between": -5.175058091586793,
1617
+ "has b and v with 0 letters between": -8.232254970206943,
1618
+ "has b and v with 1 letters between": -7.323132727811402,
1619
+ "has b and w with 0 letters between": -7.980940541926038,
1620
+ "has b and w with 1 letters between": -6.979492001711575,
1621
+ "has b and x with 0 letters between": -9.485017938702311,
1622
+ "has b and x with 1 letters between": -7.005333232895463,
1623
+ "has b and y with 0 letters between": -5.8791804772905065,
1624
+ "has b and y with 1 letters between": -5.613816927794421,
1625
+ "has b and z with 0 letters between": -8.856409279279937,
1626
+ "has b and z with 1 letters between": -7.075823110650008,
1627
+ "has c and a with 0 letters between": -3.2247197143630046,
1628
+ "has c and a with 1 letters between": -3.7735566881191094,
1629
+ "has c and b with 0 letters between": -7.445422305569676,
1630
+ "has c and b with 1 letters between": -5.7473483204189435,
1631
+ "has c and c with 0 letters between": -Infinity,
1632
+ "has c and c with 1 letters between": -Infinity,
1633
+ "has c and d with 0 letters between": -7.195011627915126,
1634
+ "has c and d with 1 letters between": -5.359901717813457,
1635
+ "has c and e with 0 letters between": -3.7795701847270493,
1636
+ "has c and e with 1 letters between": -3.6787540891391277,
1637
+ "has c and f with 0 letters between": -7.495432726144337,
1638
+ "has c and f with 1 letters between": -6.273670380254902,
1639
+ "has c and g with 0 letters between": -7.104315066444314,
1640
+ "has c and g with 1 letters between": -6.712429216462531,
1641
+ "has c and h with 0 letters between": -3.087463478717323,
1642
+ "has c and h with 1 letters between": -6.294027317323647,
1643
+ "has c and i with 0 letters between": -4.006203595561537,
1644
+ "has c and i with 1 letters between": -3.825535722942691,
1645
+ "has c and j with 0 letters between": -9.079552830594148,
1646
+ "has c and j with 1 letters between": -8.496406545248531,
1647
+ "has c and k with 0 letters between": -3.917389339995058,
1648
+ "has c and k with 1 letters between": -7.344951775206041,
1649
+ "has c and l with 0 letters between": -4.5788176627429396,
1650
+ "has c and l with 1 letters between": -3.871889832314242,
1651
+ "has c and m with 0 letters between": -7.037250835863768,
1652
+ "has c and m with 1 letters between": -4.4407866951775405,
1653
+ "has c and n with 0 letters between": -7.151661187041513,
1654
+ "has c and n with 1 letters between": -3.795292131035845,
1655
+ "has c and o with 0 letters between": -3.1455408582342503,
1656
+ "has c and o with 1 letters between": -4.125487887986287,
1657
+ "has c and p with 0 letters between": -7.133642681538834,
1658
+ "has c and p with 1 letters between": -5.004136278257565,
1659
+ "has c and q with 0 letters between": -7.359766860991182,
1660
+ "has c and q with 1 letters between": -8.856409279279937,
1661
+ "has c and r with 0 letters between": -4.233726668207215,
1662
+ "has c and r with 1 letters between": -3.926502112889054,
1663
+ "has c and s with 0 letters between": -5.472019015934164,
1664
+ "has c and s with 1 letters between": -4.16018036234488,
1665
+ "has c and t with 0 letters between": -4.251905982279551,
1666
+ "has c and t with 1 letters between": -4.437167145679912,
1667
+ "has c and u with 0 letters between": -4.494160272214731,
1668
+ "has c and u with 1 letters between": -4.516073071660265,
1669
+ "has c and v with 0 letters between": -8.197163650395673,
1670
+ "has c and v with 1 letters between": -6.314807285815392,
1671
+ "has c and w with 0 letters between": -8.098723577582422,
1672
+ "has c and w with 1 letters between": -6.402534738739666,
1673
+ "has c and x with 0 letters between": -9.261874387388103,
1674
+ "has c and x with 1 letters between": -8.067951918915668,
1675
+ "has c and y with 0 letters between": -5.588108571084214,
1676
+ "has c and y with 1 letters between": -5.954987685197188,
1677
+ "has c and z with 0 letters between": -7.900897834252501,
1678
+ "has c and z with 1 letters between": -7.725007167788837,
1679
+ "has d and a with 0 letters between": -3.820322852754158,
1680
+ "has d and a with 1 letters between": -4.353271818856998,
1681
+ "has d and b with 0 letters between": -6.405404181167619,
1682
+ "has d and b with 1 letters between": -5.992305448204383,
1683
+ "has d and c with 0 letters between": -6.736145743079847,
1684
+ "has d and c with 1 letters between": -4.823349278808958,
1685
+ "has d and d with 0 letters between": -Infinity,
1686
+ "has d and d with 1 letters between": -Infinity,
1687
+ "has d and e with 0 letters between": -3.0621769017016653,
1688
+ "has d and e with 1 letters between": -4.284106696917463,
1689
+ "has d and f with 0 letters between": -6.798021146797934,
1690
+ "has d and f with 1 letters between": -5.935041421014809,
1691
+ "has d and g with 0 letters between": -5.725272368719744,
1692
+ "has d and g with 1 letters between": -5.922552409444034,
1693
+ "has d and h with 0 letters between": -5.9942083983504695,
1694
+ "has d and h with 1 letters between": -6.382675930090063,
1695
+ "has d and i with 0 letters between": -3.411109722383255,
1696
+ "has d and i with 1 letters between": -4.819223130897786,
1697
+ "has d and j with 0 letters between": -7.17620229595763,
1698
+ "has d and j with 1 letters between": -8.009111418892733,
1699
+ "has d and k with 0 letters between": -7.940118547405783,
1700
+ "has d and k with 1 letters between": -6.716343115783667,
1701
+ "has d and l with 0 letters between": -5.304878016317224,
1702
+ "has d and l with 1 letters between": -4.554598978462857,
1703
+ "has d and m with 0 letters between": -6.170831934029787,
1704
+ "has d and m with 1 letters between": -5.060920090107743,
1705
+ "has d and n with 0 letters between": -6.51140347040194,
1706
+ "has d and n with 1 letters between": -4.001258888024077,
1707
+ "has d and o with 0 letters between": -3.9751236572115314,
1708
+ "has d and o with 1 letters between": -4.801152105765884,
1709
+ "has d and p with 0 letters between": -7.121808223891831,
1710
+ "has d and p with 1 letters between": -5.877484124042328,
1711
+ "has d and q with 0 letters between": -9.485017938702311,
1712
+ "has d and q with 1 letters between": -8.674087722485982,
1713
+ "has d and r with 0 letters between": -4.5871781387514,
1714
+ "has d and r with 1 letters between": -4.073930078321435,
1715
+ "has d and s with 0 letters between": -4.595138845741856,
1716
+ "has d and s with 1 letters between": -4.1610937434404995,
1717
+ "has d and t with 0 letters between": -6.626394879120728,
1718
+ "has d and t with 1 letters between": -5.151820531460822,
1719
+ "has d and u with 0 letters between": -4.765403618323352,
1720
+ "has d and u with 1 letters between": -5.4663851982159075,
1721
+ "has d and v with 0 letters between": -6.924887867676724,
1722
+ "has d and v with 1 letters between": -5.738459373001698,
1723
+ "has d and w with 0 letters between": -6.306964108354366,
1724
+ "has d and w with 1 letters between": -6.021237070738389,
1725
+ "has d and x with 0 letters between": -8.999510122920611,
1726
+ "has d and x with 1 letters between": -7.323132727811402,
1727
+ "has d and y with 0 letters between": -5.53618096015145,
1728
+ "has d and y with 1 letters between": -5.793018357252132,
1729
+ "has d and z with 0 letters between": -7.967147219793702,
1730
+ "has d and z with 1 letters between": -7.133642681538834,
1731
+ "has e and a with 0 letters between": -3.5720218182653998,
1732
+ "has e and a with 1 letters between": -3.322624611728859,
1733
+ "has e and b with 0 letters between": -4.863113553723055,
1734
+ "has e and b with 1 letters between": -4.730889099589387,
1735
+ "has e and c with 0 letters between": -3.8386880387941957,
1736
+ "has e and c with 1 letters between": -4.176750241301107,
1737
+ "has e and d with 0 letters between": -2.9561466955984272,
1738
+ "has e and d with 1 letters between": -3.992213730089869,
1739
+ "has e and e with 0 letters between": -Infinity,
1740
+ "has e and e with 1 letters between": -Infinity,
1741
+ "has e and f with 0 letters between": -4.89242653492108,
1742
+ "has e and f with 1 letters between": -5.224100176654396,
1743
+ "has e and g with 0 letters between": -4.650722129722463,
1744
+ "has e and g with 1 letters between": -4.600323867963903,
1745
+ "has e and h with 0 letters between": -5.411726785678043,
1746
+ "has e and h with 1 letters between": -4.433160730064474,
1747
+ "has e and i with 0 letters between": -4.31098909769762,
1748
+ "has e and i with 1 letters between": -3.1527379219081446,
1749
+ "has e and j with 0 letters between": -6.6666196804312365,
1750
+ "has e and j with 1 letters between": -7.17620229595763,
1751
+ "has e and k with 0 letters between": -5.482240570005701,
1752
+ "has e and k with 1 letters between": -4.940394252582254,
1753
+ "has e and l with 0 letters between": -3.0361285445554547,
1754
+ "has e and l with 1 letters between": -3.685546568085016,
1755
+ "has e and m with 0 letters between": -3.8828991178226104,
1756
+ "has e and m with 1 letters between": -4.516942259024852,
1757
+ "has e and n with 0 letters between": -2.581521716640559,
1758
+ "has e and n with 1 letters between": -3.9958219814273406,
1759
+ "has e and o with 0 letters between": -4.965269484768216,
1760
+ "has e and o with 1 letters between": -3.656807885671059,
1761
+ "has e and p with 0 letters between": -4.464019857570509,
1762
+ "has e and p with 1 letters between": -4.543375516093008,
1763
+ "has e and q with 0 letters between": -6.449464170961649,
1764
+ "has e and q with 1 letters between": -7.613215761800721,
1765
+ "has e and r with 0 letters between": -2.0611137299228393,
1766
+ "has e and r with 1 letters between": -3.7661416180985867,
1767
+ "has e and s with 0 letters between": -2.504070285169469,
1768
+ "has e and s with 1 letters between": -2.872640938806427,
1769
+ "has e and t with 0 letters between": -3.387224594871956,
1770
+ "has e and t with 1 letters between": -2.875079246652554,
1771
+ "has e and u with 0 letters between": -4.914827471610248,
1772
+ "has e and u with 1 letters between": -4.367398447832132,
1773
+ "has e and v with 0 letters between": -4.590916460862007,
1774
+ "has e and v with 1 letters between": -5.303922450071556,
1775
+ "has e and w with 0 letters between": -5.108475062384686,
1776
+ "has e and w with 1 letters between": -5.940441974194809,
1777
+ "has e and x with 0 letters between": -4.751564482423971,
1778
+ "has e and x with 1 letters between": -7.613215761800721,
1779
+ "has e and y with 0 letters between": -4.448471262821555,
1780
+ "has e and y with 1 letters between": -5.011951593347558,
1781
+ "has e and z with 0 letters between": -5.960497341008158,
1782
+ "has e and z with 1 letters between": -5.854032463007278,
1783
+ "has f and a with 0 letters between": -4.512603857426254,
1784
+ "has f and a with 1 letters between": -5.054201139858998,
1785
+ "has f and b with 0 letters between": -8.098723577582422,
1786
+ "has f and b with 1 letters between": -6.823884657387853,
1787
+ "has f and c with 0 letters between": -7.352331882503663,
1788
+ "has f and c with 1 letters between": -5.3173841918224545,
1789
+ "has f and d with 0 letters between": -7.900897834252501,
1790
+ "has f and d with 1 letters between": -6.411167885884369,
1791
+ "has f and e with 0 letters between": -4.419263345384977,
1792
+ "has f and e with 1 letters between": -4.552794738009499,
1793
+ "has f and f with 0 letters between": -Infinity,
1794
+ "has f and f with 1 letters between": -Infinity,
1795
+ "has f and g with 0 letters between": -8.197163650395673,
1796
+ "has f and g with 1 letters between": -6.612159763298855,
1797
+ "has f and h with 0 letters between": -8.365786362831466,
1798
+ "has f and h with 1 letters between": -7.521408212547597,
1799
+ "has f and i with 0 letters between": -4.170888740638187,
1800
+ "has f and i with 1 letters between": -5.065424602228847,
1801
+ "has f and j with 0 letters between": -9.36723490304593,
1802
+ "has f and j with 1 letters between": -8.386405650034202,
1803
+ "has f and k with 0 letters between": -9.038730836073892,
1804
+ "has f and k with 1 letters between": -7.652436474954001,
1805
+ "has f and l with 0 letters between": -4.869278801364986,
1806
+ "has f and l with 1 letters between": -4.881098534615873,
1807
+ "has f and m with 0 letters between": -7.672639182271521,
1808
+ "has f and m with 1 letters between": -6.662895281340254,
1809
+ "has f and n with 0 letters between": -7.953541567737924,
1810
+ "has f and n with 1 letters between": -5.006261677569879,
1811
+ "has f and o with 0 letters between": -4.455397344694975,
1812
+ "has f and o with 1 letters between": -5.355869454285519,
1813
+ "has f and p with 0 letters between": -7.953541567737924,
1814
+ "has f and p with 1 letters between": -8.052914041551126,
1815
+ "has f and q with 0 letters between": -10.178165119262257,
1816
+ "has f and q with 1 letters between": -8.823619456456946,
1817
+ "has f and r with 0 letters between": -4.787952488009965,
1818
+ "has f and r with 1 letters between": -4.27519031411436,
1819
+ "has f and s with 0 letters between": -6.399673506458634,
1820
+ "has f and s with 1 letters between": -5.2991582676444375,
1821
+ "has f and t with 0 letters between": -5.692341690906732,
1822
+ "has f and t with 1 letters between": -5.954987685197188,
1823
+ "has f and u with 0 letters between": -5.016956966686627,
1824
+ "has f and u with 1 letters between": -5.811886841556515,
1825
+ "has f and v with 0 letters between": -9.424393316885876,
1826
+ "has f and v with 1 letters between": -7.56625877871295,
1827
+ "has f and w with 0 letters between": -8.386405650034202,
1828
+ "has f and w with 1 letters between": -7.642486144100833,
1829
+ "has f and x with 0 letters between": -9.122112445012943,
1830
+ "has f and x with 1 letters between": -7.1824328457082665,
1831
+ "has f and y with 0 letters between": -6.685452628764328,
1832
+ "has f and y with 1 letters between": -6.768668934785406,
1833
+ "has f and z with 0 letters between": -10.871312299822202,
1834
+ "has f and z with 1 letters between": -8.114471934550561,
1835
+ "has g and a with 0 letters between": -3.8630331830737656,
1836
+ "has g and a with 1 letters between": -4.1610937434404995,
1837
+ "has g and b with 0 letters between": -6.944400681900306,
1838
+ "has g and b with 1 letters between": -6.294027317323647,
1839
+ "has g and c with 0 letters between": -7.803259364688586,
1840
+ "has g and c with 1 letters between": -6.191498570838346,
1841
+ "has g and d with 0 letters between": -7.233726140095817,
1842
+ "has g and d with 1 letters between": -5.769922642457482,
1843
+ "has g and e with 0 letters between": -3.648198985538045,
1844
+ "has g and e with 1 letters between": -4.338614172776848,
1845
+ "has g and f with 0 letters between": -7.504016469835729,
1846
+ "has g and f with 1 letters between": -7.521408212547597,
1847
+ "has g and g with 0 letters between": -Infinity,
1848
+ "has g and g with 1 letters between": -Infinity,
1849
+ "has g and h with 0 letters between": -4.6587062040706835,
1850
+ "has g and h with 1 letters between": -6.910499130224625,
1851
+ "has g and i with 0 letters between": -4.2081796038313986,
1852
+ "has g and i with 1 letters between": -4.72391295109346,
1853
+ "has g and j with 0 letters between": -9.261874387388103,
1854
+ "has g and j with 1 letters between": -8.791870758142366,
1855
+ "has g and k with 0 letters between": -8.365786362831466,
1856
+ "has g and k with 1 letters between": -7.953541567737924,
1857
+ "has g and l with 0 letters between": -4.785105916204535,
1858
+ "has g and l with 1 letters between": -4.802308175258802,
1859
+ "has g and m with 0 letters between": -6.530758913354896,
1860
+ "has g and m with 1 letters between": -5.753318487405448,
1861
+ "has g and n with 0 letters between": -5.311592669842866,
1862
+ "has g and n with 1 letters between": -4.215228655768813,
1863
+ "has g and o with 0 letters between": -4.384389606079352,
1864
+ "has g and o with 1 letters between": -4.629575534011758,
1865
+ "has g and p with 0 letters between": -7.652436474954001,
1866
+ "has g and p with 1 letters between": -7.064649810051883,
1867
+ "has g and q with 0 letters between": -10.31169651188678,
1868
+ "has g and q with 1 letters between": -10.060382083605873,
1869
+ "has g and r with 0 letters between": -4.219740426232475,
1870
+ "has g and r with 1 letters between": -4.351427820547278,
1871
+ "has g and s with 0 letters between": -5.096760754277794,
1872
+ "has g and s with 1 letters between": -4.843636370751649,
1873
+ "has g and t with 0 letters between": -6.382675930090063,
1874
+ "has g and t with 1 letters between": -4.6252055343406395,
1875
+ "has g and u with 0 letters between": -4.662722273725573,
1876
+ "has g and u with 1 letters between": -5.7238178230087495,
1877
+ "has g and v with 0 letters between": -8.568727206828157,
1878
+ "has g and v with 1 letters between": -6.798021146797934,
1879
+ "has g and w with 0 letters between": -7.12770794601902,
1880
+ "has g and w with 1 letters between": -7.1824328457082665,
1881
+ "has g and x with 0 letters between": -9.955021567948048,
1882
+ "has g and x with 1 letters between": -9.21308422321867,
1883
+ "has g and y with 0 letters between": -5.887705678113866,
1884
+ "has g and y with 1 letters between": -5.8791804772905065,
1885
+ "has g and z with 0 letters between": -8.823619456456946,
1886
+ "has g and z with 1 letters between": -7.233726140095817,
1887
+ "has h and a with 0 letters between": -3.117259660786445,
1888
+ "has h and a with 1 letters between": -4.48569640450633,
1889
+ "has h and b with 0 letters between": -6.700778599242556,
1890
+ "has h and b with 1 letters between": -5.6335414331422,
1891
+ "has h and c with 0 letters between": -7.201360855593785,
1892
+ "has h and c with 1 letters between": -5.422422074794792,
1893
+ "has h and d with 0 letters between": -7.2469713668458375,
1894
+ "has h and d with 1 letters between": -5.079061177178393,
1895
+ "has h and e with 0 letters between": -3.2657955027293752,
1896
+ "has h and e with 1 letters between": -4.63886428327168,
1897
+ "has h and f with 0 letters between": -7.330352975784888,
1898
+ "has h and f with 1 letters between": -6.312186052335518,
1899
+ "has h and g with 0 letters between": -7.900897834252501,
1900
+ "has h and g with 1 letters between": -5.855689464214907,
1901
+ "has h and h with 0 letters between": -Infinity,
1902
+ "has h and h with 1 letters between": -Infinity,
1903
+ "has h and i with 0 letters between": -3.5163103787169465,
1904
+ "has h and i with 1 letters between": -4.87237573787552,
1905
+ "has h and j with 0 letters between": -9.122112445012943,
1906
+ "has h and j with 1 letters between": -7.56625877871295,
1907
+ "has h and k with 0 letters between": -7.478483167830563,
1908
+ "has h and k with 1 letters between": -6.137309241991143,
1909
+ "has h and l with 0 letters between": -5.652308739993892,
1910
+ "has h and l with 1 letters between": -4.1559289134875215,
1911
+ "has h and m with 0 letters between": -5.882581841113996,
1912
+ "has h and m with 1 letters between": -4.49586167628318,
1913
+ "has h and n with 0 letters between": -6.00763141868261,
1914
+ "has h and n with 1 letters between": -3.915719691425906,
1915
+ "has h and o with 0 letters between": -3.615721025568538,
1916
+ "has h and o with 1 letters between": -4.808108655559244,
1917
+ "has h and p with 0 letters between": -7.461816115345352,
1918
+ "has h and p with 1 letters between": -5.135546779312951,
1919
+ "has h and q with 0 letters between": -9.618549331326834,
1920
+ "has h and q with 1 letters between": -8.306362942360666,
1921
+ "has h and r with 0 letters between": -5.041631658290627,
1922
+ "has h and r with 1 letters between": -3.6744384806023227,
1923
+ "has h and s with 0 letters between": -5.661826146980782,
1924
+ "has h and s with 1 letters between": -4.470224634457392,
1925
+ "has h and t with 0 letters between": -5.144464552235005,
1926
+ "has h and t with 1 letters between": -4.736830245879296,
1927
+ "has h and u with 0 letters between": -4.596550278580263,
1928
+ "has h and u with 1 letters between": -5.249101478859813,
1929
+ "has h and v with 0 letters between": -8.098723577582422,
1930
+ "has h and v with 1 letters between": -6.130737476827908,
1931
+ "has h and w with 0 letters between": -6.50503402211646,
1932
+ "has h and w with 1 letters between": -5.996114976621051,
1933
+ "has h and x with 0 letters between": -9.955021567948048,
1934
+ "has h and x with 1 letters between": -7.913801239088409,
1935
+ "has h and y with 0 letters between": -4.994978059967852,
1936
+ "has h and y with 1 letters between": -6.071398037041599,
1937
+ "has h and z with 0 letters between": -9.692657303480557,
1938
+ "has h and z with 1 letters between": -6.837071661669807,
1939
+ "has i and a with 0 letters between": -3.435874280007651,
1940
+ "has i and a with 1 letters between": -3.0710468176313146,
1941
+ "has i and b with 0 letters between": -4.776614498072568,
1942
+ "has i and b with 1 letters between": -5.345859360690419,
1943
+ "has i and c with 0 letters between": -3.0981386193396663,
1944
+ "has i and c with 1 letters between": -4.540255388756764,
1945
+ "has i and d with 0 letters between": -3.91786689492295,
1946
+ "has i and d with 1 letters between": -4.47396606472084,
1947
+ "has i and e with 0 letters between": -3.411253617627766,
1948
+ "has i and e with 1 letters between": -2.794719287282458,
1949
+ "has i and f with 0 letters between": -4.724983042153305,
1950
+ "has i and f with 1 letters between": -5.329068842777428,
1951
+ "has i and g with 0 letters between": -4.109739531018146,
1952
+ "has i and g with 1 letters between": -3.0029623634093863,
1953
+ "has i and h with 0 letters between": -6.567247206618033,
1954
+ "has i and h with 1 letters between": -4.009077536141875,
1955
+ "has i and i with 0 letters between": -Infinity,
1956
+ "has i and i with 1 letters between": -Infinity,
1957
+ "has i and j with 0 letters between": -6.563874522139393,
1958
+ "has i and j with 1 letters between": -7.337625735113968,
1959
+ "has i and k with 0 letters between": -5.055690343410466,
1960
+ "has i and k with 1 letters between": -4.619408416656314,
1961
+ "has i and l with 0 letters between": -3.3588313018810236,
1962
+ "has i and l with 1 letters between": -3.663267260349201,
1963
+ "has i and m with 0 letters between": -4.005942737336504,
1964
+ "has i and m with 1 letters between": -4.466083841791361,
1965
+ "has i and n with 0 letters between": -2.1224123264312666,
1966
+ "has i and n with 1 letters between": -3.1962304421058683,
1967
+ "has i and o with 0 letters between": -3.350129683413355,
1968
+ "has i and o with 1 letters between": -3.89356464902003,
1969
+ "has i and p with 0 letters between": -4.610297828585855,
1970
+ "has i and p with 1 letters between": -4.9537634356643885,
1971
+ "has i and q with 0 letters between": -6.428661043331886,
1972
+ "has i and q with 1 letters between": -7.632633847657822,
1973
+ "has i and r with 0 letters between": -3.929880494480681,
1974
+ "has i and r with 1 letters between": -4.336796981653493,
1975
+ "has i and s with 0 letters between": -2.8638619852207174,
1976
+ "has i and s with 1 letters between": -3.436612015194191,
1977
+ "has i and t with 0 letters between": -3.204856209540681,
1978
+ "has i and t with 1 letters between": -3.368298341099246,
1979
+ "has i and u with 0 letters between": -5.458550798883297,
1980
+ "has i and u with 1 letters between": -4.375669171670023,
1981
+ "has i and v with 0 letters between": -4.352902747068346,
1982
+ "has i and v with 1 letters between": -5.821456292572665,
1983
+ "has i and w with 0 letters between": -7.133642681538834,
1984
+ "has i and w with 1 letters between": -6.446465667965393,
1985
+ "has i and x with 0 letters between": -6.175387750565647,
1986
+ "has i and x with 1 letters between": -8.250273475709623,
1987
+ "has i and y with 0 letters between": -6.4830551153976845,
1988
+ "has i and y with 1 letters between": -4.809272800044617,
1989
+ "has i and z with 0 letters between": -4.5998513898072275,
1990
+ "has i and z with 1 letters between": -5.942248659419758,
1991
+ "has j and a with 0 letters between": -4.8955961096823595,
1992
+ "has j and a with 1 letters between": -6.708530576046873,
1993
+ "has j and b with 0 letters between": -9.21308422321867,
1994
+ "has j and b with 1 letters between": -7.092820687018579,
1995
+ "has j and c with 0 letters between": -8.450944171171773,
1996
+ "has j and c with 1 letters between": -6.3687287026092125,
1997
+ "has j and d with 0 letters between": -8.306362942360666,
1998
+ "has j and d with 1 letters between": -6.873111598153004,
1999
+ "has j and e with 0 letters between": -5.52658856046001,
2000
+ "has j and e with 1 letters between": -7.337625735113968,
2001
+ "has j and f with 0 letters between": -9.485017938702311,
2002
+ "has j and f with 1 letters between": -8.067951918915668,
2003
+ "has j and g with 0 letters between": -10.31169651188678,
2004
+ "has j and g with 1 letters between": -7.207750653692556,
2005
+ "has j and h with 0 letters between": -8.496406545248531,
2006
+ "has j and h with 1 letters between": -7.064649810051883,
2007
+ "has j and i with 0 letters between": -5.805557706504867,
2008
+ "has j and i with 1 letters between": -7.115943104439433,
2009
+ "has j and j with 0 letters between": -Infinity,
2010
+ "has j and j with 1 letters between": -Infinity,
2011
+ "has j and k with 0 letters between": -8.568727206828157,
2012
+ "has j and k with 1 letters between": -7.539107789646999,
2013
+ "has j and l with 0 letters between": -8.961769794937764,
2014
+ "has j and l with 1 letters between": -6.700778599242556,
2015
+ "has j and m with 0 letters between": -8.544034594237786,
2016
+ "has j and m with 1 letters between": -6.655487840062392,
2017
+ "has j and n with 0 letters between": -8.473417027023832,
2018
+ "has j and n with 1 letters between": -5.789907934837739,
2019
+ "has j and o with 0 letters between": -5.35687599689692,
2020
+ "has j and o with 1 letters between": -8.009111418892733,
2021
+ "has j and p with 0 letters between": -8.450944171171773,
2022
+ "has j and p with 1 letters between": -8.052914041551126,
2023
+ "has j and q with 0 letters between": -11.564459480382148,
2024
+ "has j and q with 1 letters between": -10.060382083605873,
2025
+ "has j and r with 0 letters between": -8.386405650034202,
2026
+ "has j and r with 1 letters between": -6.092188806710673,
2027
+ "has j and s with 0 letters between": -7.875580026268212,
2028
+ "has j and s with 1 letters between": -6.357709307359602,
2029
+ "has j and t with 0 letters between": -8.823619456456946,
2030
+ "has j and t with 1 letters between": -7.010582588781607,
2031
+ "has j and u with 0 letters between": -5.537386505806798,
2032
+ "has j and u with 1 letters between": -7.1887024587218615,
2033
+ "has j and v with 0 letters between": -9.692657303480557,
2034
+ "has j and v with 1 letters between": -7.539107789646999,
2035
+ "has j and w with 0 letters between": -9.485017938702311,
2036
+ "has j and w with 1 letters between": -7.85088741367784,
2037
+ "has j and x with 0 letters between": -11.564459480382148,
2038
+ "has j and x with 1 letters between": -9.261874387388103,
2039
+ "has j and y with 0 letters between": -9.549556459839883,
2040
+ "has j and y with 1 letters between": -7.267174074163357,
2041
+ "has j and z with 0 letters between": -11.564459480382148,
2042
+ "has j and z with 1 letters between": -8.268622614377819,
2043
+ "has k and a with 0 letters between": -4.140592573204783,
2044
+ "has k and a with 1 letters between": -5.027767882790843,
2045
+ "has k and b with 0 letters between": -7.075823110650008,
2046
+ "has k and b with 1 letters between": -6.547179643567223,
2047
+ "has k and c with 0 letters between": -7.735818083893053,
2048
+ "has k and c with 1 letters between": -7.098551361727564,
2049
+ "has k and d with 0 letters between": -7.725007167788837,
2050
+ "has k and d with 1 letters between": -5.768401729616776,
2051
+ "has k and e with 0 letters between": -3.860774826197039,
2052
+ "has k and e with 1 letters between": -5.0990926636127725,
2053
+ "has k and f with 0 letters between": -7.470114918160047,
2054
+ "has k and f with 1 letters between": -7.397794256580421,
2055
+ "has k and g with 0 letters between": -8.519937042658725,
2056
+ "has k and g with 1 letters between": -7.280872918521519,
2057
+ "has k and h with 0 letters between": -5.688125240527797,
2058
+ "has k and h with 1 letters between": -6.530758913354896,
2059
+ "has k and i with 0 letters between": -4.1382080713297995,
2060
+ "has k and i with 1 letters between": -5.510020134112778,
2061
+ "has k and j with 0 letters between": -9.038730836073892,
2062
+ "has k and j with 1 letters between": -8.519937042658725,
2063
+ "has k and k with 0 letters between": -Infinity,
2064
+ "has k and k with 1 letters between": -Infinity,
2065
+ "has k and l with 0 letters between": -5.612515691436449,
2066
+ "has k and l with 1 letters between": -5.279392918311395,
2067
+ "has k and m with 0 letters between": -6.8195273520188975,
2068
+ "has k and m with 1 letters between": -5.903236620144742,
2069
+ "has k and n with 0 letters between": -6.256191782980943,
2070
+ "has k and n with 1 letters between": -4.471885764407469,
2071
+ "has k and o with 0 letters between": -4.71168850973277,
2072
+ "has k and o with 1 letters between": -5.459666247967163,
2073
+ "has k and p with 0 letters between": -7.437325095337056,
2074
+ "has k and p with 1 letters between": -6.594646180806147,
2075
+ "has k and q with 0 letters between": -11.158994372273984,
2076
+ "has k and q with 1 letters between": -10.871312299822202,
2077
+ "has k and r with 0 letters between": -5.847431778975926,
2078
+ "has k and r with 1 letters between": -4.584383539820385,
2079
+ "has k and s with 0 letters between": -5.072219645361677,
2080
+ "has k and s with 1 letters between": -5.3609123293193806,
2081
+ "has k and t with 0 letters between": -6.700778599242556,
2082
+ "has k and t with 1 letters between": -5.305834496543182,
2083
+ "has k and u with 0 letters between": -5.425653095376238,
2084
+ "has k and u with 1 letters between": -6.266142113834111,
2085
+ "has k and v with 0 letters between": -8.496406545248531,
2086
+ "has k and v with 1 letters between": -6.659184701943718,
2087
+ "has k and w with 0 letters between": -6.929730492152512,
2088
+ "has k and w with 1 letters between": -6.896314495232668,
2089
+ "has k and x with 0 letters between": -10.060382083605873,
2090
+ "has k and x with 1 letters between": -9.618549331326834,
2091
+ "has k and y with 0 letters between": -5.695162567248373,
2092
+ "has k and y with 1 letters between": -6.126380171458952,
2093
+ "has k and z with 0 letters between": -10.465847191714039,
2094
+ "has k and z with 1 letters between": -7.352331882503663,
2095
+ "has l and a with 0 letters between": -2.912910236466832,
2096
+ "has l and a with 1 letters between": -3.8268431975242425,
2097
+ "has l and b with 0 letters between": -5.768401729616776,
2098
+ "has l and b with 1 letters between": -5.12830911201272,
2099
+ "has l and c with 0 letters between": -5.826275579008614,
2100
+ "has l and c with 1 letters between": -4.28135471719647,
2101
+ "has l and d with 0 letters between": -4.61844548928292,
2102
+ "has l and d with 1 letters between": -4.7499165831221895,
2103
+ "has l and e with 0 letters between": -2.688543443409877,
2104
+ "has l and e with 1 letters between": -3.683088402906586,
2105
+ "has l and f with 0 letters between": -5.899764394433993,
2106
+ "has l and f with 1 letters between": -5.6335414331422,
2107
+ "has l and g with 0 letters between": -6.261154572323072,
2108
+ "has l and g with 1 letters between": -4.544268772070223,
2109
+ "has l and h with 0 letters between": -6.708530576046873,
2110
+ "has l and h with 1 letters between": -5.53257301877525,
2111
+ "has l and i with 0 letters between": -2.8457141638951775,
2112
+ "has l and i with 1 letters between": -4.017749249923492,
2113
+ "has l and j with 0 letters between": -8.386405650034202,
2114
+ "has l and j with 1 letters between": -7.888158808475072,
2115
+ "has l and k with 0 letters between": -5.803981662049401,
2116
+ "has l and k with 1 letters between": -5.855689464214907,
2117
+ "has l and l with 0 letters between": -Infinity,
2118
+ "has l and l with 1 letters between": -Infinity,
2119
+ "has l and m with 0 letters between": -5.437590296267963,
2120
+ "has l and m with 1 letters between": -4.523923090166193,
2121
+ "has l and n with 0 letters between": -6.72817757343067,
2122
+ "has l and n with 1 letters between": -3.3851194786640555,
2123
+ "has l and o with 0 letters between": -3.3932839384306543,
2124
+ "has l and o with 1 letters between": -4.247911303199171,
2125
+ "has l and p with 0 letters between": -6.069342537859503,
2126
+ "has l and p with 1 letters between": -5.276600920220363,
2127
+ "has l and q with 0 letters between": -8.961769794937764,
2128
+ "has l and q with 1 letters between": -7.344951775206041,
2129
+ "has l and r with 0 letters between": -6.959289294394057,
2130
+ "has l and r with 1 letters between": -4.091674523620508,
2131
+ "has l and s with 0 letters between": -4.53492914447409,
2132
+ "has l and s with 1 letters between": -3.5072403825744676,
2133
+ "has l and t with 0 letters between": -4.778871835374218,
2134
+ "has l and t with 1 letters between": -3.864390649345566,
2135
+ "has l and u with 0 letters between": -4.338614172776848,
2136
+ "has l and u with 1 letters between": -4.852110997742621,
2137
+ "has l and v with 0 letters between": -5.844147703774736,
2138
+ "has l and v with 1 letters between": -5.224100176654396,
2139
+ "has l and w with 0 letters between": -6.83265664346069,
2140
+ "has l and w with 1 letters between": -5.3609123293193806,
2141
+ "has l and x with 0 letters between": -8.519937042658725,
2142
+ "has l and x with 1 letters between": -6.2512535013403605,
2143
+ "has l and y with 0 letters between": -3.865749960837153,
2144
+ "has l and y with 1 letters between": -4.374160306804353,
2145
+ "has l and z with 0 letters between": -7.504016469835729,
2146
+ "has l and z with 1 letters between": -5.531373258583346,
2147
+ "has m and a with 0 letters between": -2.904899047678988,
2148
+ "has m and a with 1 letters between": -4.728737404299842,
2149
+ "has m and b with 0 letters between": -4.632499512703193,
2150
+ "has m and b with 1 letters between": -6.46764649004484,
2151
+ "has m and c with 0 letters between": -5.530174936091237,
2152
+ "has m and c with 1 letters between": -4.719644001173885,
2153
+ "has m and d with 0 letters between": -7.367257532720339,
2154
+ "has m and d with 1 letters between": -4.848470217021965,
2155
+ "has m and e with 0 letters between": -3.2994525257328515,
2156
+ "has m and e with 1 letters between": -4.578355234989035,
2157
+ "has m and f with 0 letters between": -7.2206540585284635,
2158
+ "has m and f with 1 letters between": -7.037250835863768,
2159
+ "has m and g with 0 letters between": -7.714311878672089,
2160
+ "has m and g with 1 letters between": -5.368015352587627,
2161
+ "has m and h with 0 letters between": -7.521408212547597,
2162
+ "has m and h with 1 letters between": -5.831118203484403,
2163
+ "has m and i with 0 letters between": -3.4772802699954877,
2164
+ "has m and i with 1 letters between": -4.925237455013031,
2165
+ "has m and j with 0 letters between": -8.856409279279937,
2166
+ "has m and j with 1 letters between": -7.253660354996634,
2167
+ "has m and k with 0 letters between": -7.888158808475072,
2168
+ "has m and k with 1 letters between": -5.793018357252132,
2169
+ "has m and l with 0 letters between": -6.626394879120728,
2170
+ "has m and l with 1 letters between": -4.1322715742278024,
2171
+ "has m and m with 0 letters between": -Infinity,
2172
+ "has m and m with 1 letters between": -Infinity,
2173
+ "has m and n with 0 letters between": -6.594646180806147,
2174
+ "has m and n with 1 letters between": -3.2010003889079517,
2175
+ "has m and o with 0 letters between": -3.663637630723807,
2176
+ "has m and o with 1 letters between": -5.0255963292773345,
2177
+ "has m and p with 0 letters between": -4.371901269699073,
2178
+ "has m and p with 1 letters between": -6.5877257379615735,
2179
+ "has m and q with 0 letters between": -9.549556459839883,
2180
+ "has m and q with 1 letters between": -8.180069217036372,
2181
+ "has m and r with 0 letters between": -7.000111288914312,
2182
+ "has m and r with 1 letters between": -3.7422150914724845,
2183
+ "has m and s with 0 letters between": -5.15100052321479,
2184
+ "has m and s with 1 letters between": -4.164144386440913,
2185
+ "has m and t with 0 letters between": -7.17620229595763,
2186
+ "has m and t with 1 letters between": -4.095946208885811,
2187
+ "has m and u with 0 letters between": -4.556406480084647,
2188
+ "has m and u with 1 letters between": -5.285938056216303,
2189
+ "has m and v with 0 letters between": -8.163262098719994,
2190
+ "has m and v with 1 letters between": -7.121808223891831,
2191
+ "has m and w with 0 letters between": -7.512674532578843,
2192
+ "has m and w with 1 letters between": -7.453585616208836,
2193
+ "has m and x with 0 letters between": -9.038730836073892,
2194
+ "has m and x with 1 letters between": -6.736145743079847,
2195
+ "has m and y with 0 letters between": -5.808717266795235,
2196
+ "has m and y with 1 letters between": -6.1134210268164475,
2197
+ "has m and z with 0 letters between": -8.823619456456946,
2198
+ "has m and z with 1 letters between": -6.446465667965393,
2199
+ "has n and a with 0 letters between": -3.215684940590874,
2200
+ "has n and a with 1 letters between": -3.589926636251919,
2201
+ "has n and b with 0 letters between": -5.661826146980782,
2202
+ "has n and b with 1 letters between": -5.55196756608209,
2203
+ "has n and c with 0 letters between": -3.944735266599478,
2204
+ "has n and c with 1 letters between": -4.60982061550116,
2205
+ "has n and d with 0 letters between": -3.350265065529584,
2206
+ "has n and d with 1 letters between": -5.143650551376059,
2207
+ "has n and e with 0 letters between": -2.9365302473712447,
2208
+ "has n and e with 1 letters between": -3.0498696748360246,
2209
+ "has n and f with 0 letters between": -5.27753072038033,
2210
+ "has n and f with 1 letters between": -5.850726674872779,
2211
+ "has n and g with 0 letters between": -2.803144331266509,
2212
+ "has n and g with 1 letters between": -5.425653095376238,
2213
+ "has n and h with 0 letters between": -5.813475404241652,
2214
+ "has n and h with 1 letters between": -4.71539319774869,
2215
+ "has n and i with 0 letters between": -3.2851428398821856,
2216
+ "has n and i with 1 letters between": -3.575238071566872,
2217
+ "has n and j with 0 letters between": -6.344103655303823,
2218
+ "has n and j with 1 letters between": -7.5571262951496765,
2219
+ "has n and k with 0 letters between": -4.903244330520616,
2220
+ "has n and k with 1 letters between": -5.745861331297365,
2221
+ "has n and l with 0 letters between": -6.01149989546053,
2222
+ "has n and l with 1 letters between": -4.0491149092017125,
2223
+ "has n and m with 0 letters between": -6.312186052335518,
2224
+ "has n and m with 1 letters between": -4.8962312319647445,
2225
+ "has n and n with 0 letters between": -Infinity,
2226
+ "has n and n with 1 letters between": -Infinity,
2227
+ "has n and o with 0 letters between": -3.694293533912303,
2228
+ "has n and o with 1 letters between": -3.95064079557352,
2229
+ "has n and p with 0 letters between": -6.498704887064813,
2230
+ "has n and p with 1 letters between": -5.570498053075578,
2231
+ "has n and q with 0 letters between": -7.163856460135331,
2232
+ "has n and q with 1 letters between": -7.85088741367784,
2233
+ "has n and r with 0 letters between": -6.186868932939603,
2234
+ "has n and r with 1 letters between": -3.8553754879955378,
2235
+ "has n and s with 0 letters between": -3.2984235867353195,
2236
+ "has n and s with 1 letters between": -3.4089537747281877,
2237
+ "has n and t with 0 letters between": -3.077519332136932,
2238
+ "has n and t with 1 letters between": -3.9361850740442144,
2239
+ "has n and u with 0 letters between": -4.960515655781675,
2240
+ "has n and u with 1 letters between": -4.392802657613633,
2241
+ "has n and v with 0 letters between": -5.80083700536993,
2242
+ "has n and v with 1 letters between": -5.630888911693068,
2243
+ "has n and w with 0 letters between": -6.51140347040194,
2244
+ "has n and w with 1 letters between": -5.62956528476256,
2245
+ "has n and x with 0 letters between": -8.067951918915668,
2246
+ "has n and x with 1 letters between": -6.882328253257928,
2247
+ "has n and y with 0 letters between": -5.405364091890215,
2248
+ "has n and y with 1 letters between": -5.042366682211996,
2249
+ "has n and z with 0 letters between": -5.999939073059454,
2250
+ "has n and z with 1 letters between": -6.005702777776205,
2251
+ "has o and a with 0 letters between": -4.974158432185462,
2252
+ "has o and a with 1 letters between": -3.437202595456448,
2253
+ "has o and b with 0 letters between": -4.732505914816293,
2254
+ "has o and b with 1 letters between": -5.090568784029873,
2255
+ "has o and c with 0 letters between": -4.185763511332935,
2256
+ "has o and c with 1 letters between": -4.758183370349864,
2257
+ "has o and d with 0 letters between": -4.27484895893098,
2258
+ "has o and d with 1 letters between": -3.974870780740339,
2259
+ "has o and e with 0 letters between": -5.319322176925133,
2260
+ "has o and e with 1 letters between": -3.050371103919389,
2261
+ "has o and f with 0 letters between": -5.170868726431516,
2262
+ "has o and f with 1 letters between": -5.1291107152620565,
2263
+ "has o and g with 0 letters between": -4.354749469661511,
2264
+ "has o and g with 1 letters between": -4.643294514490093,
2265
+ "has o and h with 0 letters between": -5.692341690906732,
2266
+ "has o and h with 1 letters between": -4.574663491063801,
2267
+ "has o and i with 0 letters between": -4.893693159536274,
2268
+ "has o and i with 1 letters between": -3.2076698104589347,
2269
+ "has o and j with 0 letters between": -6.959289294394057,
2270
+ "has o and j with 1 letters between": -7.267174074163357,
2271
+ "has o and k with 0 letters between": -4.991477881385642,
2272
+ "has o and k with 1 letters between": -4.520426583107463,
2273
+ "has o and l with 0 letters between": -3.3687119915704997,
2274
+ "has o and l with 1 letters between": -4.189203702372394,
2275
+ "has o and m with 0 letters between": -3.7147457227772787,
2276
+ "has o and m with 1 letters between": -4.6861330120908224,
2277
+ "has o and n with 0 letters between": -2.4712148802822114,
2278
+ "has o and n with 1 letters between": -4.027562350815979,
2279
+ "has o and o with 0 letters between": -Infinity,
2280
+ "has o and o with 1 letters between": -Infinity,
2281
+ "has o and p with 0 letters between": -4.118457982058027,
2282
+ "has o and p with 1 letters between": -4.6902609849288535,
2283
+ "has o and q with 0 letters between": -7.622877672712457,
2284
+ "has o and q with 1 letters between": -7.714311878672089,
2285
+ "has o and r with 0 letters between": -2.8491534073769476,
2286
+ "has o and r with 1 letters between": -4.174586741770764,
2287
+ "has o and s with 0 letters between": -3.5686474266714168,
2288
+ "has o and s with 1 letters between": -3.2984235867353195,
2289
+ "has o and t with 0 letters between": -3.881746645642499,
2290
+ "has o and t with 1 letters between": -3.5012391011391184,
2291
+ "has o and u with 0 letters between": -3.5544319519004137,
2292
+ "has o and u with 1 letters between": -4.931141047101771,
2293
+ "has o and v with 0 letters between": -4.444823842364512,
2294
+ "has o and v with 1 letters between": -5.947688382715577,
2295
+ "has o and w with 0 letters between": -4.393955395493442,
2296
+ "has o and w with 1 letters between": -6.50503402211646,
2297
+ "has o and x with 0 letters between": -5.644222442562533,
2298
+ "has o and x with 1 letters between": -7.632633847657822,
2299
+ "has o and y with 0 letters between": -5.565522918435465,
2300
+ "has o and y with 1 letters between": -4.670296154919478,
2301
+ "has o and z with 0 letters between": -6.196149742014076,
2302
+ "has o and z with 1 letters between": -6.681657557795777,
2303
+ "has p and a with 0 letters between": -3.6912424255194054,
2304
+ "has p and a with 1 letters between": -4.396650296065704,
2305
+ "has p and b with 0 letters between": -7.594167566830026,
2306
+ "has p and b with 1 letters between": -6.9949164720372075,
2307
+ "has p and c with 0 letters between": -7.087122665903942,
2308
+ "has p and c with 1 letters between": -5.081352128924949,
2309
+ "has p and d with 0 letters between": -7.344951775206041,
2310
+ "has p and d with 1 letters between": -5.415991184464501,
2311
+ "has p and e with 0 letters between": -3.543531761400571,
2312
+ "has p and e with 1 letters between": -3.9819756063640828,
2313
+ "has p and f with 0 letters between": -7.170010325709709,
2314
+ "has p and f with 1 letters between": -7.575475433817873,
2315
+ "has p and g with 0 letters between": -7.803259364688586,
2316
+ "has p and g with 1 letters between": -6.288899100956727,
2317
+ "has p and h with 0 letters between": -4.339706074614177,
2318
+ "has p and h with 1 letters between": -7.2206540585284635,
2319
+ "has p and i with 0 letters between": -4.097088413464588,
2320
+ "has p and i with 1 letters between": -4.249241090629173,
2321
+ "has p and j with 0 letters between": -9.261874387388103,
2322
+ "has p and j with 1 letters between": -8.791870758142366,
2323
+ "has p and k with 0 letters between": -7.757796990611828,
2324
+ "has p and k with 1 letters between": -6.873111598153004,
2325
+ "has p and l with 0 letters between": -4.464844940125567,
2326
+ "has p and l with 1 letters between": -4.496287479994106,
2327
+ "has p and m with 0 letters between": -7.1824328457082665,
2328
+ "has p and m with 1 letters between": -6.473781478612356,
2329
+ "has p and n with 0 letters between": -7.214181544022846,
2330
+ "has p and n with 1 letters between": -4.304991549291094,
2331
+ "has p and o with 0 letters between": -3.861903367113566,
2332
+ "has p and o with 1 letters between": -4.1538099479602995,
2333
+ "has p and p with 0 letters between": -Infinity,
2334
+ "has p and p with 1 letters between": -Infinity,
2335
+ "has p and q with 0 letters between": -9.955021567948048,
2336
+ "has p and q with 1 letters between": -8.473417027023832,
2337
+ "has p and r with 0 letters between": -3.9481759188017627,
2338
+ "has p and r with 1 letters between": -3.685546568085016,
2339
+ "has p and s with 0 letters between": -5.019109820047728,
2340
+ "has p and s with 1 letters between": -4.700133759327347,
2341
+ "has p and t with 0 letters between": -5.144464552235005,
2342
+ "has p and t with 1 letters between": -4.63006227045359,
2343
+ "has p and u with 0 letters between": -4.921972679014892,
2344
+ "has p and u with 1 letters between": -5.638867677424874,
2345
+ "has p and v with 0 letters between": -8.325781028217767,
2346
+ "has p and v with 1 letters between": -7.145618872585549,
2347
+ "has p and w with 0 letters between": -7.791698542287509,
2348
+ "has p and w with 1 letters between": -6.772809727451438,
2349
+ "has p and x with 0 letters between": -9.36723490304593,
2350
+ "has p and x with 1 letters between": -7.803259364688586,
2351
+ "has p and y with 0 letters between": -6.1483590781777275,
2352
+ "has p and y with 1 letters between": -5.53257301877525,
2353
+ "has p and z with 0 letters between": -9.772700011154093,
2354
+ "has p and z with 1 letters between": -7.60364631078457,
2355
+ "has q and a with 0 letters between": -7.461816115345352,
2356
+ "has q and a with 1 letters between": -5.80083700536993,
2357
+ "has q and b with 0 letters between": -9.618549331326834,
2358
+ "has q and b with 1 letters between": -9.261874387388103,
2359
+ "has q and c with 0 letters between": -10.060382083605873,
2360
+ "has q and c with 1 letters between": -10.060382083605873,
2361
+ "has q and d with 0 letters between": -10.31169651188678,
2362
+ "has q and d with 1 letters between": -8.890310830955618,
2363
+ "has q and e with 0 letters between": -9.549556459839883,
2364
+ "has q and e with 1 letters between": -5.507675467153523,
2365
+ "has q and f with 0 letters between": -10.178165119262257,
2366
+ "has q and f with 1 letters between": -10.648168748507993,
2367
+ "has q and g with 0 letters between": -11.158994372273984,
2368
+ "has q and g with 1 letters between": -12.257606660942093,
2369
+ "has q and h with 0 letters between": -10.465847191714039,
2370
+ "has q and h with 1 letters between": -9.618549331326834,
2371
+ "has q and i with 0 letters between": -7.980940541926038,
2372
+ "has q and i with 1 letters between": -5.550744324339346,
2373
+ "has q and j with 0 letters between": -12.257606660942093,
2374
+ "has q and j with 1 letters between": -11.564459480382148,
2375
+ "has q and k with 0 letters between": -12.257606660942093,
2376
+ "has q and k with 1 letters between": -12.257606660942093,
2377
+ "has q and l with 0 letters between": -9.618549331326834,
2378
+ "has q and l with 1 letters between": -9.36723490304593,
2379
+ "has q and m with 0 letters between": -9.692657303480557,
2380
+ "has q and m with 1 letters between": -9.618549331326834,
2381
+ "has q and n with 0 letters between": -10.060382083605873,
2382
+ "has q and n with 1 letters between": -8.856409279279937,
2383
+ "has q and o with 0 letters between": -9.424393316885876,
2384
+ "has q and o with 1 letters between": -7.746747154425243,
2385
+ "has q and p with 0 letters between": -10.178165119262257,
2386
+ "has q and p with 1 letters between": -10.465847191714039,
2387
+ "has q and q with 0 letters between": -Infinity,
2388
+ "has q and q with 1 letters between": -Infinity,
2389
+ "has q and r with 0 letters between": -9.313167681775653,
2390
+ "has q and r with 1 letters between": -8.64668874829787,
2391
+ "has q and s with 0 letters between": -8.64668874829787,
2392
+ "has q and s with 1 letters between": -8.64668874829787,
2393
+ "has q and t with 0 letters between": -9.549556459839883,
2394
+ "has q and t with 1 letters between": -9.079552830594148,
2395
+ "has q and u with 0 letters between": -4.4852750857724795,
2396
+ "has q and u with 1 letters between": -10.178165119262257,
2397
+ "has q and v with 0 letters between": -9.955021567948048,
2398
+ "has q and v with 1 letters between": -12.257606660942093,
2399
+ "has q and w with 0 letters between": -10.871312299822202,
2400
+ "has q and w with 1 letters between": -10.871312299822202,
2401
+ "has q and x with 0 letters between": -11.564459480382148,
2402
+ "has q and x with 1 letters between": -12.257606660942093,
2403
+ "has q and y with 0 letters between": -11.564459480382148,
2404
+ "has q and y with 1 letters between": -9.549556459839883,
2405
+ "has q and z with 0 letters between": -12.257606660942093,
2406
+ "has q and z with 1 letters between": -11.564459480382148,
2407
+ "has r and a with 0 letters between": -2.6458761388997765,
2408
+ "has r and a with 1 letters between": -3.336282584430828,
2409
+ "has r and b with 0 letters between": -4.963229361653272,
2410
+ "has r and b with 1 letters between": -4.781134279778188,
2411
+ "has r and c with 0 letters between": -4.651219271169441,
2412
+ "has r and c with 1 letters between": -3.8961320445252756,
2413
+ "has r and d with 0 letters between": -4.125487887986287,
2414
+ "has r and d with 1 letters between": -4.117582708479173,
2415
+ "has r and e with 0 letters between": -2.605726436720756,
2416
+ "has r and e with 1 letters between": -3.261697899678099,
2417
+ "has r and f with 0 letters between": -5.71657666175219,
2418
+ "has r and f with 1 letters between": -5.044575001107224,
2419
+ "has r and g with 0 letters between": -4.557311457521976,
2420
+ "has r and g with 1 letters between": -4.676396834745747,
2421
+ "has r and h with 0 letters between": -5.849077869882595,
2422
+ "has r and h with 1 letters between": -4.437970358574501,
2423
+ "has r and i with 0 letters between": -2.734501436146667,
2424
+ "has r and i with 1 letters between": -3.4960565218124486,
2425
+ "has r and j with 0 letters between": -7.453585616208836,
2426
+ "has r and j with 1 letters between": -6.574026893603412,
2427
+ "has r and k with 0 letters between": -5.0076811242241055,
2428
+ "has r and k with 1 letters between": -5.674197438783328,
2429
+ "has r and l with 0 letters between": -4.916122808578932,
2430
+ "has r and l with 1 letters between": -4.205310161403446,
2431
+ "has r and m with 0 letters between": -4.4525396166836035,
2432
+ "has r and m with 1 letters between": -4.158963817182675,
2433
+ "has r and n with 0 letters between": -4.416506895519974,
2434
+ "has r and n with 1 letters between": -3.349453047620573,
2435
+ "has r and o with 0 letters between": -2.9568772892382302,
2436
+ "has r and o with 1 letters between": -3.8411181736474873,
2437
+ "has r and p with 0 letters between": -5.332994264893533,
2438
+ "has r and p with 1 letters between": -4.337886900017518,
2439
+ "has r and q with 0 letters between": -7.495432726144337,
2440
+ "has r and q with 1 letters between": -7.157740233117894,
2441
+ "has r and r with 0 letters between": -Infinity,
2442
+ "has r and r with 1 letters between": -Infinity,
2443
+ "has r and s with 0 letters between": -3.430872062721182,
2444
+ "has r and s with 1 letters between": -3.282608947737117,
2445
+ "has r and t with 0 letters between": -3.803566284531124,
2446
+ "has r and t with 1 letters between": -3.7131874832722644,
2447
+ "has r and u with 0 letters between": -4.218126741841644,
2448
+ "has r and u with 1 letters between": -4.442399598753005,
2449
+ "has r and v with 0 letters between": -5.55196756608209,
2450
+ "has r and v with 1 letters between": -4.934435942998624,
2451
+ "has r and w with 0 letters between": -6.241449501243739,
2452
+ "has r and w with 1 letters between": -5.35687599689692,
2453
+ "has r and x with 0 letters between": -8.925402150766889,
2454
+ "has r and x with 1 letters between": -6.440495500978889,
2455
+ "has r and y with 0 letters between": -4.4232143580316565,
2456
+ "has r and y with 1 letters between": -4.925237455013031,
2457
+ "has r and z with 0 letters between": -6.929730492152512,
2458
+ "has r and z with 1 letters between": -5.5983127412584555,
2459
+ "has s and a with 0 letters between": -3.5980462282389336,
2460
+ "has s and a with 1 letters between": -3.3113620516115496,
2461
+ "has s and b with 0 letters between": -5.870727341579448,
2462
+ "has s and b with 1 letters between": -5.066930626609886,
2463
+ "has s and c with 0 letters between": -3.968820850515165,
2464
+ "has s and c with 1 letters between": -4.984514064942571,
2465
+ "has s and d with 0 letters between": -6.557163087551407,
2466
+ "has s and d with 1 letters between": -4.924583646555612,
2467
+ "has s and e with 0 letters between": -3.206731063616937,
2468
+ "has s and e with 1 letters between": -3.3151457341215114,
2469
+ "has s and f with 0 letters between": -6.458514006481567,
2470
+ "has s and f with 1 letters between": -5.990406112400731,
2471
+ "has s and g with 0 letters between": -7.010582588781607,
2472
+ "has s and g with 1 letters between": -5.75481661502647,
2473
+ "has s and h with 0 letters between": -3.5222422598382046,
2474
+ "has s and h with 1 letters between": -4.825714744134293,
2475
+ "has s and i with 0 letters between": -3.4562877132768524,
2476
+ "has s and i with 1 letters between": -3.4119734046019072,
2477
+ "has s and j with 0 letters between": -8.250273475709623,
2478
+ "has s and j with 1 letters between": -8.023500156344834,
2479
+ "has s and k with 0 letters between": -4.90516556069851,
2480
+ "has s and k with 1 letters between": -6.061162533147573,
2481
+ "has s and l with 0 letters between": -4.879222947945379,
2482
+ "has s and l with 1 letters between": -4.229151496827841,
2483
+ "has s and m with 0 letters between": -4.6990899178964485,
2484
+ "has s and m with 1 letters between": -4.6861330120908224,
2485
+ "has s and n with 0 letters between": -5.616424491201502,
2486
+ "has s and n with 1 letters between": -3.7474380844628197,
2487
+ "has s and o with 0 letters between": -3.903403098020318,
2488
+ "has s and o with 1 letters between": -3.6338936261481827,
2489
+ "has s and p with 0 letters between": -4.266352731101895,
2490
+ "has s and p with 1 letters between": -5.255450706538472,
2491
+ "has s and q with 0 letters between": -6.517813748762859,
2492
+ "has s and q with 1 letters between": -7.82678986209878,
2493
+ "has s and r with 0 letters between": -6.6335891547547545,
2494
+ "has s and r with 1 letters between": -3.6640081383234495,
2495
+ "has s and s with 0 letters between": -Infinity,
2496
+ "has s and s with 1 letters between": -Infinity,
2497
+ "has s and t with 0 letters between": -2.7700892011592764,
2498
+ "has s and t with 1 letters between": -4.805204209718455,
2499
+ "has s and u with 0 letters between": -4.094520285358877,
2500
+ "has s and u with 1 letters between": -4.4562153406506075,
2501
+ "has s and v with 0 letters between": -6.810869289275783,
2502
+ "has s and v with 1 letters between": -5.779097018733524,
2503
+ "has s and w with 0 letters between": -5.55441854770123,
2504
+ "has s and w with 1 letters between": -6.414062243910733,
2505
+ "has s and x with 0 letters between": -8.999510122920611,
2506
+ "has s and x with 1 letters between": -7.021164698112144,
2507
+ "has s and y with 0 letters between": -5.380310589444664,
2508
+ "has s and y with 1 letters between": -5.038696953323033,
2509
+ "has s and z with 0 letters between": -7.56625877871295,
2510
+ "has s and z with 1 letters between": -7.201360855593785,
2511
+ "has t and a with 0 letters between": -3.0953017380044674,
2512
+ "has t and a with 1 letters between": -3.6454669922169014,
2513
+ "has t and b with 0 letters between": -6.464593052557949,
2514
+ "has t and b with 1 letters between": -5.2925263153406865,
2515
+ "has t and c with 0 letters between": -5.300109290065142,
2516
+ "has t and c with 1 letters between": -4.258599447698138,
2517
+ "has t and d with 0 letters between": -7.413419574483502,
2518
+ "has t and d with 1 letters between": -4.426783665806777,
2519
+ "has t and e with 0 letters between": -2.626846889075935,
2520
+ "has t and e with 1 letters between": -3.5064486795800622,
2521
+ "has t and f with 0 letters between": -6.514603473132611,
2522
+ "has t and f with 1 letters between": -5.744376550029786,
2523
+ "has t and g with 0 letters between": -7.227168739549658,
2524
+ "has t and g with 1 letters between": -5.440870780347125,
2525
+ "has t and h with 0 letters between": -3.5392701584913127,
2526
+ "has t and h with 1 letters between": -5.227633749235707,
2527
+ "has t and i with 0 letters between": -2.6739112347759804,
2528
+ "has t and i with 1 letters between": -3.8769207141805193,
2529
+ "has t and j with 0 letters between": -8.28731474738997,
2530
+ "has t and j with 1 letters between": -7.900897834252501,
2531
+ "has t and k with 0 letters between": -7.344951775206041,
2532
+ "has t and k with 1 letters between": -5.869045255396463,
2533
+ "has t and l with 0 letters between": -4.99989898378205,
2534
+ "has t and l with 1 letters between": -4.137017949201823,
2535
+ "has t and m with 0 letters between": -6.019282035902585,
2536
+ "has t and m with 1 letters between": -4.586245737751449,
2537
+ "has t and n with 0 letters between": -6.45548828556503,
2538
+ "has t and n with 1 letters between": -3.340832304576667,
2539
+ "has t and o with 0 letters between": -3.2339573782778075,
2540
+ "has t and o with 1 letters between": -3.399806933766188,
2541
+ "has t and p with 0 letters between": -6.828261031987652,
2542
+ "has t and p with 1 letters between": -5.227633749235707,
2543
+ "has t and q with 0 letters between": -9.955021567948048,
2544
+ "has t and q with 1 letters between": -7.613215761800721,
2545
+ "has t and r with 0 letters between": -3.4361693087750957,
2546
+ "has t and r with 1 letters between": -3.1188697078256027,
2547
+ "has t and s with 0 letters between": -3.8923998265237376,
2548
+ "has t and s with 1 letters between": -3.9924710310047082,
2549
+ "has t and t with 0 letters between": -Infinity,
2550
+ "has t and t with 1 letters between": -Infinity,
2551
+ "has t and u with 0 letters between": -4.238651977786375,
2552
+ "has t and u with 1 letters between": -4.771554043078953,
2553
+ "has t and v with 0 letters between": -6.969339630247558,
2554
+ "has t and v with 1 letters between": -5.123512939749227,
2555
+ "has t and w with 0 letters between": -5.854032463007278,
2556
+ "has t and w with 1 letters between": -5.927885755419397,
2557
+ "has t and x with 0 letters between": -8.856409279279937,
2558
+ "has t and x with 1 letters between": -6.479954337719437,
2559
+ "has t and y with 0 letters between": -4.566863497400221,
2560
+ "has t and y with 1 letters between": -5.2383100072270485,
2561
+ "has t and z with 0 letters between": -5.772971425306841,
2562
+ "has t and z with 1 letters between": -6.6666196804312365,
2563
+ "has u and a with 0 letters between": -4.730889099589387,
2564
+ "has u and a with 1 letters between": -3.8891455233262544,
2565
+ "has u and b with 0 letters between": -4.808108655559244,
2566
+ "has u and b with 1 letters between": -5.276600920220363,
2567
+ "has u and c with 0 letters between": -4.5989071026737935,
2568
+ "has u and c with 1 letters between": -4.943053828618013,
2569
+ "has u and d with 0 letters between": -4.841228181749165,
2570
+ "has u and d with 1 letters between": -4.583918531674363,
2571
+ "has u and e with 0 letters between": -4.587644665468516,
2572
+ "has u and e with 1 letters between": -3.8140600096941544,
2573
+ "has u and f with 0 letters between": -5.867365993876743,
2574
+ "has u and f with 1 letters between": -5.584308693174439,
2575
+ "has u and g with 0 letters between": -5.0126651146050865,
2576
+ "has u and g with 1 letters between": -4.963229361653272,
2577
+ "has u and h with 0 letters between": -6.772809727451438,
2578
+ "has u and h with 1 letters between": -4.675887020816785,
2579
+ "has u and i with 0 letters between": -4.734665742869723,
2580
+ "has u and i with 1 letters between": -3.981211956078786,
2581
+ "has u and j with 0 letters between": -7.053599973865298,
2582
+ "has u and j with 1 letters between": -7.82678986209878,
2583
+ "has u and k with 0 letters between": -5.642881060738333,
2584
+ "has u and k with 1 letters between": -5.295363196675886,
2585
+ "has u and l with 0 letters between": -3.878067634824651,
2586
+ "has u and l with 1 letters between": -4.39433993693252,
2587
+ "has u and m with 0 letters between": -4.168124186581339,
2588
+ "has u and m with 1 letters between": -5.709387558179721,
2589
+ "has u and n with 0 letters between": -3.486081376755628,
2590
+ "has u and n with 1 letters between": -4.770993347802138,
2591
+ "has u and o with 0 letters between": -6.236583311592566,
2592
+ "has u and o with 1 letters between": -4.837027755531293,
2593
+ "has u and p with 0 letters between": -4.890529601061081,
2594
+ "has u and p with 1 letters between": -5.40642173344835,
2595
+ "has u and q with 0 letters between": -8.473417027023832,
2596
+ "has u and q with 1 letters between": -8.28731474738997,
2597
+ "has u and r with 0 letters between": -3.438828491905083,
2598
+ "has u and r with 1 letters between": -4.813942977826502,
2599
+ "has u and s with 0 letters between": -3.5010816580151207,
2600
+ "has u and s with 1 letters between": -4.266352731101895,
2601
+ "has u and t with 0 letters between": -4.053208242792712,
2602
+ "has u and t with 1 letters between": -3.9663108090366865,
2603
+ "has u and u with 0 letters between": -Infinity,
2604
+ "has u and u with 1 letters between": -Infinity,
2605
+ "has u and v with 0 letters between": -6.422795923879488,
2606
+ "has u and v with 1 letters between": -6.674110352160394,
2607
+ "has u and w with 0 letters between": -7.68289568243871,
2608
+ "has u and w with 1 letters between": -6.969339630247558,
2609
+ "has u and x with 0 letters between": -6.537294884334681,
2610
+ "has u and x with 1 letters between": -9.485017938702311,
2611
+ "has u and y with 0 letters between": -7.000111288914312,
2612
+ "has u and y with 1 letters between": -6.1731072478669216,
2613
+ "has u and z with 0 letters between": -6.479954337719437,
2614
+ "has u and z with 1 letters between": -6.629985547251456,
2615
+ "has v and a with 0 letters between": -4.236678941960516,
2616
+ "has v and a with 1 letters between": -6.039006541250364,
2617
+ "has v and b with 0 letters between": -8.791870758142366,
2618
+ "has v and b with 1 letters between": -7.337625735113968,
2619
+ "has v and c with 0 letters between": -8.067951918915668,
2620
+ "has v and c with 1 letters between": -5.789907934837739,
2621
+ "has v and d with 0 letters between": -8.268622614377819,
2622
+ "has v and d with 1 letters between": -5.913726226815762,
2623
+ "has v and e with 0 letters between": -3.5155114651967825,
2624
+ "has v and e with 1 letters between": -6.069342537859503,
2625
+ "has v and f with 0 letters between": -8.925402150766889,
2626
+ "has v and f with 1 letters between": -8.70225859945268,
2627
+ "has v and g with 0 letters between": -8.519937042658725,
2628
+ "has v and g with 1 letters between": -6.6892621571809965,
2629
+ "has v and h with 0 letters between": -8.791870758142366,
2630
+ "has v and h with 1 letters between": -7.994926783900778,
2631
+ "has v and i with 0 letters between": -3.9435093255362865,
2632
+ "has v and i with 1 letters between": -6.371502629491937,
2633
+ "has v and j with 0 letters between": -11.158994372273984,
2634
+ "has v and j with 1 letters between": -8.544034594237786,
2635
+ "has v and k with 0 letters between": -9.079552830594148,
2636
+ "has v and k with 1 letters between": -6.974402932204105,
2637
+ "has v and l with 0 letters between": -7.344951775206041,
2638
+ "has v and l with 1 letters between": -4.532276623024958,
2639
+ "has v and m with 0 letters between": -8.365786362831466,
2640
+ "has v and m with 1 letters between": -7.352331882503663,
2641
+ "has v and n with 0 letters between": -7.85088741367784,
2642
+ "has v and n with 1 letters between": -4.611252938496094,
2643
+ "has v and o with 0 letters between": -5.086718182429588,
2644
+ "has v and o with 1 letters between": -6.704647076020476,
2645
+ "has v and p with 0 letters between": -8.473417027023832,
2646
+ "has v and p with 1 letters between": -7.85088741367784,
2647
+ "has v and q with 0 letters between": -10.871312299822202,
2648
+ "has v and q with 1 letters between": -10.060382083605873,
2649
+ "has v and r with 0 letters between": -6.979492001711575,
2650
+ "has v and r with 1 letters between": -4.233071789336398,
2651
+ "has v and s with 0 letters between": -6.850434889481974,
2652
+ "has v and s with 1 letters between": -5.010526076356337,
2653
+ "has v and t with 0 letters between": -8.345583655513947,
2654
+ "has v and t with 1 letters between": -5.456323626470473,
2655
+ "has v and u with 0 letters between": -7.042670903333107,
2656
+ "has v and u with 1 letters between": -7.042670903333107,
2657
+ "has v and v with 0 letters between": -Infinity,
2658
+ "has v and v with 1 letters between": -Infinity,
2659
+ "has v and w with 0 letters between": -10.178165119262257,
2660
+ "has v and w with 1 letters between": -8.568727206828157,
2661
+ "has v and x with 0 letters between": -10.178165119262257,
2662
+ "has v and x with 1 letters between": -8.674087722485982,
2663
+ "has v and y with 0 letters between": -7.548076459629759,
2664
+ "has v and y with 1 letters between": -7.092820687018579,
2665
+ "has v and z with 0 letters between": -10.31169651188678,
2666
+ "has v and z with 1 letters between": -8.067951918915668,
2667
+ "has w and a with 0 letters between": -4.068362135206192,
2668
+ "has w and a with 1 letters between": -5.751822600813864,
2669
+ "has w and b with 0 letters between": -7.151661187041513,
2670
+ "has w and b with 1 letters between": -7.005333232895463,
2671
+ "has w and c with 0 letters between": -7.703729769341552,
2672
+ "has w and c with 1 letters between": -6.5605131744366885,
2673
+ "has w and d with 0 letters between": -7.098551361727564,
2674
+ "has w and d with 1 letters between": -6.363203826677243,
2675
+ "has w and e with 0 letters between": -4.466083841791361,
2676
+ "has w and e with 1 letters between": -5.375169189944246,
2677
+ "has w and f with 0 letters between": -7.652436474954001,
2678
+ "has w and f with 1 letters between": -7.632633847657822,
2679
+ "has w and g with 0 letters between": -8.232254970206943,
2680
+ "has w and g with 1 letters between": -6.806568207376393,
2681
+ "has w and h with 0 letters between": -5.550744324339346,
2682
+ "has w and h with 1 letters between": -7.081456928368264,
2683
+ "has w and i with 0 letters between": -4.531835219354141,
2684
+ "has w and i with 1 letters between": -5.276600920220363,
2685
+ "has w and j with 0 letters between": -9.36723490304593,
2686
+ "has w and j with 1 letters between": -8.594045014812448,
2687
+ "has w and k with 0 letters between": -7.445422305569676,
2688
+ "has w and k with 1 letters between": -6.716343115783667,
2689
+ "has w and l with 0 letters between": -6.464593052557949,
2690
+ "has w and l with 1 letters between": -4.980358934310609,
2691
+ "has w and m with 0 letters between": -7.539107789646999,
2692
+ "has w and m with 1 letters between": -6.828261031987652,
2693
+ "has w and n with 0 letters between": -5.7473483204189435,
2694
+ "has w and n with 1 letters between": -5.04016322924556,
2695
+ "has w and o with 0 letters between": -4.806945864730554,
2696
+ "has w and o with 1 letters between": -5.531373258583346,
2697
+ "has w and p with 0 letters between": -7.803259364688586,
2698
+ "has w and p with 1 letters between": -7.521408212547597,
2699
+ "has w and q with 0 letters between": -10.871312299822202,
2700
+ "has w and q with 1 letters between": -10.465847191714039,
2701
+ "has w and r with 0 letters between": -6.328017517552198,
2702
+ "has w and r with 1 letters between": -4.66877678263428,
2703
+ "has w and s with 0 letters between": -5.855689464214907,
2704
+ "has w and s with 1 letters between": -5.51472602515019,
2705
+ "has w and t with 0 letters between": -7.260394387177978,
2706
+ "has w and t with 1 letters between": -5.484526285286558,
2707
+ "has w and u with 0 letters between": -7.382409337740942,
2708
+ "has w and u with 1 letters between": -7.445422305569676,
2709
+ "has w and v with 0 letters between": -9.772700011154093,
2710
+ "has w and v with 1 letters between": -7.539107789646999,
2711
+ "has w and w with 0 letters between": -Infinity,
2712
+ "has w and w with 1 letters between": -Infinity,
2713
+ "has w and x with 0 letters between": -10.648168748507993,
2714
+ "has w and x with 1 letters between": -8.620020501215707,
2715
+ "has w and y with 0 letters between": -6.9949164720372075,
2716
+ "has w and y with 1 letters between": -6.115569255354737,
2717
+ "has w and z with 0 letters between": -9.772700011154093,
2718
+ "has w and z with 1 letters between": -8.114471934550561,
2719
+ "has x and a with 0 letters between": -6.486165537812077,
2720
+ "has x and a with 1 letters between": -6.648134865757133,
2721
+ "has x and b with 0 letters between": -8.568727206828157,
2722
+ "has x and b with 1 letters between": -8.674087722485982,
2723
+ "has x and c with 0 letters between": -6.873111598153004,
2724
+ "has x and c with 1 letters between": -7.1824328457082665,
2725
+ "has x and d with 0 letters between": -9.36723490304593,
2726
+ "has x and d with 1 letters between": -7.315964238332789,
2727
+ "has x and e with 0 letters between": -6.222125228417337,
2728
+ "has x and e with 1 letters between": -6.291459921818401,
2729
+ "has x and f with 0 letters between": -8.496406545248531,
2730
+ "has x and f with 1 letters between": -9.313167681775653,
2731
+ "has x and g with 0 letters between": -10.178165119262257,
2732
+ "has x and g with 1 letters between": -8.306362942360666,
2733
+ "has x and h with 0 letters between": -7.980940541926038,
2734
+ "has x and h with 1 letters between": -9.038730836073892,
2735
+ "has x and i with 0 letters between": -5.644222442562533,
2736
+ "has x and i with 1 letters between": -6.989748501878765,
2737
+ "has x and j with 0 letters between": -11.158994372273984,
2738
+ "has x and j with 1 letters between": -12.257606660942093,
2739
+ "has x and k with 0 letters between": -10.871312299822202,
2740
+ "has x and k with 1 letters between": -11.158994372273984,
2741
+ "has x and l with 0 letters between": -8.130472275897002,
2742
+ "has x and l with 1 letters between": -6.651804594646095,
2743
+ "has x and m with 0 letters between": -8.594045014812448,
2744
+ "has x and m with 1 letters between": -7.081456928368264,
2745
+ "has x and n with 0 letters between": -9.485017938702311,
2746
+ "has x and n with 1 letters between": -6.486165537812077,
2747
+ "has x and o with 0 letters between": -7.000111288914312,
2748
+ "has x and o with 1 letters between": -6.802285545584391,
2749
+ "has x and p with 0 letters between": -6.393975485343996,
2750
+ "has x and p with 1 letters between": -8.70225859945268,
2751
+ "has x and q with 0 letters between": -10.31169651188678,
2752
+ "has x and q with 1 letters between": -11.158994372273984,
2753
+ "has x and r with 0 letters between": -9.313167681775653,
2754
+ "has x and r with 1 letters between": -6.492415558157249,
2755
+ "has x and s with 0 letters between": -7.632633847657822,
2756
+ "has x and s with 1 letters between": -6.776967737600102,
2757
+ "has x and t with 0 letters between": -6.1242086179454445,
2758
+ "has x and t with 1 letters between": -7.662486810807503,
2759
+ "has x and u with 0 letters between": -7.495432726144337,
2760
+ "has x and u with 1 letters between": -7.662486810807503,
2761
+ "has x and v with 0 letters between": -8.519937042658725,
2762
+ "has x and v with 1 letters between": -8.519937042658725,
2763
+ "has x and w with 0 letters between": -9.261874387388103,
2764
+ "has x and w with 1 letters between": -10.31169651188678,
2765
+ "has x and x with 0 letters between": -Infinity,
2766
+ "has x and x with 1 letters between": -Infinity,
2767
+ "has x and y with 0 letters between": -7.253660354996634,
2768
+ "has x and y with 1 letters between": -9.261874387388103,
2769
+ "has x and z with 0 letters between": -11.158994372273984,
2770
+ "has x and z with 1 letters between": -9.955021567948048,
2771
+ "has y and a with 0 letters between": -4.666754537253512,
2772
+ "has y and a with 1 letters between": -5.286876582798568,
2773
+ "has y and b with 0 letters between": -6.567247206618033,
2774
+ "has y and b with 1 letters between": -7.445422305569676,
2775
+ "has y and c with 0 letters between": -5.813475404241652,
2776
+ "has y and c with 1 letters between": -6.959289294394057,
2777
+ "has y and d with 0 letters between": -6.100627675356538,
2778
+ "has y and d with 1 letters between": -6.524265384044347,
2779
+ "has y and e with 0 letters between": -5.213573763667408,
2780
+ "has y and e with 1 letters between": -4.921321000920796,
2781
+ "has y and f with 0 letters between": -7.445422305569676,
2782
+ "has y and f with 1 letters between": -8.428965264452998,
2783
+ "has y and g with 0 letters between": -7.104315066444314,
2784
+ "has y and g with 1 letters between": -7.267174074163357,
2785
+ "has y and h with 0 letters between": -7.803259364688586,
2786
+ "has y and h with 1 letters between": -5.954987685197188,
2787
+ "has y and i with 0 letters between": -6.05507114375417,
2788
+ "has y and i with 1 letters between": -5.51708730133587,
2789
+ "has y and j with 0 letters between": -9.424393316885876,
2790
+ "has y and j with 1 letters between": -9.079552830594148,
2791
+ "has y and k with 0 letters between": -7.512674532578843,
2792
+ "has y and k with 1 letters between": -6.896314495232668,
2793
+ "has y and l with 0 letters between": -5.452992140879469,
2794
+ "has y and l with 1 letters between": -5.971608566433228,
2795
+ "has y and m with 0 letters between": -5.71657666175219,
2796
+ "has y and m with 1 letters between": -6.601614850122241,
2797
+ "has y and n with 0 letters between": -5.353859403357495,
2798
+ "has y and n with 1 letters between": -5.274743909473151,
2799
+ "has y and o with 0 letters between": -5.399041626150728,
2800
+ "has y and o with 1 letters between": -5.269193478942501,
2801
+ "has y and p with 0 letters between": -5.71657666175219,
2802
+ "has y and p with 1 letters between": -6.873111598153004,
2803
+ "has y and q with 0 letters between": -10.465847191714039,
2804
+ "has y and q with 1 letters between": -10.060382083605873,
2805
+ "has y and r with 0 letters between": -5.944058614664998,
2806
+ "has y and r with 1 letters between": -5.475414604935302,
2807
+ "has y and s with 0 letters between": -4.653210312145755,
2808
+ "has y and s with 1 letters between": -5.915485242220941,
2809
+ "has y and t with 0 letters between": -5.875790643535995,
2810
+ "has y and t with 1 letters between": -5.819855011205692,
2811
+ "has y and u with 0 letters between": -6.263645233635524,
2812
+ "has y and u with 1 letters between": -6.422795923879488,
2813
+ "has y and v with 0 letters between": -8.114471934550561,
2814
+ "has y and v with 1 letters between": -7.521408212547597,
2815
+ "has y and w with 0 letters between": -7.294762030682186,
2816
+ "has y and w with 1 letters between": -8.130472275897002,
2817
+ "has y and x with 0 letters between": -8.856409279279937,
2818
+ "has y and x with 1 letters between": -9.36723490304593,
2819
+ "has y and y with 0 letters between": -Infinity,
2820
+ "has y and y with 1 letters between": -Infinity,
2821
+ "has y and z with 0 letters between": -7.994926783900778,
2822
+ "has y and z with 1 letters between": -8.038098955765985,
2823
+ "has z and a with 0 letters between": -4.886746494405377,
2824
+ "has z and a with 1 letters between": -6.278720896040971,
2825
+ "has z and b with 0 letters between": -8.325781028217767,
2826
+ "has z and b with 1 letters between": -7.470114918160047,
2827
+ "has z and c with 0 letters between": -8.890310830955618,
2828
+ "has z and c with 1 letters between": -7.548076459629759,
2829
+ "has z and d with 0 letters between": -8.999510122920611,
2830
+ "has z and d with 1 letters between": -6.042998562519902,
2831
+ "has z and e with 0 letters between": -4.666249614243542,
2832
+ "has z and e with 1 letters between": -6.2586700989954105,
2833
+ "has z and f with 0 letters between": -9.618549331326834,
2834
+ "has z and f with 1 letters between": -8.64668874829787,
2835
+ "has z and g with 0 letters between": -9.166564207583777,
2836
+ "has z and g with 1 letters between": -7.5571262951496765,
2837
+ "has z and h with 0 letters between": -7.274000039233757,
2838
+ "has z and h with 1 letters between": -8.180069217036372,
2839
+ "has z and i with 0 letters between": -5.164202035073327,
2840
+ "has z and i with 1 letters between": -6.489285665148321,
2841
+ "has z and j with 0 letters between": -11.158994372273984,
2842
+ "has z and j with 1 letters between": -10.178165119262257,
2843
+ "has z and k with 0 letters between": -8.70225859945268,
2844
+ "has z and k with 1 letters between": -7.17620229595763,
2845
+ "has z and l with 0 letters between": -7.267174074163357,
2846
+ "has z and l with 1 letters between": -6.182260629853409,
2847
+ "has z and m with 0 letters between": -7.940118547405783,
2848
+ "has z and m with 1 letters between": -6.802285545584391,
2849
+ "has z and n with 0 letters between": -8.473417027023832,
2850
+ "has z and n with 1 letters between": -5.383408165488799,
2851
+ "has z and o with 0 letters between": -5.71657666175219,
2852
+ "has z and o with 1 letters between": -6.557163087551407,
2853
+ "has z and p with 0 letters between": -9.21308422321867,
2854
+ "has z and p with 1 letters between": -7.521408212547597,
2855
+ "has z and q with 0 letters between": -10.31169651188678,
2856
+ "has z and q with 1 letters between": -10.465847191714039,
2857
+ "has z and r with 0 letters between": -8.761099099475613,
2858
+ "has z and r with 1 letters between": -5.816660120309172,
2859
+ "has z and s with 0 letters between": -7.791698542287509,
2860
+ "has z and s with 1 letters between": -6.557163087551407,
2861
+ "has z and t with 0 letters between": -8.731246136325932,
2862
+ "has z and t with 1 letters between": -6.152813428527108,
2863
+ "has z and u with 0 letters between": -6.521034363462901,
2864
+ "has z and u with 1 letters between": -7.735818083893053,
2865
+ "has z and v with 0 letters between": -9.038730836073892,
2866
+ "has z and v with 1 letters between": -8.674087722485982,
2867
+ "has z and w with 0 letters between": -8.473417027023832,
2868
+ "has z and w with 1 letters between": -8.407459059232036,
2869
+ "has z and x with 0 letters between": -11.158994372273984,
2870
+ "has z and x with 1 letters between": -10.465847191714039,
2871
+ "has z and y with 0 letters between": -7.053599973865298,
2872
+ "has z and y with 1 letters between": -7.875580026268212,
2873
+ "has z and z with 0 letters between": -Infinity,
2874
+ "has z and z with 1 letters between": -Infinity,
2875
+ "has equal letters with 0 letters between, at least 1 times":
2876
+ -1.600159088449507,
2877
+ "has equal letters with 0 letters between, at least 2 times":
2878
+ -4.232417339051258,
2879
+ "has equal letters with 0 letters between, at least 3 times":
2880
+ -6.2102344818958155,
2881
+ "has equal letters with 1 letters between, at least 1 times":
2882
+ -1.5868621699796073,
2883
+ "has equal letters with 1 letters between, at least 2 times":
2884
+ -3.461873054991358,
2885
+ "has equal letters with 1 letters between, at least 3 times":
2886
+ -5.493721752379658,
2887
+ "has equal letters with 2 letters between, at least 1 times":
2888
+ -1.5611492175666282,
2889
+ "has equal letters with 2 letters between, at least 2 times":
2890
+ -3.461873054991358,
2891
+ "has equal letters with 2 letters between, at least 3 times":
2892
+ -5.324183635211378,
2893
+ "has equal letters with 3 letters between, at least 1 times":
2894
+ -1.7916787419224747,
2895
+ "has equal letters with 3 letters between, at least 2 times":
2896
+ -3.656072321092104,
2897
+ "has equal letters with 3 letters between, at least 3 times":
2898
+ -5.469761678632514,
2899
+ "has greek letters anagram substring": -2.0798262730732002,
2900
+ "has nato alphabet anagram substring": -4.555050547673511,
2901
+ "has numbers anagram substring": -3.046866368944583,
2902
+ "has greek letters change 1 substring": -1.778405024738115,
2903
+ "has nato alphabet change 1 substring": -3.1062734695459433,
2904
+ "has numbers change 1 substring": -1.4249318947967904,
2905
+ "has compass directions substring": -0.1627114163913106,
2906
+ "has compass directions substring, 2 times": -1.244253707509948,
2907
+ "has compass directions substring, at least 2 times": -0.6127585967617613,
2908
+ "has compass directions substring, 3 times": -1.813103813476916,
2909
+ "has compass directions substring, at least 3 times": -1.3716100171129408,
2910
+ "has compass directions substring, 4 times": -2.731725888385734,
2911
+ "has compass directions substring, at least 4 times": -2.401839844617376,
2912
+ "has compass directions substring, 5 times": -3.947683671683775,
2913
+ "has compass directions substring, at least 5 times": -3.671260610837539,
2914
+ "has iso 2-letter country codes substring, 2 times": -1.0592275707594183,
2915
+ "has iso 2-letter country codes substring, at least 2 times":
2916
+ -0.29059101668644516,
2917
+ "has iso 2-letter country codes substring, 3 times": -1.3696465004794405,
2918
+ "has iso 2-letter country codes substring, at least 3 times":
2919
+ -0.913549652886072,
2920
+ "has iso 2-letter country codes substring, 4 times": -2.2307516944556802,
2921
+ "has iso 2-letter country codes substring, at least 4 times":
2922
+ -1.9179954793440075,
2923
+ "has iso 2-letter country codes substring, 5 times": -3.4498355939620495,
2924
+ "has iso 2-letter country codes substring, at least 5 times":
2925
+ -3.2326324759460903,
2926
+ "has iso 3-letter country codes substring, 2 times": -4.177988631552253,
2927
+ "has iso 3-letter country codes substring, at least 2 times":
2928
+ -4.155625929088901,
2929
+ "has iso 3-letter country codes substring, 3 times": -7.967147219793702,
2930
+ "has iso 3-letter country codes substring, at least 3 times":
2931
+ -7.967147219793702,
2932
+ "has iso 3-letter country codes substring, 4 times": -Infinity,
2933
+ "has iso 3-letter country codes substring, at least 4 times": -Infinity,
2934
+ "has iso 3-letter country codes substring, 5 times": -Infinity,
2935
+ "has iso 3-letter country codes substring, at least 5 times": -Infinity,
2936
+ "has days of the week substring, 2 times": -10.31169651188678,
2937
+ "has days of the week substring, at least 2 times": -10.31169651188678,
2938
+ "has days of the week substring, 3 times": -Infinity,
2939
+ "has days of the week substring, at least 3 times": -Infinity,
2940
+ "has days of the week substring, 4 times": -Infinity,
2941
+ "has days of the week substring, at least 4 times": -Infinity,
2942
+ "has days of the week substring, 5 times": -Infinity,
2943
+ "has days of the week substring, at least 5 times": -Infinity,
2944
+ "has element symbols substring, 2 times": -1.8384552079997256,
2945
+ "has element symbols substring, at least 2 times": -0.0504046533813618,
2946
+ "has element symbols substring, 3 times": -1.412960169602929,
2947
+ "has element symbols substring, at least 3 times": -0.23346964668470882,
2948
+ "has element symbols substring, 4 times": -1.4841446034092325,
2949
+ "has element symbols substring, at least 4 times": -0.6008233056300387,
2950
+ "has element symbols substring, 5 times": -1.8482658262665321,
2951
+ "has element symbols substring, at least 5 times": -1.1342483489272563,
2952
+ "has months substring, 2 times": -9.772700011154093,
2953
+ "has months substring, at least 2 times": -9.772700011154093,
2954
+ "has months substring, 3 times": -Infinity,
2955
+ "has months substring, at least 3 times": -Infinity,
2956
+ "has months substring, 4 times": -Infinity,
2957
+ "has months substring, at least 4 times": -Infinity,
2958
+ "has months substring, 5 times": -Infinity,
2959
+ "has months substring, at least 5 times": -Infinity,
2960
+ "has solfege substring, 2 times": -3.341771586765816,
2961
+ "has solfege substring, at least 2 times": -3.255644388079647,
2962
+ "has solfege substring, 3 times": -5.7977022065645585,
2963
+ "has solfege substring, at least 3 times": -5.750328948557081,
2964
+ "has solfege substring, 4 times": -8.856409279279937,
2965
+ "has solfege substring, at least 4 times": -8.823619456456946,
2966
+ "has solfege substring, 5 times": -12.257606660942093,
2967
+ "has solfege substring, at least 5 times": -12.257606660942093,
2968
+ "has us state abbreviations substring, 2 times": -1.586351586975569,
2969
+ "has us state abbreviations substring, at least 2 times": -1.3578164385624252,
2970
+ "has us state abbreviations substring, 3 times": -3.061365213345413,
2971
+ "has us state abbreviations substring, at least 3 times": -2.9459740374840386,
2972
+ "has us state abbreviations substring, 4 times": -5.232957630488457,
2973
+ "has us state abbreviations substring, at least 4 times": -5.162542283654962,
2974
+ "has us state abbreviations substring, 5 times": -7.863157506269654,
2975
+ "has us state abbreviations substring, at least 5 times": -7.85088741367784,
2976
+ "starts with compass directions": -1.6541701127270922,
2977
+ "ends with compass directions": -0.9044626991715798,
2978
+ "can be broken into compass directions": -7.170010325709709,
2979
+ "has roman numerals substring": -0.16751742137365966,
2980
+ "has roman numerals substring, 2 times": -1.2232009849859402,
2981
+ "has roman numerals substring, at least 2 times": -0.6978739488646077,
2982
+ "has roman numerals substring, 3 times": -1.9484873475184799,
2983
+ "has roman numerals substring, at least 3 times": -1.59279939274297,
2984
+ "has roman numerals substring, 4 times": -3.061973917838184,
2985
+ "has roman numerals substring, at least 4 times": -2.799078967212269,
2986
+ "has roman numerals substring, 5 times": -4.46154868662597,
2987
+ "has roman numerals substring, at least 5 times": -4.263649113368528,
2988
+ "starts with roman numerals": -1.2317740172113254,
2989
+ "ends with roman numerals": -1.669407406667121,
2990
+ "can be broken into roman numerals": -6.081739390836332,
2991
+ "has 0 unique vowels": -3.5641099850574633,
2992
+ };