-
-
Save huitseeker/1719a8b05dbdb4f85864 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"metadata" : { | |
"name" : "Spark_training-with-exercises", | |
"user_save_timestamp" : "1970-01-01T01:00:00.000Z", | |
"auto_save_timestamp" : "1970-01-01T01:00:00.000Z", | |
"language_info" : { | |
"name" : "scala", | |
"file_extension" : "scala", | |
"codemirror_mode" : "text/x-scala" | |
}, | |
"trusted" : true, | |
"customLocalRepo" : null, | |
"customRepos" : null, | |
"customDeps" : null, | |
"customImports" : null, | |
"customSparkConf" : { | |
"spark.app.name" : "Notebook", | |
"spark.master" : "local[8]", | |
"spark.executor.memory" : "1G" | |
} | |
}, | |
"cells" : [ { | |
"metadata" : { }, | |
"cell_type" : "markdown", | |
"source" : "# Exercise 1 \n## A Scala script we will use interactively in the Spark Shell.\n\nIf you're using the Spark Shell or our build process, the following three\nstatements, two import statements and constructing the SparkContext variable\n`sc`, are executed automatically for you. Otherwise, our scripts would need\nthem explicitly:\n```\n import org.apache.spark.SparkContext\n import org.apache.spark.SparkContext._\n val sc = new SparkContext(\"local\", \"Intro\")\n```" | |
}, { | |
"metadata" : { }, | |
"cell_type" : "markdown", | |
"source" : "Load the plays of Shakespeare, then convert each line to lower case.\nBoth input and lines will be RDDs." | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val sc = sparkContext\nval input = sc.textFile(\"/Users/huitseeker/Spark/spark-workshop/exercises/data/all-shakespeare.txt\")\nval lines = input.map(line => line.toLowerCase)", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "sc: org.apache.spark.SparkContext = org.apache.spark.SparkContext@46824958\ninput: org.apache.spark.rdd.RDD[String] = /Users/huitseeker/Spark/spark-workshop/exercises/data/all-shakespeare.txt MapPartitionsRDD[14] at textFile at <console>:39\nlines: org.apache.spark.rdd.RDD[String] = MapPartitionsRDD[15] at map at <console>:40\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "MapPartitionsRDD[15] at map at <console>:40" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 24 | |
} ] | |
}, { | |
"metadata" : { }, | |
"cell_type" : "markdown", | |
"source" : "Cache the data in memory for faster, repeated retrieval." | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "lines.cache", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "res17: lines.type = MapPartitionsRDD[15] at map at <console>:40\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "MapPartitionsRDD[15] at map at <console>:40" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 26 | |
} ] | |
}, { | |
"metadata" : { }, | |
"cell_type" : "markdown", | |
"source" : "Find all verses that mention \"hamlet\".\nNote the shorthand for the function literal:\n`_contains(\"hamlet\")` behaves the same as `line => line.contains(\"hamlet\")`." | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val hamlet = lines.filter(_.contains(\"hamlet\"))\nhamlet.take(10)", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "hamlet: org.apache.spark.rdd.RDD[String] = MapPartitionsRDD[5] at filter at <console>:42\nres4: Array[String] = Array(\"\thamlet\", hamlet\tson to the late, and nephew to the present king., horatio\tfriend to hamlet., gertrude\tqueen of denmark, and mother to hamlet., \"\tghost of hamlet's father. (ghost:)\", \"\thamlet\", \"\tdared to the combat; in which our valiant hamlet--\", \"\this fell to hamlet. now, sir, young fortinbras,\", \"\tunto young hamlet; for, upon my life,\", \"\thamlet\")\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "[Ljava.lang.String;@5605f15c" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 6 | |
} ] | |
}, { | |
"metadata" : { }, | |
"cell_type" : "markdown", | |
"source" : "The `()` are optional in Scala for no-argument methods" | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val count = hamlet.count() // How many occurrences of hamlet?", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "count: Long = 489\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "489" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 7 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val array = hamlet.collect() // Convert the RDD into a collection (array)", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "array: Array[String] = Array(\"\thamlet\", hamlet\tson to the late, and nephew to the present king., horatio\tfriend to hamlet., gertrude\tqueen of denmark, and mother to hamlet., \"\tghost of hamlet's father. (ghost:)\", \"\thamlet\", \"\tdared to the combat; in which our valiant hamlet--\", \"\this fell to hamlet. now, sir, young fortinbras,\", \"\tunto young hamlet; for, upon my life,\", \"\thamlet\", \"\t[enter king claudius, queen gertrude, hamlet,\", king claudius\tthough yet of hamlet our dear brother's death, \"\tbut now, my cousin hamlet, and my son,--\", hamlet\t[aside] a little more than kin, and less than kind., hamlet\tnot so, my lord; i am too much i' the sun., queen gertrude\tgood hamlet, cast thy nighted colour off,, hamlet\tay, madam, it is common., hamlet\tseems, madam! nay it is; i know not 'seems.', k..." | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "[Ljava.lang.String;@17a566e3" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 8 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "array.take(20) foreach println // Take the first 20, and print them 1/line.", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "\thamlet\nhamlet\tson to the late, and nephew to the present king.\nhoratio\tfriend to hamlet.\ngertrude\tqueen of denmark, and mother to hamlet.\n\tghost of hamlet's father. (ghost:)\n\thamlet\n\tdared to the combat; in which our valiant hamlet--\n\this fell to hamlet. now, sir, young fortinbras,\n\tunto young hamlet; for, upon my life,\n\thamlet\n\t[enter king claudius, queen gertrude, hamlet,\nking claudius\tthough yet of hamlet our dear brother's death\n\tbut now, my cousin hamlet, and my son,--\nhamlet\t[aside] a little more than kin, and less than kind.\nhamlet\tnot so, my lord; i am too much i' the sun.\nqueen gertrude\tgood hamlet, cast thy nighted colour off,\nhamlet\tay, madam, it is common.\nhamlet\tseems, madam! nay it is; i know not 'seems.'\nking claudius\t'tis sweet and commendable in your nature, hamlet,\nqueen gertrude\tlet not thy mother lose her prayers, hamlet:\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 9 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "hamlet.take(20) foreach println // ... but you don't have to \"collect\" first.", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "\thamlet\nhamlet\tson to the late, and nephew to the present king.\nhoratio\tfriend to hamlet.\ngertrude\tqueen of denmark, and mother to hamlet.\n\tghost of hamlet's father. (ghost:)\n\thamlet\n\tdared to the combat; in which our valiant hamlet--\n\this fell to hamlet. now, sir, young fortinbras,\n\tunto young hamlet; for, upon my life,\n\thamlet\n\t[enter king claudius, queen gertrude, hamlet,\nking claudius\tthough yet of hamlet our dear brother's death\n\tbut now, my cousin hamlet, and my son,--\nhamlet\t[aside] a little more than kin, and less than kind.\nhamlet\tnot so, my lord; i am too much i' the sun.\nqueen gertrude\tgood hamlet, cast thy nighted colour off,\nhamlet\tay, madam, it is common.\nhamlet\tseems, madam! nay it is; i know not 'seems.'\nking claudius\t'tis sweet and commendable in your nature, hamlet,\nqueen gertrude\tlet not thy mother lose her prayers, hamlet:\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 10 | |
} ] | |
}, { | |
"metadata" : { }, | |
"cell_type" : "markdown", | |
"source" : "Create a separate filter function instead and pass it as an argument to the\nfilter method. `filterFunc` is a value that's a function of type\n`String` to `Boolean`." | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val filterFunc: String => Boolean = \n s => s.contains(\"claudius\") || s.contains(\"gertrude\")", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "filterFunc: String => Boolean = <function1>\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "<function1>" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 11 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : true | |
}, | |
"cell_type" : "markdown", | |
"source" : "Equivalent, due to type inference:\n`s => s.contains(\"claudius\") || s.contains(\"gertrude\")` or\n`(s:String) => s.contains(\"claudius\") || s.contains(\"gertrude\")`" | |
}, { | |
"metadata" : { }, | |
"cell_type" : "markdown", | |
"source" : "Filter the hamlets for the verses that mention God or Christ (lowercase)" | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val hamletPlusClaudiusOrGertrude = hamlet filter filterFunc\nval hamletWithGodOrChrist = hamlet.filter(s => s.contains(\"god\") || s.contains(\"christ\"))\nprintln(hamletPlusClaudiusOrGertrude.count())\nprintln(hamletWithGodOrChrist.count())", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "27\n8\nhamletPlusClaudiusOrGertrude: org.apache.spark.rdd.RDD[String] = MapPartitionsRDD[10] at filter at <console>:48\nhamletWithGodOrChrist: org.apache.spark.rdd.RDD[String] = MapPartitionsRDD[11] at filter at <console>:49\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 15 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "hamletWithGodOrChrist foreach (println)", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "hamlet\tfor god's love, let me hear.\nhamlet\to god!\nhamlet\twell, god-a-mercy.\nhamlet\to god, i could be bounded in a nut shell and count\nhamlet\tgod's bodykins, man, much better: use every man\nhamlet\tay, so, god be wi' ye;\nhamlet\ti have heard of your paintings too, well enough; god\nhamlet\to god, your only jig-maker. what should a man do\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 16 | |
} ] | |
}, { | |
"metadata" : { }, | |
"cell_type" : "markdown", | |
"source" : "Count how many we found. (Note we dropped the parentheses after \"count\")" | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val count2 = hamletPlusClaudiusOrGertrude.count", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "count2: Long = 27\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "27" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 17 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "hamletPlusClaudiusOrGertrude foreach println", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "gertrude\tqueen of denmark, and mother to hamlet.\n\t[enter king claudius, queen gertrude, hamlet,\nking claudius\tthough yet of hamlet our dear brother's death\nqueen gertrude\tgood hamlet, cast thy nighted colour off,\nking claudius\t'tis sweet and commendable in your nature, hamlet,\nqueen gertrude\tlet not thy mother lose her prayers, hamlet:\nqueen gertrude\tcame this from hamlet to her?\nking claudius\thow fares our cousin hamlet?\nking claudius\ti have nothing with this answer, hamlet; these words\nqueen gertrude\tcome hither, my dear hamlet, sit by me.\nqueen gertrude\thamlet, thou hast thy father much offended.\nqueen gertrude\twhy, how now, hamlet!\nqueen gertrude\to hamlet, speak no more:\nqueen gertrude\to hamlet, thou hast cleft my heart in twain.\nking claudius\twhat, gertrude? how does hamlet?\nking claudius\tnow, hamlet, where's polonius?\nking claudius\thamlet, this deed, for thine especial safety,--\nking claudius\tay, hamlet.\nking claudius\tthy loving father, hamlet.\nking claudius\tfrom hamlet! who brought them?\nking claudius\t'tis hamlets character. 'naked!\nqueen gertrude\thamlet, hamlet!\nking claudius\tcome, hamlet, come, and take this hand from me.\n\t[king claudius puts laertes' hand into hamlet's]\nking claudius\tgive them the foils, young osric. cousin hamlet,\nking claudius\tstay; give me drink. hamlet, this pearl is thine;\nqueen gertrude\tno, no, the drink, the drink,--o my dear hamlet,--\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 18 | |
} ] | |
}, { | |
"metadata" : { }, | |
"cell_type" : "markdown", | |
"source" : "This *method* creates a filter function using the two input strings:" | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "def makeAndFilter(s1: String, s2: String): String => Boolean =\n s => s.contains(s1) && s.contains(s2)", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "makeAndFilter: (s1: String, s2: String)String => Boolean\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 19 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val rottenDenmark = lines filter (makeAndFilter(\"rotten\", \"denmark\"))\nval countGoodEvil = rottenDenmark.count\nrottenDenmark foreach println", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "marcellus\tsomething is rotten in the state of denmark.\nrottenDenmark: org.apache.spark.rdd.RDD[String] = MapPartitionsRDD[12] at filter at <console>:42\ncountGoodEvil: Long = 1\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 20 | |
} ] | |
}, { | |
"metadata" : { }, | |
"cell_type" : "markdown", | |
"source" : "A few other useful tools:" | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "rottenDenmark.toDebugString", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "res13: String = \n(2) MapPartitionsRDD[12] at filter at <console>:42 []\n | MapPartitionsRDD[2] at map at <console>:36 []\n | CachedPartitions: 2; MemorySize: 17.8 MB; TachyonSize: 0.0 B; DiskSize: 0.0 B\n | /Users/huitseeker/Spark/spark-workshop/exercises/data/all-shakespeare.txt MapPartitionsRDD[1] at textFile at <console>:35 []\n | /Users/huitseeker/Spark/spark-workshop/exercises/data/all-shakespeare.txt HadoopRDD[0] at textFile at <console>:35 []\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "(2) MapPartitionsRDD[12] at filter at <console>:42 []\n | MapPartitionsRDD[2] at map at <console>:36 []\n | CachedPartitions: 2; MemorySize: 17.8 MB; TachyonSize: 0.0 B; DiskSize: 0.0 B\n | /Users/huitseeker/Spark/spark-workshop/exercises/data/all-shakespeare.txt MapPartitionsRDD[1] at textFile at <console>:35 []\n | /Users/huitseeker/Spark/spark-workshop/exercises/data/all-shakespeare.txt HadoopRDD[0] at textFile at <console>:35 []" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 21 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "println(lines.flatMap(_.split(\"\\\\W+\")).count() / 500)\nlines.toDebugString", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "2215\nres30: String = \n(2) MapPartitionsRDD[15] at map at <console>:40 [Memory Deserialized 1x Replicated]\n | CachedPartitions: 2; MemorySize: 17.8 MB; TachyonSize: 0.0 B; DiskSize: 0.0 B\n | /Users/huitseeker/Spark/spark-workshop/exercises/data/all-shakespeare.txt MapPartitionsRDD[14] at textFile at <console>:39 [Memory Deserialized 1x Replicated]\n | /Users/huitseeker/Spark/spark-workshop/exercises/data/all-shakespeare.txt HadoopRDD[13] at textFile at <console>:39 [Memory Deserialized 1x Replicated]\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "(2) MapPartitionsRDD[15] at map at <console>:40 [Memory Deserialized 1x Replicated]\n | CachedPartitions: 2; MemorySize: 17.8 MB; TachyonSize: 0.0 B; DiskSize: 0.0 B\n | /Users/huitseeker/Spark/spark-workshop/exercises/data/all-shakespeare.txt MapPartitionsRDD[14] at textFile at <console>:39 [Memory Deserialized 1x Replicated]\n | /Users/huitseeker/Spark/spark-workshop/exercises/data/all-shakespeare.txt HadoopRDD[13] at textFile at <console>:39 [Memory Deserialized 1x Replicated]" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 42 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "input.toDebugString", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "res15: String = \n(2) /Users/huitseeker/Spark/spark-workshop/exercises/data/all-shakespeare.txt MapPartitionsRDD[1] at textFile at <console>:35 []\n | /Users/huitseeker/Spark/spark-workshop/exercises/data/all-shakespeare.txt HadoopRDD[0] at textFile at <console>:35 []\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "(2) /Users/huitseeker/Spark/spark-workshop/exercises/data/all-shakespeare.txt MapPartitionsRDD[1] at textFile at <console>:35 []\n | /Users/huitseeker/Spark/spark-workshop/exercises/data/all-shakespeare.txt HadoopRDD[0] at textFile at <console>:35 []" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 23 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : true | |
}, | |
"cell_type" : "markdown", | |
"source" : "Clean up nicely with `sc.stop`" | |
}, { | |
"metadata" : { }, | |
"cell_type" : "markdown", | |
"source" : "# Exercise 2" | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "import org.apache.spark.rdd._\n\ndef load_file(filename: String) : RDD[String] = {\n val fileHandle = sparkContext.textFile(s\"/Users/huitseeker/Spark/spark-workshop/exercises/data/$filename\")\n return fileHandle.map(_.toLowerCase)\n}\nval lines_shakespeare = load_file(\"all-shakespeare.txt\").cache()", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "import org.apache.spark.rdd._\nload_file: (filename: String)org.apache.spark.rdd.RDD[String]\nlines_shakespeare: org.apache.spark.rdd.RDD[String] = MapPartitionsRDD[20] at map at <console>:38\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "MapPartitionsRDD[20] at map at <console>:38" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 35 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val acts = load_file(\"apodat.txt\")\nacts.take(4) foreach (println)", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "\nes1|1|1|and josias held the feast of the passover in jerusalem unto his lord, and offered the passover the fourteenth day of the first month; \nes1|1|2|having set the priests according to their daily courses, being arrayed in long garments, in the temple of the lord. \nes1|1|3|and he spake unto the levites, the holy ministers of israel, that they should hallow themselves unto the lord, to set the holy ark of the lord in the house that king solomon the son of david had built: \nacts: org.apache.spark.rdd.RDD[String] = MapPartitionsRDD[41] at map at <console>:38\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 40 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val l = lines_shakespeare.flatMap(_.split(\"\"\"\\W+\"\"\")).map(w => (w,1)).reduceByKey(_ + _)\nl.take(4) foreach (println)\nl.lookup(\"hamlet\").head", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "(pinnace,3)\n(bone,21)\n(lug,3)\n(vailing,3)\nl: org.apache.spark.rdd.RDD[(String, Int)] = ShuffledRDD[63] at reduceByKey at <console>:43\nres38: Int = 494\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "494" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 52 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "def simpleTimeStamp(): String = {\n import java.util.Date\n import java.text.SimpleDateFormat\n val fmt = new SimpleDateFormat (\"yyyy.MM.dd-kk.mm.ss\")\n\n fmt.format(new Date())\n}", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "simpleTimeStamp: ()String\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "2015.03.30-16.01.15" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 53 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "simpleTimeStamp()", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "res39: String = 2015.03.30-16.01.32\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "2015.03.30-16.01.32" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 54 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "l.saveAsTextFile(s\"/tmp/wc${simpleTimeStamp()}.txt\")", | |
"outputs" : [ { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 55 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "l.take(10) foreach (print _)", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "(pinnace,3)(bone,21)(lug,3)(vailing,3)(bombast,4)(gaping,11)(hem,10)(stinks,1)(forsooth,48)(been,738)" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 56 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val count_driver = lines_shakespeare.flatMap(_.split(\"\"\"\\W+\"\"\")).countByValue()\nprintln(count_driver(\"hamlet\"))", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "494\ncount_driver: scala.collection.Map[String,Long] = Map(professed -> 5, chary -> 1, purifies -> 1, incident -> 5, haberdasher -> 6, confesseth -> 1, serious -> 25, garboils -> 2, brink -> 2, flibbertigibbet -> 2, youthful -> 32, sinister -> 6, comply -> 3, ebb -> 17, breaks -> 35, marr -> 12, forgotten -> 15, precious -> 82, caithness -> 6, leer -> 6, inkhorn -> 3, compliment -> 12, ascension -> 5, unlettered -> 2, hourly -> 24, tripe -> 2, respecting -> 6, uncropped -> 1, alarums -> 28, marchioness -> 4, gamester -> 9, friendless -> 1, ecclesiastic -> 1, cadent -> 1, accosted -> 1, lover -> 72, tokened -> 1, plentiful -> 4, malignant -> 8, pasture -> 12, speaker -> 10, dapples -> 1, cxxiv -> 1, terrible -> 28, lion -> 123, drudges -> 1, unfelt -> 4, rate -> 35, pepper -> 3, inevitable ->..." | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 65 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val kjBible = load_file(\"kjvdat.txt\").cache()", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "kjBible: org.apache.spark.rdd.RDD[String] = MapPartitionsRDD[82] at map at <console>:38\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "MapPartitionsRDD[82] at map at <console>:38" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 66 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "kjBible.take(2) foreach (println)", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "gen|1|1| in the beginning god created the heaven and the earth.~\ngen|1|2| and the earth was without form, and void; and darkness was upon the face of the deep. and the spirit of god moved upon the face of the waters.~\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 68 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "\"a | b | c this is text\".split(\"\"\"\\s*\\|\\s*\"\"\").last", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "res51: String = c this is text\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "c this is text" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 73 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val kjBibleText = kjBible.map(_.split(\"\"\"\\s*\\|\\s*\"\"\").last).cache()\nkjBibleText.take(2) foreach (println)", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "in the beginning god created the heaven and the earth.~\nand the earth was without form, and void; and darkness was upon the face of the deep. and the spirit of god moved upon the face of the waters.~\nkjBibleText: org.apache.spark.rdd.RDD[String] = MapPartitionsRDD[85] at map at <console>:43\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 76 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val kjBibleCounts = kjBibleText.flatMap(_.split(\"\"\"\\W+\"\"\")).map(w => (w,1)).reduceByKey(_ + _)\nval kjBibleVerily = kjBibleCounts.filter(x => x._1 == \"verily\")\nkjBibleVerily.count()\nkjBibleVerily foreach (println)\nkjBibleVerily.lookup(\"verily\").head", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "(verily,140)\nkjBibleCounts: org.apache.spark.rdd.RDD[(String, Int)] = ShuffledRDD[100] at reduceByKey at <console>:47\nkjBibleVerily: org.apache.spark.rdd.RDD[(String, Int)] = MapPartitionsRDD[101] at filter at <console>:48\nres61: Int = 140\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "140" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 83 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val kjBibleCountsDesc = kjBibleCounts.keyBy(x => x._2).sortByKey(false).map(_._2)\n\nkjBibleCountsDesc.take(10) foreach (s => println (s._1))", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "the\nand\nof\nto\nthat\nin\nhe\nshall\nunto\nfor\nkjBibleCountsDesc: org.apache.spark.rdd.RDD[(String, Int)] = MapPartitionsRDD[119] at map at <console>:47\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 87 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "kjBibleCountsDesc.collect().toSeq", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "res66: Seq[(String, Int)] = WrappedArray((the,63924), (and,51696), (of,34617), (to,13562), (that,12912), (in,12667), (he,10420), (shall,9838), (unto,8997), (for,8971), (i,8854), (his,8473), (a,8177), (lord,7964), (they,7376), (be,7013), (is,6989), (him,6659), (not,6596), (them,6430), (it,6129), (with,6012), (all,5620), (thou,5474), (thy,4600), (was,4522), (god,4472), (which,4413), (my,4368), (me,4096), (said,3999), (but,3992), (ye,3982), (their,3942), (have,3904), (will,3836), (thee,3827), (from,3642), (as,3520), (are,2950), (when,2834), (this,2785), (out,2775), (were,2772), (upon,2748), (man,2735), (by,2624), (you,2617), (israel,2575), (king,2540), (son,2392), (up,2380), (there,2299), (hath,2264), (then,2169), (people,2143), (came,2093), (had,2026), (house,2024), (into,2015), (on,2011)..." | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "<div>\n <script> \n//$('#ul1476989971 li').first().addClass('active');\n//$('#tab1476989971 div').first().addClass('active');\n$('#ul1476989971 a').click(function(){\n $('#tab1476989971 div.active').removeClass('active');\n $('#ul1476989971 li.active').removeClass('active');\n var id = $(this).attr('href');\n $(id).addClass('active');\n $(this).parent().addClass('active');\n});\n </script> \n <ul class=\"nav nav-tabs\" id=\"ul1476989971\"><li>\n <a href=\"#tab1476989971-0\"><i class=\"fa fa-table\"/></a>\n </li><li>\n <a href=\"#tab1476989971-1\"><i class=\"fa fa-pie-chart\"/></a>\n </li><li>\n <a href=\"#tab1476989971-2\"><i class=\"fa fa-bar-chart\"/></a>\n </li></ul>\n\n <div class=\"tab-content\" id=\"tab1476989971\"><div class=\"tab-pane\" id=\"tab1476989971-0\">\n <div class=\"table-container table-responsive\">\n <table class=\"table\">\n <thead><tr><th>X </th><th>Y </th></tr>\n </thead>\n <tbody><tr><td>the</td><td>63924</td></tr><tr><td>and</td><td>51696</td></tr><tr><td>of</td><td>34617</td></tr><tr><td>to</td><td>13562</td></tr><tr><td>that</td><td>12912</td></tr><tr><td>in</td><td>12667</td></tr><tr><td>he</td><td>10420</td></tr><tr><td>shall</td><td>9838</td></tr><tr><td>unto</td><td>8997</td></tr><tr><td>for</td><td>8971</td></tr><tr><td>i</td><td>8854</td></tr><tr><td>his</td><td>8473</td></tr><tr><td>a</td><td>8177</td></tr><tr><td>lord</td><td>7964</td></tr><tr><td>they</td><td>7376</td></tr><tr><td>be</td><td>7013</td></tr><tr><td>is</td><td>6989</td></tr><tr><td>him</td><td>6659</td></tr><tr><td>not</td><td>6596</td></tr><tr><td>them</td><td>6430</td></tr><tr><td>it</td><td>6129</td></tr><tr><td>with</td><td>6012</td></tr><tr><td>all</td><td>5620</td></tr><tr><td>thou</td><td>5474</td></tr><tr><td>...</td></tr>\n </tbody>\n </table></div>\n </div><div class=\"tab-pane\" id=\"tab1476989971-1\">\n <div>\n <svg id=\"pie1157061111\" width=\"600px\" height=\"400px\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><script data-this=\"{"data":[{"X":"the","Y":63924},{"X":"and","Y":51696},{"X":"of","Y":34617},{"X":"to","Y":13562},{"X":"that","Y":12912},{"X":"in","Y":12667},{"X":"he","Y":10420},{"X":"shall","Y":9838},{"X":"unto","Y":8997},{"X":"for","Y":8971},{"X":"i","Y":8854},{"X":"his","Y":8473},{"X":"a","Y":8177},{"X":"lord","Y":7964},{"X":"they","Y":7376},{"X":"be","Y":7013},{"X":"is","Y":6989},{"X":"him","Y":6659},{"X":"not","Y":6596},{"X":"them","Y":6430},{"X":"it","Y":6129},{"X":"with","Y":6012},{"X":"all","Y":5620},{"X":"thou","Y":5474}]}\" type=\"text/x-scoped-javascript\">/*<![CDATA[*/req(\n['d3', 'dimple'],\nfunction (d3, dimple) {\n var svg = d3.select(\"#pie1157061111\");\n var myChart = new dimple.chart(svg, data);\n myChart.setBounds(100, 30, 380, 360);\n myChart.addMeasureAxis(\"p\", \"Y\");\n myChart.addSeries(\"X\", dimple.plot.pie);\n myChart.addLegend(20, 30, 60, 350, \"left\");\n myChart.draw();\n});\n /*]]>*/</script></svg>\n </div>\n </div><div class=\"tab-pane\" id=\"tab1476989971-2\">\n <div>\n <svg id=\"bar1928398980\" width=\"600px\" height=\"400px\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><script data-this=\"{"data":[{"X":"the","Y":63924},{"X":"and","Y":51696},{"X":"of","Y":34617},{"X":"to","Y":13562},{"X":"that","Y":12912},{"X":"in","Y":12667},{"X":"he","Y":10420},{"X":"shall","Y":9838},{"X":"unto","Y":8997},{"X":"for","Y":8971},{"X":"i","Y":8854},{"X":"his","Y":8473},{"X":"a","Y":8177},{"X":"lord","Y":7964},{"X":"they","Y":7376},{"X":"be","Y":7013},{"X":"is","Y":6989},{"X":"him","Y":6659},{"X":"not","Y":6596},{"X":"them","Y":6430},{"X":"it","Y":6129},{"X":"with","Y":6012},{"X":"all","Y":5620},{"X":"thou","Y":5474}]}\" type=\"text/x-scoped-javascript\">/*<![CDATA[*/ req(\n['d3', 'dimple'],\nfunction (d3, dimple) {\n var svg = d3.select(\"#bar1928398980\");\n var chart = new dimple.chart(svg, data);\n chart.setBounds(50, 20, 540, 350);\n chart.addCategoryAxis(\"x\", \"X\");\n chart.addMeasureAxis(\"y\", \"Y\");\n chart.addSeries(null, dimple.plot.bar);\n chart.draw();\n});\n /*]]>*/</script></svg>\n </div>\n </div></div>\n </div>" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 88 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "kjBibleCountsDesc.filter(_._1.length >= 8).take(10) foreach (println)", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "(children,1821)\n(therefore,1237)\n(jerusalem,814)\n(according,793)\n(offering,724)\n(brethren,564)\n(thousand,520)\n(answered,492)\n(together,484)\n(servants,480)\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 89 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val kjBibleWords = kjBibleText.flatMap(_.split(\"\"\"\\W+\"\"\"))\nval kjBibleWordCount = kjBibleWords.count()\nimport org.apache.spark.mllib.rdd.RDDFunctions._\nval kjBibleBigrams = kjBibleWords.sliding(2).map(a => s\"${a(0)} ${a(1)}\")\nkjBibleBigrams.take(4) foreach (println)", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "in the\nthe beginning\nbeginning god\ngod created\nkjBibleWords: org.apache.spark.rdd.RDD[String] = MapPartitionsRDD[124] at flatMap at <console>:50\nkjBibleWordCount: Long = 791512\nimport org.apache.spark.mllib.rdd.RDDFunctions._\nkjBibleBigrams: org.apache.spark.rdd.RDD[String] = MapPartitionsRDD[126] at map at <console>:53\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 91 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "import scala.reflect.ClassTag\n\ndef orderByOccur[T:ClassTag](r:RDD[T]) = r.map(w => (w,1)).reduceByKey(_ + _).keyBy(_._2).sortByKey(false).map(_._2)\norderByOccur(kjBibleBigrams).take(20) foreach (println)", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "(of the,11528)\n(the lord,7035)\n(and the,6268)\n(in the,5031)\n(and he,2791)\n(shall be,2461)\n(all the,2144)\n(to the,2142)\n(and they,2086)\n(unto the,2032)\n(i will,1922)\n(of israel,1697)\n(for the,1675)\n(the king,1656)\n(said unto,1649)\n(son of,1602)\n(out of,1502)\n(the son,1500)\n(the children,1421)\n(children of,1393)\nimport scala.reflect.ClassTag\norderByOccur: [T](r: org.apache.spark.rdd.RDD[T])(implicit evidence$1: scala.reflect.ClassTag[T])org.apache.spark.rdd.RDD[(T, Int)]\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 92 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val orderedBigrams = orderByOccur(kjBibleBigrams).values.collect().toSeq", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "orderedBigrams: Seq[Int] = WrappedArray(11528, 7035, 6268, 5031, 2791, 2461, 2144, 2142, 2086, 2032, 1922, 1697, 1675, 1656, 1649, 1602, 1502, 1500, 1421, 1393, 1300, 1260, 1256, 1250, 1222, 1172, 1157, 1128, 1110, 1062, 1049, 1048, 1045, 1014, 987, 968, 966, 960, 960, 955, 947, 946, 933, 915, 911, 906, 895, 892, 883, 882, 855, 849, 806, 786, 768, 759, 753, 747, 745, 742, 734, 725, 714, 706, 702, 689, 683, 679, 676, 674, 673, 669, 663, 659, 655, 643, 640, 639, 638, 618, 607, 594, 591, 586, 580, 579, 573, 570, 568, 562, 561, 559, 548, 538, 532, 532, 528, 527, 525, 520, 515, 513, 504, 501, 494, 483, 482, 480, 471, 470, 468, 465, 464, 463, 461, 459, 454, 444, 427, 425, 421, 421, 419, 416, 416, 412, 408, 406, 400, 400, 398, 398, 398, 396, 395, 394, 393, 391, 390, 390, 383, 381, 379, 375, 37..." | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "<div>\n <script> \n//$('#ul536624684 li').first().addClass('active');\n//$('#tab536624684 div').first().addClass('active');\n$('#ul536624684 a').click(function(){\n $('#tab536624684 div.active').removeClass('active');\n $('#ul536624684 li.active').removeClass('active');\n var id = $(this).attr('href');\n $(id).addClass('active');\n $(this).parent().addClass('active');\n});\n </script> \n <ul class=\"nav nav-tabs\" id=\"ul536624684\"><li>\n <a href=\"#tab536624684-0\"><i class=\"fa fa-table\"/></a>\n </li><li>\n <a href=\"#tab536624684-1\"><i class=\"fa fa-bar-chart\"/></a>\n </li><li>\n <a href=\"#tab536624684-2\"><i class=\"fa fa-line-chart\"/></a>\n </li></ul>\n\n <div class=\"tab-content\" id=\"tab536624684\"><div class=\"tab-pane\" id=\"tab536624684-0\">\n <div class=\"table-container table-responsive\">\n <table class=\"table\">\n <thead><tr><th>X </th><th>Y </th></tr>\n </thead>\n <tbody><tr><td>0</td><td>11528</td></tr><tr><td>1</td><td>7035</td></tr><tr><td>2</td><td>6268</td></tr><tr><td>3</td><td>5031</td></tr><tr><td>4</td><td>2791</td></tr><tr><td>5</td><td>2461</td></tr><tr><td>6</td><td>2144</td></tr><tr><td>7</td><td>2142</td></tr><tr><td>8</td><td>2086</td></tr><tr><td>9</td><td>2032</td></tr><tr><td>10</td><td>1922</td></tr><tr><td>11</td><td>1697</td></tr><tr><td>12</td><td>1675</td></tr><tr><td>13</td><td>1656</td></tr><tr><td>14</td><td>1649</td></tr><tr><td>15</td><td>1602</td></tr><tr><td>16</td><td>1502</td></tr><tr><td>17</td><td>1500</td></tr><tr><td>18</td><td>1421</td></tr><tr><td>19</td><td>1393</td></tr><tr><td>20</td><td>1300</td></tr><tr><td>21</td><td>1260</td></tr><tr><td>22</td><td>1256</td></tr><tr><td>23</td><td>1250</td></tr><tr><td>...</td></tr>\n </tbody>\n </table></div>\n </div><div class=\"tab-pane\" id=\"tab536624684-1\">\n <div>\n <svg id=\"bar160754263\" width=\"600px\" height=\"400px\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><script data-this=\"{"data":[{"X":0,"Y":11528},{"X":1,"Y":7035},{"X":2,"Y":6268},{"X":3,"Y":5031},{"X":4,"Y":2791},{"X":5,"Y":2461},{"X":6,"Y":2144},{"X":7,"Y":2142},{"X":8,"Y":2086},{"X":9,"Y":2032},{"X":10,"Y":1922},{"X":11,"Y":1697},{"X":12,"Y":1675},{"X":13,"Y":1656},{"X":14,"Y":1649},{"X":15,"Y":1602},{"X":16,"Y":1502},{"X":17,"Y":1500},{"X":18,"Y":1421},{"X":19,"Y":1393},{"X":20,"Y":1300},{"X":21,"Y":1260},{"X":22,"Y":1256},{"X":23,"Y":1250}]}\" type=\"text/x-scoped-javascript\">/*<![CDATA[*/ req(\n['d3', 'dimple'],\nfunction (d3, dimple) {\n var svg = d3.select(\"#bar160754263\");\n var chart = new dimple.chart(svg, data);\n chart.setBounds(50, 20, 540, 350);\n chart.addCategoryAxis(\"x\", \"X\");\n chart.addMeasureAxis(\"y\", \"Y\");\n chart.addSeries(null, dimple.plot.bar);\n chart.draw();\n});\n /*]]>*/</script></svg>\n </div>\n </div><div class=\"tab-pane\" id=\"tab536624684-2\">\n <div>\n <svg id=\"line1082539027\" width=\"600px\" height=\"400px\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><script data-this=\"{"data":[{"X":0,"Y":11528},{"X":1,"Y":7035},{"X":2,"Y":6268},{"X":3,"Y":5031},{"X":4,"Y":2791},{"X":5,"Y":2461},{"X":6,"Y":2144},{"X":7,"Y":2142},{"X":8,"Y":2086},{"X":9,"Y":2032},{"X":10,"Y":1922},{"X":11,"Y":1697},{"X":12,"Y":1675},{"X":13,"Y":1656},{"X":14,"Y":1649},{"X":15,"Y":1602},{"X":16,"Y":1502},{"X":17,"Y":1500},{"X":18,"Y":1421},{"X":19,"Y":1393},{"X":20,"Y":1300},{"X":21,"Y":1260},{"X":22,"Y":1256},{"X":23,"Y":1250}]}\" type=\"text/x-scoped-javascript\">/*<![CDATA[*/req(\n['d3', 'dimple'],\nfunction (d3, dimple) {\n var svg = d3.select(\"#line1082539027\");\n var chart = new dimple.chart(svg, data);\n chart.setBounds(50, 20, 540, 350);\n var x = chart.addCategoryAxis(\"x\", \"X\");\n chart.addMeasureAxis(\"y\", \"Y\");\n chart.addSeries(null, dimple.plot.line);\n chart.draw();\n});\n /*]]>*/</script></svg>\n </div>\n </div></div>\n </div>" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 93 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val kjBibleTrigrams = kjBibleWords.sliding(3).map(a => s\"${a(0)} ${a(1)} ${a(2)}\")\norderByOccur(kjBibleTrigrams).take(20) foreach (println)", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "(of the lord,1775)\n(the son of,1450)\n(the children of,1355)\n(the house of,883)\n(saith the lord,854)\n(the lord and,816)\n(out of the,805)\n(and i will,672)\n(children of israel,647)\n(the land of,617)\n(and the lord,571)\n(and all the,561)\n(the sons of,560)\n(and he said,510)\n(unto the lord,509)\n(the lord god,479)\n(the king of,472)\n(came to pass,457)\n(it came to,454)\n(said unto him,454)\nkjBibleTrigrams: org.apache.spark.rdd.RDD[String] = MapPartitionsRDD[143] at map at <console>:54\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 94 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val orderedTrigrams = orderByOccur(kjBibleTrigrams).values.collect().toSeq", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "orderedTrigrams: Seq[Int] = WrappedArray(1775, 1450, 1355, 883, 854, 816, 805, 672, 647, 617, 571, 561, 560, 510, 509, 479, 472, 457, 454, 454, 430, 425, 417, 398, 394, 378, 365, 351, 349, 349, 340, 339, 327, 324, 315, 315, 312, 312, 304, 300, 297, 296, 294, 291, 287, 285, 283, 280, 279, 269, 266, 264, 256, 253, 248, 245, 245, 244, 240, 232, 227, 227, 227, 221, 221, 219, 208, 205, 203, 203, 203, 203, 201, 197, 191, 188, 188, 185, 185, 183, 181, 180, 178, 177, 177, 176, 174, 173, 173, 172, 171, 170, 170, 168, 168, 167, 166, 165, 165, 164, 163, 163, 162, 161, 161, 159, 159, 159, 158, 157, 157, 156, 156, 156, 156, 155, 155, 154, 152, 151, 149, 149, 149, 149, 148, 148, 147, 146, 146, 145, 145, 144, 144, 144, 144, 142, 142, 141, 140, 140, 137, 137, 136, 135, 135, 135, 134, 134, 131, 131, 131..." | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "<div>\n <script> \n//$('#ul580555518 li').first().addClass('active');\n//$('#tab580555518 div').first().addClass('active');\n$('#ul580555518 a').click(function(){\n $('#tab580555518 div.active').removeClass('active');\n $('#ul580555518 li.active').removeClass('active');\n var id = $(this).attr('href');\n $(id).addClass('active');\n $(this).parent().addClass('active');\n});\n </script> \n <ul class=\"nav nav-tabs\" id=\"ul580555518\"><li>\n <a href=\"#tab580555518-0\"><i class=\"fa fa-table\"/></a>\n </li><li>\n <a href=\"#tab580555518-1\"><i class=\"fa fa-bar-chart\"/></a>\n </li><li>\n <a href=\"#tab580555518-2\"><i class=\"fa fa-line-chart\"/></a>\n </li></ul>\n\n <div class=\"tab-content\" id=\"tab580555518\"><div class=\"tab-pane\" id=\"tab580555518-0\">\n <div class=\"table-container table-responsive\">\n <table class=\"table\">\n <thead><tr><th>X </th><th>Y </th></tr>\n </thead>\n <tbody><tr><td>0</td><td>1775</td></tr><tr><td>1</td><td>1450</td></tr><tr><td>2</td><td>1355</td></tr><tr><td>3</td><td>883</td></tr><tr><td>4</td><td>854</td></tr><tr><td>5</td><td>816</td></tr><tr><td>6</td><td>805</td></tr><tr><td>7</td><td>672</td></tr><tr><td>8</td><td>647</td></tr><tr><td>9</td><td>617</td></tr><tr><td>10</td><td>571</td></tr><tr><td>11</td><td>561</td></tr><tr><td>12</td><td>560</td></tr><tr><td>13</td><td>510</td></tr><tr><td>14</td><td>509</td></tr><tr><td>15</td><td>479</td></tr><tr><td>16</td><td>472</td></tr><tr><td>17</td><td>457</td></tr><tr><td>18</td><td>454</td></tr><tr><td>19</td><td>454</td></tr><tr><td>20</td><td>430</td></tr><tr><td>21</td><td>425</td></tr><tr><td>22</td><td>417</td></tr><tr><td>23</td><td>398</td></tr><tr><td>...</td></tr>\n </tbody>\n </table></div>\n </div><div class=\"tab-pane\" id=\"tab580555518-1\">\n <div>\n <svg id=\"bar1201218029\" width=\"600px\" height=\"400px\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><script data-this=\"{"data":[{"X":0,"Y":1775},{"X":1,"Y":1450},{"X":2,"Y":1355},{"X":3,"Y":883},{"X":4,"Y":854},{"X":5,"Y":816},{"X":6,"Y":805},{"X":7,"Y":672},{"X":8,"Y":647},{"X":9,"Y":617},{"X":10,"Y":571},{"X":11,"Y":561},{"X":12,"Y":560},{"X":13,"Y":510},{"X":14,"Y":509},{"X":15,"Y":479},{"X":16,"Y":472},{"X":17,"Y":457},{"X":18,"Y":454},{"X":19,"Y":454},{"X":20,"Y":430},{"X":21,"Y":425},{"X":22,"Y":417},{"X":23,"Y":398}]}\" type=\"text/x-scoped-javascript\">/*<![CDATA[*/ req(\n['d3', 'dimple'],\nfunction (d3, dimple) {\n var svg = d3.select(\"#bar1201218029\");\n var chart = new dimple.chart(svg, data);\n chart.setBounds(50, 20, 540, 350);\n chart.addCategoryAxis(\"x\", \"X\");\n chart.addMeasureAxis(\"y\", \"Y\");\n chart.addSeries(null, dimple.plot.bar);\n chart.draw();\n});\n /*]]>*/</script></svg>\n </div>\n </div><div class=\"tab-pane\" id=\"tab580555518-2\">\n <div>\n <svg id=\"line544852587\" width=\"600px\" height=\"400px\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><script data-this=\"{"data":[{"X":0,"Y":1775},{"X":1,"Y":1450},{"X":2,"Y":1355},{"X":3,"Y":883},{"X":4,"Y":854},{"X":5,"Y":816},{"X":6,"Y":805},{"X":7,"Y":672},{"X":8,"Y":647},{"X":9,"Y":617},{"X":10,"Y":571},{"X":11,"Y":561},{"X":12,"Y":560},{"X":13,"Y":510},{"X":14,"Y":509},{"X":15,"Y":479},{"X":16,"Y":472},{"X":17,"Y":457},{"X":18,"Y":454},{"X":19,"Y":454},{"X":20,"Y":430},{"X":21,"Y":425},{"X":22,"Y":417},{"X":23,"Y":398}]}\" type=\"text/x-scoped-javascript\">/*<![CDATA[*/req(\n['d3', 'dimple'],\nfunction (d3, dimple) {\n var svg = d3.select(\"#line544852587\");\n var chart = new dimple.chart(svg, data);\n chart.setBounds(50, 20, 540, 350);\n var x = chart.addCategoryAxis(\"x\", \"X\");\n chart.addMeasureAxis(\"y\", \"Y\");\n chart.addSeries(null, dimple.plot.line);\n chart.draw();\n});\n /*]]>*/</script></svg>\n </div>\n </div></div>\n </div>" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 95 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "kjBibleCounts.keyBy(w => w._1.length).sortByKey(true).map(_._2).take(10) foreach println", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "(,71)\n(a,8177)\n(s,1790)\n(i,8854)\n(o,1065)\n(go,1492)\n(as,3520)\n(so,1689)\n(my,4368)\n(we,1844)\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 96 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val kjBibleElemsPerFrequency = kjBibleCounts.groupBy(_._2).sortByKey(true).mapValues(_.map(_._1)).mapValues(_.size)\nkjBibleElemsPerFrequency.take(10) foreach println", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "(1,3950)\n(2,1739)\n(3,973)\n(4,621)\n(5,498)\n(6,405)\n(7,312)\n(8,286)\n(9,229)\n(10,192)\nkjBibleElemsPerFrequency: org.apache.spark.rdd.RDD[(Int, Int)] = MapPartitionsRDD[177] at mapValues at <console>:54\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 98 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "kjBibleElemsPerFrequency.values.collect.toSeq", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "res74: Seq[Int] = WrappedArray(3950, 1739, 973, 621, 498, 405, 312, 286, 229, 192, 159, 146, 130, 120, 132, 96, 98, 74, 83, 78, 72, 64, 49, 57, 51, 49, 35, 38, 43, 44, 31, 39, 46, 26, 17, 27, 43, 32, 48, 20, 21, 30, 24, 14, 24, 24, 12, 19, 24, 20, 29, 13, 14, 14, 18, 16, 12, 11, 15, 17, 17, 18, 8, 14, 9, 16, 7, 9, 9, 11, 14, 9, 11, 10, 9, 11, 8, 5, 7, 7, 11, 10, 1, 3, 4, 9, 3, 6, 7, 4, 7, 3, 1, 7, 4, 8, 6, 9, 2, 9, 9, 5, 1, 10, 5, 7, 7, 7, 4, 4, 3, 1, 7, 1, 2, 6, 2, 5, 6, 3, 2, 4, 4, 3, 3, 7, 4, 2, 4, 2, 3, 7, 4, 1, 6, 5, 2, 1, 2, 4, 2, 5, 1, 7, 1, 3, 2, 2, 2, 1, 1, 3, 2, 1, 3, 3, 4, 2, 4, 1, 5, 1, 1, 2, 2, 2, 2, 4, 3, 2, 1, 3, 2, 2, 3, 2, 3, 5, 3, 3, 1, 2, 2, 2, 3, 1, 2, 4, 2, 2, 1, 3, 1, 1, 1, 2, 3, 1, 1, 3, 1, 1, 1, 1, 2, 2, 2, 3, 2, 1, 1, 1, 1, 3, 1, 1, 1, 2, 1, 1, 2, 2, 3, 1, 1, 2,..." | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "<div>\n <script> \n//$('#ul891710757 li').first().addClass('active');\n//$('#tab891710757 div').first().addClass('active');\n$('#ul891710757 a').click(function(){\n $('#tab891710757 div.active').removeClass('active');\n $('#ul891710757 li.active').removeClass('active');\n var id = $(this).attr('href');\n $(id).addClass('active');\n $(this).parent().addClass('active');\n});\n </script> \n <ul class=\"nav nav-tabs\" id=\"ul891710757\"><li>\n <a href=\"#tab891710757-0\"><i class=\"fa fa-table\"/></a>\n </li><li>\n <a href=\"#tab891710757-1\"><i class=\"fa fa-bar-chart\"/></a>\n </li><li>\n <a href=\"#tab891710757-2\"><i class=\"fa fa-line-chart\"/></a>\n </li></ul>\n\n <div class=\"tab-content\" id=\"tab891710757\"><div class=\"tab-pane\" id=\"tab891710757-0\">\n <div class=\"table-container table-responsive\">\n <table class=\"table\">\n <thead><tr><th>X </th><th>Y </th></tr>\n </thead>\n <tbody><tr><td>0</td><td>3950</td></tr><tr><td>1</td><td>1739</td></tr><tr><td>2</td><td>973</td></tr><tr><td>3</td><td>621</td></tr><tr><td>4</td><td>498</td></tr><tr><td>5</td><td>405</td></tr><tr><td>6</td><td>312</td></tr><tr><td>7</td><td>286</td></tr><tr><td>8</td><td>229</td></tr><tr><td>9</td><td>192</td></tr><tr><td>10</td><td>159</td></tr><tr><td>11</td><td>146</td></tr><tr><td>12</td><td>130</td></tr><tr><td>13</td><td>120</td></tr><tr><td>14</td><td>132</td></tr><tr><td>15</td><td>96</td></tr><tr><td>16</td><td>98</td></tr><tr><td>17</td><td>74</td></tr><tr><td>18</td><td>83</td></tr><tr><td>19</td><td>78</td></tr><tr><td>20</td><td>72</td></tr><tr><td>21</td><td>64</td></tr><tr><td>22</td><td>49</td></tr><tr><td>23</td><td>57</td></tr><tr><td>...</td></tr>\n </tbody>\n </table></div>\n </div><div class=\"tab-pane\" id=\"tab891710757-1\">\n <div>\n <svg id=\"bar222078854\" width=\"600px\" height=\"400px\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><script data-this=\"{"data":[{"X":0,"Y":3950},{"X":1,"Y":1739},{"X":2,"Y":973},{"X":3,"Y":621},{"X":4,"Y":498},{"X":5,"Y":405},{"X":6,"Y":312},{"X":7,"Y":286},{"X":8,"Y":229},{"X":9,"Y":192},{"X":10,"Y":159},{"X":11,"Y":146},{"X":12,"Y":130},{"X":13,"Y":120},{"X":14,"Y":132},{"X":15,"Y":96},{"X":16,"Y":98},{"X":17,"Y":74},{"X":18,"Y":83},{"X":19,"Y":78},{"X":20,"Y":72},{"X":21,"Y":64},{"X":22,"Y":49},{"X":23,"Y":57}]}\" type=\"text/x-scoped-javascript\">/*<![CDATA[*/ req(\n['d3', 'dimple'],\nfunction (d3, dimple) {\n var svg = d3.select(\"#bar222078854\");\n var chart = new dimple.chart(svg, data);\n chart.setBounds(50, 20, 540, 350);\n chart.addCategoryAxis(\"x\", \"X\");\n chart.addMeasureAxis(\"y\", \"Y\");\n chart.addSeries(null, dimple.plot.bar);\n chart.draw();\n});\n /*]]>*/</script></svg>\n </div>\n </div><div class=\"tab-pane\" id=\"tab891710757-2\">\n <div>\n <svg id=\"line921085912\" width=\"600px\" height=\"400px\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><script data-this=\"{"data":[{"X":0,"Y":3950},{"X":1,"Y":1739},{"X":2,"Y":973},{"X":3,"Y":621},{"X":4,"Y":498},{"X":5,"Y":405},{"X":6,"Y":312},{"X":7,"Y":286},{"X":8,"Y":229},{"X":9,"Y":192},{"X":10,"Y":159},{"X":11,"Y":146},{"X":12,"Y":130},{"X":13,"Y":120},{"X":14,"Y":132},{"X":15,"Y":96},{"X":16,"Y":98},{"X":17,"Y":74},{"X":18,"Y":83},{"X":19,"Y":78},{"X":20,"Y":72},{"X":21,"Y":64},{"X":22,"Y":49},{"X":23,"Y":57}]}\" type=\"text/x-scoped-javascript\">/*<![CDATA[*/req(\n['d3', 'dimple'],\nfunction (d3, dimple) {\n var svg = d3.select(\"#line921085912\");\n var chart = new dimple.chart(svg, data);\n chart.setBounds(50, 20, 540, 350);\n var x = chart.addCategoryAxis(\"x\", \"X\");\n chart.addMeasureAxis(\"y\", \"Y\");\n chart.addSeries(null, dimple.plot.line);\n chart.draw();\n});\n /*]]>*/</script></svg>\n </div>\n </div></div>\n </div>" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 99 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val kjBibleFrequencies = kjBibleCounts.map(w => (w._1, w._2.toFloat / kjBibleWordCount))\nval bibleFrequencies = kjBibleFrequencies.collectAsMap()", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "kjBibleFrequencies: org.apache.spark.rdd.RDD[(String, Float)] = MapPartitionsRDD[179] at map at <console>:56\nbibleFrequencies: scala.collection.Map[String,Float] = Map(ophel -> 6.3170237E-6, jude -> 1.2634047E-6, arts -> 1.2634047E-6, moseroth -> 2.5268093E-6, sounding -> 8.843833E-6, baali -> 1.2634047E-6, slippeth -> 3.7902141E-6, follow -> 1.0865281E-4, diseases -> 1.6424261E-5, establish -> 5.5589808E-5, calebephratah -> 1.2634047E-6, demand -> 5.0536187E-6, sighing -> 8.843833E-6, unperfect -> 1.2634047E-6, weakness -> 8.843833E-6, reaia -> 1.2634047E-6, sister -> 1.4655494E-4, palti -> 1.2634047E-6, manahath -> 3.7902141E-6, disquiet -> 1.2634047E-6, committing -> 2.5268093E-6, bashanhavothjair -> 1.2634047E-6, former -> 6.3170235E-5, itching -> 1.2634047E-6, labour -> 1.1244302E-..." | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "Map(ophel -> 6.3170237E-6, jude -> 1.2634047E-6, arts -> 1.2634047E-6, moseroth -> 2.5268093E-6, sounding -> 8.843833E-6, baali -> 1.2634047E-6, slippeth -> 3.7902141E-6, follow -> 1.0865281E-4, diseases -> 1.6424261E-5, establish -> 5.5589808E-5, calebephratah -> 1.2634047E-6, demand -> 5.0536187E-6, sighing -> 8.843833E-6, unperfect -> 1.2634047E-6, weakness -> 8.843833E-6, reaia -> 1.2634047E-6, sister -> 1.4655494E-4, palti -> 1.2634047E-6, manahath -> 3.7902141E-6, disquiet -> 1.2634047E-6, committing -> 2.5268093E-6, bashanhavothjair -> 1.2634047E-6, former -> 6.3170235E-5, itching -> 1.2634047E-6, labour -> 1.1244302E-4, dragons -> 2.0214475E-5, joiakim -> 5.0536187E-6, jonah -> 2.400469E-5, drunken -> 4.1692358E-5, growth -> 2.5268093E-6, preferred -> 6.3170237E-6, lendeth -> 5.0536187E-6, milcah -> 1.3897452E-5, pirathon -> 1.2634047E-6, pleasant -> 7.201407E-5, ferret -> 1.2634047E-6, needful -> 7.5804282E-6, othniel -> 8.843833E-6, lawgiver -> 8.843833E-6, thessalonica -> 7.5804282E-6, bazluth -> 1.2634047E-6, myrrh -> 2.1477881E-5, puah -> 3.7902141E-6, fugitive -> 2.5268093E-6, gaius -> 6.3170237E-6, witchcraft -> 3.7902141E-6, consorted -> 1.2634047E-6, perisheth -> 1.1370643E-5, enchantment -> 3.7902141E-6, babylon -> 3.7144098E-4, anem -> 1.2634047E-6, frankly -> 1.2634047E-6, handles -> 1.2634047E-6, urijah -> 1.3897452E-5, pathrusim -> 2.5268093E-6, orator -> 2.5268093E-6, amal -> 1.2634047E-6, liveth -> 1.2128685E-4, famous -> 1.2634047E-5, raw -> 8.843833E-6, skippedst -> 1.2634047E-6, joram -> 3.6638736E-5, glorying -> 5.0536187E-6, cuckow -> 2.5268093E-6, meat -> 3.6638736E-4, seeketh -> 5.3063E-5, brute -> 2.5268093E-6, created -> 5.6853212E-5, snuffers -> 7.5804282E-6, jeush -> 1.0107237E-5, eden -> 2.5268095E-5, pastors -> 1.0107237E-5, wanderers -> 2.5268093E-6, persecuting -> 1.2634047E-6, boanerges -> 1.2634047E-6, sixth -> 5.938002E-5, izharites -> 3.7902141E-6, nourishment -> 1.2634047E-6, yearly -> 1.1370643E-5, satisfy -> 1.2634047E-5, comfortless -> 1.2634047E-6, fain -> 2.5268093E-6, thee -> 0.00483505, restoreth -> 2.5268093E-6, spent -> 2.400469E-5, eased -> 2.5268093E-6, intreated -> 2.2741286E-5, jehozabad -> 5.0536187E-6, ithran -> 3.7902141E-6, hard -> 5.6853212E-5, contemned -> 5.0536187E-6, zeruiah -> 3.2848522E-5, dances -> 7.5804282E-6, questioned -> 3.7902141E-6, lover -> 5.0536187E-6, war -> 2.8426608E-4, infirmities -> 1.51608565E-5, bonds -> 3.2848522E-5, halted -> 2.5268093E-6, herbs -> 2.2741286E-5, ephlal -> 2.5268093E-6, susanchites -> 1.2634047E-6, unprofitable -> 8.843833E-6, closets -> 1.2634047E-6, neri -> 1.2634047E-6, sodom -> 6.0643426E-5, seat -> 7.327747E-5, gap -> 1.2634047E-6, communicated -> 2.5268093E-6, wedlock -> 1.2634047E-6, zimri -> 1.895107E-5, shaalabbin -> 1.2634047E-6, arnan -> 1.2634047E-6, vessels -> 1.9456433E-4, carry -> 1.13706425E-4, suchathites -> 1.2634047E-6, opening -> 8.843833E-6, lign -> 1.2634047E-6, goblet -> 1.2634047E-6, expedient -> 8.843833E-6, lahad -> 1.2634047E-6, openings -> 1.2634047E-6, inwardly -> 3.7902141E-6, almighty -> 7.201407E-5, exempted -> 1.2634047E-6, adiel -> 3.7902141E-6, beri -> 1.2634047E-6, padan -> 1.2634047E-6, partakest -> 1.2634047E-6, sycomores -> 1.2634047E-6, serveth -> 1.1370643E-5, saruch -> 1.2634047E-6, peril -> 2.5268093E-6, mamre -> 1.2634047E-5, ligure -> 2.5268093E-6, severed -> 3.7902141E-6, betray -> 2.2741286E-5, gay -> 1.2634047E-6, easier -> 1.0107237E-5, scribe -> 6.822385E-5, azrikam -> 7.5804282E-6, nahalal -> 1.2634047E-6, anak -> 1.1370643E-5, dalmanutha -> 1.2634047E-6, therefore -> 0.0015628317, beginnings -> 5.0536187E-6, rude -> 1.2634047E-6, gentile -> 2.5268093E-6, steel -> 5.0536187E-6, melted -> 1.6424261E-5, shooters -> 1.2634047E-6, chaldaeans -> 1.2634047E-6, jimna -> 1.2634047E-6, evildoer -> 2.5268093E-6, large -> 2.65315E-5, frustrate -> 2.5268093E-6, akan -> 1.2634047E-6, adaiah -> 1.1370643E-5, jehozadak -> 2.5268093E-6, botch -> 2.5268093E-6, pirathonite -> 6.3170237E-6, effected -> 1.2634047E-6, timbrel -> 6.3170237E-6, overcometh -> 1.3897452E-5, discerned -> 5.0536187E-6, messengers -> 9.9808974E-5, wretched -> 2.5268093E-6, armholes -> 2.5268093E-6, sotai -> 2.5268093E-6, their -> 0.0049803415, reckoneth -> 1.2634047E-6, lordship -> 2.5268093E-6, occupation -> 6.3170237E-6, followers -> 1.0107237E-5, eleazar -> 9.349195E-5, suffered -> 6.3170235E-5, presently -> 6.3170237E-6, graffed -> 6.3170237E-6, bishop -> 5.0536187E-6, ocran -> 6.3170237E-6, beguiled -> 6.3170237E-6, meribahkadesh -> 1.2634047E-6, limit -> 1.2634047E-6, nophah -> 1.2634047E-6, possessed -> 4.9272785E-5, wilily -> 1.2634047E-6, azaz -> 1.2634047E-6, heretofore -> 1.0107237E-5, eldaah -> 2.5268093E-6, agates -> 1.2634047E-6, bithiah -> 1.2634047E-6, foot -> 1.2002345E-4, pay -> 4.9272785E-5, floors -> 2.5268093E-6, rissah -> 2.5268093E-6, shaashgaz -> 1.2634047E-6, godhead -> 3.7902141E-6, jonathan -> 1.5287197E-4, gaddiel -> 1.2634047E-6, maachah -> 2.2741286E-5, sixteenth -> 3.7902141E-6, exhorted -> 3.7902141E-6, sephar -> 1.2634047E-6, bred -> 1.2634047E-6, pursuing -> 1.0107237E-5, mercy -> 3.4869972E-4, complain -> 5.0536187E-6, suddenly -> 5.1799594E-5, ezra -> 3.2848522E-5, beloved -> 1.4655494E-4, approveth -> 1.2634047E-6, detained -> 1.2634047E-6, ethni -> 1.2634047E-6, prevent -> 8.843833E-6, pruninghooks -> 3.7902141E-6, straitly -> 1.3897452E-5, talking -> 1.1370643E-5, workmen -> 1.51608565E-5, jeshishai -> 1.2634047E-6, conspiracy -> 1.2634047E-5, gnashed -> 2.5268093E-6, enquirest -> 1.2634047E-6, jotbathah -> 2.5268093E-6, fellowlabourers -> 2.5268093E-6, mother -> 4.0428952E-4, horseman -> 2.5268093E-6, temperate -> 3.7902141E-6, rank -> 7.5804282E-6, nourisher -> 1.2634047E-6, apprehend -> 2.5268093E-6, distinction -> 1.2634047E-6, diviners -> 8.843833E-6, trespassed -> 1.895107E-5, ensnared -> 1.2634047E-6, elam -> 3.537533E-5, bethpazzez -> 1.2634047E-6, raven -> 7.5804282E-6, weak -> 5.8116617E-5, plowman -> 2.5268093E-6, jaziz -> 1.2634047E-6, childish -> 1.2634047E-6, jerubbaal -> 1.7687666E-5, bushel -> 3.7902141E-6, dues -> 1.2634047E-6, vapours -> 5.0536187E-6, phalec -> 1.2634047E-6, stumble -> 2.400469E-5, enhakkore -> 1.2634047E-6, fellowprisoner -> 2.5268093E-6, ignorant -> 2.1477881E-5, resisteth -> 5.0536187E-6, launched -> 5.0536187E-6, hachaliah -> 2.5268093E-6, overthroweth -> 6.3170237E-6, matthew -> 6.3170237E-6, heaved -> 3.7902141E-6, mete -> 7.5804282E-6, changes -> 8.843833E-6, punishment -> 3.4111927E-5, member -> 7.5804282E-6, habergeon -> 3.7902141E-6, deprived -> 3.7902141E-6, reward -> 1.0107238E-4, flea -> 2.5268093E-6, playeth -> 1.2634047E-6, borders -> 5.4326403E-5, look -> 1.9709114E-4, fit -> 1.1370643E-5, refrained -> 8.843833E-6, moreh -> 3.7902141E-6, crag -> 1.2634047E-6, took -> 9.4755355E-4, widows -> 3.2848522E-5, lain -> 7.5804282E-6, withdrew -> 7.5804282E-6, useth -> 8.843833E-6, appertaineth -> 2.5268093E-6, encamp -> 1.3897452E-5, disguiseth -> 1.2634047E-6, leprous -> 7.5804282E-6, sluices -> 1.2634047E-6, zelah -> 2.5268093E-6, lapidoth -> 1.2634047E-6, booths -> 1.1370643E-5, remainest -> 2.5268093E-6, robbeth -> 1.2634047E-6, immortality -> 6.3170237E-6, hiddekel -> 2.5268093E-6, watches -> 6.3170237E-6, jethro -> 1.2634047E-5, next -> 7.580428E-5, zoba -> 2.5268093E-6, nevertheless -> 1.2128685E-4, bee -> 1.2634047E-6, conformed -> 2.5268093E-6, grandmother -> 1.2634047E-6, listen -> 1.2634047E-6, eyesalve -> 1.2634047E-6, hearest -> 1.3897452E-5, recompensest -> 1.2634047E-6, stewardship -> 3.7902141E-6, whose -> 3.9670907E-4, residue -> 4.2955762E-5, sheariah -> 2.5268093E-6, stealing -> 2.5268093E-6, pant -> 1.2634047E-6, conceiving -> 1.2634047E-6, mantle -> 1.6424261E-5, adonizedec -> 2.5268093E-6, risest -> 2.5268093E-6, mattatha -> 1.2634047E-6, perfume -> 3.7902141E-6, unjust -> 2.1477881E-5, acknowledgeth -> 1.2634047E-6, midnight -> 1.7687666E-5, smite -> 1.5792559E-4, zattu -> 3.7902141E-6, farm -> 1.2634047E-6, shenazar -> 1.2634047E-6, ariel -> 7.5804282E-6, troubleth -> 1.2634047E-5, bracelet -> 1.2634047E-6, seventeenth -> 7.5804282E-6, achaicus -> 1.2634047E-6, harodite -> 2.5268093E-6, jebus -> 5.0536187E-6, laver -> 1.895107E-5, stewards -> 5.0536187E-6, korathites -> 1.2634047E-6, move -> 1.6424261E-5, wallowed -> 2.5268093E-6, cedron -> 1.2634047E-6, shaphat -> 1.0107237E-5, tarriest -> 1.2634047E-6, lied -> 5.0536187E-6, abiel -> 3.7902141E-6, chesalon -> 1.2634047E-6, servitude -> 2.5268093E-6, nations -> 4.24504E-4, adders -> 1.2634047E-6, distant -> 1.2634047E-6, redeem -> 7.075066E-5, calkers -> 2.5268093E-6, vines -> 1.51608565E-5, keepers -> 2.65315E-5, wiser -> 1.0107237E-5, followedst -> 1.2634047E-6, gaash -> 5.0536187E-6, churches -> 4.6745976E-5, kelaiah -> 1.2634047E-6, coloured -> 1.2634047E-6, waxed -> 4.6745976E-5, winnoweth -> 1.2634047E-6, sardis -> 3.7902141E-6, devourer -> 1.2634047E-6, elparan -> 1.2634047E-6, bottom -> 2.5268095E-5, seneh -> 1.2634047E-6, sadducees -> 1.7687666E-5, seduceth -> 1.2634047E-6, heled -> 1.2634047E-6, siloah -> 1.2634047E-6, pipers -> 1.2634047E-6, voluntarily -> 1.2634047E-6, lael -> 1.2634047E-6, pluck -> 3.790214E-5, shearjashub -> 1.2634047E-6, abusers -> 1.2634047E-6, intended -> 1.2634047E-6, detest -> 1.2634047E-6, soberness -> 1.2634047E-6, cousins -> 1.2634047E-6, believeth -> 5.6853212E-5, celestial -> 2.5268093E-6, mattan -> 3.7902141E-6, vaunt -> 1.2634047E-6, defence -> 2.7794904E-5, dressed -> 8.843833E-6, unblameable -> 2.5268093E-6, operation -> 3.7902141E-6, quickly -> 4.9272785E-5, must -> 1.6676943E-4, mollified -> 1.2634047E-6, commanding -> 5.0536187E-6, town -> 1.6424261E-5, ulam -> 5.0536187E-6, sihor -> 3.7902141E-6, jehdeiah -> 2.5268093E-6, salcah -> 3.7902141E-6, weighing -> 2.5268093E-6, inventions -> 6.3170237E-6, elul -> 1.2634047E-6, offence -> 2.400469E-5, danjaan -> 1.2634047E-6, ran -> 7.7067685E-5, piercings -> 1.2634047E-6, busy -> 1.2634047E-6, unworthily -> 2.5268093E-6, sour -> 6.3170237E-6, suckling -> 3.7902141E-6, incontinent -> 1.2634047E-6, bishoprick -> 1.2634047E-6, horror -> 5.0536187E-6, arabian -> 5.0536187E-6, contemn -> 2.5268093E-6, jobab -> 1.1370643E-5, aul -> 2.5268093E-6, baruch -> 3.2848522E-5, entangle -> 1.2634047E-6, sansannah -> 1.2634047E-6, either -> 5.1799594E-5, afraid -> 2.4383712E-4, reserve -> 3.7902141E-6, tremble -> 3.6638736E-5, melchi -> 2.5268093E-6, stirreth -> 1.0107237E-5, leummim -> 1.2634047E-6, deride -> 1.2634047E-6, neiel -> 1.2634047E-6, pate -> 1.2634047E-6, zebulonite -> 2.5268093E-6, robbery -> 8.843833E-6, purity -> 2.5268093E-6, cumi -> 1.2634047E-6, caphtor -> 3.7902141E-6, abijah -> 2.5268095E-5, endor -> 3.7902141E-6, reigneth -> 1.6424261E-5, faithless -> 5.0536187E-6, goods -> 5.3063E-5, endangered -> 1.2634047E-6, aiath -> 1.2634047E-6, spoileth -> 5.0536187E-6, dalphon -> 1.2634047E-6, saying -> 0.0018256198, turnest -> 3.7902141E-6, friendship -> 2.5268093E-6, deceits -> 2.5268093E-6, forbid -> 4.6745976E-5, pain -> 3.1585118E-5, punites -> 1.2634047E-6, ahitub -> 1.895107E-5, jathniel -> 1.2634047E-6, stolen -> 1.895107E-5, think -> 8.212131E-5, fiercer -> 1.2634047E-6, adrammelech -> 3.7902141E-6, poratha -> 1.2634047E-6, augment -> 1.2634047E-6, kohath -> 4.042895E-5, go -> 0.0018849998, doeg -> 6.3170237E-6, dwell -> 4.2703078E-4, carcases -> 2.7794904E-5, median -> 1.2634047E-6, diddest -> 1.2634047E-6, yesternight -> 3.7902141E-6, many -> 7.02453E-4, fire -> 6.936092E-4, recommended -> 2.5268093E-6, range -> 1.2634047E-6, foreseeth -> 2.5268093E-6, drawing -> 2.5268093E-6, pluckt -> 1.2634047E-6, fruit -> 2.6278818E-4, piety -> 1.2634047E-6, sicknesses -> 5.0536187E-6, shadrach -> 1.895107E-5, unseemly -> 2.5268093E-6, clothes -> 1.2760388E-4, jaddua -> 3.7902141E-6, darkeneth -> 1.2634047E-6, plea -> 2.5268093E-6, armour -> 3.0321713E-5, lights -> 1.2634047E-5, ami -> 1.2634047E-6, speedily -> 2.400469E-5, renewest -> 2.5268093E-6, abi -> 1.2634047E-6, forces -> 2.0214475E-5, complaining -> 1.2634047E-6, difference -> 1.51608565E-5, chinnereth -> 5.0536187E-6, whit -> 6.3170237E-6, resemblance -> 1.2634047E-6, angered -> 1.2634047E-6, waters -> 3.6259714E-4, maliciousness -> 2.5268093E-6, bathed -> 1.2634047E-6, victual -> 6.3170237E-6, jerusha -> 1.2634047E-6, liver -> 1.7687666E-5, gittites -> 2.5268093E-6, laadah -> 1.2634047E-6, temeni -> 1.2634047E-6, approach -> 2.400469E-5, cross -> 3.537533E-5, but -> 0.0050435117, oaks -> 7.5804282E-6, cock -> 1.51608565E-5, tied -> 1.0107237E-5, chelal -> 1.2634047E-6, damaris -> 1.2634047E-6, clad -> 2.5268093E-6, jahath -> 1.0107237E-5, gnat -> 1.2634047E-6, aholibah -> 7.5804282E-6, eldest -> 1.7687666E-5, conflict -> 2.5268093E-6, attentive -> 6.3170237E-6, ephphatha -> 1.2634047E-6, eternal -> 5.938002E-5, practise -> 5.0536187E-6, pole -> 2.5268093E-6, wateredst -> 1.2634047E-6, ishui -> 1.2634047E-6, delivereth -> 1.6424261E-5, rooted -> 1.0107237E-5, pharaoh -> 3.449095E-4, root -> 5.5589808E-5, hire -> 2.9058308E-5, sang -> 1.3897452E-5, revenged -> 1.2634047E-6, lie -> 1.9582773E-4, cab -> 1.2634047E-6, vanisheth -> 2.5268093E-6, plucketh -> 1.2634047E-6, tiberius -> 1.2634047E-6, aijalon -> 8.843833E-6, nobah -> 3.7902141E-6, square -> 3.7902141E-6, truly -> 5.3063E-5, powers -> 1.7687666E-5, oppressing -> 3.7902141E-6, priests -> 5.053619E-4, jehud -> 1.2634047E-6, prophesieth -> 8.843833E-6, remain -> 9.9808974E-5, invade -> 2.5268093E-6, disputations -> 1.2634047E-6, jeremiah -> 1.8572049E-4, fugitives -> 5.0536187E-6, glorified -> 6.3170235E-5, sunrising -> 1.2634047E-5, holiness -> 5.4326403E-5, wares -> 6.3170237E-6, shammoth -> 1.2634047E-6, harm -> 2.0214475E-5, agar -> 2.5268093E-6, wires -> 1.2634047E-6, ear -> 1.5160856E-4, shepho -> 1.2634047E-6, liftest -> 5.0536187E-6, syrophenician -> 1.2634047E-6, shammuah -> 1.2634047E-6, eagle -> 3.1585118E-5, congregations -> 3.7902141E-6, arod -> 1.2634047E-6, fried -> 2.5268093E-6, semei -> 1.2634047E-6, azubah -> 5.0536187E-6, famines -> 3.7902141E-6, flow -> 1.6424261E-5, laughing -> 1.2634047E-6, shimhi -> 1.2634047E-6, lesser -> 3.7902141E-6, vineyard -> 8.717493E-5, thinketh -> 7.5804282E-6, reprobate -> 5.0536187E-6, fattest -> 2.5268093E-6, selah -> 9.4755356E-5, midday -> 3.7902141E-6, unloose -> 3.7902141E-6, hurt -> 7.9594494E-5, coveted -> 3.7902141E-6, climbeth -> 1.2634047E-6, baptism -> 2.7794904E-5, standest -> 7.5804282E-6, crowneth -> 1.2634047E-6, ramath -> 1.2634047E-6, gray -> 6.3170237E-6, afflicted -> 6.822385E-5, shimron -> 5.0536187E-6, aboundeth -> 3.7902141E-6, parteth -> 3.7902141E-6, mentioned -> 8.843833E-6, rezon -> 1.2634047E-6, soldiers -> 3.790214E-5, enrich -> 2.5268093E-6, heath -> 2.5268093E-6, ephesian -> 1.2634047E-6, anab -> 2.5268093E-6, escape -> 7.4540876E-5, ibleam -> 3.7902141E-6, scant -> 1.2634047E-6, directly -> 2.5268093E-6, dregs -> 3.7902141E-6, abimelech -> 8.3384715E-5, ensign -> 1.0107237E-5, inheritances -> 1.2634047E-6, distress -> 4.1692358E-5, hate -> 1.0991621E-4, wentest -> 1.7687666E-5, reviving -> 2.5268093E-6, why -> 3.5628013E-4, founder -> 6.3170237E-6, sad -> 1.3897452E-5, late -> 3.7902141E-6, naomi -> 2.65315E-5, prophet -> 3.0700734E-4, seemeth -> 3.537533E-5, plow -> 1.0107237E-5, dealers -> 2.5268093E-6, hachmonite -> 1.2634047E-6, dog -> 2.1477881E-5, philadelphia -> 2.5268093E-6, compassest -> 1.2634047E-6, bemoaning -> 1.2634047E-6, perfected -> 1.0107237E-5, jasiel -> 1.2634047E-6, consulter -> 1.2634047E-6, singular -> 1.2634047E-6, barrel -> 3.7902141E-6, talebearer -> 7.5804282E-6, elkanah -> 2.65315E-5, zerubbabel -> 2.7794904E-5, rechabites -> 5.0536187E-6, lacking -> 1.0107237E-5, alone -> 1.364477E-4, decked -> 7.5804282E-6, cedars -> 3.0321713E-5, learning -> 1.1370643E-5, guides -> 2.5268093E-6, edrei -> 1.0107237E-5, bekah -> 1.2634047E-6, plates -> 7.5804282E-6, swearers -> 1.2634047E-6, ahaz -> 5.3063E-5, berothite -> 1.2634047E-6, helekites -> 1.2634047E-6, dreadful -> 1.1370643E-5, gadarenes -> 3.7902141E-6, covet -> 1.0107237E-5, sherd -> 1.2634047E-6, venomous -> 1.2634047E-6, addi -> 1.2634047E-6, yellow -> 5.0536187E-6, jeshebeab -> 1.2634047E-6, count -> 3.2848522E-5, snuffed -> 2.5268093E-6, moving -> 6.3170237E-6, pygarg -> 1.2634047E-6, acceptable -> 2.9058308E-5, bloodguiltiness -> 1.2634047E-6, voice -> 6.380194E-4, third -> 2.2993966E-4, nain -> 1.2634047E-6, melt -> 2.1477881E-5, expressly -> 3.7902141E-6, kerenhappuch -> 1.2634047E-6, pelaliah -> 1.2634047E-6, helem -> 2.5268093E-6, baana -> 2.5268093E-6, hoary -> 5.0536187E-6, writing -> 4.800938E-5, shachia -> 1.2634047E-6, scroll -> 2.5268093E-6, blasted -> 6.3170237E-6, estimations -> 1.2634047E-6, rain -> 1.2886728E-4, japhia -> 6.3170237E-6, israelitish -> 3.7902141E-6, findest -> 2.5268093E-6, shovel -> 1.2634047E-6, benhail -> 1.2634047E-6, immortal -> 1.2634047E-6, gates -> 1.8193029E-4, oughtest -> 5.0536187E-6, unclean -> 2.4510053E-4, shouted -> 1.7687666E-5, trespass -> 1.0359919E-4, wise -> 3.1206096E-4, overlaying -> 2.5268093E-6, price -> 4.1692358E-5, am -> 0.0011042157, gederah -> 1.2634047E-6, majesty -> 3.6638736E-5, sardonyx -> 1.2634047E-6, eli -> 4.4219167E-5, tilled -> 2.5268093E-6, slip -> 6.3170237E-6, expired -> 1.1370643E-5, winebibber -> 2.5268093E-6, uncleannesses -> 1.2634047E-6, nahaliel -> 2.5268093E-6, getteth -> 1.1370643E-5, then -> 0.002740325, mansions -> 1.2634047E-6, observest -> 1.2634047E-6, greyheaded -> 1.2634047E-6, quarter -> 1.0107237E-5, twinkling -> 1.2634047E-6, encouraged -> 6.3170237E-6, supper -> 1.7687666E-5, shebam -> 1.2634047E-6, danites -> 5.0536187E-6, cords -> 3.2848522E-5, hook -> 6.3170237E-6, hiss -> 1.51608565E-5, bendeth -> 2.5268093E-6, officers -> 7.327747E-5, amzi -> 2.5268093E-6, askelon -> 3.7902141E-6, dibri -> 1.2634047E-6, robber -> 6.3170237E-6, rainbow -> 2.5268093E-6, transgressor -> 6.3170237E-6, hastened -> 8.843833E-6, assos -> 2.5268093E-6, sered -> 2.5268093E-6, chelub -> 2.5268093E-6, entrance -> 1.3897452E-5, gier -> 2.5268093E-6, childhood -> 2.5268093E-6, wreaths -> 3.7902141E-6, machbanai -> 1.2634047E-6, shimeam -> 1.2634047E-6, netophathites -> 2.5268093E-6, madmen -> 1.2634047E-6, besodeiah -> 1.2634047E-6, helkai -> 1.2634047E-6, zoan -> 8.843833E-6, availeth -> 5.0536187E-6, strake -> 1.2634047E-6, amen -> 9.854557E-5, bittern -> 3.7902141E-6, slippery -> 3.7902141E-6, sardites -> 1.2634047E-6, filleth -> 7.5804282E-6, persecutor -> 1.2634047E-6, ammonite -> 1.1370643E-5, caldron -> 7.5804282E-6, provender -> 8.843833E-6, watcheth -> 3.7902141E-6, sting -> 2.5268093E-6, adummim -> 2.5268093E-6, wrong -> 3.2848522E-5, murder -> 1.1370643E-5, tables -> 7.075066E-5, moons -> 1.3897452E-5, apothecary -> 5.0536187E-6, libnites -> 2.5268093E-6, buildings -> 3.7902141E-6, birzavith -> 1.2634047E-6, trusted -> 3.6638736E-5, glad -> 1.1244302E-4, desiredst -> 2.5268093E-6, restraint -> 1.2634047E-6, hungred -> 1.1370643E-5, uzziel -> 2.0214475E-5, leadest -> 1.2634047E-6, moneychangers -> 2.5268093E-6, clothed -> 9.222855E-5, agee -> 1.2634047E-6, feebleminded -> 1.2634047E-6, harps -> 2.5268095E-5, topheth -> 1.2634047E-6, ministereth -> 2.5268093E-6, basest -> 2.5268093E-6, rezin -> 1.3897452E-5, ramothgilead -> 2.400469E-5, hardness -> 8.843833E-6, committest -> 1.2634047E-6, sucked -> 2.5268093E-6, nebat -> 3.1585118E-5, chaldeans -> 8.3384715E-5, taanach -> 7.5804282E-6, midwife -> 3.7902141E-6, cleophas -> 1.2634047E-6, womenservants -> 3.7902141E-6, gross -> 5.0536187E-6, heres -> 1.2634047E-6, theatre -> 2.5268093E-6, circumcision -> 4.548257E-5, abomination -> 9.601876E-5, sprang -> 8.843833E-6, struck -> 8.843833E-6, striven -> 1.2634047E-6, could -> 2.0972519E-4, vile -> 2.400469E-5, traveller -> 2.5268093E-6, steward -> 1.6424261E-5, mart -> 1.2634047E-6, syrians -> 7.7067685E-5, is -> 0.008829935, frogs -> 1.7687666E-5, evils -> 1.1370643E-5, barbed -> 1.2634047E-6, bowmen -> 1.2634047E-6, powders -> 1.2634047E-6, telharsa -> 1.2634047E-6, appearing -> 7.5804282E-6, hivite -> 1.1370643E-5, inkhorn -> 3.7902141E-6, therof -> 1.2634047E-6, bondman -> 7.5804282E-6, hirah -> 2.5268093E-6, purchase -> 1.0107237E-5, shoulder -> 4.800938E-5, cease -> 8.843833E-5, ezekias -> 2.5268093E-6, swift -> 2.5268095E-5, joppa -> 1.6424261E-5, feet -> 3.234316E-4, rode -> 1.895107E-5, abishag -> 6.3170237E-6, determined -> 3.790214E-5, bethabara -> 1.2634047E-6, lump -> 8.843833E-6, breaketh -> 2.1477881E-5, organ -> 3.7902141E-6, mizpeh -> 2.9058308E-5, jambres -> 1.2634047E-6, winepresses -> 3.7902141E-6, haft -> 1.2634047E-6, sheth -> 2.5268093E-6, contribution -> 1.2634047E-6, bath -> 7.5804282E-6, books -> 1.0107237E-5, libnah -> 2.2741286E-5, swaddling -> 2.5268093E-6, raiser -> 1.2634047E-6, unreproveable -> 1.2634047E-6, railings -> 1.2634047E-6, acknowledge -> 2.1477881E-5, resort -> 5.0536187E-6, children -> 0.00230066, sojourneth -> 1.895107E-5, departeth -> 1.0107237E-5, simple -> 2.5268095E-5, pile -> 2.5268093E-6, ahiramites -> 1.2634047E-6, regarded -> 1.1370643E-5, burneth -> 2.2741286E-5, merchandise -> 2.7794904E-5, impediment -> 1.2634047E-6, naboth -> 2.7794904E-5, alammelech -> 1.2634047E-6, tender -> 4.9272785E-5, ezbon -> 2.5268093E-6, plenteousness -> 2.5268093E-6, magdiel -> 2.5268093E-6, divide -> 6.190683E-5, reuben -> 9.349195E-5, justification -> 3.7902141E-6, thanksgivings -> 2.5268093E-6, fled -> 1.844571E-4, increasing -> 1.2634047E-6, ashtoreth -> 3.7902141E-6, wish -> 7.5804282E-6, rump -> 6.3170237E-6, indignation -> 5.1799594E-5, high -> 5.2557635E-4, belongeth -> 2.5268095E-5, contend -> 1.7687666E-5, pentecost -> 3.7902141E-6, paramours -> 1.2634047E-6, sinai -> 4.6745976E-5, cud -> 1.3897452E-5, debate -> 5.0536187E-6, sustenance -> 3.7902141E-6, quickening -> 1.2634047E-6, treasurer -> 2.5268093E-6, igal -> 2.5268093E-6, shephi -> 1.2634047E-6, tatnai -> 5.0536187E-6, bridleth -> 1.2634047E-6, spark -> 2.5268093E-6, inditing -> 1.2634047E-6, enan -> 6.3170237E-6, fiery -> 2.5268095E-5, kish -> 2.65315E-5, patrimony -> 1.2634047E-6, neighing -> 1.2634047E-6, conceit -> 6.3170237E-6, keilah -> 2.2741286E-5, jeduthun -> 1.7687666E-5, hangeth -> 2.5268093E-6, redeemed -> 7.833109E-5, circle -> 1.2634047E-6, covers -> 3.7902141E-6, wail -> 3.7902141E-6, consist -> 1.2634047E-6, aramitess -> 1.2634047E-6, doorkeeper -> 1.2634047E-6, overtook -> 1.2634047E-5, smiteth -> 1.6424261E-5, hezekiah -> 1.617158E-4, crescens -> 1.2634047E-6, diseased -> 1.0107237E-5, faintness -> 1.2634047E-6, cold -> 2.2741286E-5, looked -> 1.8066687E-4, activity -> 1.2634047E-6, undefiled -> 8.843833E-6, merari -> 4.9272785E-5, voweth -> 1.2634047E-6, jezerites -> 1.2634047E-6, deputed -> 1.2634047E-6, yet -> 8.629054E-4, adoption -> 6.3170237E-6, doubtful -> 2.5268093E-6, noah -> 6.696045E-5, sisera -> 2.65315E-5, minds -> 2.0214475E-5, shipmaster -> 2.5268093E-6, luhith -> 2.5268093E-6, trimmest -> 1.2634047E-6, didymus -> 3.7902141E-6, thresheth -> 1.2634047E-6, valiantly -> 7.5804282E-6, surnamed -> 1.0107237E-5, geba -> 1.51608565E-5, industrious -> 1.2634047E-6, within -> 2.3499328E-4, eznite -> 1.2634047E-6, equality -> 2.5268093E-6, defied -> 7.5804282E-6, psalteries -> 1.7687666E-5, intermission -> 1.2634047E-6, begettest -> 2.5268093E-6, thief -> 3.537533E-5, butlership -> 1.2634047E-6, bishlam -> 1.2634047E-6, magnified -> 2.65315E-5, countries -> 6.948726E-5, guided -> 6.3170237E-6, azotus -> 1.2634047E-6, bethdagon -> 2.5268093E-6, shahazimah -> 1.2634047E-6, deals -> 2.400469E-5, knowest -> 1.1244302E-4, ruin -> 1.3897452E-5, proclamation -> 1.1370643E-5, nymphas -> 1.2634047E-6, beautiful -> 2.9058308E-5, determine -> 1.2634047E-6, lawyers -> 6.3170237E-6, multiplying -> 2.5268093E-6, cried -> 2.5141754E-4, unwalled -> 3.7902141E-6, greetings -> 3.7902141E-6, stopped -> 1.895107E-5, curse -> 1.2760388E-4, disobedience -> 7.5804282E-6, crownedst -> 1.2634047E-6, jeshua -> 3.6638736E-5, thou -> 0.0069158776, soothsaying -> 1.2634047E-6, speech -> 6.190683E-5, dip -> 1.2634047E-5, perfect -> 1.2507707E-4, jecholiah -> 1.2634047E-6, ahiam -> 2.5268093E-6, coupleth -> 2.5268093E-6, ephrathites -> 1.2634047E-6, mean -> 2.7794904E-5, leper -> 2.1477881E-5, doubteth -> 1.2634047E-6, olives -> 1.895107E-5, workfellow -> 1.2634047E-6, pricks -> 3.7902141E-6, harnepher -> 1.2634047E-6, chains -> 4.6745976E-5, bethjeshimoth -> 3.7902141E-6, shimrith -> 1.2634047E-6, lads -> 1.2634047E-6, glorifieth -> 1.2634047E-6, testifieth -> 6.3170237E-6, become -> 1.7055964E-4, school -> 1.2634047E-6, endureth -> 7.4540876E-5, madness -> 1.1370643E-5, pained -> 6.3170237E-6, pursuer -> 1.2634047E-6, uprightness -> 2.400469E-5, pining -> 1.2634047E-6, imputed -> 1.0107237E-5, journey -> 7.580428E-5, cockatrice -> 3.7902141E-6, players -> 2.5268093E-6, sprigs -> 2.5268093E-6, warmed -> 7.5804282E-6, prince -> 1.326575E-4, divining -> 1.2634047E-6, dearly -> 1.2634047E-5, lawfully -> 2.5268093E-6, envyings -> 2.5268093E-6, decketh -> 1.2634047E-6, uthai -> 2.5268093E-6, melody -> 5.0536187E-6, shilonite -> 6.3170237E-6, zobebah -> 1.2634047E-6, sia -> 1.2634047E-6, possesseth -> 2.5268093E-6, uncorruptible -> 1.2634047E-6, jadau -> 1.2634047E-6, philip -> 4.548257E-5, mouths -> 2.400469E-5, ibnijah -> 1.2634047E-6, judge -> 2.413103E-4, scaleth -> 1.2634047E-6, tob -> 2.5268093E-6, chalcol -> 1.2634047E-6, forasmuch -> 5.4326403E-5, farewell -> 5.0536187E-6, behemoth -> 1.2634047E-6, riot -> 3.7902141E-6, encourage -> 5.0536187E-6, aniam -> 1.2634047E-6, published -> 1.3897452E-5, zarthan -> 1.2634047E-6, minnith -> 2.5268093E-6, robbers -> 1.3897452E-5, corruptible -> 8.843833E-6, fowlers -> 1.2634047E-6, reproachfully -> 2.5268093E-6, tithe -> 1.7687666E-5, kirharaseth -> 1.2634047E-6, ere -> 1.2634047E-5, hashupha -> 1.2634047E-6, prove -> 3.1585118E-5, gathered -> 3.3732905E-4, prospect -> 7.5804282E-6, shiphi -> 1.2634047E-6, danger -> 8.843833E-6, intreat -> 1.895107E-5, elnathan -> 8.843833E-6, chittim -> 7.5804282E-6, camped -> 1.2634047E-6, planes -> 1.2634047E-6, rejoicest -> 1.2634047E-6, compel -> 6.3170237E-6, rear -> 5.0536187E-6, barjesus -> 1.2634047E-6, messiah -> 2.5268093E-6, jahaz -> 6.3170237E-6, chastiseth -> 1.2634047E-6, uriah -> 3.537533E-5, shelemiah -> 1.2634047E-5, orchard -> 1.2634047E-6, afflictions -> 1.6424261E-5, bloomed -> 1.2634047E-6, jerubbesheth -> 1.2634047E-6, arising -> 1.2634047E-6, dealing -> 1.2634047E-6, philistine -> 4.1692358E-5, hammath -> 1.2634047E-6, anan -> 1.2634047E-6, shalmaneser -> 2.5268093E-6, bettered -> 1.2634047E-6, lingered -> 2.5268093E-6, elioenai -> 1.0107237E-5, esli -> 1.2634047E-6, teman -> 1.3897452E-5, cushan -> 1.2634047E-6, alush -> 2.5268093E-6, palsy -> 1.6424261E-5, deceivings -> 1.2634047E-6, heaped -> 2.5268093E-6, shechaniah -> 1.0107237E-5, gathhepher -> 1.2634047E-6, abida -> 1.2634047E-6, hemdan -> 1.2634047E-6, fringes -> 2.5268093E-6, doubts -> 2.5268093E-6, disobedient -> 1.6424261E-5, grieveth -> 2.5268093E-6, amphipolis -> 1.2634047E-6, millstones -> 2.5268093E-6, teareth -> 7.5804282E-6, elipheleh -> 2.5268093E-6, leathern -> 1.2634047E-6, freckled -> 1.2634047E-6, sundry -> 1.2634047E-6, salted -> 5.0536187E-6, sheepfolds -> 3.7902141E-6, groves -> 3.0321713E-5, noonday -> 8.843833E-6, helmet -> 1.0107237E-5, nahamani -> 1.2634047E-6, lusty -> 1.2634047E-6, wounding -> 1.2634047E-6, turtledoves -> 8.843833E-6, bless -> 1.604524E-4, jehieli -> 2.5268093E-6, happeneth -> 7.5804282E-6, anvil -> 1.2634047E-6, writest -> 2.5268093E-6, handkerchiefs -> 1.2634047E-6, required -> 2.7794904E-5, unaccustomed -> 1.2634047E-6, phichol -> 3.7902141E-6, handled -> 3.7902141E-6, ziba -> 2.0214475E-5, sychem -> 2.5268093E-6, carshena -> 1.2634047E-6, unicorns -> 3.7902141E-6, keeping -> 1.51608565E-5, saphir -> 1.2634047E-6, maker -> 2.5268095E-5, kingdom -> 4.320844E-4, sepharvites -> 1.2634047E-6, tortoise -> 1.2634047E-6, dig -> 1.6424261E-5, gur -> 1.2634047E-6, palestina -> 3.7902141E-6, requireth -> 2.5268093E-6, decapolis -> 3.7902141E-6, rewardeth -> 7.5804282E-6, shua -> 2.5268093E-6, intents -> 2.5268093E-6, dispossessed -> 2.5268093E-6, nehum -> 1.2634047E-6, adbeel -> 2.5268093E-6, foes -> 8.843833E-6, bribes -> 3.7902141E-6, threshold -> 1.7687666E-5, adorned -> 5.0536187E-6, gnaw -> 1.2634047E-6, boscath -> 1.2634047E-6, averse -> 1.2634047E-6, rei -> 1.2634047E-6, dasheth -> 2.5268093E-6, trusting -> 1.2634047E-6, abiezer -> 8.843833E-6, priest -> 6.872922E-4, corinth -> 7.5804282E-6, henceforth -> 4.1692358E-5, migdalel -> 1.2634047E-6, danced -> 7.5804282E-6, smyrna -> 2.5268093E-6, race -> 5.0536187E-6, oxen -> 1.2886728E-4, mercurius -> 1.2634047E-6, spreadings -> 1.2634047E-6, squares -> 2.5268093E-6, aprons -> 2.5268093E-6, worketh -> 4.6745976E-5, dekar -> 1.2634047E-6, misgab -> 1.2634047E-6, hushah -> 1.2634047E-6, chance -> 7.5804282E-6, magistrate -> 2.5268093E-6, nimrim -> 2.5268093E-6, seeing -> 1.4655494E-4, jeremoth -> 6.3170237E-6, eliel -> 1.2634047E-5, cry -> 2.2867626E-4, supposed -> 1.0107237E-5, halting -> 1.2634047E-6, tile -> 1.2634047E-6, heron -> 2.5268093E-6, arose -> 2.1856901E-4, housetops -> 8.843833E-6, tens -> 3.7902141E-6, nephish -> 1.2634047E-6, plat -> 2.5268093E-6, whether -> 2.160422E-4, strawed -> 6.3170237E-6, quench -> 1.51608565E-5, slime -> 2.5268093E-6, sayest -> 5.053619E-5, satisfaction -> 2.5268093E-6, asrielites -> 1.2634047E-6, gallows -> 1.0107237E-5, bunch -> 1.2634047E-6, enrimmon -> 1.2634047E-6, benammi -> 1.2634047E-6, circumspectly -> 1.2634047E-6, dimnah -> 1.2634047E-6, willing -> 4.042895E-5, beera -> 1.2634047E-6, kinsfolk -> 2.5268093E-6, gibeath -> 1.2634047E-6, adulterous -> 5.0536187E-6, patriarchs -> 2.5268093E-6, herodias -> 7.5804282E-6, twofold -> 1.2634047E-6, sackcloth -> 5.8116617E-5, billows -> 2.5268093E-6, regarding -> 2.5268093E-6, travailing -> 3.7902141E-6, corner -> 4.6745976E-5, nicopolis -> 1.2634047E-6, paintedst -> 1.2634047E-6, seasons -> 1.51608565E-5, huz -> 1.2634047E-6, floats -> 2.5268093E-6, firstlings -> 7.5804282E-6, shunites -> 1.2634047E-6, forced -> 8.843833E-6, jezer -> 3.7902141E-6, fallen -> 9.9808974E-5, revive -> 1.0107237E-5, most -> 1.7055964E-4, choicest -> 2.5268093E-6, thumbs -> 3.7902141E-6, naked -> 5.938002E-5, telharesha -> 1.2634047E-6, gold -> 5.2683975E-4, creatures -> 1.51608565E-5, sail -> 1.0107237E-5, overfloweth -> 1.2634047E-6, goad -> 1.2634047E-6, gehazi -> 1.51608565E-5, else -> 6.0643426E-5, maalehacrabbim -> 1.2634047E-6, geuel -> 1.2634047E-6, ambassadors -> 1.0107237E-5, jokshan -> 5.0536187E-6, adjure -> 6.3170237E-6, ikkesh -> 3.7902141E-6, provinces -> 3.790214E-5, abidah -> 1.2634047E-6, remainder -> 7.5804282E-6, communed -> 2.2741286E-5, mehunims -> 1.2634047E-6, idbash -> 1.2634047E-6, jaakobah -> 1.2634047E-6, trumpet -> 7.7067685E-5, seth -> 1.0107237E-5, coulters -> 1.2634047E-6, lavish -> 1.2634047E-6, perilous -> 1.2634047E-6, mourned -> 2.7794904E-5, firstfruits -> 4.042895E-5, wring -> 3.7902141E-6, pommels -> 3.7902141E-6, possessions -> 1.6424261E-5, standard -> 2.400469E-5, mad -> 2.7794904E-5, bahurim -> 6.3170237E-6, hai -> 2.5268093E-6, smith -> 3.7902141E-6, described -> 2.5268093E-6, timnah -> 6.3170237E-6, betrayest -> 1.2634047E-6, despised -> 7.580428E-5, rabshakeh -> 2.0214475E-5, kushaiah -> 1.2634047E-6, rewarded -> 1.7687666E-5, scatter -> 4.800938E-5, shashai -> 1.2634047E-6, ribs -> 2.5268093E-6, uncle -> 2.1477881E-5, contended -> 7.5804282E-6, aharah -> 1.2634047E-6, fashioneth -> 3.7902141E-6, fuller -> 5.0536187E-6, blinded -> 6.3170237E-6, zeresh -> 5.0536187E-6, abram -> 7.7067685E-5, cost -> 5.0536187E-6, jangling -> 1.2634047E-6, persecutest -> 7.5804282E-6, enrichest -> 1.2634047E-6, ahab -> 1.1876004E-4, cappadocia -> 2.5268093E-6, humble -> 3.1585118E-5, noon -> 1.895107E-5, nahum -> 1.2634047E-6, strange -> 9.601876E-5, staff -> 5.4326403E-5, eglaim -> 1.2634047E-6, dothan -> 3.7902141E-6, mishmannah -> 1.2634047E-6, meditate -> 1.7687666E-5, fifty -> 1.9835454E-4, burdened -> 2.5268093E-6, sinnest -> 1.2634047E-6, hazerim -> 1.2634047E-6, mail -> 2.5268093E-6, arabah -> 2.5268093E-6, harden -> 1.51608565E-5, promise -> 6.696045E-5, lud -> 5.0536187E-6, higher -> 2.65315E-5, inclosed -> 1.0107237E-5, forgetful -> 2.5268093E-6, hashubah -> 1.2634047E-6, fifteenth -> 2.2741286E-5, cana -> 5.0536187E-6, toah -> 1.2634047E-6, forsaking -> 2.5268093E-6, devotions -> 1.2634047E-6, admatha -> 1.2634047E-6, came -> 0.002644306, rabbith -> 1.2634047E-6, chain -> 1.6424261E-5, ambassador -> 5.0536187E-6, openest -> 2.5268093E-6, instructed -> 2.400469E-5, builder -> 1.2634047E-6, tabrets -> 6.3170237E-6, consume -> 7.075066E-5, melchizedek -> 2.5268093E-6, outrun -> 1.2634047E-6, alexander -> 7.5804282E-6, dishan -> 6.3170237E-6, young -> 3.7902143E-4, ministration -> 8.843833E-6, outmost -> 5.0536187E-6, carchemish -> 2.5268093E-6, chushanrishathaim -> 5.0536187E-6, hena -> 3.7902141E-6, containeth -> 1.2634047E-6, jakan -> 1.2634047E-6, scapegoat -> 5.0536187E-6, asahiah -> 2.5268093E-6, murmur -> 1.1370643E-5, ashdothites -> 1.2634047E-6, wherefore -> 4.3966484E-4, jehovahjireh -> 1.2634047E-6, shooting -> 2.5268093E-6, hundredth -> 3.7902141E-6, jada -> 2.5268093E-6, stocks -> 1.1370643E-5, josaphat -> 2.5268093E-6, pointed -> 1.2634047E-6, locked -> 2.5268093E-6, undone -> 6.3170237E-6, midian -> 4.9272785E-5, greaves -> 1.2634047E-6, kir -> 6.3170237E-6, father -> 0.0014238572, denied -> 2.400469E-5, denying -> 5.0536187E-6, oshea -> 2.5268093E-6, uses -> 1.2634047E-6, sufficeth -> 1.2634047E-6, flowed -> 3.7902141E-6, benhadad -> 3.1585118E-5, shechemites -> 1.2634047E-6, robes -> 1.3897452E-5, achim -> 2.5268093E-6, following -> 5.4326403E-5, wishing -> 1.2634047E-6, blowing -> 5.0536187E-6, oreb -> 8.843833E-6, thence -> 1.8319368E-4, maai -> 1.2634047E-6, whereas -> 4.1692358E-5, latter -> 5.3063E-5, eshbaal -> 2.5268093E-6, gropeth -> 1.2634047E-6, homam -> 1.2634047E-6, dispute -> 1.2634047E-6, sufficed -> 3.7902141E-6, nedabiah -> 1.2634047E-6, thine -> 0.0011850736, porches -> 2.5268093E-6, jedaiah -> 1.6424261E-5, treasure -> 4.6745976E-5, rendering -> 1.2634047E-6, excess -> 5.0536187E-6, he -> 0.013164678, tablets -> 3.7902141E-6, bakbakkar -> 1.2634047E-6, defy -> 6.3170237E-6, aliens -> 3.7902141E-6, clothing -> 2.400469E-5, blueness -> 1.2634047E-6, meadow -> 2.5268093E-6, gozan -> 6.3170237E-6, fat -> 1.6424262E-4, hosts -> 3.77758E-4, rib -> 6.3170237E-6, escapeth -> 7.5804282E-6, tossings -> 1.2634047E-6, neriah -> 1.2634047E-5, zurishaddai -> 6.3170237E-6, give -> 0.0011117961, shuttle -> 1.2634047E-6, ahilud -> 6.3170237E-6, beckoning -> 2.5268093E-6, forbearance -> 2.5268093E-6, appii -> 1.2634047E-6, ira -> 7.5804282E-6, through -> 5.849564E-4, pleadeth -> 3.7902141E-6, clap -> 7.5804282E-6, pannag -> 1.2634047E-6, sorry -> 1.7687666E-5, stout -> 5.0536187E-6, seducers -> 1.2634047E-6, wrestle -> 1.2634047E-6, upholding -> 1.2634047E-6, ridden -> 1.2634047E-6, sung -> 6.3170237E-6, discerneth -> 1.2634047E-6, tenderhearted -> 2.5268093E-6, mattathias -> 2.5268093E-6, beneberak -> 1.2634047E-6, sawest -> 2.65315E-5, shield -> 5.6853212E-5, thrusteth -> 1.2634047E-6, royal -> 3.6638736E-5, heresy -> 1.2634047E-6, swearing -> 5.0536187E-6, spikenard -> 6.3170237E-6, decayed -> 2.5268093E-6, believers -> 2.5268093E-6, passage -> 5.0536187E-6, turtles -> 3.7902141E-6, zebedees -> 2.5268093E-6, rouse -> 1.2634047E-6, fens -> 1.2634047E-6, can -> 2.969001E-4, driver -> 2.5268093E-6, darken -> 1.2634047E-6, bethbirei -> 1.2634047E-6, clay -> 4.1692358E-5, shiphtan -> 1.2634047E-6, dispatch -> 1.2634047E-6, ladeth -> 1.2634047E-6, victuals -> 2.1477881E-5, tear -> 1.6424261E-5, adnah -> 2.5268093E-6, taketh -> 9.349195E-5, tires -> 2.5268093E-6, apharsachites -> 2.5268093E-6, hizkijah -> 1.2634047E-6, bondmaid -> 2.5268093E-6, praiseth -> 1.2634047E-6, destruction -> 1.1876004E-4, muse -> 1.2634047E-6, viols -> 2.5268093E-6, wandering -> 7.5804282E-6, millo -> 1.2634047E-5, lionesses -> 1.2634047E-6, visiteth -> 1.2634047E-6, await -> 1.2634047E-6, nebaioth -> 2.5268093E-6, stayed -> 3.9165545E-5, chapiter -> 1.6424261E-5, baptizing -> 5.0536187E-6, jaasau -> 1.2634047E-6, jawbone -> 3.7902141E-6, watchers -> 2.5268093E-6, lovest -> 1.51608565E-5, lookest -> 2.5268093E-6, carving -> 2.5268093E-6, liken -> 1.1370643E-5, jokdeam -> 1.2634047E-6, cleaveth -> 1.6424261E-5, cankerworm -> 7.5804282E-6, religion -> 6.3170237E-6, samothracia -> 1.2634047E-6, dreamed -> 2.5268095E-5, brawler -> 1.2634047E-6, sharai -> 1.2634047E-6, seemed -> 2.0214475E-5, lapped -> 2.5268093E-6, obscurity -> 3.7902141E-6, innermost -> 2.5268093E-6, island -> 1.1370643E-5, exalteth -> 1.1370643E-5, ravening -> 6.3170237E-6, she -> 0.0012406635, gedeon -> 1.2634047E-6, sped -> 1.2634047E-6, sundered -> 1.2634047E-6, zaza -> 1.2634047E-6, populous -> 2.5268093E-6, abhorred -> 2.0214475E-5, jesting -> 1.2634047E-6, hoglah -> 5.0536187E-6, delaiah -> 7.5804282E-6, glorieth -> 3.7902141E-6, reproacheth -> 8.843833E-6, ashkenaz -> 1.2634047E-6, sharar -> 1.2634047E-6, spoilers -> 8.843833E-6, object -> 1.2634047E-6, invasion -> 1.2634047E-6, disputing -> 6.3170237E-6, aside -> 9.096514E-5, havock -> 1.2634047E-6, villany -> 2.5268093E-6, pithom -> 1.2634047E-6, tedious -> 1.2634047E-6, estranged -> 6.3170237E-6, flute -> 5.0536187E-6, desirous -> 7.5804282E-6, finish -> 1.3897452E-5, appetite -> 5.0536187E-6, gutters -> 2.5268093E-6, harp -> 3.790214E-5, defending -> 1.2634047E-6, dam -> 6.3170237E-6, winketh -> 2.5268093E-6, eshtemoa -> 6.3170237E-6, conference -> 1.2634047E-6, shunned -> 1.2634047E-6, gimzo -> 1.2634047E-6, soberly -> 2.5268093E-6, siphmoth -> 1.2634047E-6, considereth -> 1.1370643E-5, lewdly -> 1.2634047E-6, cherished -> 1.2634047E-6, adonikam -> 3.7902141E-6, lasciviousness -> 7.5804282E-6, false -> 8.08579E-5, lightly -> 8.843833E-6, naphtuhim -> 2.5268093E-6, liberty -> 3.4111927E-5, chiding -> 1.2634047E-6, persuadest -> 1.2634047E-6, aristobulus -> 1.2634047E-6, karkaa -> 1.2634047E-6, david -> 0.0013442626, chaste -> 3.7902141E-6, reached -> 1.0107237E-5, foolishness -> 2.5268095E-5, bathsheba -> 1.2634047E-5, madon -> 2.5268093E-6, strongest -> 1.2634047E-6, finer -> 1.2634047E-6, eliam -> 2.5268093E-6, syriadamascus -> 1.2634047E-6, seraphims -> 2.5268093E-6, city -> 0.0010966354, pergamos -> 2.5268093E-6, leaveneth -> 2.5268093E-6, mover -> 1.2634047E-6, herdmen -> 1.0107237E-5, slacked -> 1.2634047E-6, sheets -> 2.5268093E-6, edified -> 2.5268093E-6, creek -> 1.2634047E-6, ephrathite -> 3.7902141E-6, mightest -> 2.400469E-5, tempted -> 3.1585118E-5, baalhanan -> 6.3170237E-6, terraces -> 1.2634047E-6, bazlith -> 1.2634047E-6, occupy -> 2.5268093E-6, inspiration -> 2.5268093E-6, devourest -> 1.2634047E-6, acceptation -> 2.5268093E-6, perishing -> 1.2634047E-6, knit -> 7.5804282E-6, abishur -> 2.5268093E-6, spoiled -> 6.948726E-5, whited -> 2.5268093E-6, neglected -> 1.2634047E-6, lion -> 1.3139409E-4, ague -> 1.2634047E-6, renowned -> 5.0536187E-6, noise -> 1.11179615E-4, mizpar -> 1.2634047E-6, sword -> 5.356836E-4, haughty -> 1.2634047E-5, mist -> 3.7902141E-6, saddled -> 1.2634047E-5, charmer -> 1.2634047E-6, gladly -> 1.0107237E-5, communication -> 7.5804282E-6, studieth -> 2.5268093E-6, rimmonparez -> 2.5268093E-6, mahershalalhashbaz -> 2.5268093E-6, basket -> 2.9058308E-5, secret -> 8.5911524E-5, situate -> 3.7902141E-6, charchemish -> 1.2634047E-6, hakupha -> 2.5268093E-6, aphik -> 1.2634047E-6, exercise -> 1.3897452E-5, spoiling -> 6.3170237E-6, been -> 4.1818697E-4, exhort -> 2.0214475E-5, call -> 2.4636392E-4, beor -> 1.2634047E-5, tacklings -> 1.2634047E-6, torment -> 1.3897452E-5, withheld -> 7.5804282E-6, horses -> 1.4023793E-4, toward -> 4.3713802E-4, joed -> 1.2634047E-6, resheph -> 1.2634047E-6, gall -> 1.7687666E-5, approached -> 2.5268093E-6, abroad -> 1.0107238E-4, constant -> 1.2634047E-6, commandedst -> 5.0536187E-6, gaal -> 1.1370643E-5, purses -> 1.2634047E-6, one -> 0.0024876439, convince -> 2.5268093E-6, items -> 1.2634047E-6, spot -> 3.1585118E-5, multipliedst -> 1.2634047E-6, blot -> 1.6424261E-5, unripe -> 1.2634047E-6, cherub -> 3.790214E-5, oversight -> 1.3897452E-5, psaltery -> 1.6424261E-5, pedahzur -> 6.3170237E-6, weaver -> 8.843833E-6, executest -> 1.2634047E-6, hell -> 6.822385E-5, company -> 1.0865281E-4, attent -> 2.5268093E-6, restored -> 3.4111927E-5, thirsteth -> 5.0536187E-6, jaakan -> 1.2634047E-6, plowshares -> 3.7902141E-6, toe -> 7.5804282E-6, multiplieth -> 3.7902141E-6, ahithophel -> 2.5268095E-5, purposing -> 1.2634047E-6, rule -> 8.3384715E-5, tubalcain -> 2.5268093E-6, shamer -> 2.5268093E-6, buttocks -> 3.7902141E-6, rehob -> 1.2634047E-5, gaddi -> 1.2634047E-6, forbidden -> 3.7902141E-6, roots -> 2.5268095E-5, glorify -> 3.1585118E-5, chode -> 2.5268093E-6, damage -> 7.5804282E-6, share -> 1.2634047E-6, maadiah -> 1.2634047E-6, shoa -> 1.2634047E-6, avenged -> 2.0214475E-5, blindfolded -> 1.2634047E-6, quicken -> 1.6424261E-5, necessities -> 3.7902141E-6, rotten -> 6.3170237E-6, still -> 1.2760388E-4, formeth -> 2.5268093E-6, ophrah -> 1.0107237E-5, mattithiah -> 1.0107237E-5, oft -> 1.6424261E-5, anah -> 1.51608565E-5, stalk -> 3.7902141E-6, comfortably -> 6.3170237E-6, paweth -> 1.2634047E-6, letter -> 4.6745976E-5, baalmeon -> 3.7902141E-6, hammothdor -> 1.2634047E-6, javelin -> 8.843833E-6, grudge -> 3.7902141E-6, used -> 2.7794904E-5, song -> 5.938002E-5, hanun -> 1.3897452E-5, demas -> 3.7902141E-6, beside -> 1.6676943E-4, dabareh -> 1.2634047E-6, menahem -> 1.0107237E-5, soldier -> 6.3170237E-6, permit -> 2.5268093E-6, chorazin -> 2.5268093E-6, mighty -> 3.5880695E-4, bedchamber -> 7.5804282E-6, idleness -> 3.7902141E-6, belief -> 1.2634047E-6, lionlike -> 2.5268093E-6, helah -> 2.5268093E-6, shomer -> 2.5268093E-6, anointest -> 1.2634047E-6, seven -> 5.849564E-4, nourish -> 6.3170237E-6, against -> 0.0021060957, zethar -> 1.2634047E-6, socket -> 1.2634047E-6, allegory -> 1.2634047E-6, tabeal -> 1.2634047E-6, sunder -> 8.843833E-6, ataroth -> 6.3170237E-6, nob -> 7.5804282E-6, mildew -> 6.3170237E-6, scarlet -> 6.5697044E-5, mushi -> 1.0107237E-5, joab -> 1.8319368E-4, actions -> 1.2634047E-6, purged -> 1.7687666E-5, cup -> 8.5911524E-5, phaltiel -> 1.2634047E-6, gush -> 1.2634047E-6, prophesying -> 7.5804282E-6, avoid -> 6.3170237E-6, swarms -> 6.3170237E-6, ekron -> 2.7794904E-5, kehelathah -> 2.5268093E-6, whoremongers -> 5.0536187E-6, anathema -> 1.2634047E-6, serug -> 6.3170237E-6, brightness -> 2.7794904E-5, meshelemiah -> 5.0536187E-6, sanctuary -> 1.7308645E-4, grew -> 3.537533E-5, suppliants -> 1.2634047E-6, vats -> 1.2634047E-6, mebunnai -> 1.2634047E-6, fellowlabourer -> 2.5268093E-6, yarn -> 5.0536187E-6, parlour -> 6.3170237E-6, dwarf -> 1.2634047E-6, sewest -> 1.2634047E-6, conduit -> 5.0536187E-6, beguiling -> 1.2634047E-6, overthrown -> 2.0214475E-5, rend -> 2.400469E-5, pasdammim -> 1.2634047E-6, cush -> 8.843833E-6, cakes -> 3.1585118E-5, malchiram -> 1.2634047E-6, tabbath -> 1.2634047E-6, baalhermon -> 2.5268093E-6, lusts -> 3.0321713E-5, apt -> 5.0536187E-6, paper -> 2.5268093E-6, admonishing -> 1.2634047E-6, hagaba -> 1.2634047E-6, pethahiah -> 5.0536187E-6, forgiveness -> 8.843833E-6, issues -> 2.5268093E-6, overtaken -> 2.5268093E-6, worshipper -> 2.5268093E-6, approving -> 1.2634047E-6, fasted -> 1.895107E-5, avouched -> 2.5268093E-6, increasest -> 1.2634047E-6, smelling -> 3.7902141E-6, pagiel -> 6.3170237E-6, buz -> 3.7902141E-6, misham -> 1.2634047E-6, footstool -> 2.0214475E-5, kemuel -> 3.7902141E-6, persuaded -> 2.5268095E-5, hide -> 1.0359919E-4, ishmerai -> 1.2634047E-6, slandereth -> 1.2634047E-6, sergius -> 1.2634047E-6, progenitors -> 1.2634047E-6, bars -> 4.800938E-5, bealoth -> 1.2634047E-6, abounding -> 3.7902141E-6, eliphalet -> 2.5268093E-6, achbor -> 8.843833E-6, adventured -> 1.2634047E-6, bags -> 3.7902141E-6, fitteth -> 1.2634047E-6, tired -> 1.2634047E-6, beseech -> 8.464812E-5, nezib -> 1.2634047E-6, obededom -> 2.5268095E-5, cornelius -> 1.2634047E-5, sojourners -> 3.7902141E-6, enoch -> 1.51608565E-5, deceivableness -> 1.2634047E-6, wolf -> 7.5804282E-6, tottering -> 1.2634047E-6, spilled -> 3.7902141E-6, brake -> 9.222855E-5, nothing -> 2.8426608E-4, signets -> 1.2634047E-6, seats -> 1.3897452E-5, troubledst -> 1.2634047E-6, supplant -> 1.2634047E-6, gideon -> 4.9272785E-5, vestures -> 1.2634047E-6, agate -> 3.7902141E-6, ash -> 1.2634047E-6, accuse -> 2.0214475E-5, excelled -> 1.2634047E-6, richly -> 2.5268093E-6, aileth -> 8.843833E-6, lend -> 2.0214475E-5, signified -> 2.5268093E-6, evidently -> 2.5268093E-6, sometime -> 2.5268093E-6, buzite -> 2.5268093E-6, note -> 3.7902141E-6, shimei -> 5.3063E-5, grate -> 7.5804282E-6, countervail -> 1.2634047E-6, bowls -> 3.0321713E-5, farther -> 5.0536187E-6, tanach -> 1.2634047E-6, chenani -> 1.2634047E-6, forgotten -> 5.8116617E-5, sailing -> 3.7902141E-6, hashmonah -> 2.5268093E-6, using -> 2.5268093E-6, rohgah -> 1.2634047E-6, sewed -> 2.5268093E-6, bezer -> 6.3170237E-6, forgetteth -> 5.0536187E-6, faintest -> 1.2634047E-6, serving -> 8.843833E-6, craft -> 7.5804282E-6, framed -> 5.0536187E-6, fillet -> 1.2634047E-6, zeal -> 2.0214475E-5, awaked -> 1.0107237E-5, closer -> 1.2634047E-6, grain -> 1.0107237E-5, peor -> 6.3170237E-6, awakest -> 2.5268093E-6, prayeth -> 8.843833E-6, hara -> 1.2634047E-6, pondereth -> 3.7902141E-6, withs -> 3.7902141E-6, cubit -> 5.6853212E-5, unsavoury -> 2.5268093E-6, slanders -> 2.5268093E-6, alas -> 2.5268095E-5, shage -> 1.2634047E-6, spreading -> 5.0536187E-6, reasonable -> 1.2634047E-6, chambering -> 1.2634047E-6, waterflood -> 1.2634047E-6, adar -> 1.2634047E-5, crept -> 1.2634047E-6, scourged -> 5.0536187E-6, trust -> 1.6929624E-4, oren -> 1.2634047E-6, fishing -> 1.2634047E-6, renderest -> 1.2634047E-6, needed -> 2.5268093E-6, sufferings -> 1.2634047E-5, government -> 5.0536187E-6, sardine -> 1.2634047E-6, professed -> 2.5268093E-6, leasing -> 2.5268093E-6, forgive -> 7.075066E-5, orpah -> 2.5268093E-6, paltite -> 1.2634047E-6, salma -> 5.0536187E-6, sacrificedst -> 1.2634047E-6, fell -> 3.0700734E-4, sought -> 1.5918899E-4, bolt -> 1.2634047E-6, seducing -> 1.2634047E-6, wool -> 1.7687666E-5, agreement -> 7.5804282E-6, ditches -> 1.2634047E-6, thamah -> 1.2634047E-6, reading -> 7.5804282E-6, uncondemned -> 2.5268093E-6, salutations -> 1.2634047E-6, abdiel -> 1.2634047E-6, manaen -> 1.2634047E-6, loaden -> 1.2634047E-6, zizah -> 1.2634047E-6, thummim -> 6.3170237E-6, hazarshual -> 5.0536187E-6, answeredst -> 2.5268093E-6, wrongfully -> 8.843833E-6, saluteth -> 6.3170237E-6, getting -> 3.7902141E-6, jaalam -> 5.0536187E-6, crew -> 6.3170237E-6, phinehas -> 3.1585118E-5, foldeth -> 1.2634047E-6, raamiah -> 1.2634047E-6, marvellously -> 2.5268093E-6, jehizkiah -> 1.2634047E-6, understandeth -> 1.3897452E-5, until -> 4.6240614E-4, shephatiah -> 1.51608565E-5, meshullam -> 3.1585118E-5, pen -> 8.843833E-6, appease -> 1.2634047E-6, strove -> 1.6424261E-5, afflictest -> 1.2634047E-6, ruth -> 1.6424261E-5, stroke -> 1.3897452E-5, colts -> 3.7902141E-6, whomsoever -> 2.5268095E-5, happen -> 5.0536187E-6, infirmity -> 1.2634047E-5, runneth -> 1.3897452E-5, shalisha -> 1.2634047E-6, dream -> 9.349195E-5, elihoreph -> 1.2634047E-6, swiftly -> 5.0536187E-6, me -> 0.0051749055, gleanings -> 1.2634047E-6, dishonest -> 2.5268093E-6, above -> 2.8173925E-4, granted -> 1.895107E-5, levy -> 7.5804282E-6, wipe -> 1.0107237E-5, straiten -> 1.2634047E-6, shaalbonite -> 2.5268093E-6, opposeth -> 1.2634047E-6, deliverances -> 1.2634047E-6, evil -> 7.744671E-4, bonnets -> 7.5804282E-6, wailed -> 1.2634047E-6, hunger -> 3.0321713E-5, hadadezer -> 1.1370643E-5, magormissabib -> 1.2634047E-6, brimstone -> 1.895107E-5, silverlings -> 1.2634047E-6, neighbour -> 1.7055964E-4, proverb -> 2.5268095E-5, rescueth -> 1.2634047E-6, doted -> 7.5804282E-6, taste -> 2.7794904E-5, groaneth -> 1.2634047E-6, anetothite -> 1.2634047E-6, jerahmeelites -> 2.5268093E-6, inhabitest -> 1.2634047E-6, reubenite -> 1.2634047E-6, fairest -> 3.7902141E-6, tilon -> 1.2634047E-6, warn -> 1.3897452E-5, shochoh -> 2.5268093E-6, booz -> 3.7902141E-6, elisabeth -> 1.1370643E-5, telleth -> 8.843833E-6, heady -> 1.2634047E-6, sweeping -> 1.2634047E-6, terrified -> 5.0536187E-6, ox -> 8.08579E-5, engraven -> 1.2634047E-6, lavers -> 6.3170237E-6, habaziniah -> 1.2634047E-6, perhaps -> 3.7902141E-6, pisidia -> 2.5268093E-6, reigning -> 1.2634047E-6, shaalbim -> 2.5268093E-6, apharsites -> 1.2634047E-6, refine -> 1.2634047E-6, deserve -> 1.2634047E-6, punish -> 4.042895E-5, harumaph -> 1.2634047E-6, fountain -> 4.1692358E-5, reu -> 6.3170237E-6, fishermen -> 1.2634047E-6, fallowdeer -> 1.2634047E-6, firstborn -> 1.4276474E-4, bethanoth -> 1.2634047E-6, otherwise -> 1.895107E-5, monsters -> 1.2634047E-6, drewest -> 1.2634047E-6, debtor -> 5.0536187E-6, displeasure -> 6.3170237E-6, delight -> 6.443364E-5, aphses -> 1.2634047E-6, ehud -> 1.2634047E-5, eshek -> 1.2634047E-6, troas -> 7.5804282E-6, bridegroom -> 3.0321713E-5, lebaoth -> 1.2634047E-6, thistles -> 3.7902141E-6, uzza -> 1.2634047E-5, acquaint -> 1.2634047E-6, jahdiel -> 1.2634047E-6, stop -> 8.843833E-6, gibeon -> 4.6745976E-5, wilfully -> 1.2634047E-6, betroth -> 5.0536187E-6, maaziah -> 2.5268093E-6, candlesticks -> 1.6424261E-5, uriel -> 5.0536187E-6, saraph -> 1.2634047E-6, seer -> 2.7794904E-5, profane -> 4.1692358E-5, stamp -> 2.5268093E-6, gihon -> 7.5804282E-6, rakem -> 1.2634047E-6, sowed -> 1.2634047E-5, dissimulation -> 2.5268093E-6, contrary -> 3.0321713E-5, medes -> 1.7687666E-5, kallai -> 1.2634047E-6, enterprise -> 1.2634047E-6, snorting -> 1.2634047E-6, elisheba -> 1.2634047E-6, flakes -> 1.2634047E-6, adna -> 2.5268093E-6, boat -> 7.5804282E-6, slingers -> 1.2634047E-6, arise -> 1.882473E-4, morasthite -> 2.5268093E-6, not -> 0.008333418, abishalom -> 2.5268093E-6, hamath -> 4.2955762E-5, pelethites -> 8.843833E-6, ishtob -> 2.5268093E-6, assur -> 2.5268093E-6, heavens -> 1.6803283E-4, gemalli -> 1.2634047E-6, purposes -> 6.3170237E-6, amplias -> 1.2634047E-6, mighties -> 2.5268093E-6, arphaxad -> 1.2634047E-5, husbandry -> 2.5268093E-6, set -> 8.780663E-4, jaaziel -> 1.2634047E-6, zithri -> 1.2634047E-6, engines -> 2.5268093E-6, season -> 7.075066E-5, linen -> 1.3139409E-4, perpetually -> 3.7902141E-6, abhorring -> 1.2634047E-6, nursing -> 3.7902141E-6, sleight -> 1.2634047E-6, anise -> 1.2634047E-6, shihor -> 1.2634047E-6, tobijah -> 3.7902141E-6, craftsman -> 2.5268093E-6, jehoshua -> 1.2634047E-6, hizkiah -> 1.2634047E-6, gera -> 1.1370643E-5, serah -> 2.5268093E-6, behaved -> 1.1370643E-5, payeth -> 1.2634047E-6, malice -> 7.5804282E-6, helon -> 6.3170237E-6, galatians -> 1.2634047E-6, tell -> 2.7415884E-4, ethan -> 8.843833E-6, aram -> 1.2634047E-5, elim -> 7.5804282E-6, scalp -> 1.2634047E-6, joses -> 7.5804282E-6, tizite -> 1.2634047E-6, talents -> 6.443364E-5, janum -> 1.2634047E-6, strakes -> 2.5268093E-6, noble -> 8.843833E-6, betwixt -> 2.0214475E-5, of -> 0.04373528, guiltiness -> 1.2634047E-6, brow -> 2.5268093E-6, smiters -> 1.2634047E-6, divideth -> 1.2634047E-5, jaresiah -> 1.2634047E-6, palluites -> 1.2634047E-6, brokenhanded -> 1.2634047E-6, zacchur -> 1.2634047E-6, testified -> 3.0321713E-5, tithing -> 2.5268093E-6, hillel -> 2.5268093E-6, gedor -> 8.843833E-6, molech -> 1.0107237E-5, makest -> 3.2848522E-5, recorded -> 1.2634047E-6, execution -> 1.2634047E-6, castedst -> 1.2634047E-6, jabneh -> 1.2634047E-6, intent -> 1.3897452E-5, womb -> 8.970174E-5, utterly -> 1.2760388E-4, ware -> 7.5804282E-6, elkoshite -> 1.2634047E-6, sodomite -> 1.2634047E-6, imparted -> 2.5268093E-6, adoram -> 2.5268093E-6, desolations -> 1.3897452E-5, pharzites -> 1.2634047E-6, unite -> 1.2634047E-6, excused -> 2.5268093E-6, kindness -> 6.0643426E-5, do -> 0.0017283376, netophathi -> 1.2634047E-6, cleansed -> 4.9272785E-5, sechu -> 1.2634047E-6, colosse -> 1.2634047E-6, savour -> 6.822385E-5, sanctuaries -> 6.3170237E-6, zebedee -> 1.2634047E-5, purify -> 1.7687666E-5, haniel -> 1.2634047E-6, boldness -> 1.2634047E-5, chimney -> 1.2634047E-6, clothe -> 2.0214475E-5, kirhareseth -> 1.2634047E-6, drought -> 1.2634047E-5, crowning -> 1.2634047E-6, divination -> 1.51608565E-5, invent -> 1.2634047E-6, revealer -> 1.2634047E-6, ascribe -> 3.7902141E-6, ride -> 2.5268095E-5, wilderness -> 3.8407504E-4, keros -> 2.5268093E-6, adultress -> 1.2634047E-6, sinite -> 2.5268093E-6, loruhamah -> 2.5268093E-6, astrologers -> 1.0107237E-5, penknife -> 1.2634047E-6, bound -> 1.3139409E-4, contained -> 6.3170237E-6, serpent -> 5.053619E-5, arumah -> 1.2634047E-6, joyed -> 1.2634047E-6, halah -> 3.7902141E-6, ostrich -> 1.2634047E-6, jeshaiah -> 6.3170237E-6, hasten -> 1.0107237E-5, assured -> 3.7902141E-6, measure -> 8.717493E-5, derided -> 2.5268093E-6, midianitish -> 3.7902141E-6, heave -> 3.6638736E-5, blotteth -> 1.2634047E-6, sparks -> 5.0536187E-6, cattle -> 1.9330092E-4, tishbite -> 7.5804282E-6, vails -> 1.2634047E-6, lebana -> 1.2634047E-6, interpreter -> 5.0536187E-6, smote -> 2.893197E-4, hours -> 3.7902141E-6, murrain -> 1.2634047E-6, understand -> 1.1496983E-4, whereupon -> 2.1477881E-5, devised -> 1.51608565E-5, solitary -> 8.843833E-6, forgiveth -> 2.5268093E-6, edar -> 1.2634047E-6, folk -> 6.3170237E-6, being -> 3.6765076E-4, wind -> 1.5539878E-4, ananiah -> 2.5268093E-6, publius -> 2.5268093E-6, charge -> 1.2886728E-4, evangelist -> 2.5268093E-6, daughters -> 3.1837798E-4, shineth -> 1.1370643E-5, flight -> 1.0107237E-5, respite -> 2.5268093E-6, consent -> 1.895107E-5, hunteth -> 1.2634047E-6, psalm -> 7.5804282E-6, ahava -> 3.7902141E-6, sheshai -> 3.7902141E-6, watersprings -> 2.5268093E-6, diligently -> 4.6745976E-5, second -> 2.1351539E-4, confounded -> 6.3170235E-5, unspeakable -> 3.7902141E-6, spiritual -> 3.537533E-5, naarai -> 1.2634047E-6, bend -> 1.0107237E-5, adoraim -> 1.2634047E-6, worth -> 1.1370643E-5, mizzah -> 3.7902141E-6, treasuries -> 1.2634047E-5, ground -> 2.425737E-4, joshaviah -> 1.2634047E-6, continual -> 4.1692358E-5, extortion -> 2.5268093E-6, nohah -> 1.2634047E-6, bruising -> 2.5268093E-6, jehalelel -> 1.2634047E-6, knead -> 2.5268093E-6, lies -> 6.443364E-5, tyrus -> 2.7794904E-5, blaspheme -> 1.2634047E-5, ahban -> 1.2634047E-6, calamity -> 2.400469E-5, rehum -> 1.0107237E-5, cheese -> 2.5268093E-6, arad -> 6.3170237E-6, certain -> 2.4762732E-4, strife -> 4.9272785E-5, tachmonite -> 1.2634047E-6, jaazaniah -> 5.0536187E-6, cursings -> 1.2634047E-6, madmannah -> 2.5268093E-6, hodijah -> 6.3170237E-6, dismayed -> 3.9165545E-5, hearken -> 1.9330092E-4, kinswomen -> 1.2634047E-6, rubbish -> 2.5268093E-6, shobek -> 1.2634047E-6, sibraim -> 1.2634047E-6, delighteth -> 1.7687666E-5, eatest -> 3.7902141E-6, pounds -> 6.3170237E-6, whoredoms -> 4.042895E-5, haahashtari -> 1.2634047E-6, stedfastly -> 1.2634047E-5, emeralds -> 1.2634047E-6, fewer -> 1.2634047E-6, prostitute -> 1.2634047E-6, michael -> 1.895107E-5, supplied -> 2.5268093E-6, benjamites -> 1.0107237E-5, erreth -> 2.5268093E-6, ashriel -> 1.2634047E-6, scabbed -> 2.5268093E-6, poison -> 1.1370643E-5, pavement -> 1.1370643E-5, baptizest -> 1.2634047E-6, adria -> 1.2634047E-6, workers -> 3.4111927E-5, arguments -> 1.2634047E-6, mocketh -> 6.3170237E-6, bought -> 5.5589808E-5, shapher -> 2.5268093E-6, saints -> 1.2128685E-4, refreshed -> 1.2634047E-5, sarah -> 5.1799594E-5, lod -> 5.0536187E-6, jerimoth -> 1.0107237E-5, weasel -> 1.2634047E-6, watching -> 7.5804282E-6, hem -> 8.843833E-6, innocent -> 4.800938E-5, again -> 8.49008E-4, pihahiroth -> 5.0536187E-6, jewry -> 3.7902141E-6, closest -> 1.2634047E-6, establisheth -> 3.7902141E-6, shemer -> 2.5268093E-6, yearn -> 1.2634047E-6, oracles -> 5.0536187E-6, bethgader -> 1.2634047E-6, honours -> 1.2634047E-6, wot -> 1.2634047E-5, camphire -> 2.5268093E-6, rebuke -> 5.8116617E-5, exhorteth -> 1.2634047E-6, cutteth -> 7.5804282E-6, dara -> 1.2634047E-6, judges -> 6.5697044E-5, outgoings -> 1.0107237E-5, youths -> 2.5268093E-6, parables -> 2.0214475E-5, thinking -> 2.5268093E-6, whither -> 1.5666218E-4, swelling -> 8.843833E-6, consumed -> 1.2128685E-4, wrung -> 5.0536187E-6, butler -> 1.0107237E-5, motheaten -> 1.2634047E-6, confiscation -> 1.2634047E-6, providence -> 1.2634047E-6, thyself -> 2.7163202E-4, altered -> 2.5268093E-6, tend -> 1.2634047E-6, doors -> 8.970174E-5, maintenance -> 2.5268093E-6, filling -> 1.2634047E-6, pomp -> 8.843833E-6, tow -> 3.7902141E-6, ankle -> 1.2634047E-6, tiphsah -> 2.5268093E-6, floods -> 2.400469E-5, sorer -> 1.2634047E-6, timothy -> 8.843833E-6, jedidiah -> 1.2634047E-6, voyage -> 1.2634047E-6, speakings -> 1.2634047E-6, ziklag -> 1.895107E-5, muppim -> 1.2634047E-6, pestle -> 1.2634047E-6, carriest -> 1.2634047E-6, fornications -> 3.7902141E-6, moreover -> 2.147788E-4, faultless -> 2.5268093E-6, enlightening -> 1.2634047E-6, fellows -> 1.6424261E-5, captains -> 1.5034516E-4, regard -> 3.790214E-5, slander -> 3.7902141E-6, ram -> 1.2381366E-4, jimnah -> 1.2634047E-6, softly -> 8.843833E-6, compound -> 1.2634047E-6, severally -> 1.2634047E-6, succoth -> 2.2741286E-5, halak -> 2.5268093E-6, sport -> 7.5804282E-6, imagination -> 1.7687666E-5, hunters -> 1.2634047E-6, hemath -> 3.7902141E-6, stammerers -> 1.2634047E-6, naamah -> 6.3170237E-6, intruding -> 1.2634047E-6, boards -> 5.1799594E-5, numbers -> 3.7902141E-6, jabin -> 1.0107237E-5, chooseth -> 3.7902141E-6, sickly -> 1.2634047E-6, addicted -> 1.2634047E-6, tubal -> 1.0107237E-5, kadmiel -> 1.0107237E-5, acceptest -> 1.2634047E-6, koz -> 5.0536187E-6, benefits -> 3.7902141E-6, written -> 3.499631E-4, noe -> 6.3170237E-6, enhazor -> 1.2634047E-6, nehemiah -> 1.0107237E-5, ranging -> 1.2634047E-6, perverteth -> 6.3170237E-6, uncomely -> 2.5268093E-6, sacrilege -> 1.2634047E-6, upon -> 0.0034718362, hezir -> 2.5268093E-6, intendest -> 1.2634047E-6, reckoned -> 2.7794904E-5, purposed -> 2.400469E-5, sling -> 1.0107237E-5, apollyon -> 1.2634047E-6, affection -> 7.5804282E-6, battles -> 7.5804282E-6, attalia -> 1.2634047E-6, chamberlains -> 1.1370643E-5, wing -> 1.6424261E-5, megiddo -> 1.3897452E-5, see -> 7.542526E-4, marvelled -> 2.9058308E-5, gammadims -> 1.2634047E-6, hoshaphat -> 1.2634047E-6, sifted -> 1.2634047E-6, shaken -> 2.7794904E-5, highminded -> 3.7902141E-6, siddim -> 3.7902141E-6, corrupted -> 1.7687666E-5, greatly -> 1.0991621E-4, redound -> 1.2634047E-6, wayfaring -> 7.5804282E-6, tabernacles -> 3.790214E-5, answerest -> 7.5804282E-6, fodder -> 1.2634047E-6, nails -> 1.2634047E-5, leeks -> 1.2634047E-6, prisoner -> 1.6424261E-5, king -> 0.003209048, rephah -> 1.2634047E-6, foreseeing -> 1.2634047E-6, melchiah -> 1.2634047E-6, flash -> 1.2634047E-6, furbished -> 6.3170237E-6, reignest -> 1.2634047E-6, lack -> 1.895107E-5, rinnah -> 1.2634047E-6, azzur -> 1.2634047E-6, mockers -> 6.3170237E-6, hormah -> 1.1370643E-5, whelp -> 3.7902141E-6, mashal -> 1.2634047E-6, outwent -> 1.2634047E-6, hoshea -> 1.3897452E-5, jaroah -> 1.2634047E-6, visiting -> 5.0536187E-6, seduced -> 3.7902141E-6, enjoyed -> 1.2634047E-6, archippus -> 2.5268093E-6, loan -> 1.2634047E-6, purloining -> 1.2634047E-6, nazarite -> 1.1370643E-5, harsha -> 2.5268093E-6, fortified -> 5.0536187E-6, manslayers -> 1.2634047E-6, purely -> 1.2634047E-6, amalekites -> 3.0321713E-5, stumblingblock -> 1.3897452E-5, humiliation -> 1.2634047E-6, puteoli -> 1.2634047E-6, peres -> 1.2634047E-6, begat -> 2.8426608E-4, achmetha -> 1.2634047E-6, woe -> 1.339209E-4, storehouse -> 2.5268093E-6, affright -> 1.2634047E-6, fidelity -> 1.2634047E-6, deaf -> 1.895107E-5, jehoash -> 2.1477881E-5, azekah -> 8.843833E-6, sky -> 8.843833E-6, beeroth -> 7.5804282E-6, grieved -> 5.053619E-5, cedar -> 6.443364E-5, counted -> 5.053619E-5, miniamin -> 3.7902141E-6, odd -> 1.2634047E-6, jehosheba -> 1.2634047E-6, always -> 7.833109E-5, both -> 4.560891E-4, nicodemus -> 6.3170237E-6, bereave -> 7.5804282E-6, ask -> 1.3771112E-4, strengthenedst -> 1.2634047E-6, profess -> 3.7902141E-6, take -> 0.0011042157, longer -> 2.1477881E-5, bank -> 1.7687666E-5, kinsmen -> 8.843833E-6, libya -> 3.7902141E-6, overflowing -> 1.3897452E-5, hagerite -> 1.2634047E-6, occupieth -> 1.2634047E-6, contempt -> 1.2634047E-5, miamin -> 2.5268093E-6, irshemesh -> 1.2634047E-6, hasty -> 1.1370643E-5, log -> 6.3170237E-6, raise -> 7.4540876E-5, have -> 0.004932332, secacah -> 1.2634047E-6, eyes -> 6.3422916E-4, addition -> 1.2634047E-6, emboldeneth -> 1.2634047E-6, hazarded -> 1.2634047E-6, girls -> 1.2634047E-6, sent -> 8.6543226E-4, eared -> 1.2634047E-6, elbethel -> 1.2634047E-6, bethhoron -> 1.7687666E-5, sect -> 6.3170237E-6, similitudes -> 1.2634047E-6, deny -> 3.0321713E-5, marks -> 2.5268093E-6, shivers -> 1.2634047E-6, lusteth -> 7.5804282E-6, zenan -> 1.2634047E-6, portion -> 1.2634047E-4, noses -> 2.5268093E-6, throne -> 2.2235923E-4, hanoch -> 6.3170237E-6, assemblies -> 7.5804282E-6, uttereth -> 1.1370643E-5, reapest -> 2.5268093E-6, appeased -> 2.5268093E-6, lepers -> 7.5804282E-6, lop -> 1.2634047E-6, biddeth -> 1.2634047E-6, fanners -> 1.2634047E-6, passions -> 2.5268093E-6, esteemeth -> 5.0536187E-6, offerings -> 3.3480226E-4, ishbah -> 1.2634047E-6, sheepcotes -> 1.2634047E-6, archer -> 2.5268093E-6, murmurings -> 1.1370643E-5, exerciseth -> 1.2634047E-6, unlearned -> 7.5804282E-6, highways -> 1.2634047E-5, prophesied -> 6.3170235E-5, beriites -> 1.2634047E-6, laws -> 2.5268095E-5, zanoah -> 6.3170237E-6, appoint -> 5.1799594E-5, cononiah -> 2.5268093E-6, ornaments -> 1.7687666E-5, phut -> 2.5268093E-6, dresseth -> 1.2634047E-6, mahavite -> 1.2634047E-6, purple -> 6.0643426E-5, singeth -> 1.2634047E-6, testifying -> 3.7902141E-6, glorifying -> 3.7902141E-6, writer -> 5.0536187E-6, cannot -> 2.3246647E-4, abana -> 1.2634047E-6, cliff -> 1.2634047E-6, familiars -> 1.2634047E-6, slanderers -> 1.2634047E-6, commander -> 1.2634047E-6, nepheg -> 5.0536187E-6, bethshean -> 7.5804282E-6, discerning -> 2.5268093E-6, buyest -> 2.5268093E-6, mincing -> 1.2634047E-6, jephthae -> 1.2634047E-6, laboured -> 2.400469E-5, blunt -> 1.2634047E-6, sadness -> 1.2634047E-6, rivers -> 9.7282165E-5, seventeen -> 1.2634047E-5, synagogue -> 5.6853212E-5, townclerk -> 1.2634047E-6, lecah -> 1.2634047E-6, breastplate -> 3.537533E-5, jabesh -> 1.51608565E-5, alter -> 5.0536187E-6, mention -> 2.9058308E-5, caesarea -> 2.1477881E-5, arodi -> 1.2634047E-6, tattlers -> 1.2634047E-6, evilfavouredness -> 1.2634047E-6, bases -> 2.0214475E-5, uel -> 1.2634047E-6, observer -> 1.2634047E-6, lifter -> 1.2634047E-6, jeberechiah -> 1.2634047E-6, pontius -> 5.0536187E-6, baker -> 1.0107237E-5, archelaus -> 1.2634047E-6, blasphemer -> 1.2634047E-6, enemy -> 1.3897452E-4, jeremai -> 1.2634047E-6, esteem -> 6.3170237E-6, nicanor -> 1.2634047E-6, enduring -> 3.7902141E-6, filthiness -> 2.0214475E-5, unbelievers -> 5.0536187E-6, garner -> 2.5268093E-6, intercessions -> 1.2634047E-6, convert -> 2.5268093E-6, decided -> 1.2634047E-6, bethelite -> 1.2634047E-6, hadoram -> 5.0536187E-6, confidence -> 4.800938E-5, rottenness -> 6.3170237E-6, plummet -> 3.7902141E-6, palms -> 8.843833E-6, instead -> 4.9272785E-5, met -> 5.6853212E-5, fairer -> 3.7902141E-6, premeditate -> 1.2634047E-6, saveth -> 8.843833E-6, possessing -> 1.2634047E-6, towns -> 5.6853212E-5, heardest -> 1.51608565E-5, sincerity -> 8.843833E-6, passest -> 6.3170237E-6, leavened -> 1.7687666E-5, marvelously -> 1.2634047E-6, softer -> 1.2634047E-6, hurtful -> 3.7902141E-6, neither -> 0.0011105328, uncorruptness -> 1.2634047E-6, down -> 0.0014213303, needeth -> 7.5804282E-6, telem -> 2.5268093E-6, bruise -> 1.0107237E-5, senir -> 2.5268093E-6, bedstead -> 2.5268093E-6, bestowed -> 1.7687666E-5, judged -> 7.9594494E-5, beulah -> 1.2634047E-6, communicate -> 5.0536187E-6, offereth -> 1.895107E-5, shinar -> 8.843833E-6, maaseiah -> 3.1585118E-5, censers -> 1.0107237E-5, deceit -> 4.2955762E-5, reared -> 1.2634047E-5, blow -> 4.9272785E-5, mourn -> 5.6853212E-5, elienai -> 1.2634047E-6, points -> 2.5268093E-6, sons -> 0.0013821648, meekness -> 1.7687666E-5, chanaan -> 2.5268093E-6, round -> 4.0428952E-4, dissension -> 3.7902141E-6, abba -> 3.7902141E-6, condemn -> 3.0321713E-5, jahaza -> 1.2634047E-6, narrower -> 1.2634047E-6, confesseth -> 3.7902141E-6, karkor -> 1.2634047E-6, you -> 0.0033063302, unchangeable -> 1.2634047E-6, spreadest -> 1.2634047E-6, justifier -> 1.2634047E-6, goeth -> 1.7055964E-4, lake -> 1.2634047E-5, lodgest -> 1.2634047E-6, onesimus -> 2.5268093E-6, non -> 1.2634047E-6, peleg -> 8.843833E-6, condemned -> 2.65315E-5, jew -> 4.1692358E-5, ninth -> 4.2955762E-5, manasses -> 3.7902141E-6, espy -> 2.5268093E-6, ungodly -> 3.4111927E-5, attended -> 3.7902141E-6, alive -> 1.11179615E-4, landed -> 2.5268093E-6, alike -> 1.3897452E-5, fleshhook -> 2.5268093E-6, drunkenness -> 8.843833E-6, dandled -> 1.2634047E-6, stork -> 6.3170237E-6, tebaliah -> 1.2634047E-6, wafers -> 6.3170237E-6, baalzephon -> 3.7902141E-6, thick -> 4.9272785E-5, now -> 0.0017131768, prepareth -> 3.7902141E-6, lifetime -> 3.7902141E-6, maidens -> 2.2741286E-5, readest -> 2.5268093E-6, pillar -> 5.938002E-5, spoil -> 1.4908175E-4, hymns -> 2.5268093E-6, variance -> 2.5268093E-6, judaea -> 5.4326403E-5, namely -> 2.9058308E-5, zaanan -> 1.2634047E-6, milcom -> 3.7902141E-6, reconciled -> 8.843833E-6, paws -> 1.2634047E-6, patmos -> 1.2634047E-6, pamphylia -> 6.3170237E-6, degree -> 8.843833E-6, piercing -> 2.5268093E-6, musing -> 1.2634047E-6, nebuzaradan -> 1.895107E-5, reigned -> 2.2235923E-4, compassion -> 5.1799594E-5, lancets -> 1.2634047E-6, edge -> 7.075066E-5, issued -> 8.843833E-6, brood -> 1.2634047E-6, subdueth -> 3.7902141E-6, foreskins -> 6.3170237E-6, displayed -> 1.2634047E-6, carmi -> 1.0107237E-5, evident -> 6.3170237E-6, eglon -> 1.6424261E-5, contendeth -> 3.7902141E-6, hannah -> 1.6424261E-5, eighteenth -> 1.3897452E-5, requiring -> 1.2634047E-6, sight -> 4.2071377E-4, curdled -> 1.2634047E-6, bason -> 6.3170237E-6, discreet -> 3.7902141E-6, hymenaeus -> 2.5268093E-6, usest -> 1.2634047E-6, chelluh -> 1.2634047E-6, sew -> 2.5268093E-6, acquaintance -> 1.3897452E-5, zeruah -> 1.2634047E-6, irpeel -> 1.2634047E-6, ezer -> 1.1370643E-5, crushed -> 8.843833E-6, thinkest -> 1.1370643E-5, chelubai -> 1.2634047E-6, oded -> 3.7902141E-6, amoz -> 1.6424261E-5, ago -> 1.6424261E-5, harum -> 1.2634047E-6, abidan -> 6.3170237E-6, tahpenes -> 3.7902141E-6, darius -> 3.1585118E-5, knop -> 1.2634047E-5, requite -> 1.1370643E-5, shoutings -> 1.2634047E-6, doctor -> 1.2634047E-6, repentest -> 1.2634047E-6, token -> 1.7687666E-5, barns -> 5.0536187E-6, reserved -> 2.0214475E-5, receiver -> 1.2634047E-6, jaws -> 7.5804282E-6, elisha -> 7.327747E-5, died -> 2.5394434E-4, lebanon -> 8.970174E-5, phenicia -> 1.2634047E-6, hittite -> 3.2848522E-5, philetus -> 1.2634047E-6, blastus -> 1.2634047E-6, ahiezer -> 7.5804282E-6, harness -> 6.3170237E-6, mahanaim -> 1.6424261E-5, went -> 0.0017687667, nought -> 4.548257E-5, slandered -> 1.2634047E-6, delights -> 7.5804282E-6, bondwomen -> 3.7902141E-6, reverend -> 1.2634047E-6, charger -> 2.1477881E-5, affirm -> 3.7902141E-6, meribah -> 7.5804282E-6, grasshoppers -> 8.843833E-6, elonites -> 1.2634047E-6, temple -> 2.5773456E-4, profession -> 5.0536187E-6, did -> 0.0012709851, shod -> 5.0536187E-6, shicron -> 1.2634047E-6, strive -> 2.7794904E-5, ahumai -> 1.2634047E-6, egyptian -> 3.4111927E-5, lebonah -> 1.2634047E-6, merchant -> 1.51608565E-5, strike -> 1.51608565E-5, eziongeber -> 3.7902141E-6, heads -> 1.3897452E-4, prayers -> 3.0321713E-5, operations -> 1.2634047E-6, blasphemers -> 2.5268093E-6, extremity -> 1.2634047E-6, dim -> 1.1370643E-5, rabbah -> 1.6424261E-5, didst -> 1.5413537E-4, bethpalet -> 1.2634047E-6, sepulchre -> 6.822385E-5, blast -> 1.0107237E-5, ice -> 3.7902141E-6, sickness -> 2.5268095E-5, bough -> 8.843833E-6, acknowledged -> 2.5268093E-6, tasteth -> 1.2634047E-6, visitation -> 1.895107E-5, gibeonites -> 7.5804282E-6, weariness -> 3.7902141E-6, sceva -> 1.2634047E-6, grecia -> 3.7902141E-6, hurleth -> 1.2634047E-6, shiloh -> 4.1692358E-5, jachin -> 1.0107237E-5, posts -> 5.3063E-5, inn -> 6.3170237E-6, deceased -> 2.5268093E-6, ahiram -> 1.2634047E-6, arbite -> 1.2634047E-6, jael -> 7.5804282E-6, scarce -> 3.7902141E-6, watchman -> 2.400469E-5, betrayed -> 2.400469E-5, communing -> 2.5268093E-6, wasteness -> 1.2634047E-6, antichrists -> 1.2634047E-6, chide -> 5.0536187E-6, peresh -> 1.2634047E-6, strangers -> 1.0107238E-4, worldly -> 2.5268093E-6, bottomless -> 8.843833E-6, ministered -> 4.6745976E-5, melteth -> 8.843833E-6, taralah -> 1.2634047E-6, blameless -> 1.895107E-5, obtain -> 1.895107E-5, azaziah -> 3.7902141E-6, enlargement -> 1.2634047E-6, back -> 1.9456433E-4, forborn -> 1.2634047E-6, neapolis -> 1.2634047E-6, believe -> 1.8066687E-4, shalem -> 1.2634047E-6, twenty -> 3.7144098E-4, sadly -> 1.2634047E-6, sing -> 1.5034516E-4, habor -> 3.7902141E-6, munition -> 2.5268093E-6, taxes -> 1.2634047E-6, cucumbers -> 2.5268093E-6, marble -> 6.3170237E-6, giants -> 1.6424261E-5, importunity -> 1.2634047E-6, kindle -> 2.400469E-5, seals -> 6.3170237E-6, hazaraddar -> 1.2634047E-6, proper -> 5.0536187E-6, scythian -> 1.2634047E-6, benefit -> 6.3170237E-6, cloak -> 5.0536187E-6, obedience -> 1.51608565E-5, birsha -> 1.2634047E-6, convey -> 2.5268093E-6, swim -> 7.5804282E-6, cyprus -> 1.0107237E-5, pricking -> 1.2634047E-6, james -> 5.3063E-5, lydia -> 3.7902141E-6, orderly -> 1.2634047E-6, farthings -> 1.2634047E-6, loweth -> 1.2634047E-6, ensue -> 1.2634047E-6, easily -> 2.5268093E-6, requests -> 1.2634047E-6, wanting -> 1.0107237E-5, nahari -> 1.2634047E-6, paseah -> 3.7902141E-6, shual -> 2.5268093E-6, serjeants -> 2.5268093E-6, israelites -> 2.2741286E-5, wholesome -> 2.5268093E-6, temporal -> 1.2634047E-6, janoah -> 1.2634047E-6, kenizzites -> 1.2634047E-6, supply -> 6.3170237E-6, hararite -> 6.3170237E-6, bands -> 5.8116617E-5, testament -> 1.7687666E-5, castor -> 1.2634047E-6, impotent -> 5.0536187E-6, found -> 5.078887E-4, tormentors -> 1.2634047E-6, treatise -> 1.2634047E-6, clearing -> 2.5268093E-6, breathed -> 5.0536187E-6, chaseth -> 1.2634047E-6, curseth -> 1.2634047E-5, ephah -> 4.9272785E-5, salchah -> 1.2634047E-6, vashni -> 1.2634047E-6, expecting -> 2.5268093E-6, won -> 3.7902141E-6, assault -> 2.5268093E-6, mealtime -> 1.2634047E-6, kinsfolks -> 3.7902141E-6, changeable -> 1.2634047E-6, cries -> 1.2634047E-6, beerothites -> 1.2634047E-6, inherit -> 7.833109E-5, dropped -> 8.843833E-6, hanging -> 2.2741286E-5, forks -> 1.2634047E-6, thistle -> 6.3170237E-6, recover -> 2.65315E-5, deliverer -> 1.2634047E-5, gibea -> 1.2634047E-6, causeth -> 4.042895E-5, fellowship -> 2.1477881E-5, goldsmiths -> 2.5268093E-6, deserving -> 1.2634047E-6, judea -> 1.2634047E-6, vinegar -> 1.6424261E-5, breaking -> 2.2741286E-5, hot -> 3.9165545E-5, custom -> 2.5268095E-5, book -> 2.3752009E-4, smiting -> 6.3170237E-6, fowls -> 6.948726E-5, requiting -> 1.2634047E-6, paid -> 5.0536187E-6, scornful -> 3.7902141E-6, possess -> 1.339209E-4, straitened -> 1.0107237E-5, helbon -> 1.2634047E-6, scorneth -> 5.0536187E-6, ethanim -> 1.2634047E-6, honesty -> 1.2634047E-6, stedfastness -> 2.5268093E-6, showers -> 1.1370643E-5, pearls -> 1.0107237E-5, maachathites -> 5.0536187E-6, irnahash -> 1.2634047E-6, hosen -> 1.2634047E-6, preacheth -> 3.7902141E-6, mixt -> 1.2634047E-6, fingers -> 1.895107E-5, greek -> 1.51608565E-5, sosipater -> 1.2634047E-6, superstition -> 1.2634047E-6, hole -> 1.6424261E-5, ceased -> 4.1692358E-5, some -> 2.931099E-4, colours -> 1.51608565E-5, impute -> 3.7902141E-6, immutable -> 1.2634047E-6, abialbon -> 1.2634047E-6, crownest -> 1.2634047E-6, simri -> 1.2634047E-6, women -> 2.2993966E-4, eziongaber -> 5.0536187E-6, enosh -> 1.2634047E-6, peaceably -> 1.51608565E-5, behalf -> 1.6424261E-5, purification -> 1.0107237E-5, slothful -> 1.895107E-5, woof -> 1.1370643E-5, zoreah -> 1.2634047E-6, apostleship -> 5.0536187E-6, ibzan -> 2.5268093E-6, ouches -> 1.0107237E-5, huppim -> 3.7902141E-6, recompence -> 2.5268095E-5, beguile -> 2.5268093E-6, paddle -> 1.2634047E-6, eloi -> 2.5268093E-6, hotham -> 1.2634047E-6, whom -> 9.639778E-4, greet -> 2.0214475E-5, requested -> 6.3170237E-6, plantings -> 1.2634047E-6, security -> 1.2634047E-6, gershom -> 1.7687666E-5, concluded -> 3.7902141E-6, mehujael -> 2.5268093E-6, portions -> 2.0214475E-5, evilmerodach -> 2.5268093E-6, salah -> 7.5804282E-6, jesaiah -> 2.5268093E-6, cauls -> 1.2634047E-6, tohu -> 1.2634047E-6, abhorrest -> 2.5268093E-6, repair -> 1.7687666E-5, genealogies -> 1.0107237E-5, apart -> 3.0321713E-5, epistle -> 1.7687666E-5, ahasuerus -> 3.9165545E-5, dishonoureth -> 3.7902141E-6, maintained -> 1.2634047E-6, thereof -> 0.0011446447, warrior -> 1.2634047E-6, rash -> 2.5268093E-6, allure -> 2.5268093E-6, chisleu -> 2.5268093E-6, approvest -> 1.2634047E-6, thankfulness -> 1.2634047E-6, contrariwise -> 3.7902141E-6, hezeki -> 1.2634047E-6, preparation -> 1.1370643E-5, stretched -> 8.970174E-5, adulteresses -> 3.7902141E-6, taken -> 4.2703078E-4, grudgingly -> 1.2634047E-6, mounted -> 1.2634047E-6, private -> 1.2634047E-6, ropes -> 7.5804282E-6, pharisee -> 1.6424261E-5, alpha -> 5.0536187E-6, mehida -> 2.5268093E-6, createth -> 1.2634047E-6, chest -> 7.5804282E-6, trucebreakers -> 1.2634047E-6, coupling -> 1.2634047E-5, swarest -> 6.3170237E-6, shama -> 1.2634047E-6, firkins -> 1.2634047E-6, doubting -> 5.0536187E-6, practices -> 1.2634047E-6, narrowly -> 2.5268093E-6, woven -> 5.0536187E-6, thankworthy -> 1.2634047E-6, throughly -> 1.3897452E-5, wonder -> 1.895107E-5, sweep -> 3.7902141E-6, settle -> 1.2634047E-5, tabbaoth -> 2.5268093E-6, describe -> 5.0536187E-6, sitteth -> 5.3063E-5, seduce -> 3.7902141E-6, spears -> 2.0214475E-5, doth -> 2.6152478E-4, loud -> 7.580428E-5, calve -> 2.5268093E-6, violent -> 1.2634047E-5, entreat -> 2.5268093E-6, shulamite -> 2.5268093E-6, zeboiim -> 2.5268093E-6, borrow -> 1.0107237E-5, gazzam -> 2.5268093E-6, railed -> 3.7902141E-6, exaction -> 1.2634047E-6, burning -> 7.580428E-5, generations -> 1.4908175E-4, cumbered -> 1.2634047E-6, apprehended -> 3.7902141E-6, taking -> 2.5268095E-5, loseth -> 1.2634047E-6, haply -> 7.5804282E-6, exclude -> 1.2634047E-6, michmas -> 2.5268093E-6, apes -> 2.5268093E-6, slew -> 2.4762732E-4, fining -> 2.5268093E-6, praising -> 1.2634047E-5, bachrites -> 1.2634047E-6, carmites -> 1.2634047E-6, socho -> 1.2634047E-6, ailed -> 1.2634047E-6, nephishesim -> 1.2634047E-6, medicine -> 2.5268093E-6, leaf -> 1.3897452E-5, babblings -> 2.5268093E-6, oaths -> 3.7902141E-6, defend -> 1.3897452E-5, gracious -> 3.9165545E-5, warfare -> 6.3170237E-6, calf -> 3.790214E-5, sharuhen -> 1.2634047E-6, communications -> 2.5268093E-6, eighteen -> 2.7794904E-5, chorashan -> 1.2634047E-6, wisdom -> 2.956367E-4, apparel -> 3.537533E-5, mattanah -> 2.5268093E-6, despiseth -> 2.400469E-5, spewing -> 1.2634047E-6, nephews -> 2.5268093E-6, able -> 2.0214476E-4, dined -> 1.2634047E-6, stiffnecked -> 1.1370643E-5, wotteth -> 1.2634047E-6, deliciously -> 2.5268093E-6, appearance -> 4.800938E-5, satyr -> 1.2634047E-6, champion -> 3.7902141E-6, manservants -> 1.2634047E-6, prayer -> 1.3771112E-4, hodevah -> 1.2634047E-6, lady -> 5.0536187E-6, gallim -> 2.5268093E-6, solemnities -> 3.7902141E-6, conquerors -> 1.2634047E-6, arbah -> 1.2634047E-6, legion -> 3.7902141E-6, owls -> 7.5804282E-6, galatia -> 7.5804282E-6, chariot -> 8.08579E-5, tokens -> 8.843833E-6, devote -> 1.2634047E-6, hushathite -> 6.3170237E-6, haran -> 2.400469E-5, entry -> 1.895107E-5, debir -> 1.7687666E-5, orchards -> 1.2634047E-6, stoning -> 1.2634047E-6, bilhan -> 5.0536187E-6, shamsherai -> 1.2634047E-6, damsels -> 3.7902141E-6, divorcement -> 7.5804282E-6, weighty -> 2.5268093E-6, blood -> 5.647419E-4, sophereth -> 2.5268093E-6, greater -> 9.7282165E-5, doleful -> 2.5268093E-6, servest -> 2.5268093E-6, consolation -> 1.895107E-5, wither -> 1.3897452E-5, grecians -> 5.0536187E-6, zobah -> 1.3897452E-5, executioner -> 1.2634047E-6, abuse -> 3.7902141E-6, toiled -> 1.2634047E-6, chepharhaammonai -> 1.2634047E-6, camels -> 6.3170235E-5, admonish -> 3.7902141E-6, leave -> 1.4529155E-4, sheath -> 1.0107237E-5, eliathah -> 2.5268093E-6, meronothite -> 2.5268093E-6, joatham -> 2.5268093E-6, manifest -> 4.9272785E-5, hanniel -> 1.2634047E-6, golgotha -> 3.7902141E-6, foreigners -> 2.5268093E-6, weaken -> 1.2634047E-6, grieving -> 1.2634047E-6, shelanites -> 1.2634047E-6, advantaged -> 1.2634047E-6, debt -> 8.843833E-6, servants -> 6.0643425E-4, separated -> 4.1692358E-5, artaxerxes -> 1.895107E-5, proselyte -> 2.5268093E-6, pertain -> 7.5804282E-6, teaching -> 3.1585118E-5, or -> 0.0014162767, bethlehemjudah -> 1.2634047E-5, labours -> 1.6424261E-5, tumultuous -> 3.7902141E-6, azariah -> 6.190683E-5, considering -> 5.0536187E-6, confirmation -> 2.5268093E-6, travailed -> 6.3170237E-6, phuvah -> 1.2634047E-6, chesulloth -> 1.2634047E-6, bed -> 1.1496983E-4, feignest -> 2.5268093E-6, sufficient -> 1.6424261E-5, nehushta -> 1.2634047E-6, ignominy -> 1.2634047E-6, everlasting -> 1.2255026E-4, overthrew -> 1.51608565E-5, patara -> 1.2634047E-6, respecter -> 1.2634047E-6, pilate -> 7.075066E-5, errand -> 3.7902141E-6, sawn -> 1.2634047E-6, dens -> 1.1370643E-5, gerahs -> 6.3170237E-6, diminishing -> 1.2634047E-6, gainsayers -> 1.2634047E-6, palm -> 4.6745976E-5, jewish -> 1.2634047E-6, penny -> 1.1370643E-5, creepeth -> 1.7687666E-5, malluch -> 7.5804282E-6, block -> 1.2634047E-6, tenor -> 2.5268093E-6, ruins -> 3.7902141E-6, magbish -> 1.2634047E-6, warning -> 1.0107237E-5, tillest -> 1.2634047E-6, maharai -> 3.7902141E-6, seleucia -> 1.2634047E-6, spin -> 3.7902141E-6, jehudijah -> 1.2634047E-6, calamus -> 3.7902141E-6, abinoam -> 5.0536187E-6, behold -> 0.0016752747, though -> 2.943733E-4, eloquent -> 3.7902141E-6, apollonia -> 1.2634047E-6, chant -> 1.2634047E-6, persecutions -> 6.3170237E-6, bethel -> 8.3384715E-5, wearisome -> 1.2634047E-6, hukok -> 1.2634047E-6, meraioth -> 8.843833E-6, publisheth -> 5.0536187E-6, flourisheth -> 2.5268093E-6, occupied -> 8.843833E-6, worthies -> 1.2634047E-6, lighting -> 2.5268093E-6, prudent -> 3.0321713E-5, valued -> 5.0536187E-6, chapel -> 1.2634047E-6, clappeth -> 1.2634047E-6, pai -> 1.2634047E-6, fear -> 5.053619E-4, paruah -> 1.2634047E-6, sins -> 2.1856901E-4, benaiah -> 5.3063E-5, dor -> 8.843833E-6, hunting -> 2.5268093E-6, vaunteth -> 1.2634047E-6, desolation -> 5.8116617E-5, drams -> 7.5804282E-6, distracted -> 1.2634047E-6, dogs -> 3.0321713E-5, groaning -> 1.1370643E-5, jachan -> 1.2634047E-6, names -> 1.2255026E-4, utmost -> 1.3897452E-5, hermonites -> 1.2634047E-6, seller -> 5.0536187E-6, birthday -> 3.7902141E-6, likened -> 7.5804282E-6, spices -> 3.9165545E-5, talked -> 5.3063E-5, ludim -> 2.5268093E-6, better -> 1.4781835E-4, quarries -> 2.5268093E-6, accomplishing -> 1.2634047E-6, perseverance -> 1.2634047E-6, ragau -> 1.2634047E-6, telling -> 3.7902141E-6, conclusion -> 1.2634047E-6, jairite -> 1.2634047E-6, sina -> 2.5268093E-6, refuse -> 3.2848522E-5, weakeneth -> 2.5268093E-6, mahali -> 1.2634047E-6, excelleth -> 3.7902141E-6, syrian -> 1.51608565E-5, tertius -> 1.2634047E-6, exceedingly -> 5.053619E-5, huzzab -> 1.2634047E-6, jearim -> 1.2634047E-6, justle -> 1.2634047E-6, secretly -> 2.5268095E-5, quicksands -> 1.2634047E-6, kirjathhuzoth -> 1.2634047E-6, souls -> 9.854557E-5, leftest -> 1.2634047E-6, tares -> 1.0107237E-5, forecast -> 2.5268093E-6, prepared -> 1.2760388E-4, wholly -> 3.6638736E-5, christ -> 7.214041E-4, tekoites -> 2.5268093E-6, native -> 1.2634047E-6, conception -> 3.7902141E-6, burned -> 1.2381366E-4, isles -> 3.4111927E-5, abjects -> 1.2634047E-6, holds -> 2.65315E-5, quiver -> 8.843833E-6, middlemost -> 2.5268093E-6, straits -> 2.5268093E-6, lo -> 2.0088135E-4, country -> 2.2614945E-4, zillah -> 3.7902141E-6, persecution -> 1.2634047E-5, gaze -> 1.2634047E-6, decrees -> 3.7902141E-6, joinings -> 1.2634047E-6, hairs -> 1.895107E-5, thrice -> 1.895107E-5, sorceries -> 6.3170237E-6, deceived -> 4.2955762E-5, scorch -> 1.2634047E-6, ephron -> 1.6424261E-5, youngest -> 2.2741286E-5, last -> 1.073894E-4, winged -> 2.5268093E-6, zaccur -> 1.0107237E-5, endanger -> 1.2634047E-6, reproaches -> 6.3170237E-6, bribery -> 1.2634047E-6, walking -> 3.790214E-5, izehar -> 1.2634047E-6, newly -> 2.5268093E-6, alien -> 6.3170237E-6, tarea -> 1.2634047E-6, cumbereth -> 1.2634047E-6, dawning -> 6.3170237E-6, azarael -> 1.2634047E-6, bewitched -> 3.7902141E-6, itch -> 1.2634047E-6, ambushes -> 1.2634047E-6, trample -> 3.7902141E-6, threw -> 7.5804282E-6, ethbaal -> 1.2634047E-6, corrupteth -> 1.2634047E-6, idols -> 1.2760388E-4, sun -> 2.0214476E-4, addar -> 1.2634047E-6, beholdeth -> 5.0536187E-6, sometimes -> 3.7902141E-6, draw -> 9.601876E-5, oliveyards -> 6.3170237E-6, overshadow -> 2.5268093E-6, geliloth -> 1.2634047E-6, sobriety -> 2.5268093E-6, farthing -> 3.7902141E-6, chafed -> 1.2634047E-6, naves -> 1.2634047E-6, pourtray -> 1.2634047E-6, kirharesh -> 1.2634047E-6, publicans -> 2.1477881E-5, husks -> 1.2634047E-6, adulteress -> 5.0536187E-6, lightened -> 6.3170237E-6, hast -> 0.001351843, bidden -> 1.7687666E-5, cheerful -> 5.0536187E-6, atarah -> 1.2634047E-6, spider -> 3.7902141E-6, slayer -> 2.400469E-5, trimmed -> 2.5268093E-6, bald -> 2.0214475E-5, paces -> 1.2634047E-6, revenues -> 3.7902141E-6, lords -> 5.3063E-5, newborn -> 1.2634047E-6, meadows -> 1.2634047E-6, gaps -> 1.2634047E-6, favourest -> 1.2634047E-6, admiration -> 2.5268093E-6, altars -> 6.948726E-5, banishment -> 2.5268093E-6, shemuel -> 3.7902141E-6, inflicted -> 1.2634047E-6, hethlon -> 2.5268093E-6, forehead -> 2.0214475E-5, ephraim -> 2.2362264E-4, faults -> 5.0536187E-6, mehetabel -> 2.5268093E-6, hewed -> 1.6424261E-5, hasupha -> 1.2634047E-6, bilgai -> 1.2634047E-6, cloud -> 1.3518431E-4, maon -> 8.843833E-6, teach -> 1.364477E-4, righteousness -> 3.8660184E-4, discharged -> 1.2634047E-6, almon -> 1.2634047E-6, kneaded -> 3.7902141E-6, joints -> 7.5804282E-6, morrow -> 1.2886728E-4, slayeth -> 6.3170237E-6, persecute -> 3.1585118E-5, partner -> 3.7902141E-6, acts -> 8.3384715E-5, shore -> 2.1477881E-5, woods -> 1.2634047E-6, clovenfooted -> 3.7902141E-6, joshbekashah -> 2.5268093E-6, striveth -> 2.5268093E-6, dressers -> 1.2634047E-6, sippai -> 1.2634047E-6, tartak -> 1.2634047E-6, collar -> 1.2634047E-6, carpenter -> 5.0536187E-6, discipline -> 1.2634047E-6, adversary -> 2.7794904E-5, jachinites -> 1.2634047E-6, wheel -> 1.895107E-5, highly -> 7.5804282E-6, hypocrite -> 1.3897452E-5, marketplace -> 3.7902141E-6, dimonah -> 1.2634047E-6, somewhat -> 3.1585118E-5, abominations -> 9.601876E-5, get -> 1.4908175E-4, chastise -> 1.2634047E-5, ir -> 1.2634047E-6, babylonish -> 1.2634047E-6, devilish -> 1.2634047E-6, seraiah -> 2.5268095E-5, hammoleketh -> 1.2634047E-6, memorial -> 4.042895E-5, enos -> 8.843833E-6, honoured -> 1.1370643E-5, dorcas -> 2.5268093E-6, hadad -> 2.0214475E-5, bunches -> 3.7902141E-6, talkest -> 3.7902141E-6, disobeyed -> 1.2634047E-6, harbonah -> 1.2634047E-6, lackest -> 2.5268093E-6, jehovahnissi -> 1.2634047E-6, spat -> 1.2634047E-6, pharez -> 1.51608565E-5, infants -> 3.7902141E-6, feebler -> 1.2634047E-6, hazargaddah -> 1.2634047E-6, painfulness -> 1.2634047E-6, dew -> 4.6745976E-5, abib -> 7.5804282E-6, ithream -> 2.5268093E-6, citizens -> 1.2634047E-6, mastery -> 3.7902141E-6, revolters -> 3.7902141E-6, subdued -> 2.400469E-5, manslayer -> 2.5268093E-6, afflict -> 4.548257E-5, kirjathsannah -> 1.2634047E-6, furniture -> 1.0107237E-5, heldai -> 2.5268093E-6, gloriest -> 1.2634047E-6, clamorous -> 1.2634047E-6, korahites -> 1.2634047E-6, shipping -> 1.2634047E-6, lasted -> 1.2634047E-6, key -> 7.5804282E-6, easter -> 1.2634047E-6, channels -> 3.7902141E-6, jonadab -> 1.51608565E-5, beaten -> 5.053619E-5, concubines -> 2.1477881E-5, asps -> 5.0536187E-6, decline -> 6.3170237E-6, bdellium -> 2.5268093E-6, reproach -> 1.11179615E-4, melita -> 1.2634047E-6, banner -> 3.7902141E-6, fearfully -> 1.2634047E-6, bealiah -> 1.2634047E-6, breed -> 2.5268093E-6, hazarenan -> 5.0536187E-6, excluded -> 1.2634047E-6, athenians -> 1.2634047E-6, task -> 2.5268093E-6, seam -> 1.2634047E-6, wipeth -> 2.5268093E-6, rod -> 1.0865281E-4, implead -> 1.2634047E-6, lace -> 5.0536187E-6, sharon -> 7.5804282E-6, eker -> 1.2634047E-6, execration -> 2.5268093E-6, rampart -> 2.5268093E-6, veil -> 8.843833E-6, honestly -> 3.7902141E-6, rahab -> 1.2634047E-5, ambush -> 8.843833E-6, tikvah -> 2.5268093E-6, heirs -> 1.51608565E-5, blotting -> 1.2634047E-6, mouldy -> 2.5268093E-6, benefactors -> 1.2634047E-6, yield -> 3.790214E-5, temptation -> 2.0214475E-5, without -> 5.382104E-4, flood -> 5.4326403E-5, sending -> 1.7687666E-5, aforetime -> 8.843833E-6, asunder -> 2.65315E-5, thoughts -> 7.201407E-5, overwhelm -> 1.2634047E-6, offices -> 6.3170237E-6, abusing -> 1.2634047E-6, aristarchus -> 6.3170237E-6, hindered -> 6.3170237E-6, glutton -> 2.5268093E-6, occupiers -> 1.2634047E-6, warring -> 3.7902141E-6, repetitions -> 1.2634047E-6, tongue -> 1.6297921E-4, complaints -> 2.5268093E-6, gleaning -> 6.3170237E-6, easy -> 5.0536187E-6, oppression -> 3.0321713E-5, shelter -> 2.5268093E-6, epicureans -> 1.2634047E-6, forgetting -> 1.2634047E-6, reaper -> 1.2634047E-6, epistles -> 2.5268093E-6, mourneth -> 1.3897452E-5, vomiteth -> 1.2634047E-6, amend -> 7.5804282E-6, nisroch -> 2.5268093E-6, gardener -> 1.2634047E-6, crown -> 8.3384715E-5, michaiah -> 8.843833E-6, kishon -> 7.5804282E-6, baalath -> 3.7902141E-6, mortgaged -> 1.2634047E-6, jattir -> 5.0536187E-6, marvellous -> 3.0321713E-5, speaker -> 2.5268093E-6, edification -> 5.0536187E-6, stammering -> 2.5268093E-6, ahimaaz -> 1.895107E-5, kedemoth -> 5.0536187E-6, brier -> 3.7902141E-6, win -> 2.5268093E-6, falsehood -> 1.7687666E-5, gemariah -> 6.3170237E-6, tranquillity -> 1.2634047E-6, face -> 5.2557635E-4, colhozeh -> 2.5268093E-6, ellasar -> 2.5268093E-6, rubbing -> 1.2634047E-6, desirable -> 3.7902141E-6, lowliness -> 2.5268093E-6, midianite -> 1.2634047E-6, those -> 5.8748317E-4, gazites -> 1.2634047E-6, chop -> 1.2634047E-6, governors -> 2.7794904E-5, wretchedness -> 1.2634047E-6, rightly -> 5.0536187E-6, cloth -> 2.2741286E-5, cheweth -> 1.0107237E-5, cart -> 1.895107E-5, miriam -> 1.895107E-5, rapha -> 2.5268093E-6, coasts -> 6.443364E-5, offered -> 1.8066687E-4, pruning -> 1.2634047E-6, cottage -> 2.5268093E-6, gizonite -> 1.2634047E-6, idumaea -> 1.2634047E-6, aaron -> 4.4219167E-4, babel -> 2.5268093E-6, ziza -> 2.5268093E-6, poorest -> 1.2634047E-6, proof -> 6.3170237E-6, drowned -> 6.3170237E-6, carcas -> 1.2634047E-6, overtake -> 2.1477881E-5, statutes -> 1.6676943E-4, mocking -> 6.3170237E-6, inflammation -> 2.5268093E-6, beginning -> 1.339209E-4, understanding -> 2.0214476E-4, fitly -> 5.0536187E-6, mene -> 3.7902141E-6, chamois -> 1.2634047E-6, hatita -> 2.5268093E-6, boaz -> 3.0321713E-5, den -> 2.400469E-5, threshingfloors -> 2.5268093E-6, leader -> 3.7902141E-6, bethgamul -> 1.2634047E-6, housetop -> 8.843833E-6, ishbak -> 2.5268093E-6, swalloweth -> 2.5268093E-6, spared -> 1.51608565E-5, running -> 3.2848522E-5, gazing -> 1.2634047E-6, sapphira -> 1.2634047E-6, treadeth -> 1.2634047E-5, eyelids -> 1.1370643E-5, shebarim -> 1.2634047E-6, once -> 7.4540876E-5, cutting -> 6.3170237E-6, foundest -> 1.2634047E-6, gins -> 2.5268093E-6, lookingglasses -> 1.2634047E-6, lift -> 1.3139409E-4, zophah -> 2.5268093E-6, brayed -> 1.2634047E-6, jazer -> 1.3897452E-5, stonest -> 2.5268093E-6, apphia -> 1.2634047E-6, ithra -> 1.2634047E-6, meshech -> 1.0107237E-5, greediness -> 1.2634047E-6, telaim -> 1.2634047E-6, earrings -> 1.51608565E-5, unstable -> 5.0536187E-6, enlarge -> 1.2634047E-5, jewel -> 3.7902141E-6, attained -> 1.2634047E-5, azel -> 7.5804282E-6, stagger -> 3.7902141E-6, learned -> 2.7794904E-5, noontide -> 1.2634047E-6, delicates -> 1.2634047E-6, expenses -> 2.5268093E-6, argob -> 6.3170237E-6, treason -> 6.3170237E-6, bethphelet -> 1.2634047E-6, cluster -> 6.3170237E-6, waxing -> 1.2634047E-6, purified -> 1.51608565E-5, jephthah -> 3.6638736E-5, treacherously -> 2.9058308E-5, refresheth -> 1.2634047E-6, reviled -> 7.5804282E-6, lad -> 4.2955762E-5, every -> 0.0015615682, ijon -> 3.7902141E-6, deserts -> 7.5804282E-6, saith -> 0.0015944168, dear -> 8.843833E-6, millstone -> 1.1370643E-5, interpreting -> 1.2634047E-6, wormwood -> 1.1370643E-5, stacks -> 1.2634047E-6, muzzle -> 3.7902141E-6, men -> 0.0021187298, marvels -> 1.2634047E-6, jucal -> 1.2634047E-6, sticks -> 7.5804282E-6, liberality -> 2.5268093E-6, eber -> 1.6424261E-5, breasts -> 3.4111927E-5, claws -> 3.7902141E-6, hoping -> 2.5268093E-6, lively -> 6.3170237E-6, gotten -> 3.1585118E-5, inclosings -> 2.5268093E-6, infamy -> 2.5268093E-6, forfeited -> 1.2634047E-6, foreknow -> 1.2634047E-6, ramathite -> 1.2634047E-6, mocked -> 2.65315E-5, zarephath -> 3.7902141E-6, mikloth -> 5.0536187E-6, weave -> 2.5268093E-6, eshton -> 2.5268093E-6, leopards -> 2.5268093E-6, brutish -> 1.3897452E-5, watercourse -> 2.5268093E-6, ardon -> 1.2634047E-6, began -> 2.2614945E-4, gather -> 2.0846177E-4, cheereth -> 1.2634047E-6, confess -> 3.537533E-5, barren -> 2.9058308E-5, aground -> 1.2634047E-6, folks -> 1.2634047E-6, green -> 5.1799594E-5, adullamite -> 3.7902141E-6, shining -> 1.3897452E-5, provocation -> 1.0107237E-5, emims -> 2.5268093E-6, hagabah -> 1.2634047E-6, henoch -> 2.5268093E-6, comforter -> 1.0107237E-5, eyed -> 2.5268093E-6, matter -> 1.0107238E-4, ramiah -> 1.2634047E-6, jeuz -> 1.2634047E-6, knops -> 1.1370643E-5, terah -> 1.3897452E-5, perfecting -> 2.5268093E-6, field -> 3.6765076E-4, covetousness -> 2.400469E-5, daysman -> 1.2634047E-6, graves -> 2.65315E-5, beg -> 3.7902141E-6, belshazzar -> 1.0107237E-5, havothjair -> 2.5268093E-6, whereabout -> 1.2634047E-6, armenia -> 2.5268093E-6, hitherto -> 2.400469E-5, japhleti -> 1.2634047E-6, onam -> 5.0536187E-6, oracle -> 2.1477881E-5, ater -> 6.3170237E-6, wrath -> 2.5015415E-4, strived -> 1.2634047E-6, athlai -> 1.2634047E-6, uzzah -> 5.0536187E-6, je -> 1.2634047E-6, colony -> 1.2634047E-6, revelation -> 1.2634047E-5, room -> 4.042895E-5, firmament -> 2.1477881E-5, divider -> 1.2634047E-6, singers -> 4.800938E-5, stalks -> 1.2634047E-6, freewill -> 2.1477881E-5, drusilla -> 1.2634047E-6, virgin -> 4.2955762E-5, elias -> 3.790214E-5, presumptuous -> 2.5268093E-6, weeks -> 1.895107E-5, chrysolyte -> 1.2634047E-6, our -> 0.0014794469, affectionately -> 1.2634047E-6, fast -> 1.073894E-4, convenient -> 1.1370643E-5, fortunatus -> 1.2634047E-6, eaten -> 1.326575E-4, unbelieving -> 7.5804282E-6, antipatris -> 1.2634047E-6, joseph -> 3.1585118E-4, mekonah -> 1.2634047E-6, mnason -> 1.2634047E-6, consummation -> 1.2634047E-6, merciful -> 5.053619E-5, any -> 0.0011522251, betimes -> 6.3170237E-6, twigs -> 2.5268093E-6, meres -> 1.2634047E-6, habitation -> 7.327747E-5, performance -> 2.5268093E-6, cretes -> 1.2634047E-6, lighten -> 8.843833E-6, diminish -> 1.0107237E-5, beauties -> 1.2634047E-6, ledges -> 6.3170237E-6, dwellings -> 2.1477881E-5, washed -> 5.6853212E-5, crouch -> 1.2634047E-6, naamathite -> 5.0536187E-6, aboard -> 1.2634047E-6, janohah -> 2.5268093E-6, hamul -> 3.7902141E-6, maralah -> 1.2634047E-6, immer -> 1.2634047E-5, haven -> 6.3170237E-6, eat -> 8.275301E-4, fathoms -> 2.5268093E-6, freely -> 2.1477881E-5, loosed -> 4.042895E-5, dividing -> 8.843833E-6, lebbaeus -> 1.2634047E-6, fading -> 2.5268093E-6, they -> 0.009318873, proportion -> 3.7902141E-6, contradicting -> 1.2634047E-6, frontiers -> 1.2634047E-6, shillemites -> 1.2634047E-6, fountains -> 1.895107E-5, careah -> 1.2634047E-6, benjamin -> 2.0972519E-4, partial -> 2.5268093E-6, file -> 1.2634047E-6, levitical -> 1.2634047E-6, mikneiah -> 2.5268093E-6, three -> 6.127513E-4, musicians -> 1.2634047E-6, shallecheth -> 1.2634047E-6, gulf -> 1.2634047E-6, general -> 2.5268093E-6, drops -> 5.0536187E-6, buildeth -> 1.1370643E-5, ezel -> 1.2634047E-6, shout -> 4.548257E-5, heli -> 1.2634047E-6, raddai -> 1.2634047E-6, poverty -> 1.895107E-5, burden -> 8.717493E-5, plague -> 1.2381366E-4, especially -> 6.3170237E-6, buckler -> 1.3897452E-5, theophilus -> 2.5268093E-6, yokefellow -> 1.2634047E-6, promisedst -> 3.7902141E-6, balm -> 7.5804282E-6, hadst -> 2.7794904E-5, migron -> 2.5268093E-6, suretiship -> 1.2634047E-6, mustereth -> 1.2634047E-6, hasenuah -> 1.2634047E-6, jetheth -> 2.5268093E-6, honeycomb -> 1.1370643E-5, sue -> 1.2634047E-6, azur -> 2.5268093E-6, ummah -> 1.2634047E-6, duties -> 1.2634047E-6, swallow -> 2.9058308E-5, jahzeel -> 2.5268093E-6, pinnacle -> 2.5268093E-6, enter -> 1.882473E-4, wastes -> 8.843833E-6, sinned -> 1.5034516E-4, naam -> 1.2634047E-6, winter -> 1.7687666E-5, hear -> 6.948726E-4, hamutal -> 3.7902141E-6, diminished -> 6.3170237E-6, accursed -> 2.5268095E-5, roofs -> 2.5268093E-6, superfluous -> 3.7902141E-6, fillets -> 1.0107237E-5, peculiar -> 8.843833E-6, resembled -> 1.2634047E-6, transgresseth -> 5.0536187E-6, stiffhearted -> 1.2634047E-6, endeth -> 1.2634047E-6, snout -> 1.2634047E-6, unsatiable -> 1.2634047E-6, stay -> 4.1692358E-5, threefold -> 1.2634047E-6, commend -> 8.843833E-6, soundness -> 5.0536187E-6, drawn -> 3.537533E-5, chloe -> 1.2634047E-6, paul -> 2.0467157E-4, vineyards -> 5.6853212E-5, sceptres -> 1.2634047E-6, fence -> 1.2634047E-6, favoured -> 1.7687666E-5, secure -> 8.843833E-6, effect -> 1.7687666E-5, abominable -> 2.9058308E-5, accounts -> 1.2634047E-6, ohel -> 1.2634047E-6, along -> 3.790214E-5, hebrews -> 2.65315E-5, tarah -> 2.5268093E-6, near -> 2.665784E-4, trodden -> 3.4111927E-5, encampeth -> 2.5268093E-6, eastward -> 5.053619E-5, matri -> 1.2634047E-6, sodi -> 1.2634047E-6, girl -> 1.2634047E-6, heathen -> 1.8951071E-4, forgiving -> 5.0536187E-6, infamous -> 1.2634047E-6, jonas -> 1.51608565E-5, whale -> 3.7902141E-6, comprehend -> 2.5268093E-6, sorely -> 2.5268093E-6, elamites -> 2.5268093E-6, giveth -> 1.5918899E-4, shorn -> 5.0536187E-6, asyncritus -> 1.2634047E-6, kirheres -> 2.5268093E-6, teil -> 1.2634047E-6, compass -> 4.9272785E-5, scourges -> 1.2634047E-6, alexandrians -> 1.2634047E-6, assist -> 1.2634047E-6, bear -> 2.7163202E-4, abolished -> 6.3170237E-6, shur -> 7.5804282E-6, drinks -> 1.2634047E-6, taxed -> 5.0536187E-6, magnify -> 2.400469E-5, ends -> 6.443364E-5, shapham -> 1.2634047E-6, thereupon -> 6.3170237E-6, mixed -> 1.1370643E-5, woeful -> 1.2634047E-6, joah -> 1.3897452E-5, hamathzobah -> 1.2634047E-6, frankincense -> 2.1477881E-5, despisers -> 2.5268093E-6, gifts -> 6.696045E-5, testimony -> 9.601876E-5, aphekah -> 1.2634047E-6, resurrection -> 5.1799594E-5, made -> 0.0017750836, kittim -> 2.5268093E-6, sherah -> 1.2634047E-6, refusedst -> 1.2634047E-6, kenan -> 1.2634047E-6, pollutions -> 2.5268093E-6, lintel -> 5.0536187E-6, sighest -> 1.2634047E-6, wounds -> 1.895107E-5, mark -> 4.6745976E-5, mothers -> 1.0107237E-5, defileth -> 1.1370643E-5, unequal -> 2.5268093E-6, grapegleanings -> 1.2634047E-6, pethuel -> 1.2634047E-6, stiff -> 3.7902141E-6, ordereth -> 1.2634047E-6, darkish -> 1.2634047E-6, imperious -> 1.2634047E-6, spanned -> 1.2634047E-6, swine -> 2.5268095E-5, headlong -> 3.7902141E-6, diversities -> 3.7902141E-6, taxation -> 1.2634047E-6, hammer -> 8.843833E-6, gilgal -> 5.1799594E-5, pochereth -> 2.5268093E-6, badness -> 1.2634047E-6, how -> 6.8602874E-4, anammelech -> 1.2634047E-6, azmon -> 3.7902141E-6, slumbereth -> 1.2634047E-6, badgers -> 1.7687666E-5, inwards -> 2.5268095E-5, shade -> 1.2634047E-6, kenath -> 2.5268093E-6, relieveth -> 1.2634047E-6, tears -> 4.548257E-5, camest -> 3.537533E-5, isuah -> 1.2634047E-6, lovedst -> 2.5268093E-6, pushed -> 1.2634047E-6, sir -> 1.51608565E-5, josiphiah -> 1.2634047E-6, pronouncing -> 1.2634047E-6, agabus -> 2.5268093E-6, archangel -> 2.5268093E-6, amok -> 2.5268093E-6, stars -> 6.443364E-5, encamped -> 4.1692358E-5, bamah -> 1.2634047E-6, treacherous -> 1.1370643E-5, unawares -> 1.51608565E-5, dukes -> 1.895107E-5, becometh -> 1.895107E-5, gerizim -> 5.0536187E-6, past -> 6.443364E-5, furnished -> 7.5804282E-6, hemam -> 1.2634047E-6, agrippa -> 1.51608565E-5, jehoahaz -> 2.9058308E-5, scorners -> 5.0536187E-6, baptize -> 1.1370643E-5, counsels -> 1.51608565E-5, nahash -> 1.1370643E-5, claudius -> 3.7902141E-6, wrestlings -> 1.2634047E-6, commandest -> 3.7902141E-6, falsely -> 2.65315E-5, preserver -> 1.2634047E-6, bulrush -> 1.2634047E-6, flat -> 5.0536187E-6, stead -> 1.1876004E-4, scoffers -> 1.2634047E-6, pestilent -> 1.2634047E-6, tahtimhodshi -> 1.2634047E-6, exceed -> 5.0536187E-6, younger -> 3.9165545E-5, frozen -> 1.2634047E-6, feasts -> 4.042895E-5, procureth -> 1.2634047E-6, martyrs -> 1.2634047E-6, acres -> 1.2634047E-6, dignity -> 5.0536187E-6, assay -> 1.2634047E-6, deemed -> 1.2634047E-6, fetch -> 3.9165545E-5, medan -> 2.5268093E-6, revilest -> 1.2634047E-6, casteth -> 2.1477881E-5, bilhah -> 1.3897452E-5, instructers -> 1.2634047E-6, weights -> 7.5804282E-6, hostages -> 2.5268093E-6, troubler -> 1.2634047E-6, prosper -> 6.190683E-5, cyrenius -> 1.2634047E-6, maasiai -> 1.2634047E-6, hardeneth -> 5.0536187E-6, despite -> 2.5268093E-6, revolted -> 8.843833E-6, storehouses -> 7.5804282E-6, eneglaim -> 1.2634047E-6, inheritor -> 1.2634047E-6, store -> 3.1585118E-5, rebukes -> 3.7902141E-6, teachest -> 1.0107237E-5, acceptance -> 1.2634047E-6, aged -> 1.1370643E-5, aruboth -> 1.2634047E-6, order -> 7.7067685E-5, ospray -> 2.5268093E-6, overflow -> 1.6424261E-5, compare -> 5.0536187E-6, servitor -> 1.2634047E-6, wasteth -> 3.7902141E-6, innocents -> 2.5268093E-6, prevented -> 1.1370643E-5, mattaniah -> 2.0214475E-5, purifieth -> 2.5268093E-6, join -> 1.7687666E-5, goings -> 3.2848522E-5, sabaoth -> 2.5268093E-6, cyrenian -> 2.5268093E-6, gederothaim -> 1.2634047E-6, account -> 2.1477881E-5, lord -> 0.010061755, meonothai -> 1.2634047E-6, shepham -> 2.5268093E-6, another -> 5.7232234E-4, reaiah -> 3.7902141E-6, barnabas -> 3.6638736E-5, bow -> 1.2634047E-4, will -> 0.0048464206, anointedst -> 1.2634047E-6, overwhelmed -> 8.843833E-6, salathiel -> 5.0536187E-6, soothsayer -> 1.2634047E-6, blasphemeth -> 6.3170237E-6, defended -> 2.5268093E-6, scraped -> 2.5268093E-6, obtained -> 3.537533E-5, revellings -> 2.5268093E-6, abel -> 2.0214475E-5, selleth -> 8.843833E-6, lucifer -> 1.2634047E-6, gainsaying -> 3.7902141E-6, spitted -> 1.2634047E-6, travailest -> 1.2634047E-6, regardest -> 5.0536187E-6, houghed -> 3.7902141E-6, jason -> 6.3170237E-6, rase -> 2.5268093E-6, waymarks -> 1.2634047E-6, pontus -> 3.7902141E-6, bethazmaveth -> 1.2634047E-6, bell -> 5.0536187E-6, fleshy -> 1.2634047E-6, telah -> 1.2634047E-6, tradition -> 1.3897452E-5, tochen -> 1.2634047E-6, reckoning -> 2.5268093E-6, naphish -> 2.5268093E-6, spiced -> 1.2634047E-6, base -> 2.2741286E-5, deeps -> 5.0536187E-6, keziz -> 1.2634047E-6, zabud -> 1.2634047E-6, siloam -> 3.7902141E-6, firebrand -> 2.5268093E-6, horseleach -> 1.2634047E-6, michmash -> 1.1370643E-5, aner -> 3.7902141E-6, pomegranates -> 2.9058308E-5, shocho -> 1.2634047E-6, cool -> 2.5268093E-6, atarothadar -> 1.2634047E-6, romans -> 7.5804282E-6, valleys -> 3.537533E-5, bocheru -> 2.5268093E-6, treaders -> 1.2634047E-6, jailor -> 1.2634047E-6, gardens -> 1.51608565E-5, stormy -> 5.0536187E-6, shalt -> 0.002041662, lemuel -> 2.5268093E-6, mered -> 2.5268093E-6, elzaphan -> 2.5268093E-6, salt -> 5.053619E-5, opposed -> 1.2634047E-6, weight -> 7.327747E-5, confirm -> 1.6424261E-5, opinion -> 3.7902141E-6, gallery -> 2.5268093E-6, wrest -> 6.3170237E-6, wanderest -> 1.2634047E-6, hivites -> 2.0214475E-5, locust -> 1.51608565E-5, concerneth -> 2.5268093E-6, camp -> 1.7182305E-4, javan -> 8.843833E-6, cause -> 4.1439675E-4, kibrothhattaavah -> 6.3170237E-6, uri -> 1.0107237E-5, due -> 3.9165545E-5, perfectness -> 1.2634047E-6, joel -> 2.5268095E-5, continued -> 3.6638736E-5, zuzims -> 1.2634047E-6, mounting -> 1.2634047E-6, ability -> 8.843833E-6, circuits -> 1.2634047E-6, artemas -> 1.2634047E-6, achor -> 6.3170237E-6, greedy -> 7.5804282E-6, ashurites -> 2.5268093E-6, sentest -> 5.0536187E-6, ivah -> 3.7902141E-6, ninevites -> 1.2634047E-6, brotherly -> 7.5804282E-6, grown -> 2.9058308E-5, succeedest -> 2.5268093E-6, coping -> 1.2634047E-6, edomite -> 7.5804282E-6, hymn -> 2.5268093E-6, harped -> 1.2634047E-6, succeed -> 1.2634047E-6, zalmunna -> 1.51608565E-5, headbands -> 1.2634047E-6, bloody -> 2.0214475E-5, abitub -> 1.2634047E-6, redeemedst -> 1.2634047E-6, marchedst -> 1.2634047E-6, melchishua -> 2.5268093E-6, special -> 2.5268093E-6, lately -> 1.2634047E-6, asarelah -> 1.2634047E-6, stuff -> 2.0214475E-5, parting -> 1.2634047E-6, concupiscence -> 3.7902141E-6, eltolad -> 2.5268093E-6, baptisms -> 1.2634047E-6, stretcheth -> 8.843833E-6, napkin -> 3.7902141E-6, outer -> 5.0536187E-6, jezliah -> 1.2634047E-6, engedi -> 7.5804282E-6, grave -> 8.5911524E-5, instrument -> 1.0107237E-5, question -> 1.7687666E-5, balac -> 1.2634047E-6, meremoth -> 7.5804282E-6, jechonias -> 2.5268093E-6, beten -> 1.2634047E-6, hatefully -> 1.2634047E-6, spicery -> 1.2634047E-6, sepulchres -> 2.0214475E-5, messias -> 2.5268093E-6, arrived -> 2.5268093E-6, monuments -> 1.2634047E-6, rebuked -> 3.1585118E-5, urias -> 1.2634047E-6, signs -> 6.696045E-5, elizur -> 6.3170237E-6, mind -> 1.2002345E-4, mattock -> 2.5268093E-6, diblath -> 1.2634047E-6, apothecaries -> 2.5268093E-6, wreathed -> 1.2634047E-6, landmark -> 5.0536187E-6, ashdothpisgah -> 3.7902141E-6, pricked -> 2.5268093E-6, lusting -> 1.2634047E-6, juda -> 1.2634047E-5, brigandines -> 1.2634047E-6, consumeth -> 5.0536187E-6, overcharged -> 1.2634047E-6, playing -> 8.843833E-6, images -> 8.970174E-5, chephirah -> 5.0536187E-6, canaanite -> 1.7687666E-5, uttering -> 1.2634047E-6, proclaimed -> 2.0214475E-5, bidding -> 1.2634047E-6, zoheleth -> 1.2634047E-6, elmodam -> 1.2634047E-6, uncovered -> 2.1477881E-5, hin -> 2.7794904E-5, clothest -> 1.2634047E-6, cases -> 1.2634047E-6, beginnest -> 1.2634047E-6, troubling -> 2.5268093E-6, pitchers -> 6.3170237E-6, figs -> 3.1585118E-5, jaareoregim -> 1.2634047E-6, shemeber -> 1.2634047E-6, apollos -> 1.2634047E-5, pau -> 1.2634047E-6, instruct -> 1.1370643E-5, thrust -> 6.3170235E-5, deuel -> 5.0536187E-6, freed -> 2.5268093E-6, venture -> 2.5268093E-6, tooth -> 1.51608565E-5, recompensed -> 1.2634047E-5, discerner -> 1.2634047E-6, singing -> 3.6638736E-5, beams -> 1.51608565E-5, aloof -> 1.2634047E-6, multiply -> 5.8116617E-5, gazer -> 2.5268093E-6, liberal -> 7.5804282E-6, rioting -> 1.2634047E-6, named -> 7.201407E-5, rebel -> 1.7687666E-5, intercession -> 1.1370643E-5, inferior -> 5.0536187E-6, sorts -> 8.843833E-6, front -> 2.5268093E-6, avoided -> 1.2634047E-6, lightest -> 1.2634047E-6, secrets -> 1.2634047E-5, answerable -> 1.2634047E-6, rumah -> 1.2634047E-6, netophathite -> 1.0107237E-5, adorneth -> 1.2634047E-6, schism -> 1.2634047E-6, pilgrimage -> 5.0536187E-6, exploits -> 2.5268093E-6, vermilion -> 2.5268093E-6, subtil -> 3.7902141E-6, walk -> 2.678418E-4, athaliah -> 2.1477881E-5, rich -> 1.0233578E-4, leviathan -> 6.3170237E-6, baalpeor -> 7.5804282E-6, elimelech -> 7.5804282E-6, believing -> 1.0107237E-5, nogah -> 2.5268093E-6, delicate -> 6.3170237E-6, zabbai -> 2.5268093E-6, forbear -> 2.7794904E-5, preaching -> 3.4111927E-5, wards -> 3.7902141E-6, lukewarm -> 1.2634047E-6, defiled -> 8.970174E-5, banners -> 3.7902141E-6, humbly -> 2.5268093E-6, degrees -> 1.1370643E-5, old -> 4.800938E-4, kinah -> 1.2634047E-6, remained -> 6.696045E-5, estimate -> 2.5268093E-6, dread -> 1.1370643E-5, apostles -> 7.580428E-5, away -> 0.0011560153, bury -> 4.9272785E-5, earthquakes -> 3.7902141E-6, flaming -> 1.1370643E-5, boughs -> 2.2741286E-5, fresher -> 1.2634047E-6, iim -> 2.5268093E-6, dresser -> 1.2634047E-6, marrieth -> 5.0536187E-6, decreed -> 6.3170237E-6, briers -> 1.51608565E-5, jiphthahel -> 2.5268093E-6, situation -> 2.5268093E-6, gileadite -> 1.1370643E-5, longsuffering -> 2.0214475E-5, casiphia -> 2.5268093E-6, bending -> 1.2634047E-6, shenir -> 2.5268093E-6, fortieth -> 5.0536187E-6, tadmor -> 2.5268093E-6, jorai -> 1.2634047E-6, builders -> 1.895107E-5, laidst -> 1.2634047E-6, defile -> 4.9272785E-5, deceitful -> 2.65315E-5, overplus -> 1.2634047E-6, seeking -> 1.7687666E-5, redness -> 1.2634047E-6, girdeth -> 5.0536187E-6, groan -> 8.843833E-6, often -> 1.895107E-5, oznites -> 1.2634047E-6, ensample -> 3.7902141E-6, couplings -> 1.2634047E-6, syria -> 9.4755356E-5, arrows -> 5.1799594E-5, offering -> 9.1470504E-4, perverted -> 6.3170237E-6, yesterday -> 1.1370643E-5, allied -> 1.2634047E-6, bethlehemite -> 5.0536187E-6, temani -> 1.2634047E-6, consciences -> 1.2634047E-6, sweat -> 3.7902141E-6, disputings -> 2.5268093E-6, correction -> 1.51608565E-5, melea -> 1.2634047E-6, today -> 2.5268093E-6, clement -> 1.2634047E-6, hazezontamar -> 1.2634047E-6, reubenites -> 2.0214475E-5, horseback -> 6.3170237E-6, confessing -> 3.7902141E-6, downsitting -> 1.2634047E-6, subverted -> 1.2634047E-6, heretick -> 1.2634047E-6, nergal -> 1.2634047E-6, annas -> 5.0536187E-6, synagogues -> 3.0321713E-5, slain -> 2.3120307E-4, hereby -> 1.6424261E-5, paltiel -> 1.2634047E-6, sitting -> 5.4326403E-5, here -> 2.0467157E-4, hege -> 1.2634047E-6, rachal -> 1.2634047E-6, hats -> 1.2634047E-6, shoot -> 2.65315E-5, treasury -> 1.1370643E-5, ship -> 8.970174E-5, viewed -> 5.0536187E-6, applied -> 3.7902141E-6, greenish -> 2.5268093E-6, descended -> 2.400469E-5, boastings -> 1.2634047E-6, slanderest -> 1.2634047E-6, knewest -> 1.2634047E-5, doting -> 1.2634047E-6, prices -> 1.2634047E-6, beforehand -> 6.3170237E-6, mishal -> 1.2634047E-6, jaazer -> 2.5268093E-6, jecamiah -> 1.2634047E-6, terrors -> 1.895107E-5, zoheth -> 1.2634047E-6, esteeming -> 1.2634047E-6, spied -> 7.5804282E-6, trap -> 5.0536187E-6, repeateth -> 1.2634047E-6, dalaiah -> 1.2634047E-6, wines -> 2.5268093E-6, sights -> 1.2634047E-6, perfumes -> 1.2634047E-6, beraiah -> 1.2634047E-6, stepped -> 1.2634047E-6, driveth -> 5.0536187E-6, less -> 3.4111927E-5, seethe -> 1.1370643E-5, elizaphan -> 5.0536187E-6, korahite -> 1.2634047E-6, blame -> 5.0536187E-6, keepest -> 5.0536187E-6, living -> 1.8572049E-4, rideth -> 8.843833E-6, courteously -> 2.5268093E-6, ovens -> 1.2634047E-6, jebusite -> 1.7687666E-5, hunted -> 1.2634047E-6, aretas -> 1.2634047E-6, dote -> 1.2634047E-6, carriages -> 3.7902141E-6, meroz -> 1.2634047E-6, oppress -> 2.9058308E-5, potentate -> 1.2634047E-6, countrymen -> 2.5268093E-6, evi -> 2.5268093E-6, ithiel -> 3.7902141E-6, shaaraim -> 2.5268093E-6, jehiah -> 1.2634047E-6, henceforward -> 2.5268093E-6, moles -> 1.2634047E-6, traitors -> 1.2634047E-6, railing -> 5.0536187E-6, frowardness -> 3.7902141E-6, span -> 1.0107237E-5, methegammah -> 1.2634047E-6, seedtime -> 1.2634047E-6, ar -> 7.5804282E-6, stonesquarers -> 1.2634047E-6, awake -> 5.3063E-5, masters -> 2.7794904E-5, bethshan -> 3.7902141E-6, bellows -> 1.2634047E-6, lamentable -> 1.2634047E-6, revenger -> 8.843833E-6, paran -> 1.3897452E-5, hanochites -> 1.2634047E-6, fury -> 8.843833E-5, thankful -> 3.7902141E-6, brink -> 7.5804282E-6, use -> 4.4219167E-5, ambassage -> 1.2634047E-6, brick -> 1.0107237E-5, hareth -> 1.2634047E-6, bamoth -> 2.5268093E-6, arrogancy -> 5.0536187E-6, miletus -> 2.5268093E-6, malchielites -> 1.2634047E-6, delectable -> 1.2634047E-6, christs -> 2.5268093E-6, aminadab -> 3.7902141E-6, pottage -> 8.843833E-6, tribulations -> 5.0536187E-6, mules -> 1.51608565E-5, amon -> 2.400469E-5, pisseth -> 7.5804282E-6, ahasai -> 1.2634047E-6, cruel -> 2.400469E-5, satan -> 7.075066E-5, miphkad -> 1.2634047E-6, reproached -> 1.895107E-5, vows -> 3.790214E-5, instructing -> 1.2634047E-6, state -> 1.7687666E-5, mill -> 2.5268093E-6, jerusalem -> 0.0010284114, ashdod -> 2.65315E-5, cleaved -> 3.7902141E-6, dignities -> 2.5268093E-6, buyer -> 3.7902141E-6, put -> 0.0011509617, remmonmethoar -> 1.2634047E-6, be -> 0.008860257, delicateness -> 1.2634047E-6, kings -> 4.2197717E-4, perizzites -> 2.2741286E-5, menstruous -> 3.7902141E-6, armed -> 3.790214E-5, hashabiah -> 1.895107E-5, abijam -> 6.3170237E-6, endow -> 1.2634047E-6, olympas -> 1.2634047E-6, window -> 2.0214475E-5, flagons -> 3.7902141E-6, prosperously -> 2.5268093E-6, meaneth -> 1.0107237E-5, boweth -> 3.7902141E-6, fellowheirs -> 1.2634047E-6, chozeba -> 1.2634047E-6, melting -> 1.2634047E-6, winebibbers -> 1.2634047E-6, stain -> 3.7902141E-6, defer -> 3.7902141E-6, jeezerites -> 1.2634047E-6, honey -> 7.075066E-5, courses -> 2.2741286E-5, hauran -> 2.5268093E-6, adversaries -> 4.548257E-5, tribute -> 4.6745976E-5, uncircumcision -> 2.0214475E-5, hurling -> 1.2634047E-6, altereth -> 2.5268093E-6, rid -> 7.5804282E-6, darda -> 1.2634047E-6, jehubbah -> 1.2634047E-6, tartan -> 2.5268093E-6, uzzi -> 1.3897452E-5, nimshi -> 6.3170237E-6, durst -> 1.1370643E-5, success -> 1.2634047E-6, mantles -> 1.2634047E-6, axe -> 1.3897452E-5, kirioth -> 1.2634047E-6, syracuse -> 1.2634047E-6, whore -> 1.895107E-5, amounting -> 1.2634047E-6, windows -> 3.790214E-5, sidonians -> 6.3170237E-6, spain -> 2.5268093E-6, broad -> 4.548257E-5, zin -> 1.2634047E-5, honoureth -> 1.1370643E-5, jotbah -> 1.2634047E-6, angels -> 1.1876004E-4, stiffened -> 1.2634047E-6, ink -> 5.0536187E-6, condescend -> 1.2634047E-6, imagine -> 1.51608565E-5, egyptians -> 1.2381366E-4, fullers -> 1.2634047E-6, mithredath -> 2.5268093E-6, tryphosa -> 1.2634047E-6, bozez -> 1.2634047E-6, hushim -> 5.0536187E-6, unmindful -> 1.2634047E-6, entangleth -> 1.2634047E-6, protection -> 1.2634047E-6, lowing -> 2.5268093E-6, forgetfulness -> 1.2634047E-6, injured -> 1.2634047E-6, greeteth -> 1.2634047E-6, queens -> 3.7902141E-6, pronounce -> 2.9058308E-5, austere -> 2.5268093E-6, praetorium -> 1.2634047E-6, tales -> 2.5268093E-6, queen -> 6.822385E-5, need -> 6.190683E-5, visited -> 2.9058308E-5, ramoth -> 1.0107237E-5, bringeth -> 9.9808974E-5, nathan -> 5.3063E-5, dinah -> 1.0107237E-5, atarothaddar -> 1.2634047E-6, approacheth -> 1.2634047E-6, rock -> 1.5034516E-4, northward -> 3.0321713E-5, reed -> 4.1692358E-5, error -> 1.6424261E-5, naaman -> 2.1477881E-5, needy -> 4.800938E-5, baale -> 1.2634047E-6, elected -> 1.2634047E-6, tola -> 7.5804282E-6, buy -> 7.075066E-5, shemiramoth -> 5.0536187E-6, witnesseth -> 2.5268093E-6, defrauded -> 5.0536187E-6, openly -> 1.895107E-5, pleased -> 7.833109E-5, berodachbaladan -> 1.2634047E-6, miss -> 2.5268093E-6, blessedness -> 3.7902141E-6, only -> 3.196414E-4, joiarib -> 6.3170237E-6, grant -> 2.7794904E-5, hasadiah -> 1.2634047E-6, smoke -> 5.6853212E-5, walkest -> 8.843833E-6, dodavah -> 1.2634047E-6, befall -> 1.1370643E-5, suits -> 1.2634047E-6, karnaim -> 1.2634047E-6, ai -> 4.548257E-5, wafer -> 3.7902141E-6, arcturus -> 2.5268093E-6, herein -> 1.1370643E-5, deborah -> 1.2634047E-5, waited -> 4.4219167E-5, betonim -> 1.2634047E-6, fats -> 1.2634047E-6, iphedeiah -> 1.2634047E-6, ulai -> 2.5268093E-6, kind -> 5.6853212E-5, sihon -> 4.6745976E-5, urge -> 1.2634047E-6, mispereth -> 1.2634047E-6, cursing -> 1.51608565E-5, target -> 3.7902141E-6, crane -> 2.5268093E-6, confirmed -> 1.6424261E-5, prevailed -> 4.6745976E-5, barabbas -> 1.3897452E-5, pigeon -> 2.5268093E-6, girgasite -> 1.2634047E-6, fourteen -> 3.2848522E-5, kedar -> 1.51608565E-5, weareth -> 1.2634047E-6, sottish -> 1.2634047E-6, forbiddeth -> 1.2634047E-6, ripped -> 3.7902141E-6, eschewed -> 1.2634047E-6, upholdest -> 1.2634047E-6, highway -> 2.0214475E-5, baalah -> 6.3170237E-6, lordly -> 1.2634047E-6, oweth -> 1.2634047E-6, ohad -> 2.5268093E-6, astonishment -> 2.65315E-5, ilai -> 1.2634047E-6, depths -> 2.1477881E-5, flock -> 1.4023793E-4, canaanites -> 6.948726E-5, elnaam -> 1.2634047E-6, phaseah -> 1.2634047E-6, embraced -> 6.3170237E-6, gadites -> 1.7687666E-5, jasher -> 2.5268093E-6, bethmeon -> 1.2634047E-6, fellowworkers -> 1.2634047E-6, morsel -> 1.2634047E-5, corrupters -> 2.5268093E-6, berothah -> 1.2634047E-6, righteousnesses -> 3.7902141E-6, ringstraked -> 8.843833E-6, lay -> 3.0448055E-4, punon -> 2.5268093E-6, cisterns -> 2.5268093E-6, shortened -> 1.1370643E-5, sowedst -> 1.2634047E-6, ruinous -> 3.7902141E-6, rafters -> 1.2634047E-6, sacrifice -> 2.7542224E-4, shitrai -> 1.2634047E-6, hurting -> 1.2634047E-6, alamoth -> 1.2634047E-6, enchantments -> 1.2634047E-5, shebna -> 1.1370643E-5, deal -> 7.580428E-5, shelah -> 1.3897452E-5, temperance -> 5.0536187E-6, rings -> 5.5589808E-5, hateth -> 3.9165545E-5, form -> 3.0321713E-5, bolled -> 1.2634047E-6, continually -> 1.0233578E-4, frameth -> 2.5268093E-6, sawed -> 1.2634047E-6, rows -> 2.0214475E-5, sinful -> 1.0107237E-5, ranges -> 5.0536187E-6, males -> 4.042895E-5, lapwing -> 2.5268093E-6, pethor -> 2.5268093E-6, baalshalisha -> 1.2634047E-6, acknowledging -> 3.7902141E-6, ravished -> 8.843833E-6, graved -> 2.5268093E-6, alabaster -> 3.7902141E-6, villages -> 9.4755356E-5, famine -> 1.2128685E-4, repentings -> 1.2634047E-6, asshurim -> 1.2634047E-6, dealest -> 2.5268093E-6, bestir -> 1.2634047E-6, examination -> 1.2634047E-6, maneh -> 1.2634047E-6, perverting -> 2.5268093E-6, dispersions -> 1.2634047E-6, rather -> 7.833109E-5, inflame -> 1.2634047E-6, chamberlain -> 7.5804282E-6, heshbon -> 4.800938E-5, peace -> 5.4200063E-4, defendest -> 1.2634047E-6, bitter -> 4.800938E-5, azriel -> 3.7902141E-6, from -> 0.00460132, kill -> 1.5792559E-4, bukkiah -> 2.5268093E-6, siege -> 2.1477881E-5, paths -> 5.3063E-5, care -> 2.5268095E-5, whip -> 2.5268093E-6, cage -> 2.5268093E-6, ossifrage -> 2.5268093E-6, confederacy -> 3.7902141E-6, uz -> 8.843833E-6, dross -> 1.0107237E-5, shobai -> 2.5268093E-6, protesting -> 1.2634047E-6, striker -> 2.5268093E-6, s -> 0.0022614945, potters -> 3.7902141E-6, sprung -> 1.0107237E-5, edomites -> 1.6424261E-5, honest -> 8.843833E-6, nisan -> 2.5268093E-6, misused -> 1.2634047E-6, zephonites -> 1.2634047E-6, flattereth -> 7.5804282E-6, arieh -> 1.2634047E-6, waked -> 1.2634047E-6, rolled -> 1.51608565E-5, kanah -> 3.7902141E-6, hoods -> 1.2634047E-6, cyrenians -> 1.2634047E-6, signification -> 1.2634047E-6, gether -> 2.5268093E-6, rejoiced -> 5.6853212E-5, despising -> 1.2634047E-6, praises -> 3.6638736E-5, zacher -> 1.2634047E-6, brooks -> 1.895107E-5, captive -> 7.4540876E-5, clear -> 1.895107E-5, requited -> 2.5268093E-6, shabbethai -> 3.7902141E-6, ewe -> 8.843833E-6, aroerite -> 1.2634047E-6, meshillemoth -> 2.5268093E-6, ado -> 1.2634047E-6, fellowsoldier -> 2.5268093E-6, biteth -> 2.5268093E-6, banded -> 1.2634047E-6, bichri -> 1.0107237E-5, bats -> 1.2634047E-6, surmisings -> 1.2634047E-6, prophecies -> 2.5268093E-6, life -> 5.6853215E-4, provided -> 1.1370643E-5, affliction -> 9.4755356E-5, litters -> 1.2634047E-6, swords -> 3.0321713E-5, spoken -> 3.6259714E-4, pledge -> 2.7794904E-5, jareb -> 2.5268093E-6, forget -> 6.822385E-5, tidings -> 5.8116617E-5, world -> 3.6386057E-4, unreasonable -> 2.5268093E-6, bullock -> 1.3518431E-4, kenaz -> 1.3897452E-5, temanite -> 7.5804282E-6, pilgrims -> 2.5268093E-6, excuse -> 3.7902141E-6, brandish -> 1.2634047E-6, interpretation -> 5.8116617E-5, proclaim -> 2.9058308E-5, deceiveth -> 7.5804282E-6, delivering -> 3.7902141E-6, contemptible -> 5.0536187E-6, sendest -> 7.5804282E-6, allowed -> 1.2634047E-6, lahairoi -> 2.5268093E-6, grapes -> 4.6745976E-5, susanna -> 1.2634047E-6, medeba -> 6.3170237E-6, lap -> 3.7902141E-6, barkos -> 2.5268093E-6, shimri -> 3.7902141E-6, jebusites -> 3.1585118E-5, agreeth -> 2.5268093E-6, trustest -> 7.5804282E-6, wasted -> 2.0214475E-5, pictures -> 3.7902141E-6, cheek -> 1.1370643E-5, loatheth -> 2.5268093E-6, valley -> 1.7561326E-4, jeriah -> 2.5268093E-6, region -> 1.895107E-5, jeziah -> 1.2634047E-6, nodab -> 1.2634047E-6, ford -> 1.2634047E-6, bethemek -> 1.2634047E-6, fishes -> 3.4111927E-5, stachys -> 1.2634047E-6, nethaneel -> 1.7687666E-5, twelfth -> 2.9058308E-5, abital -> 2.5268093E-6, mourners -> 5.0536187E-6, tarried -> 4.042895E-5, messenger -> 4.2955762E-5, palace -> 6.0643426E-5, pierce -> 5.0536187E-6, gibeah -> 6.0643426E-5, words -> 6.89819E-4, shred -> 1.2634047E-6, partridge -> 2.5268093E-6, benhanan -> 1.2634047E-6, heal -> 5.053619E-5, overcame -> 3.7902141E-6, mijamin -> 2.5268093E-6, galleries -> 5.0536187E-6, beerah -> 1.2634047E-6, barachias -> 1.2634047E-6, asherites -> 1.2634047E-6, herself -> 5.3063E-5, flieth -> 5.0536187E-6, transferred -> 1.2634047E-6, carmelite -> 6.3170237E-6, haggites -> 1.2634047E-6, defiledst -> 1.2634047E-6, blotted -> 7.5804282E-6, overran -> 1.2634047E-6, gravity -> 2.5268093E-6, vilely -> 1.2634047E-6, gezer -> 1.6424261E-5, ismaiah -> 1.2634047E-6, manner -> 2.4762732E-4, unmarried -> 5.0536187E-6, pillars -> 1.1244302E-4, epher -> 5.0536187E-6, peep -> 1.2634047E-6, brass -> 1.5918899E-4, macedonian -> 1.2634047E-6, superscription -> 6.3170237E-6, gittite -> 1.0107237E-5, madmenah -> 1.2634047E-6, wedding -> 8.843833E-6, pleadings -> 1.2634047E-6, rephael -> 1.2634047E-6, chaldees -> 1.7687666E-5, tutors -> 1.2634047E-6, hearkeneth -> 2.5268093E-6, ardites -> 1.2634047E-6, asketh -> 1.3897452E-5, pick -> 1.2634047E-6, princes -> 3.449095E-4, deckedst -> 2.5268093E-6, deep -> 8.212131E-5, overseers -> 7.5804282E-6, bringers -> 1.2634047E-6, molten -> 4.9272785E-5, sojourned -> 1.51608565E-5, daily -> 7.9594494E-5, scaffold -> 1.2634047E-6, skip -> 1.2634047E-6, ahinoam -> 8.843833E-6, dried -> 4.9272785E-5, shumathites -> 1.2634047E-6, nuts -> 2.5268093E-6, fatness -> 2.1477881E-5, bathe -> 2.2741286E-5, jetur -> 3.7902141E-6, intend -> 5.0536187E-6, felix -> 1.1370643E-5, pillow -> 3.7902141E-6, girgashites -> 6.3170237E-6, occasion -> 2.65315E-5, idalah -> 1.2634047E-6, tin -> 6.3170237E-6, wellfavoured -> 1.2634047E-6, shimeath -> 2.5268093E-6, struggled -> 1.2634047E-6, imrah -> 1.2634047E-6, hated -> 7.580428E-5, ensigns -> 1.2634047E-6, tribe -> 3.0448055E-4, chastened -> 1.0107237E-5, persecutors -> 1.0107237E-5, darkon -> 2.5268093E-6, buffeted -> 3.7902141E-6, necessary -> 1.1370643E-5, henadad -> 5.0536187E-6, whensoever -> 3.7902141E-6, decree -> 6.190683E-5, izri -> 1.2634047E-6, berachah -> 3.7902141E-6, grace -> 2.147788E-4, poureth -> 1.2634047E-5, chiefest -> 1.0107237E-5, languages -> 8.843833E-6, hiram -> 2.9058308E-5, bezek -> 3.7902141E-6, festus -> 1.6424261E-5, felling -> 1.2634047E-6, girded -> 4.1692358E-5, barber -> 1.2634047E-6, tread -> 4.1692358E-5, foxes -> 1.0107237E-5, forgavest -> 2.5268093E-6, pulling -> 2.5268093E-6, baara -> 1.2634047E-6, administered -> 2.5268093E-6, smootheth -> 1.2634047E-6, carpenters -> 1.1370643E-5, dwellingplace -> 3.7902141E-6, tophel -> 1.2634047E-6, directeth -> 3.7902141E-6, collops -> 1.2634047E-6, maath -> 1.2634047E-6, warred -> 1.1370643E-5, needle -> 3.7902141E-6, bosom -> 5.1799594E-5, transgressed -> 4.2955762E-5, asuppim -> 2.5268093E-6, reproveth -> 5.0536187E-6, done -> 7.1382365E-4, mizraim -> 5.0536187E-6, caleb -> 4.548257E-5, akkub -> 1.0107237E-5, bethhogla -> 1.2634047E-6, kirjatharba -> 7.5804282E-6, blush -> 3.7902141E-6, length -> 9.7282165E-5, forgers -> 1.2634047E-6, nachor -> 2.5268093E-6, hairy -> 6.3170237E-6, watchings -> 2.5268093E-6, play -> 2.1477881E-5, devour -> 8.970174E-5, chemosh -> 1.0107237E-5, bleating -> 1.2634047E-6, myra -> 1.2634047E-6, kadesh -> 2.1477881E-5, differences -> 1.2634047E-6, equity -> 1.2634047E-5, fleshly -> 3.7902141E-6, bizjothjah -> 1.2634047E-6, seared -> 1.2634047E-6, arrayed -> 1.3897452E-5, rinsed -> 3.7902141E-6, haradah -> 2.5268093E-6, chemarims -> 1.2634047E-6, cheran -> 2.5268093E-6, intelligence -> 1.2634047E-6, thus -> 9.3112927E-4, steads -> 1.2634047E-6, bewaileth -> 1.2634047E-6, gatherer -> 1.2634047E-6, caterpillers -> 5.0536187E-6, chosen -> 1.5539878E-4, archite -> 6.3170237E-6, chiefly -> 3.7902141E-6, rip -> 1.2634047E-6, mortal -> 7.5804282E-6, peulthai -> 1.2634047E-6, sure -> 5.1799594E-5, berites -> 1.2634047E-6, presseth -> 2.5268093E-6, hereunto -> 2.5268093E-6, fly -> 3.1585118E-5, watcher -> 2.5268093E-6, slaying -> 8.843833E-6, destroyed -> 2.1098858E-4, sheresh -> 1.2634047E-6, road -> 1.2634047E-6, flint -> 6.3170237E-6, cropped -> 1.2634047E-6, after -> 0.0014895542, escaping -> 1.2634047E-6, cure -> 6.3170237E-6, ziz -> 1.2634047E-6, endeavour -> 1.2634047E-6, chilion -> 3.7902141E-6, shammai -> 7.5804282E-6, ended -> 2.65315E-5, hadashah -> 1.2634047E-6, fearful -> 1.3897452E-5, skirts -> 8.843833E-6, discontinue -> 1.2634047E-6, approved -> 1.0107237E-5, sailed -> 1.895107E-5, remembereth -> 6.3170237E-6, pattern -> 1.7687666E-5, longeth -> 5.0536187E-6, shedeur -> 6.3170237E-6, nights -> 2.2741286E-5, herodians -> 3.7902141E-6, ucal -> 1.2634047E-6, exactions -> 1.2634047E-6, sorrow -> 8.843833E-5, if -> 0.0020151306, quivered -> 1.2634047E-6, anani -> 1.2634047E-6, unquenchable -> 2.5268093E-6, sukkiims -> 1.2634047E-6, event -> 3.7902141E-6, giving -> 3.6638736E-5, ephesus -> 2.1477881E-5, sustained -> 3.7902141E-6, believed -> 1.4655494E-4, conaniah -> 1.2634047E-6, thirdly -> 1.2634047E-6, heaviness -> 1.7687666E-5, venom -> 1.2634047E-6, asked -> 1.5034516E-4, meeteth -> 3.7902141E-6, tie -> 2.5268093E-6, balances -> 1.2634047E-5, elhanan -> 5.0536187E-6, achaia -> 1.3897452E-5, extend -> 2.5268093E-6, turtledove -> 3.7902141E-6, glittering -> 7.5804282E-6, to -> 0.017134296, rods -> 1.895107E-5, stript -> 1.2634047E-6, eight -> 1.0107238E-4, ambushment -> 2.5268093E-6, worthy -> 8.5911524E-5, coral -> 2.5268093E-6, crispus -> 2.5268093E-6, punished -> 2.1477881E-5, livest -> 5.0536187E-6, mahol -> 1.2634047E-6, shuphamites -> 1.2634047E-6, backs -> 1.0107237E-5, lachish -> 3.0321713E-5, damnation -> 1.3897452E-5, perplexed -> 6.3170237E-6, sorcery -> 1.2634047E-6, courage -> 2.5268095E-5, straw -> 2.0214475E-5, afterward -> 8.3384715E-5, baaltamar -> 1.2634047E-6, faulty -> 2.5268093E-6, elzabad -> 2.5268093E-6, smoking -> 6.3170237E-6, gilboa -> 1.0107237E-5, malefactor -> 1.2634047E-6, distributeth -> 1.2634047E-6, nibshan -> 1.2634047E-6, dreamer -> 5.0536187E-6, sale -> 3.7902141E-6, strings -> 5.0536187E-6, praised -> 3.2848522E-5, deliverest -> 2.5268093E-6, shephathiah -> 1.2634047E-6, mar -> 7.5804282E-6, pedaiah -> 1.0107237E-5, strangely -> 1.2634047E-6, bestow -> 1.1370643E-5, migdalgad -> 1.2634047E-6, atad -> 2.5268093E-6, overseer -> 8.843833E-6, drown -> 2.5268093E-6, wallowing -> 1.2634047E-6, trade -> 6.3170237E-6, froward -> 2.65315E-5, bite -> 8.843833E-6, served -> 9.349195E-5, intermeddleth -> 1.2634047E-6, eglah -> 2.5268093E-6, camps -> 8.843833E-6, rowers -> 1.2634047E-6, husband -> 1.5918899E-4, hasrah -> 1.2634047E-6, transgressing -> 2.5268093E-6, pransings -> 2.5268093E-6, apples -> 3.7902141E-6, ending -> 1.2634047E-6, bramble -> 5.0536187E-6, driven -> 6.190683E-5, jakim -> 2.5268093E-6, forms -> 2.5268093E-6, shoulderpieces -> 5.0536187E-6, traditions -> 2.5268093E-6, rainy -> 1.2634047E-6, kedemah -> 2.5268093E-6, smitten -> 7.9594494E-5, sodering -> 1.2634047E-6, haunt -> 3.7902141E-6, almost -> 1.3897452E-5, protested -> 3.7902141E-6, traps -> 1.2634047E-6, working -> 2.5268095E-5, unity -> 3.7902141E-6, remembered -> 7.201407E-5, ed -> 1.2634047E-6, ahihud -> 2.5268093E-6, singleness -> 3.7902141E-6, swimmeth -> 1.2634047E-6, timber -> 3.2848522E-5, couldest -> 6.3170237E-6, envieth -> 1.2634047E-6, produce -> 1.2634047E-6, conducted -> 2.5268093E-6, instructer -> 1.2634047E-6, igeal -> 1.2634047E-6, perga -> 3.7902141E-6, horites -> 3.7902141E-6, carried -> 1.8319368E-4, tiberias -> 3.7902141E-6, conduct -> 3.7902141E-6, seas -> 3.1585118E-5, drop -> 1.895107E-5, silly -> 3.7902141E-6, fables -> 6.3170237E-6, fillest -> 1.2634047E-6, aeneas -> 2.5268093E-6, overtaketh -> 1.2634047E-6, sheet -> 2.5268093E-6, baalhamon -> 1.2634047E-6, owneth -> 2.5268093E-6, eltekon -> 1.2634047E-6, orion -> 3.7902141E-6, layeth -> 2.2741286E-5, dura -> 1.2634047E-6, philologus -> 1.2634047E-6, baskets -> 1.895107E-5, helkathhazzurim -> 1.2634047E-6, vow -> 5.1799594E-5, caves -> 7.5804282E-6, hadid -> 3.7902141E-6, listed -> 2.5268093E-6, menstealers -> 1.2634047E-6, worse -> 3.2848522E-5, oath -> 7.7067685E-5, shemidah -> 1.2634047E-6, condition -> 1.2634047E-6, charran -> 2.5268093E-6, bemoan -> 6.3170237E-6, testifiedst -> 2.5268093E-6, circumspect -> 1.2634047E-6, entered -> 1.3518431E-4, iconium -> 7.5804282E-6, foremost -> 3.7902141E-6, jadon -> 1.2634047E-6, junia -> 1.2634047E-6, serve -> 2.6405157E-4, earthy -> 5.0536187E-6, likewise -> 1.3518431E-4, sleepeth -> 8.843833E-6, spakest -> 1.2634047E-5, thronging -> 1.2634047E-6, iniquity -> 3.512265E-4, besom -> 1.2634047E-6, sacrificeth -> 7.5804282E-6, loft -> 2.5268093E-6, entappuah -> 1.2634047E-6, platted -> 3.7902141E-6, euodias -> 1.2634047E-6, ages -> 5.0536187E-6, stump -> 5.0536187E-6, repented -> 4.042895E-5, alvan -> 1.2634047E-6, screech -> 1.2634047E-6, leaned -> 7.5804282E-6, feareth -> 2.5268095E-5, afar -> 6.443364E-5, bezaleel -> 1.1370643E-5, dwelt -> 2.8552947E-4, jesher -> 1.2634047E-6, firm -> 8.843833E-6, parchments -> 1.2634047E-6, reasoning -> 6.3170237E-6, stoopeth -> 1.2634047E-6, thickets -> 5.0536187E-6, daniel -> 1.0486259E-4, licketh -> 1.2634047E-6, village -> 1.2634047E-5, lid -> 1.2634047E-6, leaven -> 2.9058308E-5, carcase -> 4.2955762E-5, traffickers -> 1.2634047E-6, finished -> 5.3063E-5, divine -> 1.3897452E-5, overflowed -> 2.5268093E-6, affectioned -> 1.2634047E-6, selfsame -> 1.895107E-5, wit -> 2.7794904E-5, seekest -> 1.1370643E-5, plains -> 3.1585118E-5, coveteth -> 2.5268093E-6, taller -> 1.2634047E-6, jannes -> 1.2634047E-6, bethuel -> 1.2634047E-5, hiel -> 1.2634047E-6, zibiah -> 2.5268093E-6, putrifying -> 1.2634047E-6, embroider -> 1.2634047E-6, leanness -> 6.3170237E-6, stability -> 1.2634047E-6, debase -> 1.2634047E-6, medicines -> 2.5268093E-6, azaniah -> 1.2634047E-6, reconciliation -> 1.0107237E-5, haggi -> 2.5268093E-6, begin -> 3.4111927E-5, miserable -> 3.7902141E-6, miletum -> 1.2634047E-6, jeroham -> 1.2634047E-5, married -> 3.790214E-5, greece -> 2.5268093E-6, tema -> 6.3170237E-6, bethaven -> 8.843833E-6, purer -> 2.5268093E-6, bears -> 2.5268093E-6, savoury -> 7.5804282E-6, digged -> 4.6745976E-5, played -> 2.2741286E-5, desire -> 1.4023793E-4, healed -> 9.9808974E-5, baalgad -> 3.7902141E-6, presses -> 3.7902141E-6, fashioning -> 1.2634047E-6, soil -> 1.2634047E-6, return -> 3.3227543E-4, infallible -> 1.2634047E-6, anim -> 1.2634047E-6, passages -> 6.3170237E-6, huram -> 1.51608565E-5, centurions -> 3.7902141E-6, ezri -> 1.2634047E-6, etam -> 6.3170237E-6, delivery -> 1.2634047E-6, profit -> 5.6853212E-5, sepharvaim -> 7.5804282E-6, owner -> 1.6424261E-5, shelumiel -> 6.3170237E-6, ephod -> 6.5697044E-5, spunge -> 3.7902141E-6, goddess -> 6.3170237E-6, eyewitnesses -> 2.5268093E-6, diamond -> 5.0536187E-6, clemency -> 1.2634047E-6, zebah -> 1.51608565E-5, millions -> 1.2634047E-6, husham -> 5.0536187E-6, sabtah -> 1.2634047E-6, ephraimites -> 6.3170237E-6, corrupting -> 1.2634047E-6, shobach -> 2.5268093E-6, joining -> 1.2634047E-6, evidences -> 2.5268093E-6, witchcrafts -> 5.0536187E-6, mishael -> 1.0107237E-5, spirit -> 6.380194E-4, divinations -> 1.2634047E-6, flourishing -> 2.5268093E-6, herds -> 4.1692358E-5, inhabitant -> 4.1692358E-5, laid -> 3.524899E-4, theft -> 2.5268093E-6, provoke -> 5.3063E-5, enchanter -> 1.2634047E-6, slept -> 6.190683E-5, repent -> 5.8116617E-5, jewels -> 3.1585118E-5, wept -> 8.970174E-5, containing -> 1.2634047E-6, sycamine -> 1.2634047E-6, tabor -> 1.2634047E-5, palsies -> 1.2634047E-6, sheddeth -> 2.5268093E-6, gained -> 1.2634047E-5, kabzeel -> 3.7902141E-6, inner -> 4.6745976E-5, hidden -> 2.1477881E-5, partaker -> 1.1370643E-5, nettles -> 6.3170237E-6, nagge -> 1.2634047E-6, threshing -> 1.2634047E-5, incurable -> 7.5804282E-6, lick -> 6.3170237E-6, crying -> 3.9165545E-5, cushi -> 1.2634047E-5, receiveth -> 4.6745976E-5, horam -> 1.2634047E-6, flower -> 2.5268095E-5, jeezer -> 1.2634047E-6, tortured -> 1.2634047E-6, dash -> 8.843833E-6, ministers -> 3.2848522E-5, disputed -> 6.3170237E-6, ananias -> 1.3897452E-5, limiteth -> 1.2634047E-6, neighed -> 1.2634047E-6, zaavan -> 1.2634047E-6, come -> 0.0024901708, befalleth -> 3.7902141E-6, bird -> 3.6638736E-5, appeared -> 8.843833E-5, careth -> 8.843833E-6, departure -> 2.5268093E-6, saint -> 6.3170237E-6, sureties -> 1.2634047E-6, ministering -> 1.1370643E-5, petitions -> 2.5268093E-6, cabbon -> 1.2634047E-6, myrtle -> 7.5804282E-6, fallow -> 3.7902141E-6, privy -> 5.0536187E-6, preeminence -> 3.7902141E-6, ajalon -> 3.7902141E-6, shobal -> 1.1370643E-5, sellers -> 1.2634047E-6, abimael -> 2.5268093E-6, unleavened -> 7.7067685E-5, work -> 5.3063E-4, riders -> 6.3170237E-6, amnon -> 3.537533E-5, mirma -> 1.2634047E-6, empire -> 1.2634047E-6, spit -> 1.3897452E-5, forsomuch -> 1.2634047E-6, bozrah -> 1.1370643E-5, shoes -> 2.65315E-5, bether -> 1.2634047E-6, cruelly -> 1.2634047E-6, zarhites -> 7.5804282E-6, all -> 0.0071003344, invaded -> 6.3170237E-6, shameful -> 2.5268093E-6, tongues -> 4.548257E-5, succoured -> 2.5268093E-6, cozbi -> 2.5268093E-6, reject -> 5.0536187E-6, plucked -> 2.9058308E-5, semachiah -> 1.2634047E-6, gareb -> 3.7902141E-6, ptolemais -> 1.2634047E-6, powerful -> 3.7902141E-6, tributaries -> 5.0536187E-6, zacchaeus -> 3.7902141E-6, prosperous -> 1.0107237E-5, broided -> 1.2634047E-6, would -> 5.6979555E-4, imaginations -> 7.5804282E-6, heresies -> 3.7902141E-6, heir -> 2.2741286E-5, abelbethmaachah -> 2.5268093E-6, oldness -> 1.2634047E-6, segub -> 3.7902141E-6, congratulate -> 1.2634047E-6, benzoheth -> 1.2634047E-6, mourner -> 1.2634047E-6, helbah -> 1.2634047E-6, blasphemy -> 1.7687666E-5, stoutness -> 1.2634047E-6, ass -> 1.13706425E-4, mightiest -> 1.2634047E-6, kadeshbarnea -> 1.2634047E-5, murmured -> 2.400469E-5, agagite -> 6.3170237E-6, gittahhepher -> 1.2634047E-6, zorobabel -> 3.7902141E-6, judah -> 0.0010309382, oblations -> 6.3170237E-6, earneth -> 2.5268093E-6, derision -> 1.895107E-5, repliest -> 1.2634047E-6, shalman -> 1.2634047E-6, pitied -> 7.5804282E-6, rewarder -> 1.2634047E-6, wringing -> 1.2634047E-6, shallun -> 1.2634047E-6, naamites -> 1.2634047E-6, zebulun -> 5.6853212E-5, known -> 2.8047586E-4, jekabzeel -> 1.2634047E-6, hananiah -> 3.6638736E-5, frost -> 7.5804282E-6, lading -> 2.5268093E-6, edges -> 5.0536187E-6, gaba -> 3.7902141E-6, gispa -> 1.2634047E-6, raca -> 1.2634047E-6, bakbuk -> 2.5268093E-6, accordingly -> 1.2634047E-6, sigh -> 8.843833E-6, presidents -> 6.3170237E-6, busybody -> 1.2634047E-6, asa -> 7.580428E-5, searcheth -> 1.0107237E-5, jezrahiah -> 1.2634047E-6, wrongeth -> 1.2634047E-6, whosoever -> 2.2993966E-4, endeavouring -> 1.2634047E-6, spued -> 1.2634047E-6, haters -> 2.5268093E-6, aher -> 1.2634047E-6, swelled -> 1.2634047E-6, brand -> 1.2634047E-6, hanes -> 1.2634047E-6, micha -> 5.0536187E-6, occasioned -> 1.2634047E-6, sixty -> 1.895107E-5, shittim -> 4.042895E-5, berea -> 3.7902141E-6, whilst -> 1.2634047E-5, porch -> 4.9272785E-5, warp -> 1.1370643E-5, ruhamah -> 1.2634047E-6, soon -> 8.212131E-5, family -> 1.5539878E-4, battered -> 1.2634047E-6, governments -> 1.2634047E-6, horsemen -> 7.4540876E-5, shaft -> 5.0536187E-6, jeziel -> 1.2634047E-6, enticeth -> 1.2634047E-6, male -> 5.8116617E-5, six -> 2.5520776E-4, mourning -> 6.443364E-5, azaliah -> 2.5268093E-6, wished -> 2.5268093E-6, hills -> 8.212131E-5, minish -> 1.2634047E-6, bat -> 2.5268093E-6, safeguard -> 1.2634047E-6, bedan -> 2.5268093E-6, terrifiest -> 1.2634047E-6, reba -> 2.5268093E-6, gabriel -> 5.0536187E-6, handwriting -> 1.2634047E-6, gaped -> 2.5268093E-6, gorgeous -> 1.2634047E-6, redeemer -> 2.2741286E-5, gently -> 2.5268093E-6, meshillemith -> 1.2634047E-6, ether -> 2.5268093E-6, josedech -> 7.5804282E-6, encamping -> 1.2634047E-6, hodaviah -> 3.7902141E-6, tame -> 2.5268093E-6, michri -> 1.2634047E-6, manna -> 2.400469E-5, troublest -> 1.2634047E-6, potsherds -> 1.2634047E-6, mingled -> 6.948726E-5, beacon -> 1.2634047E-6, sanctifieth -> 5.0536187E-6, bodies -> 4.1692358E-5, haroeh -> 1.2634047E-6, thumb -> 7.5804282E-6, peradventure -> 4.042895E-5, entertained -> 1.2634047E-6, kicked -> 1.2634047E-6, parshandatha -> 1.2634047E-6, jumping -> 1.2634047E-6, observe -> 6.948726E-5, fleeing -> 3.7902141E-6, conceived -> 5.8116617E-5, threshingfloor -> 2.1477881E-5, flame -> 4.1692358E-5, supplication -> 4.9272785E-5, blemish -> 7.833109E-5, sixscore -> 2.5268093E-6, shimronites -> 1.2634047E-6, disguise -> 3.7902141E-6, overspreading -> 1.2634047E-6, reputation -> 6.3170237E-6, eshtaulites -> 1.2634047E-6, and -> 0.065312974, commendation -> 2.5268093E-6, mallows -> 1.2634047E-6, passed -> 2.0340816E-4, justus -> 3.7902141E-6, pleaseth -> 7.5804282E-6, perfumed -> 2.5268093E-6, pans -> 5.0536187E-6, bamothbaal -> 1.2634047E-6, hathath -> 1.2634047E-6, crimson -> 6.3170237E-6, persecuted -> 2.5268095E-5, sadoc -> 2.5268093E-6, wiping -> 1.2634047E-6, hazo -> 1.2634047E-6, joyous -> 5.0536187E-6, jesus -> 0.0012419268, morsels -> 1.2634047E-6, camon -> 1.2634047E-6, paleness -> 1.2634047E-6, maacah -> 3.7902141E-6, that -> 0.016313082, declared -> 5.1799594E-5, none -> 4.522989E-4, short -> 1.6424261E-5, ascended -> 2.400469E-5, sort -> 2.65315E-5, believest -> 1.0107237E-5, soaked -> 1.2634047E-6, joshaphat -> 1.2634047E-6, bridechamber -> 3.7902141E-6, shilhi -> 2.5268093E-6, malcham -> 2.5268093E-6, province -> 3.4111927E-5, cooks -> 1.2634047E-6, raguel -> 1.2634047E-6, needs -> 2.0214475E-5, josiah -> 6.696045E-5, frame -> 6.3170237E-6, mearah -> 1.2634047E-6, distinctly -> 1.2634047E-6, bone -> 2.400469E-5, light -> 3.436461E-4, outwardly -> 2.5268093E-6, baser -> 1.2634047E-6, missing -> 2.5268093E-6, needest -> 1.2634047E-6, putteth -> 3.790214E-5, matthat -> 2.5268093E-6, thomas -> 1.51608565E-5, wellbeloved -> 3.7902141E-6, decrease -> 2.5268093E-6, kitron -> 1.2634047E-6, deceivers -> 3.7902141E-6, beeliada -> 1.2634047E-6, advertise -> 2.5268093E-6, ashima -> 1.2634047E-6, sakes -> 3.9165545E-5, told -> 3.5628013E-4, planted -> 4.9272785E-5, necks -> 2.2741286E-5, kidron -> 1.3897452E-5, departing -> 1.51608565E-5, weepeth -> 5.0536187E-6, fourfooted -> 3.7902141E-6, oh -> 4.800938E-5, spittle -> 3.7902141E-6, deliverance -> 2.0214475E-5, lebanah -> 1.2634047E-6, hollow -> 1.2634047E-5, adina -> 1.2634047E-6, tarry -> 6.443364E-5, execute -> 4.042895E-5, issachar -> 5.5589808E-5, purifying -> 1.51608565E-5, fortresses -> 2.5268093E-6, hosanna -> 7.5804282E-6, them -> 0.008123692, unequally -> 1.2634047E-6, layedst -> 1.2634047E-6, sitnah -> 1.2634047E-6, sharp -> 3.1585118E-5, neglecting -> 1.2634047E-6, patrobas -> 1.2634047E-6, spoilest -> 1.2634047E-6, isle -> 7.5804282E-6, powder -> 1.0107237E-5, erastus -> 3.7902141E-6, sojourning -> 3.7902141E-6, tyrannus -> 1.2634047E-6, dryshod -> 1.2634047E-6, omers -> 1.2634047E-6, casting -> 2.65315E-5, degenerate -> 1.2634047E-6, kin -> 1.0107237E-5, preserve -> 3.790214E-5, spoon -> 1.51608565E-5, ordaineth -> 1.2634047E-6, poured -> 1.06126E-4, sharpened -> 5.0536187E-6, machbenah -> 1.2634047E-6, answered -> 6.215951E-4, sela -> 1.2634047E-6, elect -> 2.5268095E-5, covereth -> 3.4111927E-5, enemies -> 3.3985588E-4, abda -> 2.5268093E-6, toiling -> 1.2634047E-6, persons -> 7.075066E-5, bake -> 1.1370643E-5, mahanehdan -> 1.2634047E-6, hadrach -> 1.2634047E-6, jokmeam -> 1.2634047E-6, who -> 0.0012229758, shimrom -> 1.2634047E-6, woes -> 1.2634047E-6, lawful -> 4.9272785E-5, wasting -> 2.5268093E-6, pushing -> 1.2634047E-6, empty -> 4.800938E-5, passion -> 1.2634047E-6, belonging -> 6.3170237E-6, idolatry -> 6.3170237E-6, caiaphas -> 1.1370643E-5, winneth -> 1.2634047E-6, piltai -> 1.2634047E-6, harrows -> 2.5268093E-6, jokim -> 1.2634047E-6, ha -> 2.5268093E-6, determinate -> 1.2634047E-6, appointment -> 5.0536187E-6, virtue -> 8.843833E-6, odious -> 2.5268093E-6, hardhearted -> 1.2634047E-6, imprisoned -> 1.2634047E-6, beelzebub -> 8.843833E-6, berries -> 2.5268093E-6, birthright -> 1.2634047E-5, thirsty -> 2.1477881E-5, handbreadth -> 3.7902141E-6, fellow -> 3.6638736E-5, admah -> 6.3170237E-6, blaspheming -> 1.2634047E-6, hammedatha -> 6.3170237E-6, marah -> 6.3170237E-6, tempteth -> 1.2634047E-6, thahash -> 1.2634047E-6, promoted -> 6.3170237E-6, mejarkon -> 1.2634047E-6, lodebar -> 3.7902141E-6, hashub -> 5.0536187E-6, yes -> 5.0536187E-6, rested -> 2.65315E-5, rabsaris -> 3.7902141E-6, sabachthani -> 2.5268093E-6, according -> 0.0010018799, hebrew -> 3.2848522E-5, courts -> 3.1585118E-5, leshem -> 2.5268093E-6, rough -> 8.843833E-6, anchor -> 1.2634047E-6, moriah -> 2.5268093E-6, foresaw -> 1.2634047E-6, abideth -> 3.790214E-5, perverseness -> 7.5804282E-6, whatsoever -> 1.9203752E-4, achar -> 1.2634047E-6, lehabim -> 2.5268093E-6, coal -> 5.0536187E-6, ashes -> 5.4326403E-5, lees -> 5.0536187E-6, west -> 8.717493E-5, creep -> 8.843833E-6, fixed -> 6.3170237E-6, upharsin -> 1.2634047E-6, leisure -> 1.2634047E-6, dine -> 3.7902141E-6, returned -> 2.3246647E-4, sore -> 1.2381366E-4, sabbaths -> 4.4219167E-5, cassia -> 3.7902141E-6, tithes -> 3.0321713E-5, lacked -> 1.3897452E-5, jeruel -> 1.2634047E-6, procured -> 2.5268093E-6, foreskin -> 1.1370643E-5, modest -> 1.2634047E-6, bereaved -> 7.5804282E-6, takest -> 1.1370643E-5, side -> 5.584249E-4, fuel -> 6.3170237E-6, recorder -> 1.1370643E-5, withdraw -> 1.3897452E-5, emulation -> 1.2634047E-6, customs -> 8.843833E-6, mandrakes -> 7.5804282E-6, ginnethon -> 2.5268093E-6, comparing -> 2.5268093E-6, ankles -> 1.2634047E-6, izrahiah -> 2.5268093E-6, gore -> 1.2634047E-6, pruned -> 1.2634047E-6, oppose -> 1.2634047E-6, rose -> 1.6550602E-4, raged -> 1.2634047E-6, kedesh -> 1.3897452E-5, consentedst -> 1.2634047E-6, adramyttium -> 1.2634047E-6, iri -> 1.2634047E-6, kore -> 5.0536187E-6, ships -> 4.9272785E-5, ashpenaz -> 1.2634047E-6, feeble -> 2.5268095E-5, occurrent -> 1.2634047E-6, habaiah -> 2.5268093E-6, watereth -> 6.3170237E-6, separateth -> 6.3170237E-6, bees -> 3.7902141E-6, travelleth -> 2.5268093E-6, illuminated -> 1.2634047E-6, jekameam -> 2.5268093E-6, talmai -> 7.5804282E-6, pilled -> 2.5268093E-6, forbidding -> 5.0536187E-6, glitter -> 1.2634047E-6, gatherings -> 1.2634047E-6, presume -> 2.5268093E-6, edged -> 2.5268093E-6, waterspouts -> 1.2634047E-6, beryl -> 1.0107237E-5, persia -> 3.6638736E-5, elishama -> 2.1477881E-5, patient -> 1.1370643E-5, attire -> 3.7902141E-6, meddleth -> 1.2634047E-6, description -> 1.2634047E-6, more -> 8.6669566E-4, commission -> 1.2634047E-6, torch -> 1.2634047E-6, jot -> 1.2634047E-6, collars -> 1.2634047E-6, church -> 9.7282165E-5, rebekah -> 3.790214E-5, bethbaalmeon -> 1.2634047E-6, painted -> 2.5268093E-6, abdeel -> 1.2634047E-6, graveth -> 1.2634047E-6, bricks -> 5.0536187E-6, esarhaddon -> 3.7902141E-6, newness -> 2.5268093E-6, detestable -> 7.5804282E-6, unblameably -> 1.2634047E-6, barrels -> 1.2634047E-6, stablish -> 1.51608565E-5, people -> 0.0027074763, songs -> 2.5268095E-5, reasons -> 2.5268093E-6, jebusi -> 2.5268093E-6, zaphon -> 1.2634047E-6, sware -> 9.854557E-5, built -> 2.1351539E-4, partiality -> 2.5268093E-6, refrain -> 1.1370643E-5, hanameel -> 5.0536187E-6, jozabad -> 1.1370643E-5, marched -> 1.2634047E-6, jamin -> 7.5804282E-6, board -> 2.1477881E-5, chinneroth -> 2.5268093E-6, senses -> 1.2634047E-6, fragments -> 8.843833E-6, yea -> 4.295576E-4, tribes -> 1.4276474E-4, bethany -> 1.3897452E-5, edify -> 3.7902141E-6, hegai -> 3.7902141E-6, millet -> 1.2634047E-6, overcharge -> 1.2634047E-6, hermes -> 1.2634047E-6, thebez -> 3.7902141E-6, approaching -> 2.5268093E-6, servant -> 6.2917557E-4, uphaz -> 2.5268093E-6, outlandish -> 1.2634047E-6, baldness -> 1.1370643E-5, course -> 4.4219167E-5, uzai -> 1.2634047E-6, enam -> 1.2634047E-6, gutter -> 1.2634047E-6, maaz -> 1.2634047E-6, faithful -> 1.0359919E-4, dayspring -> 2.5268093E-6, tempter -> 2.5268093E-6, asaph -> 4.2955762E-5, pots -> 1.895107E-5, tobadonijah -> 1.2634047E-6, commonwealth -> 1.2634047E-6, zelek -> 2.5268093E-6, shaven -> 8.843833E-6, delusion -> 1.2634047E-6, performeth -> 5.0536187E-6, praying -> 2.5268095E-5, temper -> 1.2634047E-6, harod -> 1.2634047E-6, rahel -> 1.2634047E-6, subvert -> 2.5268093E-6, baalberith -> 2.5268093E-6, chenaanah -> 6.3170237E-6, doer -> 1.0107237E-5, abdon -> 1.0107237E-5, shimshai -> 5.0536187E-6, zatthu -> 1.2634047E-6, wearing -> 3.7902141E-6, scarest -> 1.2634047E-6, habitable -> 1.2634047E-6, authorities -> 1.2634047E-6, eighth -> 4.9272785E-5, pine -> 1.0107237E-5, sower -> 1.0107237E-5, enquire -> 6.5697044E-5, masts -> 1.2634047E-6, selfwilled -> 2.5268093E-6, hakkatan -> 1.2634047E-6, munitions -> 1.2634047E-6, ahlai -> 2.5268093E-6, rush -> 5.0536187E-6, despiteful -> 3.7902141E-6, coveredst -> 2.5268093E-6, bored -> 1.2634047E-6, harvestman -> 2.5268093E-6, shewedst -> 2.5268093E-6, having -> 2.4383712E-4, tryphena -> 1.2634047E-6, lycaonia -> 2.5268093E-6, famish -> 2.5268093E-6, bitterly -> 1.1370643E-5, size -> 6.3170237E-6, reeds -> 1.3897452E-5, sealeth -> 3.7902141E-6, border -> 1.9961795E-4, comprehended -> 3.7902141E-6, kenezite -> 3.7902141E-6, procure -> 2.5268093E-6, apple -> 1.0107237E-5, withstood -> 7.5804282E-6, slide -> 3.7902141E-6, mars -> 1.2634047E-6, wide -> 1.895107E-5, impenitent -> 1.2634047E-6, appealed -> 5.0536187E-6, tarshish -> 3.0321713E-5, adalia -> 1.2634047E-6, marrying -> 2.5268093E-6, isaiah -> 4.042895E-5, navy -> 7.5804282E-6, bud -> 1.3897452E-5, vine -> 7.833109E-5, aharhel -> 1.2634047E-6, devils -> 6.948726E-5, likeminded -> 3.7902141E-6, hornet -> 2.5268093E-6, loaves -> 4.042895E-5, than -> 6.089611E-4, beon -> 1.2634047E-6, jotbath -> 1.2634047E-6, samgarnebo -> 1.2634047E-6, stronger -> 2.65315E-5, bridle -> 1.1370643E-5, comforteth -> 6.3170237E-6, weaned -> 1.51608565E-5, penury -> 2.5268093E-6, obeyed -> 5.1799594E-5, innocency -> 6.3170237E-6, ishpan -> 1.2634047E-6, redeemeth -> 2.5268093E-6, possession -> 1.3139409E-4, lip -> 3.7902141E-6, famished -> 2.5268093E-6, pity -> 3.790214E-5, belonged -> 1.51608565E-5, bered -> 2.5268093E-6, inheriteth -> 1.2634047E-6, abner -> 7.9594494E-5, jahleel -> 2.5268093E-6, beforetime -> 1.3897452E-5, spend -> 8.843833E-6, knee -> 7.5804282E-6, thanksgiving -> 3.537533E-5, unlade -> 1.2634047E-6, reproachest -> 1.2634047E-6, decreased -> 1.2634047E-6, zer -> 1.2634047E-6, united -> 1.2634047E-6, melons -> 1.2634047E-6, syriamaachah -> 1.2634047E-6, scrip -> 8.843833E-6, jeremias -> 1.2634047E-6, machir -> 2.7794904E-5, pulled -> 8.843833E-6, withholdeth -> 5.0536187E-6, repentance -> 3.2848522E-5, ishuai -> 1.2634047E-6, whet -> 5.0536187E-6, scall -> 1.7687666E-5, girt -> 5.0536187E-6, jeshohaiah -> 1.2634047E-6, signifying -> 5.0536187E-6, setteth -> 2.7794904E-5, holy -> 7.719403E-4, ajah -> 1.2634047E-6, air -> 4.9272785E-5, abihail -> 7.5804282E-6, girdle -> 4.800938E-5, audience -> 1.51608565E-5, dalmatia -> 1.2634047E-6, exercised -> 7.5804282E-6, givest -> 1.51608565E-5, entreated -> 1.1370643E-5, careful -> 8.843833E-6, unrighteously -> 1.2634047E-6, counteth -> 3.7902141E-6, moabitess -> 7.5804282E-6, neah -> 1.2634047E-6, sibboleth -> 1.2634047E-6, fighteth -> 3.7902141E-6, decay -> 1.2634047E-6, dannah -> 1.2634047E-6, megiddon -> 1.2634047E-6, zaccai -> 2.5268093E-6, abstain -> 7.5804282E-6, righteously -> 1.0107237E-5, garment -> 1.0865281E-4, shewed -> 1.7055964E-4, zipporah -> 3.7902141E-6, straight -> 3.537533E-5, fetters -> 1.3897452E-5, attain -> 7.5804282E-6, earthquake -> 2.0214475E-5, feebleness -> 1.2634047E-6, basmath -> 1.2634047E-6, petition -> 1.6424261E-5, deckest -> 1.2634047E-6, tall -> 6.3170237E-6, naham -> 1.2634047E-6, increase -> 1.11179615E-4, enlightened -> 7.5804282E-6, remnant -> 1.16233234E-4, mournfully -> 1.2634047E-6, deposed -> 1.2634047E-6, principalities -> 8.843833E-6, calleth -> 3.790214E-5, unmerciful -> 1.2634047E-6, shunem -> 3.7902141E-6, luke -> 2.5268093E-6, destroy -> 3.2974864E-4, throng -> 2.5268093E-6, pollux -> 1.2634047E-6, pitched -> 1.0359919E-4, beeri -> 2.5268093E-6, highest -> 2.2741286E-5, armies -> 5.4326403E-5, lawless -> 1.2634047E-6, contrite -> 6.3170237E-6, caldrons -> 3.7902141E-6, sorceress -> 1.2634047E-6, overlaid -> 4.4219167E-5, wait -> 1.339209E-4, adversities -> 2.5268093E-6, mara -> 1.2634047E-6, try -> 2.1477881E-5, kirjathbaal -> 2.5268093E-6, jecoliah -> 1.2634047E-6, fierce -> 5.1799594E-5, eliseus -> 1.2634047E-6, trial -> 7.5804282E-6, riding -> 1.2634047E-5, ashchenaz -> 2.5268093E-6, tirzah -> 2.2741286E-5, zippor -> 8.843833E-6, salim -> 1.2634047E-6, compellest -> 1.2634047E-6, should -> 9.89246E-4, deceiving -> 2.5268093E-6, appeaseth -> 1.2634047E-6, boasteth -> 5.0536187E-6, irons -> 1.2634047E-6, weather -> 5.0536187E-6, weapons -> 2.65315E-5, transgressions -> 6.0643426E-5, bishops -> 1.2634047E-6, potter -> 2.400469E-5, greedily -> 3.7902141E-6, dieth -> 3.790214E-5, cilicia -> 1.0107237E-5, overcome -> 2.7794904E-5, hand -> 0.0018521514, dromedaries -> 3.7902141E-6, questioning -> 2.5268093E-6, lizard -> 1.2634047E-6, teats -> 3.7902141E-6, thimnathah -> 1.2634047E-6, accompanying -> 1.2634047E-6, doctrine -> 6.443364E-5, stripes -> 2.1477881E-5, levites -> 3.3480226E-4, persis -> 1.2634047E-6, inasmuch -> 1.1370643E-5, repayed -> 1.2634047E-6, agreed -> 1.0107237E-5, no -> 0.0017611862, blessed -> 3.8154822E-4, worshippeth -> 7.5804282E-6, immutability -> 1.2634047E-6, acceptably -> 1.2634047E-6, pervert -> 1.2634047E-5, kohathites -> 1.895107E-5, vigilant -> 2.5268093E-6, slips -> 1.2634047E-6, jaminites -> 1.2634047E-6, imposed -> 1.2634047E-6, nine -> 6.3170235E-5, clods -> 7.5804282E-6, savours -> 1.2634047E-6, years -> 6.8097515E-4, walled -> 5.0536187E-6, dathan -> 1.2634047E-5, eshean -> 1.2634047E-6, maktesh -> 1.2634047E-6, almondiblathaim -> 2.5268093E-6, wars -> 1.895107E-5, awoke -> 1.0107237E-5, push -> 1.1370643E-5, least -> 4.9272785E-5, ezrahite -> 1.2634047E-6, exceeded -> 3.7902141E-6, forthwith -> 1.2634047E-5, bulrushes -> 2.5268093E-6, ordain -> 6.3170237E-6, feedeth -> 1.0107237E-5, naughty -> 3.7902141E-6, dowry -> 5.0536187E-6, beerelim -> 1.2634047E-6, subtilly -> 3.7902141E-6, benches -> 1.2634047E-6, pulpit -> 1.2634047E-6, jehoram -> 2.9058308E-5, bowing -> 5.0536187E-6, rocks -> 2.9058308E-5, carbuncle -> 3.7902141E-6, meaning -> 3.7902141E-6, removed -> 1.1496983E-4, amasiah -> 1.2634047E-6, cloths -> 5.0536187E-6, strong -> 3.221682E-4, adithaim -> 1.2634047E-6, restrain -> 2.5268093E-6, clave -> 1.7687666E-5, avenger -> 1.1370643E-5, jochebed -> 2.5268093E-6, cherith -> 2.5268093E-6, algum -> 3.7902141E-6, hodesh -> 1.2634047E-6, ishbibenob -> 1.2634047E-6, confidently -> 1.2634047E-6, oars -> 2.5268093E-6, barjona -> 1.2634047E-6, cleanse -> 4.1692358E-5, smitest -> 2.5268093E-6, emptied -> 1.0107237E-5, mustard -> 6.3170237E-6, mizar -> 1.2634047E-6, stamping -> 1.2634047E-6, dainty -> 3.7902141E-6, belongest -> 1.2634047E-6, brambles -> 1.2634047E-6, silas -> 1.6424261E-5, unprepared -> 1.2634047E-6, horrible -> 7.5804282E-6, vowest -> 2.5268093E-6, naturally -> 2.5268093E-6, clouted -> 1.2634047E-6, bartimaeus -> 1.2634047E-6, sharonite -> 1.2634047E-6, fasting -> 2.1477881E-5, nahbi -> 1.2634047E-6, ibri -> 1.2634047E-6, horims -> 2.5268093E-6, perizzite -> 6.3170237E-6, consumption -> 6.3170237E-6, small -> 1.2255026E-4, wondrous -> 1.895107E-5, mahli -> 1.3897452E-5, ehi -> 1.2634047E-6, recompense -> 3.2848522E-5, winterhouse -> 1.2634047E-6, stripped -> 1.51608565E-5, mysia -> 2.5268093E-6, roman -> 6.3170237E-6, earth -> 0.0012469805, whoever -> 1.2634047E-6, zebudah -> 1.2634047E-6, sealed -> 4.548257E-5, chewed -> 1.2634047E-6, shuhamites -> 2.5268093E-6, gathrimmon -> 5.0536187E-6, ridges -> 1.2634047E-6, notable -> 6.3170237E-6, furnace -> 3.790214E-5, communion -> 5.0536187E-6, shined -> 1.1370643E-5, whiter -> 2.5268093E-6, variableness -> 1.2634047E-6, bringing -> 3.0321713E-5, rowing -> 1.2634047E-6, hungered -> 2.5268093E-6, idolaters -> 6.3170237E-6, hereafter -> 1.7687666E-5, jimnites -> 1.2634047E-6, bundles -> 2.5268093E-6, duke -> 5.4326403E-5, lots -> 3.0321713E-5, whereof -> 9.096514E-5, peoples -> 2.5268093E-6, stripe -> 2.5268093E-6, spy -> 1.51608565E-5, passovers -> 1.2634047E-6, iron -> 1.2760388E-4, manifestly -> 1.2634047E-6, purgeth -> 1.2634047E-6, almodad -> 2.5268093E-6, apelles -> 1.2634047E-6, dibon -> 1.1370643E-5, busied -> 1.2634047E-6, distresses -> 1.0107237E-5, lines -> 2.5268093E-6, fainted -> 1.51608565E-5, spoiler -> 1.1370643E-5, boldly -> 1.6424261E-5, enlarged -> 1.3897452E-5, erected -> 1.2634047E-6, astrologer -> 1.2634047E-6, violated -> 1.2634047E-6, stretching -> 2.5268093E-6, philippians -> 1.2634047E-6, delay -> 3.7902141E-6, sarepta -> 1.2634047E-6, foretell -> 1.2634047E-6, corn -> 1.2886728E-4, confusion -> 3.2848522E-5, kinds -> 1.2634047E-5, shamgar -> 2.5268093E-6, crashing -> 1.2634047E-6, gallio -> 3.7902141E-6, vilest -> 1.2634047E-6, mixture -> 3.7902141E-6, elishah -> 3.7902141E-6, bethrehob -> 2.5268093E-6, matthan -> 2.5268093E-6, breakest -> 1.2634047E-6, rizpah -> 5.0536187E-6, flying -> 1.3897452E-5, destroyeth -> 1.0107237E-5, parthians -> 1.2634047E-6, knew -> 2.1351539E-4, barhumite -> 1.2634047E-6, aridatha -> 1.2634047E-6, dissembleth -> 1.2634047E-6, covenantbreakers -> 1.2634047E-6, concerning -> 3.0448055E-4, fluttereth -> 1.2634047E-6, barbarous -> 1.2634047E-6, kison -> 1.2634047E-6, hariph -> 2.5268093E-6, possessest -> 1.2634047E-6, murderer -> 2.5268095E-5, fires -> 1.2634047E-6, dwellers -> 3.7902141E-6, sprinkleth -> 2.5268093E-6, addon -> 1.2634047E-6, areopagus -> 1.2634047E-6, thereto -> 2.5268095E-5, scattereth -> 1.2634047E-5, imlah -> 2.5268093E-6, reacheth -> 1.7687666E-5, unoccupied -> 1.2634047E-6, jeconiah -> 8.843833E-6, diana -> 6.3170237E-6, crumbs -> 3.7902141E-6, silla -> 1.2634047E-6, proveth -> 1.2634047E-6, purim -> 6.3170237E-6, holiest -> 3.7902141E-6, ceremonies -> 1.2634047E-6, stories -> 6.3170237E-6, pacified -> 2.5268093E-6, forcing -> 2.5268093E-6, restorer -> 2.5268093E-6, incline -> 2.0214475E-5, shemida -> 2.5268093E-6, obtaineth -> 2.5268093E-6, idolater -> 2.5268093E-6, naashon -> 1.2634047E-6, hating -> 3.7902141E-6, memory -> 7.5804282E-6, owners -> 6.3170237E-6, refined -> 6.3170237E-6, porter -> 7.5804282E-6, fine -> 1.4276474E-4, humbleness -> 1.2634047E-6, erites -> 1.2634047E-6, exaltest -> 1.2634047E-6, gabbatha -> 1.2634047E-6, idle -> 1.3897452E-5, preach -> 6.3170235E-5, freewoman -> 3.7902141E-6, mouth -> 5.344202E-4, mariners -> 6.3170237E-6, wealth -> 3.4111927E-5, barbarians -> 2.5268093E-6, sorrowed -> 2.5268093E-6, exhorting -> 5.0536187E-6, astonied -> 1.2634047E-5, tinkling -> 3.7902141E-6, helam -> 2.5268093E-6, plainly -> 1.3897452E-5, constraineth -> 2.5268093E-6, adorning -> 2.5268093E-6, cloudy -> 7.5804282E-6, attendance -> 5.0536187E-6, shipwreck -> 2.5268093E-6, expected -> 1.2634047E-6, vestry -> 1.2634047E-6, hashabniah -> 2.5268093E-6, number -> 2.2488604E-4, alway -> 2.9058308E-5, drunkard -> 6.3170237E-6, zachariah -> 5.0536187E-6, mosera -> 1.2634047E-6, terrible -> 6.5697044E-5, arabia -> 1.0107237E-5, nativity -> 8.843833E-6, seen -> 3.499631E-4, line -> 3.9165545E-5, mishraites -> 1.2634047E-6, lice -> 7.5804282E-6, recovering -> 1.2634047E-6, kattath -> 1.2634047E-6, experiment -> 1.2634047E-6, land -> 0.0021705292, helmets -> 2.5268093E-6, break -> 1.7687667E-4, adlai -> 1.2634047E-6, tittle -> 2.5268093E-6, aaronites -> 2.5268093E-6, joelah -> 1.2634047E-6, folding -> 5.0536187E-6, wanderings -> 1.2634047E-6, rending -> 1.2634047E-6, armageddon -> 1.2634047E-6, amashai -> 1.2634047E-6, cheeses -> 1.2634047E-6, hit -> 2.5268093E-6, upward -> 7.7067685E-5, unskilful -> 1.2634047E-6, lucas -> 1.2634047E-6, prolonged -> 1.1370643E-5, embracing -> 2.5268093E-6, greeting -> 3.7902141E-6, stumblingstone -> 2.5268093E-6, point -> 1.1370643E-5, chests -> 1.2634047E-6, spring -> 2.9058308E-5, ibneiah -> 1.2634047E-6, instant -> 1.0107237E-5, shuthalhites -> 1.2634047E-6, sheshan -> 6.3170237E-6, jozadak -> 6.3170237E-6, flattering -> 1.0107237E-5, silvanus -> 5.0536187E-6, consented -> 5.0536187E-6, mountain -> 1.7182305E-4, crafty -> 5.0536187E-6, finest -> 2.5268093E-6, spies -> 1.7687666E-5, herb -> 2.400469E-5, shihon -> 1.2634047E-6, alvah -> 1.2634047E-6, pacifieth -> 2.5268093E-6, requirest -> 1.2634047E-6, impossible -> 1.1370643E-5, kirjathjearim -> 2.2741286E-5, regem -> 1.2634047E-6, pearl -> 2.5268093E-6, reins -> 1.895107E-5, core -> 1.2634047E-6, phallu -> 1.2634047E-6, almug -> 3.7902141E-6, sion -> 1.1370643E-5, food -> 6.948726E-5, stricken -> 2.2741286E-5, benejaakan -> 2.5268093E-6, bimhal -> 1.2634047E-6, contentions -> 7.5804282E-6, steal -> 2.7794904E-5, pigeons -> 1.2634047E-5, crucified -> 4.6745976E-5, knocketh -> 5.0536187E-6, guiding -> 1.2634047E-6, fears -> 5.0536187E-6, calveth -> 1.2634047E-6, privately -> 1.0107237E-5, japho -> 1.2634047E-6, prophets -> 3.0195373E-4, achshaph -> 3.7902141E-6, shamhuth -> 1.2634047E-6, liked -> 1.2634047E-6, continueth -> 6.3170237E-6, galbanum -> 1.2634047E-6, handed -> 1.2634047E-6, lanes -> 1.2634047E-6, firstfruit -> 2.5268093E-6, beard -> 2.0214475E-5, lamented -> 1.3897452E-5, shibboleth -> 1.2634047E-6, hermon -> 1.6424261E-5, rained -> 1.1370643E-5, zeror -> 1.2634047E-6, hunt -> 1.51608565E-5, nereus -> 1.2634047E-6, houses -> 1.7182305E-4, horse -> 5.4326403E-5, hideth -> 2.0214475E-5, crieth -> 2.1477881E-5, pressed -> 1.895107E-5, suppose -> 1.2634047E-5, zalaph -> 1.2634047E-6, sudden -> 3.7902141E-6, its -> 1.2634047E-6, johanan -> 3.4111927E-5, jacinth -> 2.5268093E-6, aceldama -> 1.2634047E-6, shutteth -> 1.0107237E-5, necromancer -> 1.2634047E-6, threshingplace -> 1.2634047E-6, oftentimes -> 7.5804282E-6, brigandine -> 1.2634047E-6, potiphar -> 2.5268093E-6, japheth -> 1.3897452E-5, threwest -> 1.2634047E-6, salmon -> 7.5804282E-6, angle -> 2.5268093E-6, iscah -> 1.2634047E-6, welfare -> 8.843833E-6, rejoice -> 2.4510053E-4, bucket -> 1.2634047E-6, her -> 0.0025204925, fornicator -> 2.5268093E-6, comforts -> 2.5268093E-6, infant -> 2.5268093E-6, blesseth -> 1.0107237E-5, comparable -> 1.2634047E-6, sara -> 2.5268093E-6, enquired -> 4.2955762E-5, jeshanah -> 1.2634047E-6, zaanaim -> 1.2634047E-6, safe -> 1.6424261E-5, considerest -> 2.5268093E-6, briefly -> 2.5268093E-6, disgrace -> 1.2634047E-6, increased -> 6.190683E-5, visitest -> 3.7902141E-6, calves -> 2.2741286E-5, parbar -> 2.5268093E-6, magog -> 6.3170237E-6, arguing -> 1.2634047E-6, obstinate -> 2.5268093E-6, herod -> 5.5589808E-5, sisamai -> 2.5268093E-6, ava -> 1.2634047E-6, sebat -> 1.2634047E-6, enticed -> 3.7902141E-6, zidon -> 2.65315E-5, changeth -> 2.5268093E-6, nahshon -> 1.1370643E-5, grow -> 4.800938E-5, handfuls -> 6.3170237E-6, descent -> 3.7902141E-6, hyssop -> 1.51608565E-5, smallest -> 2.5268093E-6, hamor -> 1.6424261E-5, doeth -> 1.2128685E-4, hailstones -> 6.3170237E-6, forewarn -> 1.2634047E-6, workman -> 1.2634047E-5, honourable -> 3.790214E-5, brands -> 1.2634047E-6, setter -> 1.2634047E-6, haling -> 1.2634047E-6, battlement -> 1.2634047E-6, doctrines -> 6.3170237E-6, attending -> 1.2634047E-6, meant -> 3.7902141E-6, counsellors -> 2.65315E-5, present -> 1.339209E-4, amalekite -> 3.7902141E-6, birth -> 1.895107E-5, roareth -> 3.7902141E-6, hallohesh -> 1.2634047E-6, malchiah -> 1.1370643E-5, asking -> 8.843833E-6, infidel -> 2.5268093E-6, plentifully -> 3.7902141E-6, thanked -> 3.7902141E-6, blasphemest -> 1.2634047E-6, killed -> 8.464812E-5, heed -> 1.0107238E-4, satyrs -> 1.2634047E-6, shoco -> 1.2634047E-6, huntest -> 2.5268093E-6, zair -> 1.2634047E-6, escaped -> 7.327747E-5, might -> 6.0011726E-4, ithnan -> 1.2634047E-6, affinity -> 3.7902141E-6, fever -> 1.1370643E-5, singed -> 1.2634047E-6, passover -> 9.601876E-5, merab -> 3.7902141E-6, wings -> 9.601876E-5, gatam -> 3.7902141E-6, bosses -> 1.2634047E-6, asriel -> 2.5268093E-6, soweth -> 1.895107E-5, knife -> 7.5804282E-6, zelzah -> 1.2634047E-6, upbraideth -> 1.2634047E-6, cook -> 2.5268093E-6, sheepshearers -> 3.7902141E-6, shihorlibnath -> 1.2634047E-6, thronged -> 2.5268093E-6, cain -> 2.5268095E-5, searchings -> 1.2634047E-6, journeys -> 1.1370643E-5, falleth -> 3.537533E-5, succothbenoth -> 1.2634047E-6, succour -> 3.7902141E-6, rezeph -> 2.5268093E-6, leaneth -> 2.5268093E-6, remit -> 1.2634047E-6, mezahab -> 2.5268093E-6, offended -> 3.1585118E-5, humbled -> 3.537533E-5, ah -> 2.2741286E-5, enlargeth -> 3.7902141E-6, eye -> 1.4655494E-4, examine -> 6.3170237E-6, jeroboam -> 1.3139409E-4, provision -> 1.3897452E-5, sharpeneth -> 3.7902141E-6, suborned -> 1.2634047E-6, jealousy -> 4.2955762E-5, laden -> 7.5804282E-6, stedfast -> 1.3897452E-5, howbeit -> 8.08579E-5, courteous -> 1.2634047E-6, rust -> 3.7902141E-6, kenites -> 1.0107237E-5, cherisheth -> 2.5268093E-6, aholibamah -> 1.0107237E-5, collection -> 3.7902141E-6, expressed -> 7.5804282E-6, distressed -> 1.3897452E-5, captivity -> 1.604524E-4, grapegatherer -> 1.2634047E-6, accused -> 1.7687666E-5, hanged -> 3.790214E-5, ophir -> 1.6424261E-5, hobah -> 1.2634047E-6, fro -> 3.1585118E-5, harlots -> 1.0107237E-5, a -> 0.0103308605, vagabond -> 3.7902141E-6, for -> 0.011334004, ziph -> 1.2634047E-5, joiada -> 5.0536187E-6, watered -> 1.3897452E-5, hanani -> 1.3897452E-5, cleanseth -> 3.7902141E-6, excepted -> 1.2634047E-6, causing -> 5.0536187E-6, barnfloor -> 1.2634047E-6, sound -> 1.1244302E-4, oppressor -> 1.7687666E-5, valuest -> 1.2634047E-6, unwise -> 5.0536187E-6, shilhim -> 1.2634047E-6, sheva -> 2.5268093E-6, feign -> 3.7902141E-6, sharply -> 2.5268093E-6, assent -> 1.2634047E-6, visit -> 4.800938E-5, looseth -> 2.5268093E-6, gavest -> 4.2955762E-5, brokenhearted -> 2.5268093E-6, raham -> 1.2634047E-6, nadab -> 2.5268095E-5, wrought -> 1.2634047E-4, outward -> 1.7687666E-5, spiritually -> 3.7902141E-6, commandment -> 2.2362264E-4, worshippers -> 8.843833E-6, joanna -> 3.7902141E-6, rang -> 2.5268093E-6, japhlet -> 3.7902141E-6, lysanias -> 1.2634047E-6, hepherites -> 1.2634047E-6, pacify -> 1.2634047E-6, receiving -> 8.843833E-6, craftsmen -> 8.843833E-6, shameth -> 1.2634047E-6, balance -> 1.0107237E-5, sheaf -> 1.1370643E-5, chaldean -> 2.5268093E-6, dibongad -> 2.5268093E-6, damsel -> 6.0643426E-5, testimonies -> 4.548257E-5, harhas -> 1.2634047E-6, publick -> 1.2634047E-6, experience -> 5.0536187E-6, perfectly -> 8.843833E-6, whereto -> 3.7902141E-6, familiar -> 2.2741286E-5, masrekah -> 2.5268093E-6, samlah -> 5.0536187E-6, calved -> 1.2634047E-6, physician -> 7.5804282E-6, ruleth -> 1.7687666E-5, shamefacedness -> 1.2634047E-6, asp -> 1.2634047E-6, changers -> 2.5268093E-6, divorce -> 1.2634047E-6, bilshan -> 2.5268093E-6, parched -> 1.1370643E-5, hammelech -> 2.5268093E-6, dissembled -> 3.7902141E-6, egg -> 2.5268093E-6, glory -> 5.078887E-4, cups -> 7.5804282E-6, bringest -> 6.3170237E-6, elishaphat -> 1.2634047E-6, thereout -> 2.5268093E-6, saved -> 1.3139409E-4, sharper -> 2.5268093E-6, lineage -> 1.2634047E-6, bethnimrah -> 2.5268093E-6, wickedness -> 1.604524E-4, hasted -> 2.9058308E-5, cheeks -> 6.3170237E-6, pharaohnechoh -> 5.0536187E-6, galley -> 1.2634047E-6, urged -> 7.5804282E-6, gravel -> 3.7902141E-6, smelled -> 2.5268093E-6, bechorath -> 1.2634047E-6, refresh -> 3.7902141E-6, ishmaiah -> 1.2634047E-6, sackbut -> 5.0536187E-6, spilt -> 1.2634047E-6, selves -> 8.843833E-6, promote -> 6.3170237E-6, hindereth -> 1.2634047E-6, themselves -> 5.167325E-4, conversation -> 2.5268095E-5, jasper -> 8.843833E-6, absalom -> 1.364477E-4, brothers -> 1.2634047E-6, sabbath -> 1.7182305E-4, mortar -> 2.5268093E-6, performed -> 2.65315E-5, misheal -> 1.2634047E-6, excusing -> 1.2634047E-6, dreameth -> 2.5268093E-6, deed -> 2.400469E-5, chebar -> 1.0107237E-5, sow -> 4.6745976E-5, virgins -> 2.7794904E-5, panted -> 2.5268093E-6, string -> 2.5268093E-6, clouds -> 6.190683E-5, judgments -> 1.604524E-4, maiden -> 1.0107237E-5, elishua -> 2.5268093E-6, suffereth -> 6.3170237E-6, raphu -> 1.2634047E-6, cures -> 1.2634047E-6, jorah -> 1.2634047E-6, ravenous -> 3.7902141E-6, harhur -> 2.5268093E-6, incense -> 1.6297921E-4, amana -> 1.2634047E-6, roasteth -> 2.5268093E-6, suah -> 1.2634047E-6, harim -> 1.3897452E-5, cruelty -> 6.3170237E-6, bridles -> 1.2634047E-6, nahallal -> 1.2634047E-6, greatness -> 4.042895E-5, organs -> 1.2634047E-6, gain -> 3.790214E-5, exalt -> 3.2848522E-5, emmanuel -> 1.2634047E-6, jekuthiel -> 1.2634047E-6, blacker -> 1.2634047E-6, stablished -> 5.0536187E-6, sea -> 5.053619E-4, vaniah -> 1.2634047E-6, mire -> 1.895107E-5, nebuchadrezzar -> 3.9165545E-5, azor -> 2.5268093E-6, questions -> 1.7687666E-5, prize -> 2.5268093E-6, shashak -> 2.5268093E-6, engravings -> 6.3170237E-6, delightest -> 1.2634047E-6, allowance -> 2.5268093E-6, shilshah -> 1.2634047E-6, pernicious -> 1.2634047E-6, leaveth -> 7.5804282E-6, envying -> 6.3170237E-6, sneezed -> 1.2634047E-6, love -> 3.9291888E-4, bit -> 3.7902141E-6, retire -> 2.5268093E-6, copy -> 1.1370643E-5, homers -> 1.2634047E-6, sodomites -> 5.0536187E-6, folden -> 1.2634047E-6, chasing -> 1.2634047E-6, dancing -> 8.843833E-6, endamage -> 1.2634047E-6, travellers -> 1.2634047E-6, chrysoprasus -> 1.2634047E-6, vein -> 1.2634047E-6, stouthearted -> 2.5268093E-6, associate -> 1.2634047E-6, money -> 1.7687667E-4, stank -> 5.0536187E-6, stephanas -> 3.7902141E-6, butter -> 1.3897452E-5, destroyers -> 5.0536187E-6, worship -> 1.364477E-4, just -> 1.1876004E-4, signet -> 1.3897452E-5, feed -> 1.0233578E-4, fulfilling -> 3.7902141E-6, sargon -> 1.2634047E-6, contending -> 1.2634047E-6, kadmonites -> 1.2634047E-6, entire -> 1.2634047E-6, belial -> 2.1477881E-5, pureness -> 3.7902141E-6, ziddim -> 1.2634047E-6, serpents -> 1.6424261E-5, sole -> 1.51608565E-5, lucius -> 2.5268093E-6, cloven -> 2.5268093E-6, faces -> 9.222855E-5, retain -> 8.843833E-6, jesimiel -> 1.2634047E-6, jerijah -> 1.2634047E-6, shuni -> 2.5268093E-6, abodest -> 1.2634047E-6, pray -> 3.9544568E-4, strangling -> 1.2634047E-6, creature -> 3.6638736E-5, beseeching -> 3.7902141E-6, considered -> 2.0214475E-5, ascent -> 5.0536187E-6, ants -> 1.2634047E-6, shapen -> 1.2634047E-6, harpers -> 2.5268093E-6, conscience -> 3.9165545E-5, timnath -> 1.0107237E-5, opposest -> 1.2634047E-6, sown -> 4.042895E-5, body -> 2.2109583E-4, salome -> 2.5268093E-6, record -> 3.790214E-5, giddalti -> 2.5268093E-6, husbandmen -> 2.65315E-5, shen -> 1.2634047E-6, solemnly -> 2.5268093E-6, manservant -> 1.6424261E-5, preparations -> 1.2634047E-6, stargazers -> 1.2634047E-6, dodai -> 1.2634047E-6, assurance -> 8.843833E-6, bethpeor -> 5.0536187E-6, guni -> 5.0536187E-6, prescribed -> 1.2634047E-6, watchtower -> 2.5268093E-6, zelophehad -> 1.3897452E-5, elon -> 8.843833E-6, effectually -> 2.5268093E-6, ramah -> 4.548257E-5, accho -> 1.2634047E-6, servedst -> 1.2634047E-6, fig -> 5.1799594E-5, hodaiah -> 1.2634047E-6, doers -> 8.843833E-6, pelaiah -> 3.7902141E-6, worlds -> 2.5268093E-6, device -> 1.2634047E-5, shew -> 2.8805627E-4, beareth -> 3.1585118E-5, dust -> 1.364477E-4, quieted -> 2.5268093E-6, micah -> 3.9165545E-5, covering -> 6.0643426E-5, hermogenes -> 1.2634047E-6, spake -> 7.4161857E-4, wives -> 1.6803283E-4, hearted -> 1.0107237E-5, fervently -> 2.5268093E-6, four -> 4.1439675E-4, nephusim -> 1.2634047E-6, severity -> 2.5268093E-6, comparison -> 5.0536187E-6, psalmist -> 1.2634047E-6, exacted -> 2.5268093E-6, genubath -> 2.5268093E-6, fleeth -> 1.1370643E-5, seething -> 3.7902141E-6, brickkiln -> 2.5268093E-6, sleeping -> 7.5804282E-6, rakkon -> 1.2634047E-6, shearers -> 3.7902141E-6, whorish -> 3.7902141E-6, choosing -> 1.2634047E-6, felled -> 1.2634047E-6, letteth -> 3.7902141E-6, confectionaries -> 1.2634047E-6, kingly -> 1.2634047E-6, lydians -> 1.2634047E-6, crimes -> 2.5268093E-6, cometh -> 3.5628013E-4, putting -> 2.1477881E-5, understandest -> 5.0536187E-6, grieve -> 6.3170237E-6, virtuously -> 1.2634047E-6, lotan -> 8.843833E-6, jezreelitess -> 6.3170237E-6, slaughter -> 7.075066E-5, shook -> 1.51608565E-5, nourisheth -> 1.2634047E-6, unwashen -> 3.7902141E-6, hinnom -> 1.6424261E-5, boasters -> 2.5268093E-6, hierapolis -> 1.2634047E-6, gate -> 3.474363E-4, hanan -> 1.51608565E-5, holyday -> 2.5268093E-6, bearer -> 1.2634047E-6, runnest -> 1.2634047E-6, preached -> 7.7067685E-5, earring -> 6.3170237E-6, sacrificed -> 4.1692358E-5, infolding -> 1.2634047E-6, mischief -> 5.938002E-5, thirtyfold -> 2.5268093E-6, helkath -> 2.5268093E-6, yearned -> 1.2634047E-6, oftener -> 1.2634047E-6, blasting -> 6.3170237E-6, house -> 0.0025571312, jeremy -> 2.5268093E-6, coulter -> 1.2634047E-6, groaned -> 1.2634047E-6, naarath -> 1.2634047E-6, stilleth -> 1.2634047E-6, agone -> 1.2634047E-6, instantly -> 2.5268093E-6, nineveh -> 2.2741286E-5, flour -> 7.327747E-5, owl -> 1.2634047E-5, restrained -> 1.0107237E-5, bereaveth -> 1.2634047E-6, ark -> 2.905831E-4, want -> 3.9165545E-5, contradiction -> 2.5268093E-6, devices -> 2.0214475E-5, mizpah -> 2.9058308E-5, threatenings -> 2.5268093E-6, whips -> 5.0536187E-6, maleleel -> 1.2634047E-6, comforters -> 6.3170237E-6, rusheth -> 1.2634047E-6, judgeth -> 2.1477881E-5, assemble -> 2.5268095E-5, solemn -> 3.6638736E-5, bethharan -> 1.2634047E-6, scarcely -> 2.5268093E-6, caught -> 4.6745976E-5, stubbornness -> 2.5268093E-6, shiphmite -> 1.2634047E-6, iru -> 1.2634047E-6, servile -> 1.51608565E-5, emmor -> 1.2634047E-6, posterity -> 1.1370643E-5, zebulunites -> 1.2634047E-6, speeches -> 8.843833E-6, ammishaddai -> 6.3170237E-6, figures -> 3.7902141E-6, sailors -> 1.2634047E-6, value -> 8.843833E-6, art -> 6.241219E-4, stole -> 7.5804282E-6, navel -> 5.0536187E-6, ebiasaph -> 3.7902141E-6, heat -> 4.042895E-5, parcel -> 7.5804282E-6, illyricum -> 1.2634047E-6, dove -> 2.400469E-5, ammiel -> 7.5804282E-6, jezebel -> 2.9058308E-5, epaphroditus -> 2.5268093E-6, congealed -> 1.2634047E-6, kisses -> 2.5268093E-6, isshiah -> 3.7902141E-6, garlands -> 1.2634047E-6, merodach -> 1.2634047E-6, behind -> 9.349195E-5, stretch -> 6.3170235E-5, pits -> 7.5804282E-6, on -> 0.002540707, nibhaz -> 1.2634047E-6, wells -> 1.3897452E-5, catch -> 1.895107E-5, bethul -> 1.2634047E-6, sprinkle -> 3.9165545E-5, abinadab -> 1.6424261E-5, void -> 3.0321713E-5, trumpeters -> 5.0536187E-6, achsa -> 1.2634047E-6, travail -> 3.9165545E-5, pair -> 5.0536187E-6, masteries -> 1.2634047E-6, skipping -> 1.2634047E-6, hearkening -> 1.2634047E-6, oversee -> 2.5268093E-6, puhites -> 1.2634047E-6, ishi -> 7.5804282E-6, warm -> 1.0107237E-5, overthrow -> 2.400469E-5, disposition -> 1.2634047E-6, candles -> 1.2634047E-6, uzal -> 2.5268093E-6, thieves -> 2.0214475E-5, odours -> 8.843833E-6, scorning -> 3.7902141E-6, asiel -> 1.2634047E-6, woundedst -> 1.2634047E-6, magicians -> 1.895107E-5, gnash -> 2.5268093E-6, waterpot -> 1.2634047E-6, bethink -> 2.5268093E-6, relieve -> 8.843833E-6, story -> 2.5268093E-6, heinous -> 1.2634047E-6, hedges -> 7.5804282E-6, draught -> 6.3170237E-6, overpast -> 2.5268093E-6, aphrah -> 1.2634047E-6, zererath -> 1.2634047E-6, jidlaph -> 1.2634047E-6, bracelets -> 1.2634047E-5, therin -> 1.2634047E-6, tiras -> 2.5268093E-6, amazed -> 2.65315E-5, discontented -> 1.2634047E-6, presumed -> 1.2634047E-6, devil -> 7.7067685E-5, duty -> 1.0107237E-5, phalti -> 1.2634047E-6, chief -> 3.5754353E-4, fray -> 3.7902141E-6, pinon -> 2.5268093E-6, naughtiness -> 3.7902141E-6, thing -> 6.8476534E-4, jibsam -> 1.2634047E-6, carved -> 1.6424261E-5, eleloheisrael -> 1.2634047E-6, prudently -> 1.2634047E-6, omer -> 6.3170237E-6, izrahite -> 1.2634047E-6, abiezrite -> 1.2634047E-6, shaketh -> 8.843833E-6, beateth -> 1.2634047E-6, frequent -> 1.2634047E-6, bedeiah -> 1.2634047E-6, bows -> 1.7687666E-5, jurisdiction -> 1.2634047E-6, chios -> 1.2634047E-6, spareth -> 5.0536187E-6, half -> 1.7182305E-4, bray -> 2.5268093E-6, piram -> 1.2634047E-6, hireling -> 1.1370643E-5, shaveh -> 2.5268093E-6, rattleth -> 1.2634047E-6, pour -> 7.9594494E-5, sank -> 2.5268093E-6, hepher -> 1.1370643E-5, buds -> 1.2634047E-6, mischievous -> 6.3170237E-6, sheleph -> 2.5268093E-6, clift -> 1.2634047E-6, cornet -> 8.843833E-6, son -> 0.003022064, slack -> 1.0107237E-5, lieutenants -> 5.0536187E-6, searched -> 2.5268095E-5, belong -> 1.51608565E-5, samaria -> 1.5666218E-4, utter -> 5.6853212E-5, signifieth -> 1.2634047E-6, zephon -> 1.2634047E-6, traitor -> 1.2634047E-6, cieled -> 5.0536187E-6, exactors -> 1.2634047E-6, cummin -> 5.0536187E-6, herewith -> 1.2634047E-6, river -> 2.2614945E-4, reformed -> 1.2634047E-6, erech -> 1.2634047E-6, blossom -> 7.5804282E-6, justly -> 3.7902141E-6, minded -> 1.895107E-5, assure -> 1.2634047E-6, dissemblers -> 1.2634047E-6, incorruption -> 5.0536187E-6, shewbread -> 2.2741286E-5, vexations -> 1.2634047E-6, hour -> 1.1876004E-4, bountiful -> 2.5268093E-6, abishai -> 3.1585118E-5, readiness -> 3.7902141E-6, diadem -> 5.0536187E-6, perceive -> 3.1585118E-5, spite -> 1.2634047E-6, shuah -> 6.3170237E-6, shady -> 2.5268093E-6, izeharites -> 1.2634047E-6, rescued -> 3.7902141E-6, stubble -> 2.2741286E-5, saving -> 1.51608565E-5, linus -> 1.2634047E-6, occasions -> 3.7902141E-6, over -> 0.0012735119, adonibezek -> 3.7902141E-6, comfortedst -> 1.2634047E-6, wrote -> 7.833109E-5, geshem -> 3.7902141E-6, loftily -> 1.2634047E-6, lamentation -> 3.1585118E-5, betharam -> 1.2634047E-6, darkened -> 2.400469E-5, stately -> 1.2634047E-6, plead -> 4.9272785E-5, apparently -> 1.2634047E-6, bounds -> 1.0107237E-5, delayed -> 2.5268093E-6, straightway -> 5.3063E-5, mowings -> 1.2634047E-6, michal -> 2.2741286E-5, pashur -> 1.7687666E-5, assaulted -> 1.2634047E-6, pestilence -> 5.938002E-5, walls -> 8.3384715E-5, longing -> 3.7902141E-6, forgettest -> 2.5268093E-6, hiddai -> 1.2634047E-6, converteth -> 1.2634047E-6, washpot -> 2.5268093E-6, bigtha -> 1.2634047E-6, sabeans -> 5.0536187E-6, sign -> 9.601876E-5, prayest -> 2.5268093E-6, languished -> 1.2634047E-6, declareth -> 5.0536187E-6, flourish -> 1.6424261E-5, meteyard -> 1.2634047E-6, nineteen -> 3.7902141E-6, phrygia -> 3.7902141E-6, sounds -> 1.2634047E-6, copper -> 1.2634047E-6, meeting -> 2.5268093E-6, elasah -> 2.5268093E-6, when -> 0.003580489, husk -> 2.5268093E-6, parted -> 1.51608565E-5, choler -> 2.5268093E-6, tiller -> 1.2634047E-6, insurrection -> 6.3170237E-6, zur -> 6.3170237E-6, sheriffs -> 2.5268093E-6, zenas -> 1.2634047E-6, furrows -> 1.0107237E-5, abagtha -> 1.2634047E-6, shimeon -> 1.2634047E-6, wilt -> 3.0953417E-4, felt -> 6.3170237E-6, sochoh -> 1.2634047E-6, resisted -> 2.5268093E-6, weavest -> 1.2634047E-6, perfection -> 1.3897452E-5, cis -> 1.2634047E-6, cormorant -> 5.0536187E-6, despaired -> 1.2634047E-6, kiss -> 2.5268095E-5, polls -> 7.5804282E-6, tabernacle -> 4.1439675E-4, steady -> 1.2634047E-6, handle -> 1.3897452E-5, zechariah -> 4.9272785E-5, adah -> 1.0107237E-5, esrom -> 3.7902141E-6, preparing -> 2.5268093E-6, distributing -> 1.2634047E-6, bakbukiah -> 3.7902141E-6, maintain -> 1.2634047E-5, abstinence -> 1.2634047E-6, bewray -> 1.2634047E-6, harnessed -> 1.2634047E-6, lily -> 6.3170237E-6, earthly -> 6.3170237E-6, hamuel -> 1.2634047E-6, shepherd -> 5.6853212E-5, envied -> 7.5804282E-6, scourgings -> 1.2634047E-6, fouledst -> 1.2634047E-6, govern -> 3.7902141E-6, naphtali -> 6.3170235E-5, rentest -> 1.2634047E-6, mattocks -> 2.5268093E-6, wizard -> 2.5268093E-6, worst -> 1.2634047E-6, fenced -> 4.800938E-5, caring -> 1.2634047E-6, polluted -> 5.053619E-5, foals -> 1.2634047E-6, pelican -> 3.7902141E-6, victory -> 1.51608565E-5, matrix -> 6.3170237E-6, grievously -> 8.843833E-6, naarah -> 3.7902141E-6, amminadab -> 1.6424261E-5, effectual -> 7.5804282E-6, bier -> 2.5268093E-6, mown -> 1.2634047E-6, careless -> 6.3170237E-6, preserveth -> 1.0107237E-5, taskmasters -> 7.5804282E-6, prisoners -> 2.65315E-5, remove -> 5.6853212E-5, fearing -> 1.0107237E-5, pondered -> 1.2634047E-6, beasts -> 1.9709114E-4, jehoiachin -> 1.3897452E-5, wreath -> 1.2634047E-6, labourer -> 2.5268093E-6, lamb -> 1.3518431E-4, handywork -> 1.2634047E-6, maonites -> 1.2634047E-6, babbling -> 1.2634047E-6, stooping -> 2.5268093E-6, jephunneh -> 2.0214475E-5, mahalah -> 1.2634047E-6, restrainest -> 1.2634047E-6, harmless -> 3.7902141E-6, kirjath -> 1.2634047E-6, gnasheth -> 3.7902141E-6, acquainted -> 2.5268093E-6, hang -> 2.400469E-5, abelmeholah -> 3.7902141E-6, burying -> 5.0536187E-6, zarethshahar -> 1.2634047E-6, slow -> 1.895107E-5, translation -> 1.2634047E-6, directed -> 3.7902141E-6, chasteneth -> 6.3170237E-6, jehoshabeath -> 2.5268093E-6, election -> 7.5804282E-6, profaneth -> 1.2634047E-6, eyeservice -> 2.5268093E-6, haggeri -> 1.2634047E-6, ointment -> 3.4111927E-5, mockest -> 1.2634047E-6, guests -> 7.5804282E-6, mightier -> 1.6424261E-5, dissolve -> 1.2634047E-6, jeshurun -> 3.7902141E-6, entangled -> 3.7902141E-6, touch -> 6.0643426E-5, ofttimes -> 3.7902141E-6, confident -> 1.0107237E-5, unfeigned -> 5.0536187E-6, few -> 8.212131E-5, mate -> 2.5268093E-6, expert -> 7.5804282E-6, rhesa -> 1.2634047E-6, desireth -> 2.1477881E-5, araunah -> 1.1370643E-5, railer -> 1.2634047E-6, weeping -> 5.5589808E-5, spread -> 1.3771112E-4, shearer -> 1.2634047E-6, hornets -> 1.2634047E-6, elijah -> 8.717493E-5, resteth -> 5.0536187E-6, etham -> 5.0536187E-6, estates -> 2.5268093E-6, cuttest -> 1.2634047E-6, sycomore -> 8.843833E-6, rosh -> 1.2634047E-6, mahazioth -> 2.5268093E-6, tellest -> 1.2634047E-6, foreigner -> 2.5268093E-6, hoofs -> 7.5804282E-6, shuthelah -> 5.0536187E-6, anath -> 2.5268093E-6, revolting -> 1.2634047E-6, timotheus -> 2.1477881E-5, lust -> 2.400469E-5, lothed -> 3.7902141E-6, wondrously -> 1.2634047E-6, sprout -> 1.2634047E-6, disappointed -> 1.2634047E-6, menchildren -> 1.2634047E-6, drag -> 2.5268093E-6, resorted -> 6.3170237E-6, ebony -> 1.2634047E-6, consisteth -> 1.2634047E-6, shambles -> 1.2634047E-6, fields -> 7.4540876E-5, neariah -> 3.7902141E-6, killeth -> 2.9058308E-5, added -> 1.895107E-5, ward -> 4.042895E-5, egypt -> 7.719403E-4, machnadebai -> 1.2634047E-6, sacrificing -> 2.5268093E-6, consult -> 1.2634047E-6, baken -> 1.1370643E-5, bulwarks -> 6.3170237E-6, morever -> 1.2634047E-6, fared -> 1.2634047E-6, damnable -> 1.2634047E-6, slave -> 1.2634047E-6, graciously -> 5.0536187E-6, star -> 1.895107E-5, unweighed -> 1.2634047E-6, cistern -> 5.0536187E-6, forerunner -> 1.2634047E-6, spendeth -> 3.7902141E-6, valiantest -> 1.2634047E-6, temanites -> 1.2634047E-6, jerahmeel -> 1.0107237E-5, hilkiah -> 4.2955762E-5, crossway -> 1.2634047E-6, longedst -> 1.2634047E-6, pathros -> 6.3170237E-6, flayed -> 1.2634047E-6, appeal -> 2.5268093E-6, blindeth -> 1.2634047E-6, going -> 1.16233234E-4, uphold -> 1.0107237E-5, paarai -> 1.2634047E-6, lock -> 2.5268093E-6, branch -> 4.6745976E-5, hebronites -> 7.5804282E-6, ever -> 6.0138066E-4, forgivenesses -> 1.2634047E-6, thanks -> 9.222855E-5, shedding -> 1.2634047E-6, doves -> 1.51608565E-5, eminent -> 5.0536187E-6, rise -> 1.7940348E-4, succeeded -> 3.7902141E-6, thundereth -> 3.7902141E-6, satest -> 2.5268093E-6, grinders -> 1.2634047E-6, prevaileth -> 1.2634047E-6, thorn -> 8.843833E-6, excellent -> 4.2955762E-5, flattery -> 2.5268093E-6, eventide -> 6.3170237E-6, merodachbaladan -> 1.2634047E-6, forsook -> 3.0321713E-5, carpus -> 1.2634047E-6, winnowed -> 1.2634047E-6, puttest -> 8.843833E-6, untoward -> 1.2634047E-6, aphek -> 1.0107237E-5, zadok -> 6.696045E-5, shun -> 1.2634047E-6, banished -> 2.5268093E-6, drunkards -> 7.5804282E-6, eggs -> 8.843833E-6, vail -> 4.800938E-5, rezia -> 1.2634047E-6, jashubilehem -> 1.2634047E-6, numbering -> 2.5268093E-6, leth -> 1.2634047E-6, baca -> 1.2634047E-6, lieth -> 7.4540876E-5, ziphah -> 1.2634047E-6, calcol -> 1.2634047E-6, numbered -> 1.617158E-4, boats -> 1.2634047E-6, bezai -> 3.7902141E-6, calling -> 3.0321713E-5, buryingplace -> 8.843833E-6, members -> 4.042895E-5, cover -> 9.096514E-5, let -> 0.0019090045, persians -> 6.3170237E-6, eschew -> 1.2634047E-6, host -> 2.425737E-4, thirsted -> 2.5268093E-6, forwardness -> 2.5268093E-6, usury -> 3.0321713E-5, circumcised -> 4.9272785E-5, athaiah -> 1.2634047E-6, sheepfold -> 1.2634047E-6, zilthai -> 2.5268093E-6, bold -> 1.3897452E-5, kinswoman -> 3.7902141E-6, armoury -> 3.7902141E-6, nebajoth -> 3.7902141E-6, bigthana -> 1.2634047E-6, crooked -> 1.7687666E-5, satisfieth -> 3.7902141E-6, ceiling -> 1.2634047E-6, rebels -> 3.7902141E-6, jeriel -> 1.2634047E-6, circuit -> 3.7902141E-6, omega -> 5.0536187E-6, aznothtabor -> 1.2634047E-6, lowest -> 1.3897452E-5, uttermost -> 3.537533E-5, ahasbai -> 1.2634047E-6, fold -> 1.1370643E-5, pot -> 2.7794904E-5, inform -> 1.2634047E-6, rail -> 1.2634047E-6, dragging -> 1.2634047E-6, transforming -> 1.2634047E-6, arrow -> 2.0214475E-5, heartily -> 1.2634047E-6, cursest -> 1.2634047E-6, breath -> 5.3063E-5, dropsy -> 1.2634047E-6, bethshemesh -> 2.65315E-5, syene -> 2.5268093E-6, inexcusable -> 1.2634047E-6, bestead -> 1.2634047E-6, jered -> 2.5268093E-6, building -> 4.6745976E-5, wallow -> 5.0536187E-6, foam -> 1.2634047E-6, separating -> 1.2634047E-6, watering -> 3.7902141E-6, atonement -> 1.0233578E-4, defeat -> 2.5268093E-6, flag -> 1.2634047E-6, dish -> 5.0536187E-6, travelling -> 3.7902141E-6, causest -> 2.5268093E-6, eutychus -> 1.2634047E-6, eveningtide -> 2.5268093E-6, rolleth -> 1.2634047E-6, bearers -> 3.7902141E-6, zereth -> 1.2634047E-6, flames -> 5.0536187E-6, therefrom -> 3.7902141E-6, with -> 0.0075955894, supposing -> 8.843833E-6, myself -> 1.4908175E-4, meddled -> 1.2634047E-6, doubletongued -> 1.2634047E-6, jehiel -> 2.0214475E-5, voluntary -> 5.0536187E-6, about -> 7.984718E-4, meted -> 3.7902141E-6, pispah -> 1.2634047E-6, rulers -> 9.854557E-5, message -> 8.843833E-6, stooped -> 8.843833E-6, preachest -> 1.2634047E-6, huri -> 1.2634047E-6, cleopas -> 1.2634047E-6, vowedst -> 1.2634047E-6, name -> 0.0012103417, moabites -> 2.400469E-5, shrubs -> 1.2634047E-6, my -> 0.005518552, conformable -> 1.2634047E-6, mustered -> 2.5268093E-6, between -> 2.931099E-4, marvel -> 1.3897452E-5, by -> 0.003315174, freeman -> 1.2634047E-6, bithynia -> 2.5268093E-6, ill -> 1.895107E-5, thrones -> 1.1370643E-5, months -> 7.4540876E-5, hadlai -> 1.2634047E-6, entertain -> 1.2634047E-6, thread -> 8.843833E-6, oppressors -> 1.0107237E-5, ravin -> 2.5268093E-6, deceiver -> 6.3170237E-6, acre -> 1.2634047E-6, ashan -> 5.0536187E-6, licked -> 5.0536187E-6, plowmen -> 2.5268093E-6, court -> 1.5413537E-4, jotham -> 3.0321713E-5, hatcheth -> 1.2634047E-6, expelled -> 5.0536187E-6, jehu -> 7.4540876E-5, performing -> 2.5268093E-6, anguish -> 2.1477881E-5, peeped -> 1.2634047E-6, babe -> 7.5804282E-6, loadeth -> 1.2634047E-6, sweetly -> 2.5268093E-6, write -> 1.1496983E-4, thyatira -> 5.0536187E-6, meet -> 1.6676943E-4, booties -> 1.2634047E-6, abaddon -> 1.2634047E-6, committed -> 1.16233234E-4, anna -> 1.2634047E-6, ahisamach -> 3.7902141E-6, boy -> 1.2634047E-6, bethrapha -> 1.2634047E-6, sporting -> 2.5268093E-6, ishmeelite -> 1.2634047E-6, twice -> 2.1477881E-5, blind -> 1.0359919E-4, plain -> 9.4755356E-5, mecherathite -> 1.2634047E-6, zareah -> 1.2634047E-6, closet -> 2.5268093E-6, reverenced -> 1.2634047E-6, imagined -> 3.7902141E-6, jehoiakim -> 4.6745976E-5, skilfully -> 1.2634047E-6, badest -> 1.2634047E-6, windy -> 1.2634047E-6, live -> 3.1206096E-4, dishonourest -> 1.2634047E-6, foul -> 6.3170237E-6, renewed -> 7.5804282E-6, securely -> 2.5268093E-6, holdeth -> 1.1370643E-5, lazarus -> 1.895107E-5, timnathheres -> 1.2634047E-6, philemon -> 1.2634047E-6, gerar -> 1.2634047E-5, bethtappuah -> 1.2634047E-6, ransom -> 1.6424261E-5, goatskins -> 1.2634047E-6, angel -> 2.5647116E-4, accusers -> 1.0107237E-5, householder -> 5.0536187E-6, chamber -> 6.5697044E-5, bowed -> 9.854557E-5, stones -> 2.2488604E-4, undo -> 2.5268093E-6, thin -> 1.1370643E-5, in -> 0.016003547, prefer -> 1.2634047E-6, vexation -> 1.7687666E-5, hewer -> 1.2634047E-6, stubborn -> 6.3170237E-6, furlongs -> 6.3170237E-6, ruddy -> 5.0536187E-6, tarpelites -> 1.2634047E-6, pourtrayed -> 3.7902141E-6, riches -> 1.2381366E-4, cured -> 5.0536187E-6, maranatha -> 1.2634047E-6, sorek -> 1.2634047E-6, forth -> 0.0011219034, hinges -> 2.5268093E-6, tenderness -> 1.2634047E-6, maidservant -> 2.1477881E-5, unadvisedly -> 1.2634047E-6, salutation -> 7.5804282E-6, heavy -> 5.053619E-5, goodlier -> 1.2634047E-6, lofty -> 1.0107237E-5, ruled -> 1.6424261E-5, butlers -> 1.2634047E-6, talitha -> 1.2634047E-6, cabins -> 1.2634047E-6, sustain -> 5.0536187E-6, epaphras -> 3.7902141E-6, year -> 4.6619633E-4, forum -> 1.2634047E-6, hachmoni -> 1.2634047E-6, seemly -> 2.5268093E-6, arvadite -> 2.5268093E-6, kiln -> 1.2634047E-6, howling -> 7.5804282E-6, report -> 3.790214E-5, stealth -> 1.2634047E-6, grief -> 3.2848522E-5, skins -> 3.0321713E-5, grape -> 1.0107237E-5, scattering -> 1.2634047E-6, torments -> 2.5268093E-6, wronged -> 2.5268093E-6, wound -> 3.1585118E-5, tharshish -> 5.0536187E-6, nail -> 1.0107237E-5, stacte -> 1.2634047E-6, revenue -> 3.7902141E-6, luz -> 1.0107237E-5, penuel -> 1.0107237E-5, sooner -> 2.5268093E-6, glede -> 1.2634047E-6, obtaining -> 1.2634047E-6, hephzibah -> 2.5268093E-6, barbarian -> 3.7902141E-6, washings -> 1.2634047E-6, costliness -> 1.2634047E-6, knocking -> 1.2634047E-6, seventh -> 1.5160856E-4, kissed -> 3.2848522E-5, despisest -> 1.2634047E-6, feeling -> 2.5268093E-6, hobab -> 2.5268093E-6, arms -> 3.6638736E-5, space -> 3.4111927E-5, scurvy -> 2.5268093E-6, jesurun -> 1.2634047E-6, shear -> 5.0536187E-6, haughtiness -> 6.3170237E-6, tail -> 1.2634047E-5, hezrai -> 1.2634047E-6, disinherit -> 1.2634047E-6, swollen -> 1.2634047E-6, traversing -> 1.2634047E-6, sinner -> 2.65315E-5, foreknowledge -> 2.5268093E-6, killedst -> 2.5268093E-6, suburbs -> 1.4529155E-4, untaken -> 1.2634047E-6, lusted -> 5.0536187E-6, addan -> 1.2634047E-6, cherethims -> 1.2634047E-6, silversmith -> 1.2634047E-6, smart -> 1.2634047E-6, sivan -> 1.2634047E-6, purifier -> 1.2634047E-6, sherds -> 1.2634047E-6, lycia -> 1.2634047E-6, immanuel -> 2.5268093E-6, wantonness -> 2.5268093E-6, apharsathchites -> 1.2634047E-6, jahzeelites -> 1.2634047E-6, adriel -> 2.5268093E-6, hail -> 4.800938E-5, sorroweth -> 1.2634047E-6, licence -> 2.5268093E-6, zephaniah -> 1.2634047E-5, attend -> 1.3897452E-5, merry -> 3.537533E-5, dishonesty -> 1.2634047E-6, arbathite -> 2.5268093E-6, bedad -> 2.5268093E-6, adulterers -> 1.1370643E-5, mehir -> 1.2634047E-6, titus -> 1.6424261E-5, baalhazor -> 1.2634047E-6, horite -> 1.2634047E-6, meek -> 2.1477881E-5, landing -> 1.2634047E-6, gains -> 1.2634047E-6, stumbled -> 7.5804282E-6, candle -> 2.0214475E-5, tanhumeth -> 2.5268093E-6, issue -> 5.053619E-5, andrew -> 1.6424261E-5, plate -> 3.7902141E-6, refuseth -> 1.1370643E-5, bountifulness -> 1.2634047E-6, craved -> 1.2634047E-6, ahuzam -> 1.2634047E-6, croucheth -> 1.2634047E-6, brim -> 1.2634047E-5, endeavours -> 1.2634047E-6, candace -> 1.2634047E-6, asshur -> 1.0107237E-5, mallothi -> 2.5268093E-6, timna -> 5.0536187E-6, gedaliah -> 4.042895E-5, hateful -> 3.7902141E-6, discretion -> 1.1370643E-5, rehoboth -> 5.0536187E-6, naught -> 3.7902141E-6, anointed -> 1.2381366E-4, seek -> 3.0827074E-4, gaddest -> 1.2634047E-6, poplars -> 1.2634047E-6, ginnetho -> 1.2634047E-6, branches -> 9.4755356E-5, saltness -> 1.2634047E-6, plaiting -> 1.2634047E-6, sojourn -> 4.1692358E-5, like -> 8.452178E-4, jeshuah -> 1.2634047E-6, loathe -> 1.2634047E-6, gendered -> 1.2634047E-6, whispered -> 1.2634047E-6, merathaim -> 1.2634047E-6, herdman -> 1.2634047E-6, quite -> 8.843833E-6, choosest -> 2.5268093E-6, insomuch -> 2.5268095E-5, ashbelites -> 1.2634047E-6, renounced -> 1.2634047E-6, craftiness -> 6.3170237E-6, gibeathite -> 1.2634047E-6, contention -> 1.1370643E-5, christian -> 2.5268093E-6, rabbi -> 1.0107237E-5, hali -> 1.2634047E-6, together -> 6.114879E-4, zina -> 1.2634047E-6, almond -> 2.5268093E-6, thereon -> 8.3384715E-5, us -> 0.0018332002, dispossess -> 2.5268093E-6, continuing -> 5.0536187E-6, unction -> 1.2634047E-6, downward -> 6.3170237E-6, senators -> 1.2634047E-6, candlestick -> 5.053619E-5, kenite -> 7.5804282E-6, asahel -> 2.2741286E-5, demanded -> 8.843833E-6, impose -> 1.2634047E-6, kept -> 2.2109583E-4, antiquity -> 1.2634047E-6, demonstration -> 1.2634047E-6, syntyche -> 1.2634047E-6, kindleth -> 3.7902141E-6, corpses -> 5.0536187E-6, ethiopians -> 1.6424261E-5, achzib -> 5.0536187E-6, seeth -> 6.822385E-5, cleave -> 3.790214E-5, groweth -> 1.7687666E-5, boasting -> 1.1370643E-5, samaritans -> 8.843833E-6, nathanael -> 7.5804282E-6, barest -> 3.7902141E-6, juniper -> 5.0536187E-6, chickens -> 1.2634047E-6, bashan -> 7.4540876E-5, subtilty -> 7.5804282E-6, rope -> 1.2634047E-6, gath -> 4.042895E-5, lost -> 4.1692358E-5, sober -> 1.51608565E-5, seatward -> 1.2634047E-6, preferring -> 2.5268093E-6, refused -> 4.1692358E-5, beno -> 2.5268093E-6, usurp -> 1.2634047E-6, dedicated -> 3.0321713E-5, barefoot -> 5.0536187E-6, halohesh -> 1.2634047E-6, spirits -> 5.8116617E-5, handleth -> 3.7902141E-6, days -> 0.0010966354, shaked -> 1.2634047E-6, scarceness -> 1.2634047E-6, ituraea -> 1.2634047E-6, sabtechah -> 1.2634047E-6, kerioth -> 3.7902141E-6, sweeter -> 3.7902141E-6, backbitings -> 1.2634047E-6, wag -> 3.7902141E-6, malchiel -> 3.7902141E-6, distaff -> 1.2634047E-6, abundant -> 1.6424261E-5, guest -> 1.2634047E-6, wroth -> 6.190683E-5, hazeroth -> 7.5804282E-6, samuel -> 1.7940348E-4, asnah -> 1.2634047E-6, amram -> 1.895107E-5, tempered -> 3.7902141E-6, fitches -> 5.0536187E-6, repaired -> 5.5589808E-5, study -> 3.7902141E-6, shields -> 2.9058308E-5, zebaim -> 2.5268093E-6, unbelief -> 2.0214475E-5, doing -> 4.9272785E-5, flay -> 3.7902141E-6, purse -> 6.3170237E-6, gazingstock -> 2.5268093E-6, aquila -> 7.5804282E-6, esther -> 7.075066E-5, drave -> 1.6424261E-5, offend -> 3.1585118E-5, upside -> 6.3170237E-6, springeth -> 5.0536187E-6, spear -> 5.8116617E-5, heavily -> 3.7902141E-6, libni -> 6.3170237E-6, curtains -> 3.9165545E-5, bathshua -> 1.2634047E-6, moon -> 6.443364E-5, mitre -> 1.6424261E-5, top -> 1.1496983E-4, obeyeth -> 3.7902141E-6, sparrows -> 5.0536187E-6, polishing -> 1.2634047E-6, returneth -> 8.843833E-6, moveable -> 1.2634047E-6, canker -> 1.2634047E-6, ginath -> 2.5268093E-6, marry -> 2.7794904E-5, shunammite -> 1.0107237E-5, asnapper -> 1.2634047E-6, jeopardy -> 7.5804282E-6, pools -> 6.3170237E-6, instruction -> 4.1692358E-5, askest -> 3.7902141E-6, hold -> 2.3372988E-4, assigned -> 3.7902141E-6, shechem -> 8.08579E-5, womankind -> 1.2634047E-6, conferred -> 5.0536187E-6, reckon -> 1.0107237E-5, acquit -> 2.5268093E-6, aha -> 1.2634047E-5, proudly -> 1.1370643E-5, withdraweth -> 1.2634047E-6, geber -> 2.5268093E-6, feasted -> 1.2634047E-6, waved -> 7.5804282E-6, beersheba -> 4.2955762E-5, confession -> 7.5804282E-6, parts -> 8.08579E-5, bleatings -> 1.2634047E-6, scornest -> 2.5268093E-6, plenty -> 1.6424261E-5, pransing -> 1.2634047E-6, sat -> 2.425737E-4, thought -> 1.0233578E-4, filled -> 2.0088135E-4, tyre -> 4.6745976E-5, rebelled -> 4.2955762E-5, striving -> 3.7902141E-6, companions -> 2.7794904E-5, melatiah -> 1.2634047E-6, fame -> 3.0321713E-5, merryhearted -> 1.2634047E-6, choice -> 2.65315E-5, devise -> 2.0214475E-5, boasted -> 2.5268093E-6, susi -> 1.2634047E-6, gob -> 2.5268093E-6, neighbours -> 2.7794904E-5, trophimus -> 3.7902141E-6, elath -> 6.3170237E-6, eladah -> 1.2634047E-6, dwelleth -> 7.327747E-5, parties -> 1.2634047E-6, hallowed -> 2.7794904E-5, cellars -> 2.5268093E-6, hundred -> 7.4540876E-4, bel -> 3.7902141E-6, comers -> 1.2634047E-6, dreamers -> 2.5268093E-6, cloke -> 3.7902141E-6, delayeth -> 2.5268093E-6, week -> 1.6424261E-5, afore -> 8.843833E-6, ahishahar -> 1.2634047E-6, heavier -> 3.7902141E-6, broiled -> 1.2634047E-6, respecteth -> 2.5268093E-6, noadiah -> 2.5268093E-6, pan -> 8.843833E-6, conspired -> 2.400469E-5, lightness -> 3.7902141E-6, mutter -> 1.2634047E-6, craveth -> 1.2634047E-6, mephaath -> 5.0536187E-6, lanterns -> 1.2634047E-6, philistia -> 3.7902141E-6, lame -> 3.4111927E-5, ancients -> 1.2634047E-5, differ -> 1.2634047E-6, imputeth -> 2.5268093E-6, jegarsahadutha -> 1.2634047E-6, whereunto -> 3.4111927E-5, certified -> 2.5268093E-6, quake -> 5.0536187E-6, plenteous -> 1.51608565E-5, mainsail -> 1.2634047E-6, seasoned -> 2.5268093E-6, vophsi -> 1.2634047E-6, superfluity -> 1.2634047E-6, ner -> 2.0214475E-5, ziphites -> 2.5268093E-6, lilies -> 1.2634047E-5, drank -> 2.400469E-5, finger -> 3.2848522E-5, paw -> 2.5268093E-6, pahathmoab -> 7.5804282E-6, purging -> 1.2634047E-6, jeaterai -> 1.2634047E-6, lighteneth -> 2.5268093E-6, quickened -> 8.843833E-6, jared -> 7.5804282E-6, chariots -> 1.4276474E-4, rhoda -> 1.2634047E-6, firepans -> 5.0536187E-6, jehoadah -> 2.5268093E-6, meshach -> 1.895107E-5, shallum -> 3.4111927E-5, regeneration -> 2.5268093E-6, marriage -> 2.400469E-5, graving -> 3.7902141E-6, fruitful -> 4.4219167E-5, very -> 3.2469502E-4, eliahba -> 2.5268093E-6, promising -> 1.2634047E-6, solitarily -> 1.2634047E-6, choked -> 7.5804282E-6, fretted -> 1.2634047E-6, greenness -> 1.2634047E-6, plough -> 1.2634047E-6, twined -> 2.65315E-5, dodanim -> 2.5268093E-6, five -> 4.3587462E-4, axes -> 8.843833E-6, wander -> 1.7687666E-5, intreaty -> 1.2634047E-6, stream -> 1.51608565E-5, noisome -> 5.0536187E-6, ekronites -> 2.5268093E-6, ithrites -> 1.2634047E-6, are -> 0.003727044, gethsemane -> 2.5268093E-6, trespassing -> 2.5268093E-6, tempt -> 1.7687666E-5, raamses -> 1.2634047E-6, threatening -> 1.2634047E-6, disorderly -> 3.7902141E-6, part -> 2.7036862E-4, whole -> 3.1585118E-4, vomit -> 1.0107237E-5, sighs -> 1.2634047E-6, goodness -> 6.443364E-5, sorrowful -> 2.2741286E-5, levi -> 9.096514E-5, burdens -> 3.1585118E-5, savest -> 3.7902141E-6, aenon -> 1.2634047E-6, melech -> 2.5268093E-6, shamefully -> 5.0536187E-6, chronicles -> 4.800938E-5, chislothtabor -> 1.2634047E-6, hewn -> 2.1477881E-5, treading -> 5.0536187E-6, reaching -> 5.0536187E-6, proclaimeth -> 1.2634047E-6, memucan -> 3.7902141E-6, proving -> 2.5268093E-6, ambushments -> 1.2634047E-6, chase -> 7.5804282E-6, stature -> 2.1477881E-5, glistering -> 2.5268093E-6, floor -> 2.2741286E-5, lean -> 1.3897452E-5, debates -> 1.2634047E-6, knocked -> 1.2634047E-6, eshban -> 2.5268093E-6, lender -> 2.5268093E-6, beerlahairoi -> 1.2634047E-6, sensual -> 2.5268093E-6, shoulders -> 2.5268095E-5, fastened -> 2.2741286E-5, hems -> 1.2634047E-6, mindful -> 1.2634047E-5, jarha -> 2.5268093E-6, wear -> 1.51608565E-5, grounded -> 3.7902141E-6, mortify -> 2.5268093E-6, sincerely -> 3.7902141E-6, shibmah -> 1.2634047E-6, canaanitess -> 1.2634047E-6, cypress -> 1.2634047E-6, perida -> 1.2634047E-6, helve -> 1.2634047E-6, excellency -> 3.2848522E-5, keys -> 2.5268093E-6, uncircumcised -> 5.4326403E-5, deviseth -> 1.0107237E-5, yonder -> 8.843833E-6, gilalai -> 1.2634047E-6, sheweth -> 2.5268095E-5, shobab -> 5.0536187E-6, meetest -> 2.5268093E-6, cupbearers -> 2.5268093E-6, taanathshiloh -> 1.2634047E-6, termed -> 2.5268093E-6, reformation -> 1.2634047E-6, zelotes -> 2.5268093E-6, whoremonger -> 1.2634047E-6, unsearchable -> 6.3170237E-6, nay -> 6.948726E-5, jahmai -> 1.2634047E-6, deputy -> 6.3170237E-6, zavan -> 1.2634047E-6, settlest -> 1.2634047E-6, register -> 3.7902141E-6, charmers -> 2.5268093E-6, naioth -> 7.5804282E-6, psalms -> 1.1370643E-5, ephraimite -> 1.2634047E-6, tolerable -> 7.5804282E-6, shealtiel -> 1.1370643E-5, creeping -> 3.6638736E-5, enshemesh -> 2.5268093E-6, taunt -> 2.5268093E-6, letters -> 4.2955762E-5, borrowed -> 3.7902141E-6, haughtily -> 1.2634047E-6, shearing -> 3.7902141E-6, carbuncles -> 1.2634047E-6, jashubites -> 1.2634047E-6, post -> 1.3897452E-5, fulfil -> 3.0321713E-5, jogbehah -> 2.5268093E-6, preparest -> 3.7902141E-6, zimmah -> 3.7902141E-6, nod -> 1.2634047E-6, controversy -> 1.6424261E-5, edifieth -> 3.7902141E-6, fish -> 4.548257E-5, barley -> 4.6745976E-5, streets -> 8.212131E-5, kezia -> 1.2634047E-6, lotheth -> 1.2634047E-6, crackling -> 1.2634047E-6, pisgah -> 6.3170237E-6, flourished -> 2.5268093E-6, sarid -> 2.5268093E-6, snatch -> 1.2634047E-6, heth -> 1.7687666E-5, wedge -> 3.7902141E-6, sittest -> 8.843833E-6, evenings -> 1.2634047E-6, fortress -> 1.895107E-5, gluttonous -> 2.5268093E-6, thunder -> 2.400469E-5, triumphed -> 2.5268093E-6, dost -> 6.948726E-5, hither -> 8.464812E-5, weightier -> 1.2634047E-6, oration -> 1.2634047E-6, flux -> 1.2634047E-6, thunderings -> 7.5804282E-6, wherewithal -> 2.5268093E-6, grey -> 1.2634047E-6, helped -> 3.0321713E-5, chuza -> 1.2634047E-6, disappoint -> 1.2634047E-6, wonderful -> 2.65315E-5, chilmad -> 1.2634047E-6, handful -> 1.1370643E-5, endure -> 3.6638736E-5, contendest -> 1.2634047E-6, command -> 1.3139409E-4, mount -> 3.3227543E-4, washing -> 1.2634047E-5, libertines -> 1.2634047E-6, frail -> 1.2634047E-6, prognosticators -> 1.2634047E-6, choke -> 2.5268093E-6, refuge -> 5.938002E-5, furnaces -> 2.5268093E-6, mazzaroth -> 1.2634047E-6, nazareth -> 3.6638736E-5, kindreds -> 1.0107237E-5, manassites -> 3.7902141E-6, hadar -> 2.5268093E-6, convicted -> 1.2634047E-6, throw -> 1.1370643E-5, chargers -> 3.7902141E-6, smoother -> 2.5268093E-6, conies -> 2.5268093E-6, pleaded -> 3.7902141E-6, covered -> 1.326575E-4, rephaim -> 7.5804282E-6, shupham -> 1.2634047E-6, way -> 8.3890074E-4, kernels -> 1.2634047E-6, setting -> 3.7902141E-6, meddling -> 2.5268093E-6, broken -> 2.3499328E-4, handmaidens -> 3.7902141E-6, seized -> 1.2634047E-6, thyine -> 1.2634047E-6, machpelah -> 7.5804282E-6, vajezatha -> 1.2634047E-6, wakened -> 2.5268093E-6, gaza -> 2.400469E-5, armoni -> 1.2634047E-6, gittaim -> 2.5268093E-6, athach -> 1.2634047E-6, tophet -> 1.1370643E-5, jalon -> 1.2634047E-6, slumbered -> 1.2634047E-6, lightnings -> 1.7687666E-5, mary -> 6.822385E-5, courageous -> 6.3170237E-6, happened -> 1.51608565E-5, refreshing -> 2.5268093E-6, sem -> 1.2634047E-6, fighting -> 3.7902141E-6, gileadites -> 5.0536187E-6, poor -> 2.5899796E-4, tehaphnehes -> 1.2634047E-6, suffer -> 1.2128685E-4, controversies -> 1.2634047E-6, age -> 5.3063E-5, laughed -> 1.6424261E-5, crucify -> 2.0214475E-5, dedicating -> 2.5268093E-6, roebucks -> 1.2634047E-6, betharbel -> 1.2634047E-6, at -> 0.0019835455, kirjathsepher -> 5.0536187E-6, uncovereth -> 3.7902141E-6, shutting -> 1.2634047E-6, worshipping -> 6.3170237E-6, polluting -> 2.5268093E-6, commonly -> 2.5268093E-6, engrave -> 2.5268093E-6, advanced -> 5.0536187E-6, retaineth -> 3.7902141E-6, friend -> 6.696045E-5, perceiveth -> 3.7902141E-6, bloodthirsty -> 1.2634047E-6, kibzaim -> 1.2634047E-6, adorn -> 2.5268093E-6, mirth -> 1.895107E-5, zuph -> 3.7902141E-6, darts -> 5.0536187E-6, mile -> 1.2634047E-6, nebushasban -> 1.2634047E-6, wroughtest -> 1.2634047E-6, trying -> 1.2634047E-6, griefs -> 1.2634047E-6, hearth -> 8.843833E-6, presenting -> 1.2634047E-6, halhul -> 1.2634047E-6, comeliness -> 6.3170237E-6, fourteenth -> 3.1585118E-5, decision -> 2.5268093E-6, kindred -> 3.537533E-5, creditors -> 1.2634047E-6, unpunished -> 1.3897452E-5, adin -> 5.0536187E-6, anakims -> 1.1370643E-5, mocker -> 1.2634047E-6, mahath -> 3.7902141E-6, gudgodah -> 2.5268093E-6, punishments -> 2.5268093E-6, unicorn -> 7.5804282E-6, ahuzzath -> 1.2634047E-6, rhodes -> 1.2634047E-6, amerce -> 1.2634047E-6, beholding -> 1.895107E-5, got -> 8.843833E-6, embroiderer -> 2.5268093E-6, fault -> 2.400469E-5, forward -> 5.938002E-5, malefactors -> 3.7902141E-6, hatipha -> 2.5268093E-6, fouled -> 1.2634047E-6, dagger -> 3.7902141E-6, visible -> 1.2634047E-6, anaiah -> 2.5268093E-6, hedged -> 3.7902141E-6, shelesh -> 1.2634047E-6, since -> 8.843833E-5, prisons -> 3.7902141E-6, goest -> 5.8116617E-5, grisled -> 5.0536187E-6, elpalet -> 1.2634047E-6, capernaum -> 2.0214475E-5, sumptuously -> 1.2634047E-6, conversion -> 1.2634047E-6, elika -> 1.2634047E-6, differeth -> 2.5268093E-6, dying -> 7.5804282E-6, shaul -> 8.843833E-6, priesthood -> 2.0214475E-5, plants -> 1.0107237E-5, daub -> 1.2634047E-6, fellowservant -> 7.5804282E-6, pekah -> 1.3897452E-5, declare -> 1.2002345E-4, withstand -> 1.2634047E-5, engaged -> 1.2634047E-6, scourge -> 1.51608565E-5, kneeled -> 1.0107237E-5, asswaged -> 2.5268093E-6, bitten -> 2.5268093E-6, cockle -> 1.2634047E-6, brawlers -> 1.2634047E-6, far -> 2.1856901E-4, shiloni -> 1.2634047E-6, clapped -> 2.5268093E-6, judging -> 7.5804282E-6, southward -> 3.0321713E-5, plagues -> 3.0321713E-5, manifold -> 1.0107237E-5, pasture -> 2.5268095E-5, revengeth -> 2.5268093E-6, lien -> 3.7902141E-6, health -> 2.1477881E-5, zabbud -> 1.2634047E-6, desolate -> 1.869839E-4, achaz -> 2.5268093E-6, outside -> 1.0107237E-5, alarm -> 1.2634047E-5, foolishly -> 1.51608565E-5, marrow -> 6.3170237E-6, witnessing -> 1.2634047E-6, thereby -> 2.65315E-5, rushed -> 3.7902141E-6, beards -> 5.0536187E-6, philistim -> 1.2634047E-6, fornication -> 4.548257E-5, hagar -> 1.51608565E-5, ammi -> 1.2634047E-6, mesobaite -> 1.2634047E-6, straitest -> 1.2634047E-6, waxen -> 1.51608565E-5, eighty -> 3.7902141E-6, assyria -> 1.4908175E-4, magnifical -> 1.2634047E-6, shebaniah -> 8.843833E-6, lowering -> 1.2634047E-6, mounts -> 3.7902141E-6, bastards -> 1.2634047E-6, enlarging -> 1.2634047E-6, avengeth -> 2.5268093E-6, gamaliel -> 8.843833E-6, skill -> 8.843833E-6, jabbok -> 8.843833E-6, equally -> 1.2634047E-6, whereon -> 3.4111927E-5, wicked -> 4.3461123E-4, clean -> 1.6803283E-4, needlework -> 1.1370643E-5, tomb -> 3.7902141E-6, boiling -> 1.2634047E-6, studs -> 1.2634047E-6, latin -> 2.5268093E-6, amazement -> 2.5268093E-6, ordained -> 4.4219167E-5, abia -> 5.0536187E-6, witch -> 2.5268093E-6, wickedly -> 2.9058308E-5, chenaniah -> 3.7902141E-6, malchijah -> 7.5804282E-6, ziphron -> 1.2634047E-6, moab -> 2.12252E-4, provokedst -> 1.2634047E-6, barak -> 1.7687666E-5, merom -> 2.5268093E-6, ishmeelites -> 5.0536187E-6, lighted -> 1.6424261E-5, miserably -> 1.2634047E-6, wonderously -> 1.2634047E-6, azgad -> 5.0536187E-6, kindly -> 1.2634047E-5, yieldeth -> 5.0536187E-6, whence -> 9.096514E-5, stir -> 2.5268095E-5, aspatha -> 1.2634047E-6, julius -> 2.5268093E-6, buildest -> 6.3170237E-6, descendeth -> 1.2634047E-6, moisture -> 2.5268093E-6, gored -> 2.5268093E-6, we -> 0.0023297183, inhabited -> 4.042895E-5, loftiness -> 2.5268093E-6, ordinances -> 3.4111927E-5, pare -> 1.2634047E-6, jaw -> 5.0536187E-6, gospel -> 1.3139409E-4, friends -> 6.190683E-5, rejecteth -> 1.2634047E-6, reprobates -> 3.7902141E-6, phlegon -> 1.2634047E-6, fainthearted -> 3.7902141E-6, neballat -> 1.2634047E-6, jerushah -> 1.2634047E-6, resting -> 5.0536187E-6, multiplied -> 5.5589808E-5, footmen -> 1.51608565E-5, iscariot -> 1.3897452E-5, accept -> 3.1585118E-5, hashem -> 1.2634047E-6, sanballat -> 1.2634047E-5, tiria -> 1.2634047E-6, discover -> 1.51608565E-5, job -> 7.580428E-5, ripe -> 8.843833E-6, lioness -> 1.2634047E-6, uppermost -> 7.5804282E-6, revealeth -> 7.5804282E-6, booth -> 2.5268093E-6, tool -> 5.0536187E-6, accepted -> 3.6638736E-5, fatherless -> 5.4326403E-5, wombs -> 2.5268093E-6, transgressest -> 1.2634047E-6, stoop -> 5.0536187E-6, commotions -> 1.2634047E-6, igdaliah -> 1.2634047E-6, fretteth -> 1.2634047E-6, macedonia -> 3.2848522E-5, killing -> 6.3170237E-6, prudence -> 3.7902141E-6, carmelitess -> 2.5268093E-6, thicker -> 2.5268093E-6, balah -> 1.2634047E-6, fatted -> 6.3170237E-6, jose -> 1.2634047E-6, brotherhood -> 2.5268093E-6, declaring -> 5.0536187E-6, subscribe -> 2.5268093E-6, cruse -> 1.1370643E-5, arpad -> 5.0536187E-6, mattathah -> 1.2634047E-6, ashvath -> 1.2634047E-6, stingeth -> 1.2634047E-6, belah -> 1.2634047E-6, girding -> 2.5268093E-6, sorrows -> 2.7794904E-5, profited -> 7.5804282E-6, ladies -> 2.5268093E-6, pharisees -> 1.0991621E-4, sidon -> 1.7687666E-5, foursquare -> 1.2634047E-5, corinthians -> 2.5268093E-6, attai -> 5.0536187E-6, elms -> 1.2634047E-6, desperately -> 1.2634047E-6, inclose -> 1.2634047E-6, waketh -> 2.5268093E-6, jahzah -> 1.2634047E-6, enmishpat -> 1.2634047E-6, turneth -> 4.1692358E-5, fearfulness -> 3.7902141E-6, adoniram -> 2.5268093E-6, oil -> 2.5520776E-4, prophecy -> 2.65315E-5, menservants -> 1.2634047E-5, negligent -> 2.5268093E-6, zichri -> 1.51608565E-5, hers -> 3.7902141E-6, achish -> 2.65315E-5, uzzielites -> 2.5268093E-6, surfeiting -> 1.2634047E-6, secundus -> 1.2634047E-6, blemishes -> 2.5268093E-6, jehovah -> 5.0536187E-6, liers -> 1.2634047E-5, creator -> 6.3170237E-6, springs -> 2.0214475E-5, legs -> 2.400469E-5, wellpleasing -> 2.5268093E-6, exchangers -> 1.2634047E-6, mehetabeel -> 1.2634047E-6, ditch -> 7.5804282E-6, spokesman -> 1.2634047E-6, castle -> 1.1370643E-5, storm -> 1.7687666E-5, hay -> 3.7902141E-6, amongst -> 2.5268093E-6, sallai -> 2.5268093E-6, cherubims -> 8.212131E-5, perverse -> 2.5268095E-5, jozachar -> 1.2634047E-6, wounded -> 4.4219167E-5, envies -> 1.2634047E-6, meal -> 1.51608565E-5, free -> 7.4540876E-5, deeds -> 4.1692358E-5, provideth -> 2.5268093E-6, hori -> 5.0536187E-6, drieth -> 3.7902141E-6, roller -> 1.2634047E-6, jubal -> 1.2634047E-6, overlived -> 1.2634047E-6, abiasaph -> 1.2634047E-6, heavenly -> 2.9058308E-5, giah -> 1.2634047E-6, brethren -> 7.1256026E-4, befallen -> 8.843833E-6, bowels -> 4.9272785E-5, hunter -> 5.0536187E-6, kartan -> 1.2634047E-6, dealings -> 2.5268093E-6, ozias -> 2.5268093E-6, arabians -> 7.5804282E-6, chastening -> 7.5804282E-6, hilen -> 1.2634047E-6, havilah -> 8.843833E-6, marketh -> 3.7902141E-6, bul -> 1.2634047E-6, plumbline -> 5.0536187E-6, confederate -> 3.7902141E-6, euphrates -> 2.65315E-5, tookest -> 2.5268093E-6, corners -> 4.9272785E-5, because -> 0.0015274563, embalm -> 1.2634047E-6, triumphing -> 2.5268093E-6, physicians -> 7.5804282E-6, priscilla -> 6.3170237E-6, zior -> 1.2634047E-6, abelmaim -> 1.2634047E-6, appointed -> 1.5918899E-4, likhi -> 1.2634047E-6, shillem -> 2.5268093E-6, gender -> 2.5268093E-6, was -> 0.0057131164, consider -> 8.464812E-5, mockings -> 1.2634047E-6, lahmam -> 1.2634047E-6, timaeus -> 1.2634047E-6, view -> 5.0536187E-6, byword -> 7.5804282E-6, bethlebaoth -> 1.2634047E-6, watch -> 7.7067685E-5, tare -> 5.0536187E-6, oar -> 1.2634047E-6, tekoah -> 3.7902141E-6, lowly -> 7.5804282E-6, firebrands -> 3.7902141E-6, corruption -> 2.65315E-5, zuar -> 6.3170237E-6, harts -> 2.5268093E-6, bush -> 1.3897452E-5, depart -> 1.5792559E-4, pit -> 1.11179615E-4, perezuzza -> 1.2634047E-6, magpiash -> 1.2634047E-6, attired -> 1.2634047E-6, ancestors -> 1.2634047E-6, scoured -> 1.2634047E-6, whoring -> 2.400469E-5, testator -> 2.5268093E-6, amminadib -> 1.2634047E-6, tibhath -> 1.2634047E-6, derbe -> 5.0536187E-6, gomer -> 7.5804282E-6, thanking -> 1.2634047E-6, engannim -> 3.7902141E-6, proceedeth -> 1.3897452E-5, hare -> 2.5268093E-6, stock -> 1.0107237E-5, hamonah -> 1.2634047E-6, pool -> 2.7794904E-5, tanner -> 3.7902141E-6, afoot -> 2.5268093E-6, heaven -> 7.36565E-4, pitiful -> 3.7902141E-6, ears -> 1.9077411E-4, spoils -> 6.3170237E-6, pass -> 0.0010486259, unfaithful -> 1.2634047E-6, summer -> 3.4111927E-5, officer -> 1.51608565E-5, exceedeth -> 1.2634047E-6, sinews -> 6.3170237E-6, while -> 2.7036862E-4, awe -> 3.7902141E-6, josabad -> 1.2634047E-6, astray -> 2.7794904E-5, principal -> 2.1477881E-5, standeth -> 3.790214E-5, hurl -> 1.2634047E-6, commendeth -> 5.0536187E-6, satiate -> 2.5268093E-6, haphraim -> 1.2634047E-6, stinketh -> 2.5268093E-6, iniquities -> 7.075066E-5, convocations -> 3.7902141E-6, trieth -> 6.3170237E-6, relieved -> 1.2634047E-6, bethshittah -> 1.2634047E-6, chapmen -> 1.2634047E-6, atroth -> 1.2634047E-6, nailing -> 1.2634047E-6, washest -> 1.2634047E-6, stoned -> 2.7794904E-5, charming -> 1.2634047E-6, send -> 2.956367E-4, band -> 2.400469E-5, herodion -> 1.2634047E-6, pavilions -> 3.7902141E-6, whoso -> 6.822385E-5, doubt -> 1.6424261E-5, mote -> 7.5804282E-6, galilaeans -> 6.3170237E-6, cut -> 4.0428952E-4, lefthanded -> 2.5268093E-6, thitherward -> 3.7902141E-6, buffet -> 2.5268093E-6, swaddled -> 2.5268093E-6, stern -> 1.2634047E-6, remaineth -> 4.6745976E-5, enchanters -> 1.2634047E-6, pipe -> 5.0536187E-6, alienated -> 8.843833E-6, station -> 1.2634047E-6, nourishing -> 1.2634047E-6, seers -> 7.5804282E-6, checker -> 1.2634047E-6, compasseth -> 6.3170237E-6, entrances -> 1.2634047E-6, persuasion -> 1.2634047E-6, lingereth -> 1.2634047E-6, sowing -> 2.5268093E-6, title -> 3.7902141E-6, riseth -> 1.7687666E-5, bondwoman -> 1.0107237E-5, thoughtest -> 1.2634047E-6, theirs -> 1.3897452E-5, zedekiah -> 7.833109E-5, streams -> 1.51608565E-5, visage -> 3.7902141E-6, discord -> 2.5268093E-6, disciple -> 3.6638736E-5, appearances -> 2.5268093E-6, warmeth -> 2.5268093E-6, gilead -> 1.2760388E-4, excellest -> 1.2634047E-6, woman -> 4.5987932E-4, lose -> 3.0321713E-5, hall -> 1.0107237E-5, chapt -> 1.2634047E-6, stirs -> 1.2634047E-6, unto -> 0.011366853, highness -> 2.5268093E-6, discovereth -> 2.5268093E-6, parable -> 6.190683E-5, jeshimon -> 7.5804282E-6, allow -> 3.7902141E-6, casluhim -> 2.5268093E-6, justice -> 3.537533E-5, angry -> 5.5589808E-5, zethan -> 1.2634047E-6, winefat -> 2.5268093E-6, printed -> 1.2634047E-6, judas -> 4.1692358E-5, records -> 3.7902141E-6, abelmizraim -> 1.2634047E-6, tidal -> 2.5268093E-6, peruda -> 1.2634047E-6, compassions -> 2.5268093E-6, mufflers -> 1.2634047E-6, fox -> 2.5268093E-6, giver -> 2.5268093E-6, findeth -> 3.4111927E-5, kindled -> 8.3384715E-5, grove -> 2.1477881E-5, advocate -> 1.2634047E-6, discomfited -> 1.1370643E-5, noph -> 8.843833E-6, spouses -> 2.5268093E-6, taverns -> 1.2634047E-6, jekamiah -> 2.5268093E-6, garlick -> 1.2634047E-6, fierceness -> 1.51608565E-5, timnathserah -> 2.5268093E-6, viper -> 5.0536187E-6, islands -> 8.843833E-6, declineth -> 2.5268093E-6, gurbaal -> 1.2634047E-6, ceaseth -> 1.2634047E-5, reconcile -> 6.3170237E-6, beeshterah -> 1.2634047E-6, fellest -> 1.2634047E-6, abilene -> 1.2634047E-6, borroweth -> 1.2634047E-6, amos -> 1.0107237E-5, treasurers -> 5.0536187E-6, employ -> 1.2634047E-6, observeth -> 1.2634047E-6, mediator -> 8.843833E-6, sell -> 4.4219167E-5, ball -> 1.2634047E-6, stablisheth -> 2.5268093E-6, witnessed -> 5.0536187E-6, makkedah -> 1.1370643E-5, elead -> 1.2634047E-6, extol -> 5.0536187E-6, huphamites -> 1.2634047E-6, extreme -> 1.2634047E-6, abelshittim -> 1.2634047E-6, abraham -> 3.1585118E-4, liquor -> 2.5268093E-6, obedient -> 2.0214475E-5, waster -> 2.5268093E-6, besiege -> 1.3897452E-5, shethar -> 1.2634047E-6, imagineth -> 1.2634047E-6, lattice -> 3.7902141E-6, water -> 5.003083E-4, gebim -> 1.2634047E-6, beholdest -> 5.0536187E-6, deepness -> 1.2634047E-6, revolt -> 3.7902141E-6, antipas -> 1.2634047E-6, commune -> 1.0107237E-5, consuming -> 3.7902141E-6, corrected -> 2.5268093E-6, mortally -> 1.2634047E-6, spectacle -> 1.2634047E-6, affecteth -> 1.2634047E-6, shinab -> 1.2634047E-6, stairs -> 1.2634047E-5, falling -> 1.895107E-5, profaneness -> 1.2634047E-6, wrinkle -> 1.2634047E-6, zaretan -> 1.2634047E-6, nekeb -> 1.2634047E-6, sosthenes -> 2.5268093E-6, ithamar -> 2.65315E-5, yell -> 1.2634047E-6, glorious -> 5.6853212E-5, jaasiel -> 1.2634047E-6, turtle -> 2.5268093E-6, tarsus -> 6.3170237E-6, tempest -> 2.2741286E-5, strongly -> 1.2634047E-6, workmanship -> 8.843833E-6, abez -> 1.2634047E-6, drew -> 1.073894E-4, conversant -> 2.5268093E-6, gilonite -> 2.5268093E-6, louder -> 2.5268093E-6, hashabnah -> 1.2634047E-6, manahethites -> 2.5268093E-6, inhabitants -> 2.5520776E-4, worm -> 1.7687666E-5, appear -> 6.822385E-5, rare -> 1.2634047E-6, chanceth -> 1.2634047E-6, banks -> 6.3170237E-6, invisible -> 6.3170237E-6, ascendeth -> 2.5268093E-6, corrupt -> 4.1692358E-5, asareel -> 1.2634047E-6, assaying -> 1.2634047E-6, saw -> 6.923458E-4, alleging -> 1.2634047E-6, dippeth -> 2.5268093E-6, drunk -> 3.790214E-5, train -> 3.7902141E-6, condemnation -> 1.51608565E-5, chezib -> 1.2634047E-6, remaliah -> 1.6424261E-5, israel -> 0.0032532671, beating -> 3.7902141E-6, lives -> 3.537533E-5, chestnut -> 1.2634047E-6, perazim -> 1.2634047E-6, fare -> 3.7902141E-6, elealeh -> 6.3170237E-6, jehush -> 1.2634047E-6, bilgah -> 3.7902141E-6, strangled -> 5.0536187E-6, ebenezer -> 3.7902141E-6, sparing -> 1.2634047E-6, jehonathan -> 3.7902141E-6, mankind -> 7.5804282E-6, imagery -> 1.2634047E-6, sherezer -> 1.2634047E-6, before -> 0.0022690748, reproved -> 1.2634047E-5, madest -> 1.2634047E-5, retained -> 7.5804282E-6, disannul -> 3.7902141E-6, midst -> 4.5987932E-4, pertained -> 2.1477881E-5, payment -> 1.2634047E-6, elements -> 5.0536187E-6, hypocritical -> 2.5268093E-6, rushing -> 1.0107237E-5, rephidim -> 6.3170237E-6, fightings -> 2.5268093E-6, rhegium -> 1.2634047E-6, each -> 6.443364E-5, blindness -> 8.843833E-6, stringed -> 3.7902141E-6, onesiphorus -> 2.5268093E-6, savourest -> 2.5268093E-6, mozah -> 1.2634047E-6, eve -> 5.0536187E-6, stools -> 1.2634047E-6, brokenfooted -> 1.2634047E-6, deeply -> 3.7902141E-6, roebuck -> 5.0536187E-6, ezar -> 1.2634047E-6, charitably -> 1.2634047E-6, wiped -> 5.0536187E-6, roughly -> 7.5804282E-6, minstrels -> 1.2634047E-6, scum -> 6.3170237E-6, zaham -> 1.2634047E-6, cankered -> 1.2634047E-6, sides -> 6.0643426E-5, doubled -> 5.0536187E-6, toucheth -> 5.053619E-5, confirmeth -> 3.7902141E-6, shouteth -> 1.2634047E-6, safely -> 2.65315E-5, loves -> 2.5268093E-6, fists -> 1.2634047E-6, scholar -> 2.5268093E-6, an -> 0.0021465246, nether -> 1.895107E-5, saidst -> 2.7794904E-5, godliness -> 1.895107E-5, ruling -> 3.7902141E-6, slumberings -> 1.2634047E-6, feedingplace -> 1.2634047E-6, gunites -> 1.2634047E-6, causeless -> 2.5268093E-6, assir -> 6.3170237E-6, jushabhesed -> 1.2634047E-6, bad -> 2.2741286E-5, into -> 0.0025457605, thaddaeus -> 2.5268093E-6, jashen -> 1.2634047E-6, dinaites -> 1.2634047E-6, destructions -> 3.7902141E-6, measuring -> 1.3897452E-5, deferred -> 3.7902141E-6, strength -> 3.0574395E-4, togarmah -> 5.0536187E-6, amorite -> 1.7687666E-5, meats -> 1.0107237E-5, copulation -> 3.7902141E-6, eliezer -> 1.895107E-5, vocation -> 1.2634047E-6, leather -> 1.2634047E-6, foreheads -> 1.0107237E-5, merrily -> 1.2634047E-6, loose -> 3.6638736E-5, cor -> 1.2634047E-6, youth -> 8.843833E-5, lois -> 1.2634047E-6, undergirding -> 1.2634047E-6, hedge -> 1.1370643E-5, thousand -> 6.569705E-4, planteth -> 6.3170237E-6, janna -> 1.2634047E-6, thelasar -> 1.2634047E-6, accusation -> 1.2634047E-5, nurture -> 1.2634047E-6, lasha -> 1.2634047E-6, siaha -> 1.2634047E-6, faithfully -> 1.0107237E-5, envy -> 2.5268095E-5, painting -> 1.2634047E-6, talmon -> 6.3170237E-6, replenished -> 6.3170237E-6, ahishar -> 1.2634047E-6, medad -> 2.5268093E-6, telmelah -> 2.5268093E-6, tasks -> 1.2634047E-6, hothir -> 2.5268093E-6, deeper -> 1.1370643E-5, allonbachuth -> 1.2634047E-6, bethezel -> 1.2634047E-6, rebuker -> 1.2634047E-6, flagon -> 2.5268093E-6, merarites -> 1.2634047E-6, contentment -> 1.2634047E-6, sackclothes -> 1.2634047E-6, sheal -> 1.2634047E-6, escheweth -> 2.5268093E-6, parmashta -> 1.2634047E-6, sevenfold -> 7.5804282E-6, renew -> 7.5804282E-6, alms -> 1.6424261E-5, chalcedony -> 1.2634047E-6, seal -> 3.2848522E-5, malignity -> 1.2634047E-6, baal -> 8.08579E-5, shrank -> 2.5268093E-6, knees -> 3.790214E-5, potipherah -> 3.7902141E-6, zia -> 1.2634047E-6, ahikam -> 2.5268095E-5, lifteth -> 1.2634047E-5, murmurers -> 1.2634047E-6, suffering -> 7.5804282E-6, narcissus -> 1.2634047E-6, prolongeth -> 2.5268093E-6, selfwill -> 1.2634047E-6, tolaites -> 1.2634047E-6, crowned -> 7.5804282E-6, bebai -> 7.5804282E-6, conveniently -> 1.2634047E-6, diblaim -> 1.2634047E-6, thereabout -> 1.2634047E-6, john -> 1.6803283E-4, turned -> 3.6259714E-4, sodoma -> 1.2634047E-6, launch -> 1.2634047E-6, mule -> 1.1370643E-5, sharaim -> 1.2634047E-6, mingle -> 2.5268093E-6, elymas -> 1.2634047E-6, cuthah -> 1.2634047E-6, sixtyfold -> 1.2634047E-6, matters -> 2.9058308E-5, incredible -> 1.2634047E-6, nahor -> 2.1477881E-5, adamant -> 2.5268093E-6, run -> 8.970174E-5, sayings -> 3.9165545E-5, salvation -> 2.0719838E-4, leaving -> 6.3170237E-6, tip -> 1.1370643E-5, gaham -> 1.2634047E-6, castest -> 2.5268093E-6, driving -> 5.0536187E-6, fellowhelper -> 1.2634047E-6, congregation -> 4.5987932E-4, tirhakah -> 2.5268093E-6, these -> 0.0015476708, thereat -> 3.7902141E-6, heritage -> 3.790214E-5, pitieth -> 3.7902141E-6, pollute -> 1.3897452E-5, profaning -> 2.5268093E-6, rage -> 2.2741286E-5, shishak -> 8.843833E-6, letting -> 1.2634047E-6, verified -> 3.7902141E-6, possessor -> 2.5268093E-6, forbeareth -> 2.5268093E-6, sepharad -> 1.2634047E-6, strengtheneth -> 8.843833E-6, christians -> 1.2634047E-6, gorgeously -> 2.5268093E-6, change -> 3.2848522E-5, furrow -> 1.2634047E-6, beheld -> 6.696045E-5, arah -> 5.0536187E-6, filth -> 5.0536187E-6, burnt -> 4.6240614E-4, oboth -> 5.0536187E-6, crow -> 8.843833E-6, inherited -> 7.5804282E-6, meribbaal -> 5.0536187E-6, palaces -> 4.1692358E-5, foreship -> 1.2634047E-6, eliphal -> 1.2634047E-6, harhaiah -> 1.2634047E-6, moderately -> 1.2634047E-6, allon -> 2.5268093E-6, koa -> 1.2634047E-6, lower -> 2.2741286E-5, aser -> 2.5268093E-6, grievous -> 4.800938E-5, stretchedst -> 1.2634047E-6, cabul -> 2.5268093E-6, strivings -> 3.7902141E-6, idolatries -> 1.2634047E-6, hearer -> 2.5268093E-6, silent -> 1.1370643E-5, sacrifices -> 9.9808974E-5, carelessly -> 3.7902141E-6, everything -> 2.5268093E-6, eleventh -> 2.5268095E-5, greatest -> 2.65315E-5, hap -> 1.2634047E-6, ramathmizpeh -> 1.2634047E-6, liberally -> 2.5268093E-6, tahapanes -> 1.2634047E-6, mend -> 1.2634047E-6, profiteth -> 7.5804282E-6, speckled -> 1.3897452E-5, advice -> 1.1370643E-5, pudens -> 1.2634047E-6, dimness -> 2.5268093E-6, sum -> 2.65315E-5, double -> 3.2848522E-5, tried -> 2.5268095E-5, spokes -> 1.2634047E-6, bearing -> 2.7794904E-5, cephas -> 7.5804282E-6, publickly -> 2.5268093E-6, approve -> 3.7902141E-6, shimronmeron -> 1.2634047E-6, naaran -> 1.2634047E-6, senaah -> 2.5268093E-6, celebrate -> 3.7902141E-6, upright -> 8.5911524E-5, shaaph -> 2.5268093E-6, never -> 1.0865281E-4, hadassah -> 1.2634047E-6, cumbrance -> 1.2634047E-6, disdained -> 2.5268093E-6, binnui -> 8.843833E-6, rephaims -> 2.5268093E-6, sheshbazzar -> 5.0536187E-6, uttered -> 2.1477881E-5, wonderfully -> 5.0536187E-6, nergalsharezer -> 3.7902141E-6, pastor -> 1.2634047E-6, pleasures -> 1.0107237E-5, presumptuously -> 7.5804282E-6, benevolence -> 1.2634047E-6, hod -> 1.2634047E-6, fleddest -> 2.5268093E-6, provoketh -> 3.7902141E-6, expel -> 2.5268093E-6, uzzia -> 1.2634047E-6, bring -> 9.1596844E-4, great -> 0.0012153954, rakkath -> 1.2634047E-6, tree -> 2.5394434E-4, cockcrowing -> 1.2634047E-6, guard -> 6.443364E-5, nimrah -> 1.2634047E-6, tebeth -> 1.2634047E-6, simon -> 9.601876E-5, resist -> 1.2634047E-5, enmity -> 1.0107237E-5, transgression -> 6.443364E-5, buriers -> 1.2634047E-6, blessings -> 1.51608565E-5, propitiation -> 3.7902141E-6, castaway -> 1.2634047E-6, leah -> 4.2955762E-5, nose -> 1.51608565E-5, tolad -> 1.2634047E-6, swallowed -> 3.2848522E-5, uprightly -> 1.51608565E-5, delicacies -> 1.2634047E-6, bondservant -> 1.2634047E-6, well -> 3.3480226E-4, itself -> 6.3170235E-5, fall -> 3.1837798E-4, bondmen -> 2.1477881E-5, saffron -> 1.2634047E-6, strain -> 1.2634047E-6, pulse -> 3.7902141E-6, blackish -> 1.2634047E-6, matthias -> 2.5268093E-6, defraud -> 6.3170237E-6, phanuel -> 1.2634047E-6, feasting -> 8.843833E-6, colt -> 1.895107E-5, jesharelah -> 1.2634047E-6, content -> 2.0214475E-5, inhabit -> 1.2634047E-5, altar -> 4.77567E-4, dungeon -> 1.6424261E-5, sethur -> 1.2634047E-6, coat -> 3.1585118E-5, miseries -> 2.5268093E-6, word -> 8.831199E-4, rue -> 1.2634047E-6, copied -> 1.2634047E-6, ziphion -> 1.2634047E-6, ashkelon -> 1.1370643E-5, zuriel -> 1.2634047E-6, recount -> 1.2634047E-6, winds -> 2.9058308E-5, hindmost -> 3.7902141E-6, fist -> 2.5268093E-6, goat -> 4.4219167E-5, heresh -> 1.2634047E-6, artificer -> 2.5268093E-6, taxing -> 2.5268093E-6, robbed -> 1.6424261E-5, consulted -> 1.6424261E-5, sherebiah -> 1.0107237E-5, burnished -> 1.2634047E-6, plaistered -> 2.5268093E-6, whereinsoever -> 1.2634047E-6, waves -> 3.2848522E-5, lakum -> 1.2634047E-6, aright -> 6.3170237E-6, somebody -> 2.5268093E-6, harlot -> 5.3063E-5, beninu -> 1.2634047E-6, jagur -> 1.2634047E-6, wake -> 5.0536187E-6, stakes -> 2.5268093E-6, silk -> 5.0536187E-6, up -> 0.0030069032, eternity -> 1.2634047E-6, ho -> 5.0536187E-6, gave -> 5.8748317E-4, heber -> 1.7687666E-5, wrestled -> 3.7902141E-6, lived -> 7.327747E-5, gazez -> 2.5268093E-6, guestchamber -> 2.5268093E-6, senate -> 1.2634047E-6, permitted -> 2.5268093E-6, shake -> 4.9272785E-5, sedition -> 6.3170237E-6, trode -> 1.0107237E-5, dissolving -> 1.2634047E-6, surprised -> 3.7902141E-6, comfort -> 8.3384715E-5, enquiry -> 2.5268093E-6, costly -> 7.5804282E-6, amramites -> 2.5268093E-6, transgress -> 1.7687666E-5, avith -> 2.5268093E-6, broader -> 1.2634047E-6, privily -> 1.895107E-5, sojourner -> 1.0107237E-5, whithersoever -> 3.537533E-5, hinds -> 8.843833E-6, canaan -> 1.1496983E-4, arab -> 1.2634047E-6, canst -> 6.443364E-5, elder -> 2.5268095E-5, cave -> 4.042895E-5, scrape -> 3.7902141E-6, chastised -> 7.5804282E-6, kartah -> 1.2634047E-6, poorer -> 1.2634047E-6, breatheth -> 1.2634047E-6, obeisance -> 1.1370643E-5, hypocrites -> 2.5268095E-5, hurai -> 1.2634047E-6, lovingkindnesses -> 5.0536187E-6, dipped -> 1.2634047E-5, writeth -> 1.2634047E-6, loved -> 1.2381366E-4, joyfulness -> 2.5268093E-6, chargedst -> 1.2634047E-6, apply -> 5.0536187E-6, tebah -> 1.2634047E-6, lunatick -> 2.5268093E-6, skipped -> 2.5268093E-6, pharpar -> 1.2634047E-6, cares -> 3.7902141E-6, tibni -> 3.7902141E-6, prosperity -> 2.1477881E-5, searching -> 6.3170237E-6, endeavoured -> 2.5268093E-6, prisca -> 1.2634047E-6, planters -> 1.2634047E-6, trump -> 2.5268093E-6, banquetings -> 1.2634047E-6, aloes -> 6.3170237E-6, journeyings -> 2.5268093E-6, pierced -> 1.0107237E-5, bolted -> 1.2634047E-6, murmuring -> 2.5268093E-6, lament -> 2.65315E-5, lent -> 8.843833E-6, birds -> 3.1585118E-5, rams -> 9.7282165E-5, tails -> 7.5804282E-6, murderers -> 1.2634047E-5, hastily -> 1.0107237E-5, rider -> 8.843833E-6, asleep -> 2.0214475E-5, meditation -> 7.5804282E-6, treader -> 1.2634047E-6, weigheth -> 2.5268093E-6, fair -> 6.696045E-5, thunderbolts -> 1.2634047E-6, ishma -> 1.2634047E-6, removeth -> 6.3170237E-6, ripening -> 1.2634047E-6, bosor -> 1.2634047E-6, enticing -> 2.5268093E-6, eagles -> 1.1370643E-5, jabez -> 5.0536187E-6, kite -> 2.5268093E-6, belied -> 1.2634047E-6, rephaiah -> 6.3170237E-6, stone -> 2.425737E-4, tomorrow -> 1.2634047E-6, goshen -> 1.895107E-5, heart -> 0.0010524162, dedanim -> 1.2634047E-6, hakkoz -> 1.2634047E-6, habitations -> 2.5268095E-5, ismachiah -> 1.2634047E-6, power -> 3.436461E-4, stripling -> 1.2634047E-6, miracle -> 1.2634047E-5, bewailed -> 3.7902141E-6, phygellus -> 1.2634047E-6, dan -> 9.096514E-5, alameth -> 1.2634047E-6, bashemath -> 7.5804282E-6, knock -> 5.0536187E-6, afresh -> 1.2634047E-6, asses -> 8.08579E-5, shemariah -> 3.7902141E-6, reign -> 2.12252E-4, galilaean -> 3.7902141E-6, howsoever -> 5.0536187E-6, sockets -> 6.822385E-5, speaketh -> 9.349195E-5, executedst -> 1.2634047E-6, lappeth -> 2.5268093E-6, overpass -> 1.2634047E-6, prolong -> 1.7687666E-5, bundle -> 5.0536187E-6, laban -> 6.948726E-5, trembleth -> 5.0536187E-6, replenish -> 2.5268093E-6, distribute -> 6.3170237E-6, rome -> 1.1370643E-5, speechless -> 3.7902141E-6, hatest -> 7.5804282E-6, pennyworth -> 2.5268093E-6, hoised -> 1.2634047E-6, robe -> 3.2848522E-5, jupiter -> 3.7902141E-6, counsellor -> 1.7687666E-5, ornament -> 8.843833E-6, mahlon -> 5.0536187E-6, wench -> 1.2634047E-6, guile -> 1.3897452E-5, consenting -> 2.5268093E-6, reelaiah -> 1.2634047E-6, principles -> 2.5268093E-6, hosea -> 3.7902141E-6, hearkenedst -> 1.2634047E-6, goads -> 2.5268093E-6, edom -> 1.0865281E-4, meshobab -> 1.2634047E-6, shiphrah -> 1.2634047E-6, pleasing -> 7.5804282E-6, perform -> 5.3063E-5, where -> 5.066253E-4, anaharath -> 1.2634047E-6, boast -> 2.5268095E-5, the -> 0.08076189, ezbai -> 1.2634047E-6, bread -> 4.560891E-4, athens -> 6.3170237E-6, roar -> 2.9058308E-5, shamir -> 5.0536187E-6, draweth -> 1.51608565E-5, supplieth -> 2.5268093E-6, platter -> 3.7902141E-6, suffice -> 8.843833E-6, chew -> 3.7902141E-6, zalmonah -> 2.5268093E-6, aholiab -> 6.3170237E-6, renown -> 8.843833E-6, threatened -> 2.5268093E-6, hoped -> 1.3897452E-5, morning -> 2.8679287E-4, elpaal -> 3.7902141E-6, backslidings -> 5.0536187E-6, jubile -> 2.7794904E-5, helez -> 6.3170237E-6, continuance -> 6.3170237E-6, desires -> 3.7902141E-6, man -> 0.0034554119, sorcerer -> 2.5268093E-6, out -> 0.003505948, whereby -> 4.9272785E-5, quantity -> 1.2634047E-6, maachathi -> 1.2634047E-6, slewest -> 1.2634047E-6, admonished -> 6.3170237E-6, undertook -> 1.2634047E-6, wrinkles -> 1.2634047E-6, wellspring -> 2.5268093E-6, middin -> 1.2634047E-6, jakeh -> 1.2634047E-6, straitness -> 6.3170237E-6, beerothite -> 5.0536187E-6, defenced -> 1.1370643E-5, nourished -> 1.2634047E-5, thirteenth -> 1.3897452E-5, reel -> 2.5268093E-6, lengthened -> 1.2634047E-6, ararat -> 2.5268093E-6, chub -> 1.2634047E-6, lengthen -> 2.5268093E-6, maw -> 1.2634047E-6, scorched -> 3.7902141E-6, unprofitableness -> 1.2634047E-6, judith -> 1.2634047E-6, handmaiden -> 1.2634047E-6, nemuelites -> 1.2634047E-6, curses -> 1.0107237E-5, gederoth -> 2.5268093E-6, dishonour -> 1.3897452E-5, mithcah -> 2.5268093E-6, receivedst -> 1.2634047E-6, shushan -> 2.65315E-5, bulls -> 1.2634047E-5, fifth -> 7.7067685E-5, arodites -> 1.2634047E-6, league -> 2.400469E-5, lions -> 5.8116617E-5, beat -> 4.548257E-5, hands -> 5.83693E-4, compacted -> 1.2634047E-6, openeth -> 2.65315E-5, winding -> 3.7902141E-6, fisher -> 1.2634047E-6, devoured -> 6.696045E-5, owest -> 5.0536187E-6, rebellious -> 4.548257E-5, flatteries -> 3.7902141E-6, impart -> 2.5268093E-6, wimples -> 1.2634047E-6, phurah -> 2.5268093E-6, sinneth -> 2.7794904E-5, intreaties -> 1.2634047E-6, skull -> 6.3170237E-6, borne -> 3.9165545E-5, pride -> 6.190683E-5, gederathite -> 1.2634047E-6, tent -> 1.2381366E-4, sorrowing -> 2.5268093E-6, bones -> 1.2507707E-4, process -> 6.3170237E-6, curiously -> 1.2634047E-6, wherewith -> 1.3897452E-4, shimrath -> 1.2634047E-6, interpretations -> 2.5268093E-6, vainly -> 1.2634047E-6, aphiah -> 1.2634047E-6, milk -> 6.0643426E-5, quietness -> 1.2634047E-5, hoof -> 1.51608565E-5, blossomed -> 1.2634047E-6, lothing -> 1.2634047E-6, overdrive -> 1.2634047E-6, examining -> 1.2634047E-6, bunni -> 3.7902141E-6, sufferest -> 1.2634047E-6, burdensome -> 6.3170237E-6, droves -> 1.2634047E-6, wouldest -> 4.800938E-5, jarib -> 3.7902141E-6, razor -> 8.843833E-6, bay -> 7.5804282E-6, lodge -> 3.4111927E-5, favour -> 8.843833E-5, jesuites -> 1.2634047E-6, shimeah -> 5.0536187E-6, eluzai -> 1.2634047E-6, skilful -> 8.843833E-6, ozem -> 2.5268093E-6, widow -> 6.948726E-5, said -> 0.0050523556, teeth -> 6.3170235E-5, deceitfully -> 1.3897452E-5, hodiah -> 1.2634047E-6, temptations -> 1.0107237E-5, pua -> 1.2634047E-6, market -> 8.843833E-6, hatch -> 2.5268093E-6, ahoah -> 1.2634047E-6, measures -> 4.9272785E-5, jarah -> 2.5268093E-6, maidservants -> 1.2634047E-5, beetle -> 1.2634047E-6, horribly -> 2.5268093E-6, simeonites -> 3.7902141E-6, widowhood -> 5.0536187E-6, princess -> 1.2634047E-6, azbuk -> 1.2634047E-6, publish -> 2.1477881E-5, pull -> 1.895107E-5, omri -> 2.2741286E-5, sellest -> 1.2634047E-6, zophim -> 1.2634047E-6, already -> 3.9165545E-5, carnally -> 5.0536187E-6, corruptly -> 2.5268093E-6, besor -> 3.7902141E-6, pelonite -> 3.7902141E-6, skilfulness -> 1.2634047E-6, fewest -> 1.2634047E-6, disputer -> 1.2634047E-6, crush -> 5.0536187E-6, swooned -> 1.2634047E-6, smooth -> 7.5804282E-6, baketh -> 1.2634047E-6, families -> 2.1983242E-4, temples -> 1.1370643E-5, ahiman -> 5.0536187E-6, ahijah -> 2.5268095E-5, mutual -> 1.2634047E-6, plagued -> 7.5804282E-6, committeth -> 2.400469E-5, liquors -> 1.2634047E-6, eder -> 3.7902141E-6, fetched -> 2.2741286E-5, nakedness -> 7.201407E-5, marred -> 6.3170237E-6, suit -> 3.7902141E-6, yours -> 6.3170237E-6, voices -> 2.1477881E-5, concision -> 1.2634047E-6, delighted -> 1.51608565E-5, covenanted -> 5.0536187E-6, redemption -> 2.5268095E-5, beauty -> 6.190683E-5, binea -> 2.5268093E-6, hachilah -> 3.7902141E-6, filledst -> 2.5268093E-6, zibeon -> 1.0107237E-5, boys -> 2.5268093E-6, leaves -> 2.400469E-5, glean -> 1.2634047E-5, horonite -> 3.7902141E-6, emmaus -> 1.2634047E-6, gin -> 3.7902141E-6, pouring -> 2.5268093E-6, gideoni -> 6.3170237E-6, rooms -> 8.843833E-6, abihud -> 1.2634047E-6, moment -> 2.7794904E-5, shave -> 1.7687666E-5, cnidus -> 1.2634047E-6, isaac -> 1.6676943E-4, jair -> 1.2634047E-5, uncertainly -> 1.2634047E-6, jacob -> 4.7630357E-4, sala -> 1.2634047E-6, baalzebub -> 5.0536187E-6, tenth -> 1.0233578E-4, hoarfrost -> 1.2634047E-6, succourer -> 1.2634047E-6, bigvai -> 7.5804282E-6, poplar -> 1.2634047E-6, giblites -> 1.2634047E-6, pangs -> 1.1370643E-5, blasphemies -> 7.5804282E-6, flinty -> 1.2634047E-6, hence -> 3.790214E-5, presented -> 2.2741286E-5, offer -> 2.981635E-4, ammizabad -> 1.2634047E-6, vexed -> 2.7794904E-5, finisher -> 1.2634047E-6, displeased -> 3.1585118E-5, backslider -> 1.2634047E-6, horonaim -> 5.0536187E-6, bellow -> 1.2634047E-6, niger -> 1.2634047E-6, catcheth -> 3.7902141E-6, circumcise -> 1.2634047E-5, reprove -> 2.400469E-5, media -> 7.5804282E-6, doubtless -> 8.843833E-6, olivet -> 2.5268093E-6, cretians -> 1.2634047E-6, corpse -> 1.2634047E-6, abated -> 7.5804282E-6, forsaken -> 9.601876E-5, bethlehem -> 4.9272785E-5, tabeel -> 1.2634047E-6, phares -> 3.7902141E-6, advantage -> 5.0536187E-6, bribe -> 2.5268093E-6, bethmaachah -> 2.5268093E-6, ramathaimzophim -> 1.2634047E-6, arkite -> 2.5268093E-6, hushai -> 1.7687666E-5, jah -> 1.2634047E-6, early -> 1.0865281E-4, parlours -> 1.2634047E-6, pileha -> 1.2634047E-6, nobles -> 3.790214E-5, bethphage -> 3.7902141E-6, erred -> 1.51608565E-5, unshod -> 1.2634047E-6, stretchest -> 1.2634047E-6, loveth -> 8.212131E-5, perils -> 1.0107237E-5, looketh -> 4.1692358E-5, recovered -> 1.3897452E-5, submitted -> 3.7902141E-6, ready -> 1.2634047E-4, eranites -> 1.2634047E-6, north -> 1.6676943E-4, healer -> 1.2634047E-6, obeying -> 3.7902141E-6, weakened -> 3.7902141E-6, clauda -> 1.2634047E-6, wraths -> 1.2634047E-6, make -> 0.0013341554, rejoiceth -> 2.2741286E-5, pin -> 3.7902141E-6, imnah -> 2.5268093E-6, lying -> 7.201407E-5, jordan -> 2.4889072E-4, him -> 0.008413012, child -> 2.5899796E-4, terror -> 3.6638736E-5, jehoshaphat -> 1.06126E-4, kishi -> 1.2634047E-6, zepho -> 2.5268093E-6, moth -> 1.2634047E-5, jehucal -> 1.2634047E-6, zeboim -> 6.3170237E-6, fastest -> 1.2634047E-6, ashbea -> 1.2634047E-6, dainties -> 3.7902141E-6, bethdiblathaim -> 1.2634047E-6, sanctification -> 6.3170237E-6, advise -> 3.7902141E-6, avims -> 1.2634047E-6, tirhanah -> 1.2634047E-6, satisfying -> 2.5268093E-6, declined -> 5.0536187E-6, abiram -> 1.3897452E-5, talent -> 1.7687666E-5, hoshama -> 1.2634047E-6, tilgathpilneser -> 3.7902141E-6, puffed -> 7.5804282E-6, sapphires -> 3.7902141E-6, affect -> 2.5268093E-6, zerahiah -> 6.3170237E-6, pharah -> 1.2634047E-6, remembering -> 2.5268093E-6, zacharias -> 1.3897452E-5, shone -> 8.843833E-6, fought -> 8.08579E-5, save -> 2.943733E-4, mountains -> 2.2488604E-4, dwelling -> 6.5697044E-5, buildedst -> 1.2634047E-6, sake -> 1.8319368E-4, bileam -> 1.2634047E-6, castles -> 7.5804282E-6, hagarites -> 3.7902141E-6, amraphel -> 2.5268093E-6, dromedary -> 1.2634047E-6, obscure -> 1.2634047E-6, vex -> 1.895107E-5, usurer -> 1.2634047E-6, anchors -> 3.7902141E-6, placed -> 1.7687666E-5, complaint -> 8.843833E-6, stays -> 5.0536187E-6, anger -> 2.956367E-4, betrayeth -> 3.7902141E-6, gravings -> 1.2634047E-6, certainty -> 8.843833E-6, herd -> 2.7794904E-5, hid -> 1.6297921E-4, stoppeth -> 5.0536187E-6, sweetsmelling -> 1.2634047E-6, brawling -> 2.5268093E-6, simeon -> 6.3170235E-5, i -> 0.011186185, impoverished -> 3.7902141E-6, rent -> 8.3384715E-5, trench -> 1.0107237E-5, northern -> 2.5268093E-6, golden -> 8.3384715E-5, lentiles -> 5.0536187E-6, dodo -> 6.3170237E-6, anamim -> 2.5268093E-6, liketh -> 3.7902141E-6, giloh -> 2.5268093E-6, fishpools -> 1.2634047E-6, greyhound -> 1.2634047E-6, imputing -> 2.5268093E-6, leadeth -> 1.7687666E-5, ebedmelech -> 7.5804282E-6, migdol -> 5.0536187E-6, gergesenes -> 1.2634047E-6, rolling -> 1.2634047E-6, injustice -> 1.2634047E-6, trachonitis -> 1.2634047E-6, shelomoth -> 2.5268093E-6, shut -> 1.326575E-4, feignedly -> 1.2634047E-6, ithrite -> 5.0536187E-6, willow -> 1.2634047E-6, soft -> 1.0107237E-5, fight -> 1.3518431E-4, horeb -> 2.1477881E-5, mole -> 1.2634047E-6, exact -> 1.0107237E-5, thresh -> 5.0536187E-6, baths -> 1.1370643E-5, correct -> 8.843833E-6, nobleman -> 3.7902141E-6, shimites -> 1.2634047E-6, additions -> 2.5268093E-6, nicolas -> 1.2634047E-6, compared -> 6.3170237E-6, accuseth -> 1.2634047E-6, parmenas -> 1.2634047E-6, shedder -> 1.2634047E-6, azal -> 1.2634047E-6, has -> 1.2634047E-6, flocks -> 1.0107238E-4, amasai -> 6.3170237E-6, healings -> 1.2634047E-6, ravens -> 6.3170237E-6, blaze -> 1.2634047E-6, alienate -> 1.2634047E-6, deputies -> 3.7902141E-6, foretold -> 2.5268093E-6, blade -> 6.3170237E-6, jahdo -> 1.2634047E-6, ader -> 1.2634047E-6, horsehoofs -> 1.2634047E-6, expound -> 1.2634047E-6, bits -> 1.2634047E-6, relied -> 3.7902141E-6, solace -> 1.2634047E-6, subdue -> 1.0107237E-5, bullocks -> 5.6853212E-5, enjoy -> 1.7687666E-5, kettle -> 1.2634047E-6, pleasure -> 7.7067685E-5, whirlwinds -> 2.5268093E-6, churl -> 2.5268093E-6, proselytes -> 2.5268093E-6, baladan -> 2.5268093E-6, obil -> 1.2634047E-6, ring -> 1.3897452E-5, adamah -> 1.2634047E-6, rabbath -> 2.5268093E-6, sack -> 1.51608565E-5, hazarsusah -> 1.2634047E-6, trumpets -> 6.443364E-5, feel -> 8.843833E-6, proclaiming -> 3.7902141E-6, persude -> 1.2634047E-6, girdest -> 1.2634047E-6, sinim -> 1.2634047E-6, observers -> 1.2634047E-6, terrestrial -> 2.5268093E-6, mouse -> 2.5268093E-6, treasures -> 7.833109E-5, elah -> 2.1477881E-5, viol -> 2.5268093E-6, quit -> 7.5804282E-6, substance -> 6.3170235E-5, strengthen -> 4.042895E-5, akrabbim -> 2.5268093E-6, venison -> 1.0107237E-5, isui -> 1.2634047E-6, artificers -> 2.5268093E-6, sup -> 3.7902141E-6, pithon -> 2.5268093E-6, feathered -> 2.5268093E-6, describeth -> 2.5268093E-6, merchantmen -> 2.5268093E-6, adino -> 1.2634047E-6, constrained -> 7.5804282E-6, milch -> 3.7902141E-6, complete -> 3.7902141E-6, minished -> 1.2634047E-6, companies -> 2.1477881E-5, dilean -> 1.2634047E-6, blew -> 2.9058308E-5, overrunning -> 1.2634047E-6, released -> 5.0536187E-6, forswear -> 1.2634047E-6, affairs -> 1.0107237E-5, certify -> 6.3170237E-6, laying -> 1.6424261E-5, ghost -> 1.3771112E-4, rageth -> 1.2634047E-6, render -> 4.1692358E-5, zabad -> 1.0107237E-5, flew -> 2.5268093E-6, proverbs -> 1.1370643E-5, hazel -> 1.2634047E-6, meddle -> 7.5804282E-6, sleep -> 1.0359919E-4, supped -> 1.2634047E-6, service -> 1.6676943E-4, hur -> 2.0214475E-5, fathers -> 6.923458E-4, brother -> 5.078887E-4, peacocks -> 3.7902141E-6, guiltless -> 1.2634047E-5, chose -> 3.6638736E-5, disfigure -> 1.2634047E-6, honourest -> 1.2634047E-6, chesil -> 1.2634047E-6, sallu -> 3.7902141E-6, filthy -> 2.1477881E-5, confessed -> 8.843833E-6, close -> 1.3897452E-5, edifying -> 1.0107237E-5, garrisons -> 8.843833E-6, hebrewess -> 1.2634047E-6, ours -> 7.5804282E-6, abode -> 8.717493E-5, stink -> 1.0107237E-5, lasharon -> 1.2634047E-6, stick -> 1.7687666E-5, dimon -> 2.5268093E-6, jesse -> 5.938002E-5, hashum -> 6.3170237E-6, composition -> 2.5268093E-6, traffick -> 6.3170237E-6, ahimoth -> 1.2634047E-6, wave -> 4.042895E-5, bounty -> 3.7902141E-6, evildoers -> 1.51608565E-5, magnificence -> 1.2634047E-6, himself -> 6.6581427E-4, rachab -> 1.2634047E-6, eleph -> 1.2634047E-6, so -> 0.0021338905, destroyer -> 8.843833E-6, vinedressers -> 5.0536187E-6, horns -> 8.464812E-5, eliasaph -> 7.5804282E-6, harrow -> 1.2634047E-6, sieve -> 2.5268093E-6, abominably -> 1.2634047E-6, quaked -> 2.5268093E-6, mysteries -> 6.3170237E-6, jerah -> 2.5268093E-6, ourselves -> 6.443364E-5, hotly -> 1.2634047E-6, dunghill -> 8.843833E-6, shophan -> 1.2634047E-6, adventure -> 2.5268093E-6, scent -> 3.7902141E-6, armourbearer -> 2.2741286E-5, foreordained -> 1.2634047E-6, milalai -> 1.2634047E-6, yokes -> 5.0536187E-6, areli -> 2.5268093E-6, yielded -> 1.0107237E-5, reproofs -> 2.5268093E-6, alian -> 1.2634047E-6, taught -> 1.0233578E-4, vulture -> 3.7902141E-6, riddle -> 1.1370643E-5, vent -> 1.2634047E-6, hoshaiah -> 3.7902141E-6, it -> 0.0077434075, jona -> 1.2634047E-6, hair -> 8.08579E-5, saws -> 3.7902141E-6, translated -> 3.7902141E-6, riddance -> 2.5268093E-6, others -> 8.717493E-5, convinced -> 5.0536187E-6, founded -> 1.2634047E-5, lehi -> 3.7902141E-6, grievance -> 1.2634047E-6, mightily -> 1.3897452E-5, israelite -> 5.0536187E-6, mite -> 1.2634047E-6, helpeth -> 5.0536187E-6, zebul -> 7.5804282E-6, drawer -> 1.2634047E-6, peniel -> 1.2634047E-6, faithfulness -> 2.400469E-5, player -> 1.2634047E-6, polished -> 3.7902141E-6, berechiah -> 1.2634047E-5, profaned -> 1.895107E-5, roof -> 2.5268095E-5, jahaziah -> 1.2634047E-6, enrogel -> 5.0536187E-6, foundation -> 6.822385E-5, knoweth -> 1.3139409E-4, prophesy -> 1.13706425E-4, instruments -> 6.443364E-5, unthankful -> 2.5268093E-6, dumah -> 5.0536187E-6, extortioner -> 3.7902141E-6, revenge -> 6.3170237E-6, twilight -> 1.1370643E-5, mahalaleel -> 8.843833E-6, chasten -> 7.5804282E-6, galal -> 3.7902141E-6, withal -> 4.1692358E-5, tiglathpileser -> 3.7902141E-6, challengeth -> 1.2634047E-6, hosah -> 6.3170237E-6, vagabonds -> 1.2634047E-6, departed -> 2.728954E-4, naasson -> 3.7902141E-6, fleece -> 1.1370643E-5, flatter -> 2.5268093E-6, thousands -> 7.833109E-5, thigh -> 2.65315E-5, raisins -> 5.0536187E-6, porters -> 4.1692358E-5, syriack -> 1.2634047E-6, ahimelech -> 2.0214475E-5, perezuzzah -> 1.2634047E-6, laugheth -> 1.2634047E-6, causeway -> 2.5268093E-6, maintainest -> 1.2634047E-6, instructor -> 1.2634047E-6, laodiceans -> 2.5268093E-6, thereunto -> 1.1370643E-5, magician -> 1.2634047E-6, resemble -> 1.2634047E-6, apace -> 3.7902141E-6, genealogy -> 1.895107E-5, pomegranate -> 1.2634047E-5, undersetters -> 5.0536187E-6, beast -> 2.2867626E-4, seir -> 4.9272785E-5, vesture -> 1.0107237E-5, advisement -> 1.2634047E-6, flee -> 1.326575E-4, immediately -> 6.948726E-5, shebah -> 1.2634047E-6, perceiving -> 3.7902141E-6, army -> 1.0359919E-4, support -> 2.5268093E-6, raiseth -> 1.0107237E-5, pardoned -> 3.7902141E-6, wash -> 1.1244302E-4, barrenness -> 1.2634047E-6, heaps -> 2.5268095E-5, accompany -> 1.2634047E-6, beggar -> 3.7902141E-6, matred -> 2.5268093E-6, bag -> 1.3897452E-5, sucking -> 6.3170237E-6, ladder -> 1.2634047E-6, barsabas -> 2.5268093E-6, lurking -> 3.7902141E-6, gat -> 2.5268095E-5, goath -> 1.2634047E-6, adadah -> 1.2634047E-6, breaker -> 2.5268093E-6, holding -> 1.1370643E-5, springing -> 6.3170237E-6, gederite -> 1.2634047E-6, households -> 8.843833E-6, disallowed -> 6.3170237E-6, antothite -> 2.5268093E-6, covert -> 1.1370643E-5, sit -> 1.4276474E-4, shoelatchet -> 1.2634047E-6, height -> 7.833109E-5, minding -> 1.2634047E-6, ashterathite -> 1.2634047E-6, separate -> 4.042895E-5, espoused -> 6.3170237E-6, heel -> 7.5804282E-6, rechah -> 1.2634047E-6, self -> 7.5804282E-6, dismaying -> 1.2634047E-6, true -> 1.0233578E-4, mites -> 2.5268093E-6, likeness -> 4.2955762E-5, disallow -> 1.2634047E-6, shewing -> 1.895107E-5, deadness -> 1.2634047E-6, meanest -> 5.0536187E-6, confidences -> 1.2634047E-6, vapour -> 5.0536187E-6, zoar -> 1.2634047E-5, steep -> 6.3170237E-6, revengers -> 1.2634047E-6, jezreelite -> 1.0107237E-5, formed -> 4.1692358E-5, dress -> 1.1370643E-5, balak -> 5.4326403E-5, baalis -> 1.2634047E-6, waiteth -> 1.3897452E-5, nemuel -> 3.7902141E-6, buzi -> 1.2634047E-6, similitude -> 1.3897452E-5, hazazontamar -> 1.2634047E-6, neighings -> 1.2634047E-6, displease -> 6.3170237E-6, saltpits -> 1.2634047E-6, levite -> 3.537533E-5, coniah -> 3.7902141E-6, bottle -> 1.895107E-5, gushed -> 6.3170237E-6, chimham -> 5.0536187E-6, spitefully -> 2.5268093E-6, revenging -> 1.2634047E-6, trouble -> 1.3897452E-4, despise -> 4.6745976E-5, endued -> 6.3170237E-6, stand -> 3.461729E-4, hooks -> 2.2741286E-5, cracknels -> 1.2634047E-6, rehoboam -> 6.3170235E-5, dyed -> 8.843833E-6, puffeth -> 3.7902141E-6, adultery -> 5.053619E-5, pitcher -> 1.51608565E-5, driedst -> 1.2634047E-6, incontinency -> 1.2634047E-6, subscribed -> 2.5268093E-6, shine -> 4.042895E-5, bowl -> 2.1477881E-5, furnish -> 5.0536187E-6, distribution -> 2.5268093E-6, forsake -> 7.327747E-5, sacks -> 1.2634047E-5, tehinnah -> 1.2634047E-6, eateth -> 7.075066E-5, imla -> 2.5268093E-6, whisperings -> 1.2634047E-6, stalls -> 5.0536187E-6, burial -> 7.5804282E-6, tossed -> 8.843833E-6, dumb -> 3.6638736E-5, wrapped -> 1.7687666E-5, foameth -> 2.5268093E-6, scorpion -> 2.5268093E-6, disciples -> 3.0827074E-4, bid -> 2.1477881E-5, zibia -> 1.2634047E-6, zidonians -> 1.2634047E-5, asswage -> 1.2634047E-6, upholden -> 2.5268093E-6, affirmed -> 3.7902141E-6, earnest -> 1.0107237E-5, debtors -> 6.3170237E-6, cyrus -> 2.9058308E-5, disclose -> 1.2634047E-6, casement -> 1.2634047E-6, weighed -> 2.1477881E-5, lewd -> 3.7902141E-6, sunk -> 8.843833E-6, jeribai -> 1.2634047E-6, descending -> 1.0107237E-5, expectation -> 1.7687666E-5, zabdiel -> 2.5268093E-6, martha -> 1.6424261E-5, signed -> 5.0536187E-6, fringe -> 2.5268093E-6, impoverish -> 1.2634047E-6, sift -> 3.7902141E-6, sprinkling -> 5.0536187E-6, ahi -> 2.5268093E-6, stuck -> 3.7902141E-6, utterance -> 6.3170237E-6, searchest -> 2.5268093E-6, wearied -> 1.7687666E-5, tumbled -> 1.2634047E-6, spearmen -> 2.5268093E-6, nature -> 1.51608565E-5, distraction -> 1.2634047E-6, beyond -> 6.822385E-5, clouts -> 2.5268093E-6, ithmah -> 1.2634047E-6, grapegatherers -> 2.5268093E-6, maketh -> 1.5918899E-4, exceeding -> 7.327747E-5, wagons -> 1.1370643E-5, thara -> 1.2634047E-6, guide -> 2.9058308E-5, gloominess -> 2.5268093E-6, constraint -> 1.2634047E-6, jahdai -> 1.2634047E-6, policy -> 1.2634047E-6, concourse -> 2.5268093E-6, scab -> 8.843833E-6, planting -> 2.5268093E-6, joash -> 6.190683E-5, treasured -> 1.2634047E-6, benoni -> 1.2634047E-6, statute -> 4.4219167E-5, fatling -> 1.2634047E-6, nazarene -> 1.2634047E-6, fashioned -> 8.843833E-6, ashdodites -> 1.2634047E-6, redeeming -> 3.7902141E-6, fretting -> 3.7902141E-6, kithlish -> 1.2634047E-6, pharaohhophra -> 1.2634047E-6, inhabiteth -> 2.5268093E-6, mercies -> 5.5589808E-5, undressed -> 2.5268093E-6, playedst -> 2.5268093E-6, grass -> 7.833109E-5, scriptures -> 2.65315E-5, middle -> 2.2741286E-5, jabeshgilead -> 1.51608565E-5, sith -> 1.2634047E-6, ebal -> 1.0107237E-5, clipped -> 1.2634047E-6, parnach -> 1.2634047E-6, valiant -> 4.042895E-5, exile -> 2.5268093E-6, plotteth -> 1.2634047E-6, smiths -> 5.0536187E-6, jabneel -> 2.5268093E-6, tumults -> 3.7902141E-6, coppersmith -> 1.2634047E-6, eri -> 2.5268093E-6, liar -> 1.6424261E-5, haggai -> 1.3897452E-5, jiphtah -> 1.2634047E-6, wood -> 1.7687667E-4, sibmah -> 5.0536187E-6, huppah -> 1.2634047E-6, bondmaids -> 2.5268093E-6, council -> 2.9058308E-5, fourfold -> 2.5268093E-6, baanah -> 1.2634047E-5, abednego -> 1.895107E-5, putiel -> 1.2634047E-6, disquietness -> 1.2634047E-6, sin -> 5.647419E-4, happy -> 3.537533E-5, minni -> 1.2634047E-6, coffin -> 1.2634047E-6, blessing -> 8.464812E-5, seweth -> 1.2634047E-6, abishua -> 6.3170237E-6, sucklings -> 5.0536187E-6, rechab -> 1.6424261E-5, maids -> 1.1370643E-5, lengthening -> 1.2634047E-6, chislon -> 1.2634047E-6, giddel -> 5.0536187E-6, paved -> 2.5268093E-6, jahazah -> 2.5268093E-6, jerioth -> 1.2634047E-6, toss -> 2.5268093E-6, err -> 3.0321713E-5, ishijah -> 1.2634047E-6, moreshethgath -> 1.2634047E-6, confirming -> 3.7902141E-6, harping -> 1.2634047E-6, shouting -> 1.895107E-5, sorcerers -> 7.5804282E-6, hul -> 2.5268093E-6, meshezabeel -> 3.7902141E-6, towers -> 2.1477881E-5, betrayers -> 1.2634047E-6, rendereth -> 1.2634047E-6, heifer -> 2.5268095E-5, hareph -> 1.2634047E-6, receive -> 2.2235923E-4, network -> 8.843833E-6, supplanted -> 1.2634047E-6, baalim -> 2.2741286E-5, ninety -> 3.0321713E-5, melicu -> 1.2634047E-6, single -> 2.5268093E-6, concealed -> 2.5268093E-6, tasted -> 1.0107237E-5, complainers -> 1.2634047E-6, graveclothes -> 1.2634047E-6, distributed -> 7.5804282E-6, drowsiness -> 1.2634047E-6, grievousness -> 2.5268093E-6, strengthened -> 4.9272785E-5, seorim -> 1.2634047E-6, supple -> 1.2634047E-6, mills -> 1.2634047E-6, touched -> 6.190683E-5, unmoveable -> 2.5268093E-6, dispersed -> 1.2634047E-5, kedeshnaphtali -> 1.2634047E-6, hagarenes -> 1.2634047E-6, stem -> 1.2634047E-6, virginity -> 1.1370643E-5, shower -> 5.0536187E-6, conceal -> 7.5804282E-6, intermeddle -> 1.2634047E-6, jesui -> 1.2634047E-6, aliah -> 1.2634047E-6, emptiness -> 1.2634047E-6, slothfulness -> 2.5268093E-6, drinketh -> 2.1477881E-5, perplexity -> 3.7902141E-6, fearest -> 3.7902141E-6, mast -> 2.5268093E-6, avim -> 1.2634047E-6, ittai -> 1.0107237E-5, author -> 3.7902141E-6, maoch -> 1.2634047E-6, cottages -> 1.2634047E-6, inheritance -> 3.0195373E-4, methuselah -> 7.5804282E-6, lade -> 3.7902141E-6, cinnamon -> 5.0536187E-6, toll -> 3.7902141E-6, red -> 6.696045E-5, crowns -> 1.1370643E-5, cared -> 3.7902141E-6, harbona -> 1.2634047E-6, doings -> 6.443364E-5, faith -> 3.1206096E-4, ard -> 3.7902141E-6, shisha -> 1.2634047E-6, andronicus -> 1.2634047E-6, captain -> 1.7561326E-4, neglect -> 5.0536187E-6, ahiah -> 5.0536187E-6, revile -> 2.5268093E-6, heleb -> 1.2634047E-6, hemlock -> 2.5268093E-6, minstrel -> 2.5268093E-6, arba -> 3.7902141E-6, felloes -> 1.2634047E-6, joined -> 5.4326403E-5, sentence -> 1.3897452E-5, cousin -> 1.2634047E-6, jeoparded -> 1.2634047E-6, sealing -> 1.2634047E-6, awaketh -> 3.7902141E-6, threaten -> 1.2634047E-6, ignorantly -> 5.0536187E-6, shot -> 2.1477881E-5, lasea -> 1.2634047E-6, remission -> 1.2634047E-5, despair -> 3.7902141E-6, peaceable -> 1.0107237E-5, taunting -> 1.2634047E-6, falsifying -> 1.2634047E-6, conceive -> 1.7687666E-5, osee -> 1.2634047E-6, zorathites -> 1.2634047E-6, skirt -> 1.51608565E-5, gashmu -> 1.2634047E-6, inventors -> 1.2634047E-6, proceeding -> 1.2634047E-6, weepest -> 3.7902141E-6, hardened -> 4.1692358E-5, amasa -> 2.0214475E-5, hallow -> 1.895107E-5, arvad -> 2.5268093E-6, deliver -> 3.739678E-4, changing -> 1.2634047E-6, hearkened -> 1.0233578E-4, perez -> 3.7902141E-6, machi -> 1.2634047E-6, stayeth -> 1.2634047E-6, og -> 2.7794904E-5, sluggard -> 7.5804282E-6, tabret -> 5.0536187E-6, bitterness -> 2.7794904E-5, unspotted -> 1.2634047E-6, read -> 8.843833E-5, tarrying -> 2.5268093E-6, subjected -> 1.2634047E-6, dinner -> 5.0536187E-6, nethaniah -> 2.5268095E-5, opportunity -> 6.3170237E-6, gendereth -> 2.5268093E-6, chapiters -> 2.0214475E-5, avoiding -> 2.5268093E-6, proud -> 6.0643426E-5, wanton -> 3.7902141E-6, among -> 0.0011572788, kneadingtroughs -> 2.5268093E-6, wages -> 2.2741286E-5, standing -> 6.948726E-5, quickeneth -> 6.3170237E-6, stall -> 3.7902141E-6, sleepest -> 5.0536187E-6, request -> 2.400469E-5, commending -> 1.2634047E-6, amaziah -> 5.053619E-5, kid -> 5.4326403E-5, unfruitful -> 7.5804282E-6, strait -> 1.2634047E-5, builded -> 6.3170235E-5, concealeth -> 2.5268093E-6, stinking -> 1.2634047E-6, feeding -> 1.0107237E-5, wine -> 2.918465E-4, shimi -> 1.2634047E-6, presence -> 1.4655494E-4, ethnan -> 1.2634047E-6, tempting -> 8.843833E-6, sevens -> 2.5268093E-6, gathereth -> 2.1477881E-5, murders -> 5.0536187E-6, counsel -> 1.8066687E-4, accomplishment -> 1.2634047E-6, lasting -> 1.2634047E-6, bakers -> 3.7902141E-6, declaration -> 5.0536187E-6, stoicks -> 1.2634047E-6, micaiah -> 2.2741286E-5, waking -> 1.2634047E-6, carrieth -> 3.7902141E-6, manoah -> 2.2741286E-5, astonished -> 4.2955762E-5, fainteth -> 5.0536187E-6, ribband -> 1.2634047E-6, forefront -> 1.2634047E-5, tenons -> 7.5804282E-6, hazelelponi -> 1.2634047E-6, barzillai -> 1.51608565E-5, timon -> 1.2634047E-6, besieged -> 2.9058308E-5, habakkuk -> 2.5268093E-6, bariah -> 1.2634047E-6, sop -> 5.0536187E-6, remaining -> 1.7687666E-5, obal -> 1.2634047E-6, drawers -> 3.7902141E-6, antichrist -> 5.0536187E-6, lewdness -> 2.1477881E-5, coals -> 3.2848522E-5, faileth -> 2.400469E-5, surely -> 3.5880695E-4, profiting -> 1.2634047E-6, shamelessly -> 1.2634047E-6, holpen -> 6.3170237E-6, truth -> 2.9942693E-4, jehovahshalom -> 1.2634047E-6, saul -> 5.3063E-4, became -> 1.339209E-4, beget -> 1.2634047E-5, remeth -> 1.2634047E-6, solomon -> 3.8407504E-4, nests -> 5.0536187E-6, tamar -> 3.0321713E-5, authority -> 4.6745976E-5, bethsaida -> 8.843833E-6, transformed -> 3.7902141E-6, mistress -> 1.1370643E-5, desired -> 6.3170235E-5, master -> 2.2867626E-4, deadly -> 8.843833E-6, traded -> 6.3170237E-6, shiza -> 1.2634047E-6, bond -> 2.400469E-5, couches -> 2.5268093E-6, baalathbeer -> 1.2634047E-6, couple -> 1.2634047E-5, warming -> 1.2634047E-6, devoureth -> 1.2634047E-5, bark -> 1.2634047E-6, italian -> 1.2634047E-6, acknowledgement -> 1.2634047E-6, charity -> 3.537533E-5, abide -> 1.0359919E-4, pipes -> 7.5804282E-6, appointeth -> 1.2634047E-6, obadiah -> 2.5268095E-5, dophkah -> 2.5268093E-6, pertaineth -> 8.843833E-6, aran -> 2.5268093E-6, tertullus -> 2.5268093E-6, gomorrha -> 6.3170237E-6, appaim -> 2.5268093E-6, perceivest -> 2.5268093E-6, rushes -> 1.2634047E-6, expounded -> 7.5804282E-6, slackness -> 1.2634047E-6, coucheth -> 1.2634047E-6, provoking -> 7.5804282E-6, western -> 1.2634047E-6, caterpiller -> 6.3170237E-6, pound -> 1.2634047E-5, shalim -> 1.2634047E-6, ham -> 2.1477881E-5, plant -> 5.3063E-5, inward -> 3.1585118E-5, standards -> 3.7902141E-6, worker -> 1.2634047E-6, snow -> 3.0321713E-5, accounted -> 1.51608565E-5, sheepmaster -> 1.2634047E-6, divers -> 4.6745976E-5, altogether -> 3.6638736E-5, shehariah -> 1.2634047E-6, potsherd -> 5.0536187E-6, saddle -> 5.0536187E-6, concern -> 2.5268093E-6, assented -> 1.2634047E-6, finding -> 1.2634047E-5, zareathites -> 1.2634047E-6, raised -> 1.073894E-4, ostriches -> 1.2634047E-6, hazael -> 2.9058308E-5, rigour -> 6.3170237E-6, plainness -> 1.2634047E-6, agree -> 8.843833E-6, howl -> 3.6638736E-5, shimea -> 5.0536187E-6, pursued -> 4.800938E-5, whereinto -> 3.7902141E-6, bruises -> 1.2634047E-6, complained -> 2.5268093E-6, avites -> 2.5268093E-6, wonders -> 6.948726E-5, outlived -> 1.2634047E-6, appertain -> 2.5268093E-6, ewes -> 3.7902141E-6, fitted -> 3.7902141E-6, bukki -> 6.3170237E-6, patterns -> 1.2634047E-6, muttered -> 1.2634047E-6, hesed -> 1.2634047E-6, abounded -> 6.3170237E-6, pastures -> 1.3897452E-5, jaala -> 1.2634047E-6, cane -> 2.5268093E-6, stephen -> 8.843833E-6, ingathering -> 2.5268093E-6, discomfiture -> 1.2634047E-6, household -> 7.7067685E-5, unknown -> 1.1370643E-5, ruined -> 3.7902141E-6, pleiades -> 2.5268093E-6, destroying -> 1.7687666E-5, forged -> 1.2634047E-6, hoham -> 1.2634047E-6, jamlech -> 1.2634047E-6, uzzensherah -> 1.2634047E-6, tower -> 6.0643426E-5, claudia -> 1.2634047E-6, remembrance -> 6.443364E-5, subduedst -> 1.2634047E-6, calvary -> 1.2634047E-6, ashnah -> 2.5268093E-6, comings -> 1.2634047E-6, alemeth -> 3.7902141E-6, eyesight -> 1.2634047E-6, moloch -> 2.5268093E-6, girdles -> 7.5804282E-6, fords -> 3.7902141E-6, stumbleth -> 5.0536187E-6, shephuphan -> 1.2634047E-6, choose -> 7.4540876E-5, wagon -> 1.2634047E-6, feigned -> 3.7902141E-6, cinneroth -> 1.2634047E-6, seeds -> 6.3170237E-6, ophni -> 1.2634047E-6, roll -> 3.537533E-5, ishmaelites -> 2.5268093E-6, ariseth -> 1.3897452E-5, measured -> 5.8116617E-5, azareel -> 6.3170237E-6, padanaram -> 1.2634047E-5, dwellingplaces -> 6.3170237E-6, thirty -> 2.1983242E-4, strip -> 8.843833E-6, malicious -> 1.2634047E-6, reddish -> 7.5804282E-6, avenging -> 3.7902141E-6, sheminith -> 1.2634047E-6, terribleness -> 3.7902141E-6, shrines -> 1.2634047E-6, geshurites -> 6.3170237E-6, joshah -> 1.2634047E-6, stood -> 4.282942E-4, hope -> 1.6424262E-4, countenance -> 6.696045E-5, lime -> 2.5268093E-6, safety -> 2.400469E-5, cleanness -> 6.3170237E-6, ascending -> 6.3170237E-6, painful -> 1.2634047E-6, leaders -> 3.7902141E-6, caphtorim -> 1.2634047E-6, aware -> 6.3170237E-6, drink -> 4.6619633E-4, rogelim -> 2.5268093E-6, devoted -> 8.843833E-6, deacons -> 3.7902141E-6, environ -> 1.2634047E-6, witty -> 1.2634047E-6, cupbearer -> 1.2634047E-6, mareshah -> 1.0107237E-5, backward -> 2.2741286E-5, appertained -> 3.7902141E-6, persuadeth -> 2.5268093E-6, convocation -> 2.0214475E-5, endless -> 2.5268093E-6, hezion -> 1.2634047E-6, snowy -> 1.2634047E-6, times -> 1.8319368E-4, despitefully -> 3.7902141E-6, stalled -> 1.2634047E-6, zamzummims -> 1.2634047E-6, sores -> 5.0536187E-6, gentleness -> 5.0536187E-6, hamathite -> 2.5268093E-6, dragon -> 2.400469E-5, pins -> 1.3897452E-5, kirjathaim -> 3.7902141E-6, wrathful -> 2.5268093E-6, affording -> 1.2634047E-6, fruits -> 5.3063E-5, leopard -> 7.5804282E-6, glass -> 1.1370643E-5, spots -> 7.5804282E-6, confused -> 2.5268093E-6, tirathites -> 1.2634047E-6, troublous -> 1.2634047E-6, rumour -> 1.2634047E-5, travelled -> 1.2634047E-6, damascus -> 7.580428E-5, helek -> 2.5268093E-6, moistened -> 1.2634047E-6, sworn -> 6.0643426E-5, caul -> 1.51608565E-5, touching -> 3.790214E-5, methusael -> 2.5268093E-6, works -> 2.9942693E-4, feast -> 1.5539878E-4, untempered -> 6.3170237E-6, suck -> 2.400469E-5, barachel -> 2.5268093E-6, hundredfold -> 8.843833E-6, hundreds -> 3.537533E-5, eran -> 1.2634047E-6, humbledst -> 1.2634047E-6, repay -> 1.0107237E-5, riotous -> 3.7902141E-6, caphtorims -> 1.2634047E-6, wearieth -> 2.5268093E-6, mushites -> 2.5268093E-6, lands -> 5.8116617E-5, achan -> 7.5804282E-6, fret -> 8.843833E-6, arm -> 8.464812E-5, possessors -> 2.5268093E-6, ones -> 9.7282165E-5, furiously -> 2.5268093E-6, cursed -> 9.096514E-5, refiner -> 2.5268093E-6, gadite -> 1.2634047E-6, dagon -> 1.6424261E-5, withhold -> 1.1370643E-5, sinners -> 6.0643426E-5, bolster -> 7.5804282E-6, lovers -> 2.9058308E-5, diligence -> 1.2634047E-5, swimmest -> 1.2634047E-6, force -> 2.400469E-5, hatred -> 2.2741286E-5, hezron -> 2.2741286E-5, quick -> 1.2634047E-5, enviest -> 1.2634047E-6, heated -> 2.5268093E-6, dwellest -> 2.400469E-5, shape -> 2.5268093E-6, turning -> 2.2741286E-5, too -> 6.443364E-5, shelomith -> 1.1370643E-5, indebted -> 1.2634047E-6, deacon -> 2.5268093E-6, poll -> 3.7902141E-6, fir -> 2.65315E-5, harder -> 3.7902141E-6, sounded -> 2.2741286E-5, emulations -> 1.2634047E-6, counting -> 1.2634047E-6, companied -> 1.2634047E-6, concord -> 1.2634047E-6, earnestly -> 2.0214475E-5, zalmon -> 2.5268093E-6, executeth -> 7.5804282E-6, white -> 9.4755356E-5, moadiah -> 1.2634047E-6, consulteth -> 1.2634047E-6, hiding -> 7.5804282E-6, custody -> 6.3170237E-6, mystery -> 2.7794904E-5, lifting -> 1.1370643E-5, leprosy -> 4.9272785E-5, wheels -> 4.1692358E-5, nahath -> 6.3170237E-6, fashions -> 1.2634047E-6, ammon -> 1.1496983E-4, cherish -> 1.2634047E-6, indeed -> 8.843833E-5, layest -> 2.5268093E-6, eshkalonites -> 1.2634047E-6, ichabod -> 2.5268093E-6, jedidah -> 1.2634047E-6, shammah -> 1.0107237E-5, implacable -> 1.2634047E-6, imprisonment -> 2.5268093E-6, saviour -> 4.6745976E-5, patriarch -> 2.5268093E-6, time -> 7.8710116E-4, incensed -> 2.5268093E-6, fade -> 7.5804282E-6, vessel -> 5.8116617E-5, steps -> 4.800938E-5, moderation -> 1.2634047E-6, hart -> 1.1370643E-5, zephi -> 1.2634047E-6, door -> 2.400469E-4, dispensation -> 5.0536187E-6, backsliding -> 1.51608565E-5, manasseh -> 1.8572049E-4, verily -> 1.7687667E-4, diverse -> 1.0107237E-5, arimathaea -> 5.0536187E-6, providing -> 1.2634047E-6, heshmon -> 1.2634047E-6, zereda -> 1.2634047E-6, jealousies -> 1.2634047E-6, manger -> 3.7902141E-6, haggith -> 6.3170237E-6, fowl -> 3.9165545E-5, visions -> 3.0321713E-5, carest -> 3.7902141E-6, whisperers -> 1.2634047E-6, particular -> 2.5268093E-6, hip -> 1.2634047E-6, carefulness -> 5.0536187E-6, disposed -> 5.0536187E-6, spice -> 6.3170237E-6, perjured -> 1.2634047E-6, promises -> 1.6424261E-5, mahlites -> 2.5268093E-6, rememberest -> 2.5268093E-6, goliath -> 7.5804282E-6, abdi -> 3.7902141E-6, coverest -> 2.5268093E-6, prophesyings -> 1.2634047E-6, yoked -> 1.2634047E-6, darkly -> 1.2634047E-6, daughter -> 4.1313336E-4, breeding -> 1.2634047E-6, irijah -> 2.5268093E-6, left -> 4.3966484E-4, wert -> 7.5804282E-6, fasten -> 6.3170237E-6, hadattah -> 1.2634047E-6, parosh -> 6.3170237E-6, threescore -> 1.1749664E-4, hashbadana -> 1.2634047E-6, forbearing -> 6.3170237E-6, helpers -> 8.843833E-6, incorruptible -> 5.0536187E-6, tahan -> 2.5268093E-6, slightly -> 2.5268093E-6, palestine -> 1.2634047E-6, saluted -> 1.1370643E-5, snares -> 1.895107E-5, sticketh -> 1.2634047E-6, deceitfulness -> 3.7902141E-6, tendeth -> 6.3170237E-6, lystra -> 7.5804282E-6, daytime -> 3.7902141E-6, mishma -> 5.0536187E-6, marcus -> 3.7902141E-6, kareah -> 1.6424261E-5, realm -> 8.843833E-6, miry -> 5.0536187E-6, dismissed -> 3.7902141E-6, baasha -> 3.537533E-5, slumber -> 1.2634047E-5, certainly -> 3.9165545E-5, leaved -> 1.2634047E-6, creation -> 7.5804282E-6, curious -> 1.2634047E-5, heights -> 2.5268093E-6, had -> 0.002559658, paps -> 5.0536187E-6, warriors -> 2.5268093E-6, coverings -> 2.5268093E-6, dung -> 3.537533E-5, joktan -> 7.5804282E-6, abiding -> 1.1370643E-5, treachery -> 1.2634047E-6, defaming -> 1.2634047E-6, discourage -> 1.2634047E-6, chun -> 1.2634047E-6, molid -> 1.2634047E-6, lysias -> 3.7902141E-6, crete -> 6.3170237E-6, broughtest -> 1.6424261E-5, calm -> 7.5804282E-6, beds -> 1.2634047E-5, husbands -> 2.400469E-5, diet -> 2.5268093E-6, forsaketh -> 7.5804282E-6, nearer -> 2.5268093E-6, executed -> 2.5268095E-5, bewail -> 7.5804282E-6, fail -> 8.08579E-5, direction -> 1.2634047E-6, taphath -> 1.2634047E-6, plunge -> 1.2634047E-6, gabbai -> 1.2634047E-6, masterbuilder -> 1.2634047E-6, moist -> 1.2634047E-6, loins -> 7.9594494E-5, increaseth -> 1.895107E-5, sibbecai -> 2.5268093E-6, assembling -> 2.5268093E-6, watchmen -> 1.51608565E-5, sarai -> 2.1477881E-5, othni -> 1.2634047E-6, shimon -> 1.2634047E-6, unni -> 3.7902141E-6, ain -> 6.3170237E-6, comely -> 2.0214475E-5, gallant -> 1.2634047E-6, condemneth -> 5.0536187E-6, wideness -> 1.2634047E-6, fatfleshed -> 2.5268093E-6, quarters -> 1.1370643E-5, ungodliness -> 5.0536187E-6, tongs -> 7.5804282E-6, forgiven -> 5.3063E-5, fins -> 6.3170237E-6, maul -> 1.2634047E-6, onions -> 1.2634047E-6, bushes -> 3.7902141E-6, zorah -> 1.0107237E-5, hasteth -> 1.1370643E-5, churlish -> 1.2634047E-6, unrebukable -> 1.2634047E-6, doorkeepers -> 2.5268093E-6, agag -> 1.0107237E-5, golan -> 5.0536187E-6, gibbethon -> 7.5804282E-6, baptist -> 1.895107E-5, countenances -> 2.5268093E-6, laish -> 8.843833E-6, wakeneth -> 2.5268093E-6, cunning -> 4.1692358E-5, happier -> 1.2634047E-6, zaphnathpaaneah -> 1.2634047E-6, injurious -> 1.2634047E-6, dark -> 5.4326403E-5, fourth -> 1.06126E-4, common -> 2.65315E-5, pouredst -> 1.2634047E-6, compassing -> 3.7902141E-6, abiathar -> 3.9165545E-5, leanfleshed -> 3.7902141E-6, employed -> 2.5268093E-6, ate -> 3.7902141E-6, consultation -> 1.2634047E-6, conspirators -> 1.2634047E-6, ferry -> 1.2634047E-6, witnesses -> 6.190683E-5, retired -> 2.5268093E-6, patiently -> 7.5804282E-6, vengeance -> 5.6853212E-5, atonements -> 1.2634047E-6, scorpions -> 1.1370643E-5, silver -> 4.0428952E-4, dart -> 3.7902141E-6, beheaded -> 8.843833E-6, established -> 9.349195E-5, jemima -> 1.2634047E-6, bindeth -> 1.1370643E-5, magistrates -> 1.0107237E-5, fornicators -> 3.7902141E-6, wast -> 8.3384715E-5, settings -> 1.2634047E-6, partners -> 2.5268093E-6, olive -> 4.800938E-5, scourgeth -> 1.2634047E-6, inordinate -> 2.5268093E-6, seed -> 3.5375333E-4, mess -> 2.5268093E-6, moved -> 9.4755356E-5, leddest -> 6.3170237E-6, philippi -> 7.5804282E-6, ordinary -> 1.2634047E-6, exchange -> 7.5804282E-6, tirshatha -> 6.3170237E-6, forts -> 7.5804282E-6, callest -> 3.7902141E-6, were -> 0.003502158, sever -> 5.0536187E-6, eleasah -> 5.0536187E-6, pildash -> 1.2634047E-6, lodgeth -> 1.2634047E-6, off -> 6.405462E-4, idumea -> 5.0536187E-6, reapeth -> 5.0536187E-6, clusters -> 8.843833E-6, breathing -> 2.5268093E-6, juttah -> 2.5268093E-6, snared -> 1.1370643E-5, lovingkindness -> 3.2848522E-5, fulfilled -> 1.0359919E-4, tire -> 1.2634047E-6, greeks -> 1.7687666E-5, remembrances -> 1.2634047E-6, eshtemoh -> 1.2634047E-6, topaz -> 6.3170237E-6, gleaned -> 7.5804282E-6, supplications -> 2.65315E-5, rehearsed -> 5.0536187E-6, places -> 2.7163202E-4, cosam -> 1.2634047E-6, liking -> 2.5268093E-6, step -> 2.5268093E-6, charmed -> 1.2634047E-6, higgaion -> 1.2634047E-6, taches -> 1.2634047E-5, slings -> 1.2634047E-6, garrison -> 1.6424261E-5, witness -> 1.7055964E-4, readeth -> 5.0536187E-6, his -> 0.010704828, gezrites -> 1.2634047E-6, pekod -> 2.5268093E-6, lubim -> 1.2634047E-6, singer -> 2.5268093E-6, canaanitish -> 2.5268093E-6, oiled -> 2.5268093E-6, loving -> 3.7902141E-6, dearth -> 1.0107237E-5, mammon -> 5.0536187E-6, diotrephes -> 1.2634047E-6, overlay -> 1.6424261E-5, require -> 3.6638736E-5, accusing -> 1.2634047E-6, whores -> 2.5268093E-6, sense -> 1.2634047E-6, amad -> 1.2634047E-6, answers -> 3.7902141E-6, net -> 4.9272785E-5, furthermore -> 1.7687666E-5, damned -> 3.7902141E-6, betah -> 1.2634047E-6, encountered -> 1.2634047E-6, soles -> 8.843833E-6, steppeth -> 1.2634047E-6, cord -> 7.5804282E-6, glasses -> 1.2634047E-6, coast -> 7.833109E-5, kerchiefs -> 2.5268093E-6, writings -> 1.2634047E-6, aloth -> 1.2634047E-6, motions -> 1.2634047E-6, slowly -> 1.2634047E-6, messes -> 1.2634047E-6, soothsayers -> 7.5804282E-6, offscouring -> 2.5268093E-6, limited -> 1.2634047E-6, lahmi -> 1.2634047E-6, examined -> 7.5804282E-6, amam -> 1.2634047E-6, timnite -> 1.2634047E-6, desert -> 5.3063E-5, cenchrea -> 2.5268093E-6, thundered -> 5.0536187E-6, jorkoam -> 1.2634047E-6, shamed -> 5.0536187E-6, disease -> 1.895107E-5, paradise -> 3.7902141E-6, befell -> 6.3170237E-6, exceedest -> 1.2634047E-6, sirs -> 8.843833E-6, converting -> 1.2634047E-6, reconciling -> 3.7902141E-6, malachi -> 1.2634047E-6, joshua -> 2.728954E-4, answereth -> 1.6424261E-5, beer -> 2.5268093E-6, memphis -> 1.2634047E-6, godly -> 1.895107E-5, ishmael -> 6.0643426E-5, stranger -> 1.6550602E-4, wondered -> 1.895107E-5, repenteth -> 6.3170237E-6, freedom -> 2.5268093E-6, debts -> 2.5268093E-6, gidom -> 1.2634047E-6, eshcol -> 7.5804282E-6, dance -> 1.0107237E-5, sanctified -> 7.833109E-5, revealed -> 4.800938E-5, heels -> 5.0536187E-6, rumbling -> 1.2634047E-6, uprising -> 1.2634047E-6, ornan -> 1.51608565E-5, purpose -> 4.548257E-5, cleft -> 2.5268093E-6, wisely -> 1.7687666E-5, havens -> 1.2634047E-6, nethermost -> 1.2634047E-6, unstopped -> 1.2634047E-6, geder -> 1.2634047E-6, converted -> 1.1370643E-5, lamps -> 4.6745976E-5, musical -> 3.7902141E-6, unworthy -> 2.5268093E-6, desiring -> 1.51608565E-5, heap -> 4.800938E-5, bera -> 1.2634047E-6, moabite -> 3.7902141E-6, rereward -> 7.5804282E-6, calneh -> 2.5268093E-6, imprisonments -> 1.2634047E-6, sharpen -> 2.5268093E-6, speaking -> 7.833109E-5, wet -> 7.5804282E-6, purtenance -> 1.2634047E-6, marriages -> 3.7902141E-6, therein -> 2.893197E-4, zimran -> 2.5268093E-6, seated -> 1.2634047E-6, apiece -> 1.0107237E-5, hill -> 9.7282165E-5, astaroth -> 1.2634047E-6, sychar -> 1.2634047E-6, your -> 0.0022551774, fastening -> 1.2634047E-6, slaves -> 1.2634047E-6, swaddlingband -> 1.2634047E-6, palmerworm -> 3.7902141E-6, latchet -> 5.0536187E-6, owed -> 3.7902141E-6, rests -> 1.2634047E-6, upper -> 3.1585118E-5, reumah -> 1.2634047E-6, nathanmelech -> 1.2634047E-6, blackness -> 7.5804282E-6, reveal -> 8.843833E-6, arches -> 1.895107E-5, followed -> 1.364477E-4, accepteth -> 5.0536187E-6, zetham -> 2.5268093E-6, case -> 1.0107237E-5, shaved -> 5.0536187E-6, beans -> 2.5268093E-6, trance -> 6.3170237E-6, noised -> 5.0536187E-6, goodliest -> 2.5268093E-6, nation -> 1.8319368E-4, shock -> 1.2634047E-6, disannulled -> 1.2634047E-6, aven -> 3.7902141E-6, entereth -> 2.5268095E-5, promised -> 6.0643426E-5, presents -> 1.2634047E-5, peacemakers -> 1.2634047E-6, speed -> 1.3897452E-5, maadai -> 1.2634047E-6, jaalah -> 1.2634047E-6, feller -> 1.2634047E-6, bottles -> 2.400469E-5, fryingpan -> 2.5268093E-6, jehohanan -> 7.5804282E-6, bushy -> 1.2634047E-6, diklah -> 2.5268093E-6, vain -> 1.4150132E-4, azmaveth -> 1.0107237E-5, eliada -> 3.7902141E-6, obey -> 8.717493E-5, betrothed -> 1.1370643E-5, nebai -> 1.2634047E-6, unfaithfully -> 1.2634047E-6, marishes -> 1.2634047E-6, idolatrous -> 1.2634047E-6, makers -> 1.2634047E-6, zeri -> 1.2634047E-6, asher -> 5.4326403E-5, harvest -> 7.7067685E-5, eyebrows -> 1.2634047E-6, rebuketh -> 5.0536187E-6, partition -> 2.5268093E-6, grasshopper -> 3.7902141E-6, forgot -> 1.2634047E-6, sparkled -> 1.2634047E-6, delicately -> 5.0536187E-6, harorite -> 1.2634047E-6, confection -> 1.2634047E-6, virtuous -> 3.7902141E-6, sceptre -> 1.895107E-5, garnish -> 1.2634047E-6, pekahiah -> 3.7902141E-6, piece -> 5.4326403E-5, furious -> 7.5804282E-6, jewess -> 2.5268093E-6, beset -> 7.5804282E-6, crib -> 3.7902141E-6, something -> 1.0107237E-5, alexandria -> 3.7902141E-6, surname -> 1.0107237E-5, sheepskins -> 1.2634047E-6, separation -> 3.2848522E-5, fulness -> 3.1585118E-5, wrap -> 2.5268093E-6, affrighted -> 1.1370643E-5, timbrels -> 6.3170237E-6, budded -> 6.3170237E-6, reach -> 1.895107E-5, mock -> 1.51608565E-5, sacar -> 2.5268093E-6, hamongog -> 2.5268093E-6, deaths -> 5.0536187E-6, heberites -> 1.2634047E-6, elonbethhanan -> 1.2634047E-6, thunders -> 8.843833E-6, emerald -> 6.3170237E-6, boastest -> 1.2634047E-6, omnipotent -> 1.2634047E-6, purposeth -> 1.2634047E-6, juice -> 1.2634047E-6, lurk -> 2.5268093E-6, laboureth -> 6.3170237E-6, sanctify -> 8.843833E-5, teraphim -> 7.5804282E-6, leaped -> 1.0107237E-5, jehoiada -> 6.5697044E-5, quarrel -> 5.0536187E-6, philosophers -> 1.2634047E-6, justifieth -> 5.0536187E-6, shortly -> 1.895107E-5, dominions -> 2.5268093E-6, dough -> 1.0107237E-5, conquer -> 1.2634047E-6, zered -> 3.7902141E-6, tentmakers -> 1.2634047E-6, find -> 1.9709114E-4, night -> 3.8786526E-4, web -> 5.0536187E-6, specially -> 7.5804282E-6, roboam -> 2.5268093E-6, sleeper -> 1.2634047E-6, urbane -> 1.2634047E-6, hothan -> 1.2634047E-6, nehushtan -> 1.2634047E-6, shapes -> 1.2634047E-6, tiling -> 1.2634047E-6, sheepcote -> 2.5268093E-6, dedicate -> 5.0536187E-6, gershon -> 2.2741286E-5, healeth -> 5.0536187E-6, god -> 0.0056499457, translate -> 1.2634047E-6, cornets -> 2.5268093E-6, compact -> 1.2634047E-6, plantation -> 1.2634047E-6, unlawful -> 2.5268093E-6, beeves -> 8.843833E-6, recall -> 1.2634047E-6, confound -> 6.3170237E-6, wont -> 1.1370643E-5, apostle -> 2.400469E-5, backbone -> 1.2634047E-6, sichem -> 1.2634047E-6, uzziah -> 3.4111927E-5, nekoda -> 5.0536187E-6, phylacteries -> 1.2634047E-6, passedst -> 1.2634047E-6, estimation -> 2.9058308E-5, revilings -> 2.5268093E-6, doest -> 5.6853212E-5, decease -> 2.5268093E-6, firstripe -> 5.0536187E-6, proved -> 1.895107E-5, channel -> 1.2634047E-6, multitude -> 3.0700734E-4, trading -> 1.2634047E-6, fellowservants -> 5.0536187E-6, passeth -> 4.800938E-5, goodliness -> 1.2634047E-6, repairing -> 1.2634047E-6, preacher -> 1.3897452E-5, tetrarch -> 8.843833E-6, breakings -> 1.2634047E-6, roaring -> 2.0214475E-5, howlings -> 1.2634047E-6, triest -> 3.7902141E-6, prospered -> 1.6424261E-5, decently -> 1.2634047E-6, fleshhooks -> 6.3170237E-6, nursed -> 2.5268093E-6, dare -> 6.3170237E-6, extortioners -> 3.7902141E-6, heareth -> 6.5697044E-5, ishbosheth -> 1.51608565E-5, parvaim -> 1.2634047E-6, adulterer -> 3.7902141E-6, tabitha -> 2.5268093E-6, zidkijah -> 1.2634047E-6, breastplates -> 3.7902141E-6, pedigrees -> 1.2634047E-6, afterwards -> 1.6424261E-5, interpreted -> 1.3897452E-5, pison -> 1.2634047E-6, fetcheth -> 1.2634047E-6, multitudes -> 3.0321713E-5, eldad -> 2.5268093E-6, payed -> 2.5268093E-6, zartanah -> 1.2634047E-6, abhorreth -> 6.3170237E-6, rate -> 6.3170237E-6, reap -> 4.042895E-5, accad -> 1.2634047E-6, unless -> 1.0107237E-5, beware -> 3.537533E-5, coupled -> 1.51608565E-5, dial -> 2.5268093E-6, gershonites -> 1.1370643E-5, scripture -> 4.042895E-5, arphad -> 2.5268093E-6, sufficiently -> 2.5268093E-6, ministry -> 2.7794904E-5, eaters -> 1.2634047E-6, dinhabah -> 2.5268093E-6, eliah -> 2.5268093E-6, tarrieth -> 2.5268093E-6, entries -> 1.2634047E-6, peninnah -> 3.7902141E-6, enjoin -> 1.2634047E-6, smelleth -> 1.2634047E-6, mithnite -> 1.2634047E-6, rowed -> 2.5268093E-6, vial -> 1.0107237E-5, quietly -> 2.5268093E-6, selahammahlekoth -> 1.2634047E-6, jehoshuah -> 1.2634047E-6, banquet -> 1.7687666E-5, waterpots -> 2.5268093E-6, boils -> 2.5268093E-6, busybodies -> 2.5268093E-6, raising -> 2.5268093E-6, heritages -> 1.2634047E-6, zephath -> 1.2634047E-6, folds -> 6.3170237E-6, bigthan -> 1.2634047E-6, exalted -> 8.08579E-5, shaking -> 1.0107237E-5, bethanath -> 3.7902141E-6, division -> 7.5804282E-6, disperse -> 1.0107237E-5, coming -> 1.2634047E-4, achsah -> 5.0536187E-6, wavereth -> 1.2634047E-6, necho -> 3.7902141E-6, loosing -> 5.0536187E-6, rattling -> 1.2634047E-6, waterest -> 2.5268093E-6, secondarily -> 1.2634047E-6, cursedst -> 2.5268093E-6, booty -> 3.7902141E-6, chaff -> 1.7687666E-5, prophetess -> 1.0107237E-5, plentiful -> 5.0536187E-6, leap -> 1.1370643E-5, groanings -> 3.7902141E-6, uproar -> 1.0107237E-5, raiment -> 7.201407E-5, amorites -> 9.222855E-5, righteous -> 3.0069033E-4, respect -> 4.2955762E-5, rabmag -> 2.5268093E-6, josias -> 2.5268093E-6, perpetual -> 3.537533E-5, droppeth -> 1.2634047E-6, except -> 9.349195E-5, promotion -> 2.5268093E-6, garnished -> 6.3170237E-6, apparelled -> 2.5268093E-6, michah -> 3.7902141E-6, feedest -> 2.5268093E-6, shoe -> 1.2634047E-5, daubing -> 1.2634047E-6, brakest -> 6.3170237E-6, express -> 1.2634047E-6, hidest -> 7.5804282E-6, paulus -> 1.2634047E-6, criest -> 6.3170237E-6, saph -> 1.2634047E-6, bethjesimoth -> 1.2634047E-6, tributary -> 1.2634047E-6, hazaiah -> 1.2634047E-6, bottoms -> 1.2634047E-6, vintage -> 1.2634047E-5, zared -> 1.2634047E-6, nets -> 1.6424261E-5, ensamples -> 3.7902141E-6, swarm -> 3.7902141E-6, enflaming -> 1.2634047E-6, riphath -> 2.5268093E-6, telassar -> 1.2634047E-6, rejoicing -> 3.537533E-5, learn -> 4.042895E-5, rehearse -> 2.5268093E-6, ijeabarim -> 2.5268093E-6, camel -> 1.51608565E-5, fortify -> 7.5804282E-6, sighed -> 3.7902141E-6, weapon -> 1.0107237E-5, chastisement -> 6.3170237E-6, spreadeth -> 1.7687666E-5, ignorance -> 2.2741286E-5, hypocrisy -> 7.5804282E-6, targets -> 3.7902141E-6, telabib -> 1.2634047E-6, yoke -> 7.4540876E-5, humility -> 8.843833E-6, female -> 3.0321713E-5, engraver -> 3.7902141E-6, sixteen -> 2.9058308E-5, changest -> 1.2634047E-6, pence -> 6.3170237E-6, thrown -> 2.400469E-5, hirest -> 1.2634047E-6, behaviour -> 3.7902141E-6, ben -> 3.7902141E-6, wanted -> 3.7902141E-6, crookbackt -> 1.2634047E-6, shroud -> 1.2634047E-6, cockatrices -> 1.2634047E-6, pains -> 5.0536187E-6, tychicus -> 6.3170237E-6, profitable -> 1.6424261E-5, aiah -> 6.3170237E-6, cubits -> 2.691052E-4, leaping -> 5.0536187E-6, stable -> 2.5268093E-6, breach -> 2.7794904E-5, precepts -> 3.0321713E-5, simplicity -> 6.3170237E-6, therewith -> 4.6745976E-5, shadowing -> 3.7902141E-6, till -> 2.1351539E-4, college -> 2.5268093E-6, commodious -> 1.2634047E-6, kneeling -> 3.7902141E-6, seem -> 2.7794904E-5, anethothite -> 1.2634047E-6, volume -> 2.5268093E-6, talk -> 3.0321713E-5, proceeded -> 1.1370643E-5, remember -> 1.869839E-4, jeuel -> 1.2634047E-6, deer -> 1.2634047E-6, baalperazim -> 5.0536187E-6, thank -> 3.4111927E-5, offender -> 2.5268093E-6, mehuman -> 1.2634047E-6, stumblingblocks -> 1.2634047E-6, clefts -> 6.3170237E-6, slang -> 1.2634047E-6, guilt -> 2.5268093E-6, governor -> 7.580428E-5, direct -> 1.2634047E-5, spotted -> 8.843833E-6, cornfloor -> 1.2634047E-6, even -> 0.0017599228, hawk -> 6.3170237E-6, shiloah -> 1.2634047E-6, rudiments -> 2.5268093E-6, archers -> 1.51608565E-5, babes -> 1.1370643E-5, shorter -> 2.5268093E-6, sandals -> 2.5268093E-6, censer -> 1.51608565E-5, opinions -> 1.2634047E-6, grinding -> 3.7902141E-6, drinkers -> 1.2634047E-6, accomplished -> 3.2848522E-5, ploweth -> 1.2634047E-6, demetrius -> 3.7902141E-6, frowardly -> 1.2634047E-6, hittites -> 2.7794904E-5, nazarites -> 3.7902141E-6, cheerfulness -> 1.2634047E-6, strifes -> 5.0536187E-6, lamp -> 1.6424261E-5, discouraged -> 7.5804282E-6, slidden -> 1.2634047E-6, removing -> 6.3170237E-6, baaseiah -> 1.2634047E-6, ponds -> 3.7902141E-6, remmon -> 1.2634047E-6, anoint -> 4.4219167E-5, subjection -> 1.7687666E-5, breaches -> 1.895107E-5, current -> 1.2634047E-6, ephai -> 1.2634047E-6, heleph -> 1.2634047E-6, korhites -> 5.0536187E-6, bare -> 2.3372988E-4, watchful -> 1.2634047E-6, carriage -> 3.7902141E-6, aided -> 1.2634047E-6, offenders -> 1.2634047E-6, heapeth -> 2.5268093E-6, ephratah -> 6.3170237E-6, rot -> 6.3170237E-6, gnashing -> 8.843833E-6, cuth -> 1.2634047E-6, exacteth -> 1.2634047E-6, trogyllium -> 1.2634047E-6, dedication -> 1.2634047E-5, accuser -> 1.2634047E-6, terrify -> 5.0536187E-6, help -> 1.5918899E-4, enriched -> 2.5268093E-6, several -> 1.51608565E-5, nethinims -> 2.2741286E-5, pollution -> 1.2634047E-6, worshipped -> 8.843833E-5, ye -> 0.0050308774, o -> 0.0013455261, ozni -> 1.2634047E-6, pitch -> 2.400469E-5, boisterous -> 1.2634047E-6, barn -> 5.0536187E-6, coz -> 1.2634047E-6, courageously -> 1.2634047E-6, bill -> 8.843833E-6, oliveyard -> 1.2634047E-6, fool -> 9.222855E-5, fools -> 5.3063E-5, transparent -> 1.2634047E-6, haggiah -> 1.2634047E-6, calamities -> 3.7902141E-6, wife -> 5.142057E-4, charges -> 7.5804282E-6, trembling -> 3.2848522E-5, sweetness -> 6.3170237E-6, rob -> 1.0107237E-5, languisheth -> 1.0107237E-5, settest -> 8.843833E-6, hearts -> 1.4276474E-4, wolves -> 8.843833E-6, partly -> 6.3170237E-6, die -> 4.055529E-4, abarim -> 5.0536187E-6, filleted -> 3.7902141E-6, outrageous -> 1.2634047E-6, jealous -> 2.400469E-5, darkness -> 2.0467157E-4, charging -> 2.5268093E-6, loaf -> 3.7902141E-6, mesopotamia -> 8.843833E-6, purchased -> 1.1370643E-5, legions -> 1.2634047E-6, conquering -> 1.2634047E-6, inhabiters -> 2.5268093E-6, spouse -> 7.5804282E-6, scattered -> 8.970174E-5, begotten -> 3.0321713E-5, raging -> 6.3170237E-6, quaking -> 2.5268093E-6, gentiles -> 1.6297921E-4, phebe -> 1.2634047E-6, zemarite -> 2.5268093E-6, devout -> 1.1370643E-5, baharumite -> 1.2634047E-6, ten -> 3.1458779E-4, asia -> 2.65315E-5, ointments -> 6.3170237E-6, giant -> 1.0107237E-5, practised -> 2.5268093E-6, destroyest -> 5.0536187E-6, thoroughly -> 3.7902141E-6, towel -> 2.5268093E-6, worthily -> 1.2634047E-6, westward -> 3.2848522E-5, beggarly -> 1.2634047E-6, clearness -> 1.2634047E-6, shammua -> 5.0536187E-6, delightsome -> 1.2634047E-6, floweth -> 1.51608565E-5, belch -> 1.2634047E-6, lamech -> 1.51608565E-5, admired -> 1.2634047E-6, bind -> 6.190683E-5, innumerable -> 8.843833E-6, ungirded -> 1.2634047E-6, walked -> 1.5413537E-4, headstone -> 1.2634047E-6, cuttings -> 3.7902141E-6, shophach -> 2.5268093E-6, swerved -> 1.2634047E-6, rifled -> 1.2634047E-6, wheresoever -> 1.51608565E-5, stirred -> 2.9058308E-5, attentively -> 1.2634047E-6, pelatiah -> 6.3170237E-6, rashly -> 1.2634047E-6, joyful -> 3.1585118E-5, zemaraim -> 2.5268093E-6, pedahel -> 1.2634047E-6, zemira -> 1.2634047E-6, beriah -> 1.3897452E-5, rufus -> 2.5268093E-6, ahinadab -> 1.2634047E-6, mordecai -> 7.580428E-5, adam -> 3.9165545E-5, trough -> 1.2634047E-6, aziel -> 1.2634047E-6, circumcising -> 2.5268093E-6, monthly -> 1.2634047E-6, markest -> 1.2634047E-6, predestinate -> 2.5268093E-6, knowing -> 6.443364E-5, hind -> 3.7902141E-6, determination -> 1.2634047E-6, prospereth -> 5.0536187E-6, led -> 8.5911524E-5, tempestuous -> 5.0536187E-6, adversity -> 1.2634047E-5, narrow -> 1.1370643E-5, baptized -> 7.7067685E-5, doubted -> 5.0536187E-6, seafaring -> 1.2634047E-6, mulberry -> 5.0536187E-6, disguised -> 6.3170237E-6, shecaniah -> 2.5268093E-6, crime -> 2.5268093E-6, hammers -> 3.7902141E-6, wove -> 1.2634047E-6, moladah -> 5.0536187E-6, overspread -> 1.2634047E-6, helping -> 3.7902141E-6, sinning -> 2.5268093E-6, rithmah -> 2.5268093E-6, daughers -> 2.5268093E-6, piss -> 2.5268093E-6, couched -> 2.5268093E-6, diest -> 1.2634047E-6, tamed -> 2.5268093E-6, sealest -> 1.2634047E-6, dabbasheth -> 1.2634047E-6, planks -> 3.7902141E-6, protest -> 3.7902141E-6, earthen -> 1.2634047E-5, gazathites -> 1.2634047E-6, piped -> 5.0536187E-6, becamest -> 2.5268093E-6, shamariah -> 1.2634047E-6, opened -> 1.7308645E-4, charashim -> 1.2634047E-6, canneh -> 1.2634047E-6, pibeseth -> 1.2634047E-6, jesiah -> 2.5268093E-6, numberest -> 3.7902141E-6, dedan -> 1.3897452E-5, ishmaelite -> 1.2634047E-6, whisper -> 2.5268093E-6, leaning -> 3.7902141E-6, buyeth -> 3.7902141E-6, examples -> 1.2634047E-6, place -> 9.045978E-4, fairs -> 7.5804282E-6, ancient -> 3.2848522E-5, speak -> 6.4812665E-4, unclothed -> 1.2634047E-6, alleluia -> 5.0536187E-6, offences -> 8.843833E-6, whirleth -> 1.2634047E-6, carefully -> 5.0536187E-6, agur -> 1.2634047E-6, oven -> 1.51608565E-5, ishuah -> 1.2634047E-6, satiated -> 1.2634047E-6, furtherance -> 2.5268093E-6, jabal -> 1.2634047E-6, swellings -> 1.2634047E-6, mattenai -> 3.7902141E-6, distil -> 2.5268093E-6, longwinged -> 1.2634047E-6, jehonadab -> 3.7902141E-6, boiled -> 3.7902141E-6, basons -> 2.2741286E-5, march -> 6.3170237E-6, journeying -> 3.7902141E-6, pilots -> 5.0536187E-6, miscarrying -> 1.2634047E-6, troughs -> 2.5268093E-6, bruised -> 1.1370643E-5, ease -> 2.5268095E-5, particularly -> 2.5268093E-6, jairus -> 2.5268093E-6, wayside -> 2.5268093E-6, discern -> 2.1477881E-5, kinsman -> 2.1477881E-5, publican -> 7.5804282E-6, fill -> 6.190683E-5, grudging -> 1.2634047E-6, table -> 9.222855E-5, citizen -> 2.5268093E-6, cleansing -> 1.2634047E-5, dunghills -> 1.2634047E-6, meholathite -> 2.5268093E-6, errors -> 5.0536187E-6, belly -> 6.190683E-5, backbiteth -> 1.2634047E-6, jashub -> 3.7902141E-6, looking -> 3.790214E-5, contemptuously -> 1.2634047E-6, ahaziah -> 4.6745976E-5, bethhaccerem -> 2.5268093E-6, provide -> 1.3897452E-5, spindle -> 1.2634047E-6, quails -> 5.0536187E-6, disannulleth -> 1.2634047E-6, toi -> 3.7902141E-6, looks -> 6.3170237E-6, purifications -> 1.2634047E-6, magdalene -> 1.51608565E-5, perished -> 3.2848522E-5, chesnut -> 1.2634047E-6, weeds -> 1.2634047E-6, administration -> 1.2634047E-6, centurion -> 2.65315E-5, tackling -> 1.2634047E-6, anub -> 1.2634047E-6, ziha -> 3.7902141E-6, begging -> 3.7902141E-6, forewarned -> 1.2634047E-6, long -> 2.678418E-4, biztha -> 1.2634047E-6, abhor -> 2.400469E-5, clifts -> 1.2634047E-6, aloud -> 2.5268095E-5, bithron -> 1.2634047E-6, closed -> 1.3897452E-5, adder -> 5.0536187E-6, tekoa -> 7.5804282E-6, sheaves -> 1.1370643E-5, vanity -> 1.0865281E-4, praise -> 3.1079756E-4, peter -> 2.0467157E-4, wailing -> 2.0214475E-5, rely -> 1.2634047E-6, besai -> 2.5268093E-6, waiting -> 1.0107237E-5, engrafted -> 1.2634047E-6, deferreth -> 1.2634047E-6, nimrod -> 5.0536187E-6, inclineth -> 1.2634047E-6, covenant -> 3.689142E-4, beneath -> 3.537533E-5, firstbegotten -> 1.2634047E-6, extendeth -> 1.2634047E-6, blessest -> 3.7902141E-6, halt -> 7.5804282E-6, korah -> 3.2848522E-5, gone -> 2.691052E-4, dawn -> 2.5268093E-6, alloweth -> 1.2634047E-6, consecrated -> 1.7687666E-5, locusts -> 2.0214475E-5, padon -> 2.5268093E-6, sap -> 1.2634047E-6, makaz -> 1.2634047E-6, lot -> 1.4276474E-4, transfigured -> 2.5268093E-6, seled -> 2.5268093E-6, mahlah -> 5.0536187E-6, sigheth -> 1.2634047E-6, jews -> 3.234316E-4, masons -> 8.843833E-6, merchants -> 3.6638736E-5, nahalol -> 1.2634047E-6, hough -> 1.2634047E-6, holier -> 1.2634047E-6, athirst -> 6.3170237E-6, hinder -> 2.0214475E-5, dureth -> 1.2634047E-6, seirath -> 1.2634047E-6, espied -> 2.5268093E-6, discreetly -> 1.2634047E-6, ponder -> 2.5268093E-6, sharpness -> 1.2634047E-6, contentious -> 6.3170237E-6, eating -> 3.4111927E-5, morter -> 1.3897452E-5, brought -> 0.0010903183, shipmen -> 3.7902141E-6, taberah -> 2.5268093E-6, overturneth -> 3.7902141E-6, elders -> 2.2614945E-4, ruler -> 1.0865281E-4, entreateth -> 1.2634047E-6, soundeth -> 1.2634047E-6, beatest -> 2.5268093E-6, ethiopian -> 1.0107237E-5, rebellion -> 1.1370643E-5, markets -> 5.0536187E-6, disputation -> 1.2634047E-6, babylonians -> 5.0536187E-6, nineve -> 1.2634047E-6, comest -> 3.6638736E-5, sprinkled -> 3.1585118E-5, pierceth -> 1.2634047E-6, sod -> 2.5268093E-6, compoundeth -> 1.2634047E-6, lama -> 2.5268093E-6, descry -> 1.2634047E-6, nabal -> 2.7794904E-5, mibsam -> 3.7902141E-6, fifteen -> 3.0321713E-5, foundations -> 4.042895E-5, vehement -> 3.7902141E-6, commandeth -> 1.6424261E-5, childbearing -> 1.2634047E-6, example -> 1.0107237E-5, jethlah -> 1.2634047E-6, roes -> 6.3170237E-6, fully -> 1.6424261E-5, stumbling -> 6.3170237E-6, moabitish -> 1.2634047E-6, inhabiting -> 1.2634047E-6, roe -> 8.843833E-6, becher -> 6.3170237E-6, bozkath -> 1.2634047E-6, ashtaroth -> 1.3897452E-5, favourable -> 5.0536187E-6, interpret -> 1.0107237E-5, hezronites -> 2.5268093E-6, delivered -> 3.6638736E-4, dionysius -> 1.2634047E-6, hermas -> 1.2634047E-6, two -> 0.0010574698, abused -> 1.2634047E-6, ezekiel -> 2.5268093E-6, prochorus -> 1.2634047E-6, caesar -> 3.790214E-5, fresh -> 5.0536187E-6, frustrateth -> 1.2634047E-6, patience -> 4.2955762E-5, libyans -> 2.5268093E-6, rulest -> 2.5268093E-6, backbiters -> 1.2634047E-6, assyrian -> 1.6424261E-5, rama -> 1.2634047E-6, revived -> 7.5804282E-6, sharezer -> 2.5268093E-6, garden -> 6.5697044E-5, hungry -> 3.790214E-5, charged -> 6.443364E-5, cake -> 1.6424261E-5, longed -> 1.0107237E-5, sardius -> 5.0536187E-6, jehoaddan -> 2.5268093E-6, hoar -> 5.0536187E-6, bethzur -> 5.0536187E-6, graff -> 1.2634047E-6, aija -> 1.2634047E-6, such -> 3.1458779E-4, figure -> 8.843833E-6, galeed -> 2.5268093E-6, rovers -> 1.2634047E-6, abundantly -> 4.042895E-5, haman -> 6.696045E-5, upheld -> 1.2634047E-6, estate -> 2.1477881E-5, law -> 6.607607E-4, theudas -> 1.2634047E-6, churning -> 1.2634047E-6, month -> 3.1585118E-4, chargeable -> 6.3170237E-6, recompences -> 2.5268093E-6, abiud -> 2.5268093E-6, subject -> 2.1477881E-5, buckets -> 1.2634047E-6, salamis -> 1.2634047E-6, feathers -> 8.843833E-6, arisai -> 1.2634047E-6, handmaid -> 5.6853212E-5, hereof -> 2.5268093E-6, furthered -> 1.2634047E-6, scrabbled -> 1.2634047E-6, convinceth -> 1.2634047E-6, oppresseth -> 6.3170237E-6, wherein -> 2.1098858E-4, tappuah -> 7.5804282E-6, speakest -> 2.1477881E-5, zabulon -> 3.7902141E-6, shemaiah -> 5.1799594E-5, boil -> 2.0214475E-5, kidneys -> 2.2741286E-5, epaenetus -> 1.2634047E-6, stealeth -> 3.7902141E-6, blasphemously -> 1.2634047E-6, leg -> 1.2634047E-6, swept -> 5.0536187E-6, gomorrah -> 2.400469E-5, sweet -> 1.364477E-4, holden -> 1.51608565E-5, reapers -> 1.1370643E-5, gennesaret -> 3.7902141E-6, twins -> 7.5804282E-6, maarath -> 1.2634047E-6, childless -> 8.843833E-6, quartus -> 1.2634047E-6, fellowcitizens -> 1.2634047E-6, partakers -> 2.7794904E-5, italy -> 5.0536187E-6, battlements -> 1.2634047E-6, preservest -> 2.5268093E-6, much -> 3.6259714E-4, mahalath -> 2.5268093E-6, superstitious -> 1.2634047E-6, areopagite -> 1.2634047E-6, means -> 4.4219167E-5, antothijah -> 1.2634047E-6, sheber -> 1.2634047E-6, breathe -> 5.0536187E-6, pharosh -> 1.2634047E-6, besought -> 5.5589808E-5, news -> 1.2634047E-6, nebo -> 1.6424261E-5, ways -> 2.5899796E-4, divisions -> 2.1477881E-5, depth -> 1.51608565E-5, lawyer -> 3.7902141E-6, pelet -> 2.5268093E-6, uncleanness -> 5.053619E-5, jehoiarib -> 2.5268093E-6, thresholds -> 3.7902141E-6, whoredom -> 2.7794904E-5, poets -> 1.2634047E-6, bethbarah -> 2.5268093E-6, chalkstones -> 1.2634047E-6, rebellest -> 2.5268093E-6, bemoaned -> 1.2634047E-6, magdala -> 1.2634047E-6, restitution -> 7.5804282E-6, add -> 4.1692358E-5, naum -> 1.2634047E-6, evidence -> 8.843833E-6, lifted -> 1.9961795E-4, onan -> 1.0107237E-5, vanished -> 2.5268093E-6, ransomed -> 3.7902141E-6, also -> 0.002234963, profound -> 1.2634047E-6, fishhooks -> 1.2634047E-6, pursueth -> 1.0107237E-5, ahlab -> 1.2634047E-6, embrace -> 1.0107237E-5, fed -> 3.9165545E-5, tombs -> 7.5804282E-6, making -> 3.790214E-5, oppressions -> 3.7902141E-6, wants -> 2.5268093E-6, precious -> 9.601876E-5, onyx -> 1.3897452E-5, trustedst -> 3.7902141E-6, delusions -> 1.2634047E-6, fervent -> 8.843833E-6, decayeth -> 3.7902141E-6, garments -> 1.3013069E-4, mash -> 1.2634047E-6, cainan -> 8.843833E-6, wanteth -> 8.843833E-6, desperate -> 2.5268093E-6, jaanai -> 1.2634047E-6, purge -> 1.895107E-5, nitre -> 2.5268093E-6, maachathite -> 5.0536187E-6, awaking -> 1.2634047E-6, swear -> 7.580428E-5, gopher -> 1.2634047E-6, called -> 7.8962796E-4, prune -> 2.5268093E-6, wardrobe -> 2.5268093E-6, causes -> 8.843833E-6, hath -> 0.0028603482, prison -> 1.13706425E-4, damascenes -> 1.2634047E-6, nazarenes -> 1.2634047E-6, wondering -> 3.7902141E-6, geshuri -> 2.5268093E-6, bride -> 1.7687666E-5, pure -> 1.2255026E-4, prey -> 9.222855E-5, fort -> 7.5804282E-6, untimely -> 5.0536187E-6, maroth -> 1.2634047E-6, zebadiah -> 1.1370643E-5, abihu -> 1.51608565E-5, earing -> 2.5268093E-6, backside -> 3.7902141E-6, peeled -> 3.7902141E-6, thorns -> 6.3170235E-5, bondservice -> 1.2634047E-6, preventest -> 1.2634047E-6, tapestry -> 2.5268093E-6, tops -> 1.3897452E-5, hukkok -> 1.2634047E-6, remitted -> 1.2634047E-6, toes -> 8.843833E-6, coats -> 1.7687666E-5, spendest -> 1.2634047E-6, shema -> 7.5804282E-6, surety -> 1.7687666E-5, sheba -> 4.042895E-5, bright -> 3.6638736E-5, disposing -> 1.2634047E-6, izhar -> 1.0107237E-5, hasshub -> 1.2634047E-6, seba -> 5.0536187E-6, open -> 1.5666218E-4, anointing -> 3.537533E-5, archevites -> 1.2634047E-6, narrowed -> 1.2634047E-6, answer -> 1.6550602E-4, rabboni -> 1.2634047E-6, heman -> 2.0214475E-5, nigh -> 1.2634047E-4, deceive -> 3.4111927E-5, influences -> 1.2634047E-6, noted -> 1.2634047E-6, baked -> 5.0536187E-6, kneel -> 2.5268093E-6, hearers -> 5.0536187E-6, carmel -> 3.2848522E-5, companion -> 1.6424261E-5, tabrimon -> 1.2634047E-6, compelled -> 7.5804282E-6, abased -> 5.0536187E-6, faint -> 5.1799594E-5, jehudi -> 5.0536187E-6, differing -> 1.2634047E-6, walkedst -> 1.2634047E-6, detain -> 2.5268093E-6, lubims -> 2.5268093E-6, thicket -> 2.5268093E-6, gnawed -> 1.2634047E-6, cheer -> 1.2634047E-5, networks -> 3.7902141E-6, forests -> 3.7902141E-6, possible -> 1.895107E-5, returning -> 5.0536187E-6, plantedst -> 2.5268093E-6, zabdi -> 7.5804282E-6, deck -> 2.5268093E-6, wen -> 1.2634047E-6, geshur -> 1.0107237E-5, gershonite -> 3.7902141E-6, exhortation -> 1.2634047E-5, wringed -> 1.2634047E-6, hottest -> 1.2634047E-6, ibhar -> 3.7902141E-6, signify -> 5.0536187E-6, violently -> 1.2634047E-5, bountifully -> 7.5804282E-6, hale -> 1.2634047E-6, salmone -> 1.2634047E-6, nicolaitanes -> 2.5268093E-6, stilled -> 2.5268093E-6, friendly -> 3.7902141E-6, bethmarcaboth -> 2.5268093E-6, science -> 2.5268093E-6, samson -> 4.9272785E-5, hagab -> 1.2634047E-6, tumult -> 2.0214475E-5, affections -> 2.5268093E-6, strowed -> 1.2634047E-6, wink -> 2.5268093E-6, journeyed -> 4.1692358E-5, yelled -> 1.2634047E-6, bela -> 1.6424261E-5, counselled -> 5.0536187E-6, tale -> 6.3170237E-6, fallest -> 1.2634047E-6, nor -> 9.538706E-4, contemneth -> 1.2634047E-6, overshadowed -> 3.7902141E-6, bochim -> 2.5268093E-6, assyrians -> 1.2634047E-5, vainglory -> 1.2634047E-6, hophni -> 6.3170237E-6, fashion -> 1.6424261E-5, jehaleleel -> 1.2634047E-6, forbad -> 6.3170237E-6, ahio -> 7.5804282E-6, perceived -> 4.4219167E-5, condemning -> 2.5268093E-6, elihoenai -> 1.2634047E-6, kick -> 3.7902141E-6, phenice -> 3.7902141E-6, intercessor -> 1.2634047E-6, begun -> 1.51608565E-5, extolled -> 2.5268093E-6, pronounced -> 1.7687666E-5, meshullemeth -> 1.2634047E-6, helper -> 1.1370643E-5, eliab -> 2.65315E-5, terribly -> 3.7902141E-6, warned -> 1.2634047E-5, zophai -> 1.2634047E-6, goldsmith -> 5.0536187E-6, almsdeeds -> 1.2634047E-6, couching -> 2.5268093E-6, dehavites -> 1.2634047E-6, naharai -> 1.2634047E-6, create -> 1.0107237E-5, soul -> 5.799028E-4, meonenim -> 1.2634047E-6, laded -> 5.0536187E-6, supreme -> 1.2634047E-6, carvings -> 1.2634047E-6, quieteth -> 1.2634047E-6, firstling -> 1.7687666E-5, quenched -> 2.1477881E-5, esek -> 1.2634047E-6, musick -> 2.0214475E-5, bent -> 1.0107237E-5, thither -> 1.2002345E-4, compassed -> 5.5589808E-5, begetteth -> 3.7902141E-6, received -> 2.0214476E-4, eloth -> 3.7902141E-6, observation -> 1.2634047E-6, sirion -> 2.5268093E-6, image -> 1.2760388E-4, zophar -> 5.0536187E-6, artillery -> 1.2634047E-6, joyfully -> 3.7902141E-6, ezem -> 1.2634047E-6, right -> 4.535623E-4, behaveth -> 1.2634047E-6, onward -> 1.2634047E-6, adjured -> 2.5268093E-6, end -> 3.8786526E-4, judgment -> 3.7144098E-4, languish -> 6.3170237E-6, oak -> 1.895107E-5, desirest -> 2.5268093E-6, oppressed -> 4.800938E-5, dry -> 8.970174E-5, shekels -> 1.2128685E-4, restest -> 1.2634047E-6, waste -> 8.08579E-5, eunuchs -> 2.5268095E-5, handmaids -> 1.0107237E-5, press -> 1.1370643E-5, reverence -> 1.6424261E-5, barked -> 1.2634047E-6, kolaiah -> 2.5268093E-6, hangings -> 2.2741286E-5, fishers -> 8.843833E-6, sparrow -> 2.5268093E-6, shavsha -> 1.2634047E-6, socoh -> 2.5268093E-6, tahpanhes -> 6.3170237E-6, roasted -> 3.7902141E-6, aziza -> 1.2634047E-6, aroer -> 2.0214475E-5, restore -> 5.053619E-5, troubles -> 1.51608565E-5, path -> 2.9058308E-5, tribulation -> 2.7794904E-5, jogli -> 1.2634047E-6, bastard -> 2.5268093E-6, killest -> 2.5268093E-6, reverse -> 3.7902141E-6, pieces -> 1.5287197E-4, jokneam -> 5.0536187E-6, asenath -> 3.7902141E-6, fewness -> 1.2634047E-6, conceits -> 2.5268093E-6, tou -> 2.5268093E-6, espousals -> 2.5268093E-6, broidered -> 1.0107237E-5, kishion -> 1.2634047E-6, elidad -> 1.2634047E-6, conclude -> 1.2634047E-6, hadadrimmon -> 1.2634047E-6, hasting -> 2.5268093E-6, jaaziah -> 2.5268093E-6, home -> 6.443364E-5, outstretched -> 3.7902141E-6, throughout -> 2.0467157E-4, bethshemite -> 2.5268093E-6, proofs -> 1.2634047E-6, shobi -> 1.2634047E-6, cogitations -> 1.2634047E-6, melchisedec -> 1.1370643E-5, goodman -> 7.5804282E-6, whisperer -> 1.2634047E-6, employment -> 1.2634047E-6, persuading -> 2.5268093E-6, menpleasers -> 2.5268093E-6, folly -> 4.6745976E-5, archi -> 1.2634047E-6, swoon -> 1.2634047E-6, jether -> 1.0107237E-5, say -> 0.0013341554, comfortable -> 2.5268093E-6, remphan -> 1.2634047E-6, port -> 1.2634047E-6, fifties -> 1.0107237E-5, street -> 4.548257E-5, vestments -> 2.5268093E-6, benjamite -> 1.0107237E-5, perdition -> 1.0107237E-5, mischiefs -> 3.7902141E-6, salute -> 4.9272785E-5, teacher -> 7.5804282E-6, foaming -> 2.5268093E-6, joktheel -> 2.5268093E-6, gog -> 1.3897452E-5, jahzerah -> 1.2634047E-6, advised -> 2.5268093E-6, zeeb -> 7.5804282E-6, idol -> 2.0214475E-5, flesh -> 5.3063E-4, grope -> 6.3170237E-6, netophah -> 2.5268093E-6, rites -> 1.2634047E-6, manifestation -> 3.7902141E-6, amethyst -> 3.7902141E-6, weep -> 6.190683E-5, slimepits -> 1.2634047E-6, impudent -> 3.7902141E-6, tikvath -> 1.2634047E-6, loops -> 1.6424261E-5, slideth -> 1.2634047E-6, pale -> 2.5268093E-6, hammon -> 2.5268093E-6, integrity -> 2.0214475E-5, underneath -> 3.7902141E-6, jezoar -> 1.2634047E-6, martyr -> 2.5268093E-6, garners -> 2.5268093E-6, letushim -> 1.2634047E-6, fowler -> 3.7902141E-6, upbraid -> 2.5268093E-6, pharaohnecho -> 1.2634047E-6, keep -> 4.5735252E-4, commanded -> 5.596883E-4, bartholomew -> 5.0536187E-6, concubine -> 2.7794904E-5, neck -> 7.833109E-5, loathsome -> 5.0536187E-6, calledst -> 5.0536187E-6, bildad -> 6.3170237E-6, threshed -> 3.7902141E-6, new -> 1.8951071E-4, dale -> 2.5268093E-6, pledges -> 2.5268093E-6, honour -> 1.8319368E-4, eunuch -> 8.843833E-6, knowledge -> 2.1730561E-4, perish -> 1.5160856E-4, chambers -> 8.3384715E-5, shamma -> 1.2634047E-6, satisfied -> 5.4326403E-5, kirjatharim -> 1.2634047E-6, euroclydon -> 1.2634047E-6, toil -> 5.0536187E-6, augustus -> 5.0536187E-6, guilty -> 3.2848522E-5, bucklers -> 6.3170237E-6, sink -> 7.5804282E-6, repairer -> 1.2634047E-6, burn -> 1.7434986E-4, boar -> 1.2634047E-6, sick -> 1.11179615E-4, slipped -> 2.5268093E-6, thessalonians -> 3.7902141E-6, precept -> 1.3897452E-5, pertaining -> 1.0107237E-5, dashed -> 6.3170237E-6, vale -> 1.1370643E-5, dizahab -> 1.2634047E-6, beautify -> 3.7902141E-6, observed -> 1.3897452E-5, gloriously -> 3.7902141E-6, quaternions -> 1.2634047E-6, whelps -> 1.2634047E-5, hupham -> 1.2634047E-6, landmarks -> 1.2634047E-6, cities -> 5.660053E-4, battering -> 2.5268093E-6, dull -> 3.7902141E-6, shilonites -> 1.2634047E-6, foolish -> 6.5697044E-5, turn -> 3.5754353E-4, clamour -> 1.2634047E-6, whiles -> 1.2634047E-5, rachel -> 5.938002E-5, labourers -> 1.1370643E-5, lucre -> 7.5804282E-6, forepart -> 6.3170237E-6, obeyedst -> 2.5268093E-6, youthful -> 1.2634047E-6, changed -> 5.3063E-5, sennacherib -> 1.6424261E-5, moza -> 6.3170237E-6, snuffdishes -> 3.7902141E-6, verity -> 2.5268093E-6, urim -> 8.843833E-6, chastenest -> 1.2634047E-6, bohan -> 2.5268093E-6, converts -> 1.2634047E-6, breadth -> 1.1244302E-4, maid -> 4.6745976E-5, mathusala -> 1.2634047E-6, scoff -> 1.2634047E-6, forbare -> 3.7902141E-6, captives -> 5.4326403E-5, twoedged -> 2.5268093E-6, almonds -> 1.0107237E-5, what -> 0.0012444536, assayed -> 5.0536187E-6, maimed -> 8.843833E-6, belteshazzar -> 1.2634047E-5, winepress -> 1.895107E-5, princesses -> 1.2634047E-6, constellations -> 1.2634047E-6, descend -> 1.2634047E-5, bells -> 5.0536187E-6, executing -> 3.7902141E-6, remedy -> 3.7902141E-6, chargest -> 1.2634047E-6, hamulites -> 1.2634047E-6, shouldest -> 9.222855E-5, willingly -> 3.1585118E-5, adulteries -> 6.3170237E-6, dealt -> 7.201407E-5, webs -> 1.2634047E-6, shuppim -> 3.7902141E-6, access -> 3.7902141E-6, gladness -> 5.938002E-5, neziah -> 2.5268093E-6, uncertain -> 2.5268093E-6, goodly -> 4.1692358E-5, bursting -> 1.2634047E-6, commandments -> 2.160422E-4, sold -> 1.0359919E-4, pursue -> 3.6638736E-5, eliashib -> 2.1477881E-5, shed -> 6.5697044E-5, bearest -> 6.3170237E-6, wagging -> 2.5268093E-6, rehabiah -> 6.3170237E-6, full -> 3.2848524E-4, champaign -> 1.2634047E-6, passengers -> 6.3170237E-6, tahath -> 7.5804282E-6, accord -> 2.0214475E-5, thereinto -> 1.2634047E-6, byways -> 1.2634047E-6, bavai -> 1.2634047E-6, bajith -> 1.2634047E-6, azzan -> 1.2634047E-6, minister -> 1.2634047E-4, staggereth -> 1.2634047E-6, balancings -> 1.2634047E-6, imri -> 2.5268093E-6, huge -> 1.2634047E-6, shigionoth -> 1.2634047E-6, provoked -> 4.1692358E-5, adami -> 1.2634047E-6, er -> 1.3897452E-5, shem -> 2.1477881E-5, favoureth -> 1.2634047E-6, fastings -> 5.0536187E-6, carrying -> 1.0107237E-5, crop -> 2.5268093E-6, menan -> 1.2634047E-6, heweth -> 3.7902141E-6, lettest -> 3.7902141E-6, gathering -> 1.3897452E-5, gibbar -> 1.2634047E-6, this -> 0.003518582, jehezekel -> 1.2634047E-6, omitted -> 1.2634047E-6, jezreel -> 4.548257E-5, advantageth -> 1.2634047E-6, which -> 0.005575405, slay -> 1.4781835E-4, rebecca -> 1.2634047E-6, drinking -> 2.65315E-5, spitting -> 1.2634047E-6, diggeth -> 3.7902141E-6, cymbals -> 2.0214475E-5, shaphan -> 3.790214E-5, nephtoah -> 2.5268093E-6, twelve -> 2.3752009E-4, misery -> 8.843833E-6, valour -> 4.6745976E-5, accustomed -> 1.2634047E-6, justified -> 5.4326403E-5, fraud -> 2.5268093E-6, office -> 5.8116617E-5, shelomi -> 1.2634047E-6, coos -> 1.2634047E-6, zaanannim -> 1.2634047E-6, hatach -> 5.0536187E-6, equal -> 2.65315E-5, pasach -> 1.2634047E-6, vowed -> 2.2741286E-5, snail -> 2.5268093E-6, undertake -> 1.2634047E-6, borrower -> 2.5268093E-6, tilleth -> 2.5268093E-6, pardon -> 2.0214475E-5, lacketh -> 6.3170237E-6, salem -> 5.0536187E-6, babbler -> 2.5268093E-6, chatter -> 1.2634047E-6, avenge -> 2.1477881E-5, rimmon -> 1.7687666E-5, ranks -> 5.0536187E-6, gods -> 3.0827074E-4, plowers -> 1.2634047E-6, hospitality -> 5.0536187E-6, absence -> 2.5268093E-6, prevail -> 3.6638736E-5, pretence -> 3.7902141E-6, paphos -> 2.5268093E-6, constantly -> 3.7902141E-6, stillest -> 1.2634047E-6, melzar -> 2.5268093E-6, taker -> 1.2634047E-6, ithai -> 1.2634047E-6, forcible -> 1.2634047E-6, shalmai -> 2.5268093E-6, sentences -> 2.5268093E-6, midwives -> 8.843833E-6, sheep -> 2.3752009E-4, blasphemous -> 2.5268093E-6, devouring -> 7.5804282E-6, shame -> 1.2634047E-4, inside -> 1.2634047E-6, handling -> 2.5268093E-6, moveth -> 1.0107237E-5, judgest -> 1.0107237E-5, lodged -> 2.65315E-5, same -> 4.1945037E-4, shemidaites -> 1.2634047E-6, gebal -> 2.5268093E-6, sowest -> 3.7902141E-6, talketh -> 2.5268093E-6, blamed -> 2.5268093E-6, unwittingly -> 3.7902141E-6, drove -> 1.51608565E-5, amber -> 3.7902141E-6, haruz -> 1.2634047E-6, shimma -> 1.2634047E-6, shepherds -> 4.800938E-5, ara -> 1.2634047E-6, fourscore -> 4.548257E-5, deserveth -> 1.2634047E-6, proceed -> 1.895107E-5, rubies -> 7.5804282E-6, dwelled -> 7.5804282E-6, behave -> 7.5804282E-6, daberath -> 2.5268093E-6, covenants -> 3.7902141E-6, laughter -> 8.843833E-6, moses -> 0.0010701038, withered -> 3.1585118E-5, diligent -> 1.895107E-5, principality -> 2.5268093E-6, prayed -> 8.212131E-5, axletrees -> 2.5268093E-6, swan -> 2.5268093E-6, blasphemed -> 2.0214475E-5, peleth -> 2.5268093E-6, neverthless -> 1.2634047E-6, fellowdisciples -> 1.2634047E-6, shocks -> 1.2634047E-6, flowers -> 2.1477881E-5, build -> 2.0593496E-4, coffer -> 3.7902141E-6, gourd -> 6.3170237E-6, wheat -> 6.443364E-5, willows -> 6.3170237E-6, search -> 6.0643426E-5, calno -> 1.2634047E-6, kelita -> 3.7902141E-6, ahian -> 1.2634047E-6, ephesdammim -> 1.2634047E-6, romamtiezer -> 2.5268093E-6, nephthalim -> 3.7902141E-6, hissing -> 1.0107237E-5, ordered -> 5.0536187E-6, teacheth -> 2.0214475E-5, whales -> 1.2634047E-6, amends -> 1.2634047E-6, establishment -> 1.2634047E-6, eubulus -> 1.2634047E-6, senuah -> 1.2634047E-6, ashur -> 2.5268093E-6, row -> 2.1477881E-5, movedst -> 1.2634047E-6, pathway -> 1.2634047E-6, unruly -> 5.0536187E-6, cunningly -> 1.2634047E-6, darling -> 2.5268093E-6, azem -> 2.5268093E-6, predestinated -> 2.5268093E-6, holily -> 1.2634047E-6, pur -> 3.7902141E-6, burst -> 1.1370643E-5, mesech -> 1.2634047E-6, hires -> 1.2634047E-6, honor -> 1.2634047E-6, slanderously -> 1.2634047E-6, watched -> 1.51608565E-5, hazarhatticon -> 1.2634047E-6, failing -> 2.5268093E-6, huldah -> 2.5268093E-6, sheshach -> 2.5268093E-6, wiles -> 2.5268093E-6, respected -> 1.2634047E-6, breeches -> 6.3170237E-6, lintels -> 1.2634047E-6, nachon -> 1.2634047E-6, mint -> 2.5268093E-6, eightieth -> 1.2634047E-6, ahohite -> 6.3170237E-6, hassenaah -> 1.2634047E-6, gird -> 3.4111927E-5, embalmed -> 3.7902141E-6, ribai -> 2.5268093E-6, bull -> 2.5268093E-6, hasteneth -> 1.2634047E-6, eleven -> 3.0321713E-5, laud -> 1.2634047E-6, person -> 7.075066E-5, binding -> 6.3170237E-6, bunah -> 1.2634047E-6, provocations -> 3.7902141E-6, herald -> 1.2634047E-6, disappointeth -> 1.2634047E-6, trees -> 1.9835454E-4, disquieted -> 7.5804282E-6, further -> 2.65315E-5, balaam -> 7.9594494E-5, reproof -> 1.895107E-5, ragged -> 1.2634047E-6, arnon -> 3.1585118E-5, thighs -> 3.7902141E-6, weaker -> 3.7902141E-6, azzah -> 3.7902141E-6, battle -> 2.147788E-4, tamah -> 1.2634047E-6, viler -> 1.2634047E-6, adullam -> 1.0107237E-5, spue -> 5.0536187E-6, eater -> 3.7902141E-6, subverting -> 2.5268093E-6, wavering -> 2.5268093E-6, midianites -> 3.0321713E-5, hannathon -> 1.2634047E-6, graven -> 6.948726E-5, wheaten -> 1.2634047E-6, satisfiest -> 1.2634047E-6, bethesda -> 1.2634047E-6, evangelists -> 1.2634047E-6, tingle -> 3.7902141E-6, rolls -> 1.2634047E-6, contain -> 8.843833E-6, eltekeh -> 2.5268093E-6, gourds -> 1.2634047E-6, lips -> 1.5034516E-4, anything -> 6.3170237E-6, dealer -> 1.2634047E-6, good -> 9.096514E-4, thirtieth -> 1.1370643E-5, commended -> 7.5804282E-6, richer -> 1.2634047E-6, meraiah -> 1.2634047E-6, saviours -> 2.5268093E-6, hardly -> 1.0107237E-5, thy -> 0.005811662, haruphite -> 1.2634047E-6, humtah -> 1.2634047E-6, travel -> 2.5268093E-6, dropping -> 3.7902141E-6, jahziel -> 1.2634047E-6, tekel -> 2.5268093E-6, irad -> 2.5268093E-6, dissolved -> 1.0107237E-5, wall -> 2.2614945E-4, overmuch -> 1.2634047E-6, destitute -> 1.0107237E-5, sirah -> 1.2634047E-6, winked -> 1.2634047E-6, vomited -> 1.2634047E-6, dominion -> 7.833109E-5, husbandman -> 8.843833E-6, zerah -> 2.400469E-5, sabta -> 1.2634047E-6, wizards -> 1.1370643E-5, violence -> 7.201407E-5, salu -> 1.2634047E-6, rameses -> 5.0536187E-6, death -> 4.6998655E-4, helps -> 2.5268093E-6, sisters -> 2.400469E-5, crisping -> 1.2634047E-6, hadarezer -> 1.51608565E-5, clearer -> 1.2634047E-6, cripple -> 1.2634047E-6, iram -> 2.5268093E-6, speedy -> 1.2634047E-6, preparedst -> 1.2634047E-6, uncover -> 3.2848522E-5, chileab -> 1.2634047E-6, delilah -> 7.5804282E-6, weary -> 5.3063E-5, spare -> 5.053619E-5, jezaniah -> 2.5268093E-6, roast -> 6.3170237E-6, bewrayeth -> 3.7902141E-6, resolved -> 1.2634047E-6, grease -> 1.2634047E-6, endured -> 1.0107237E-5, twentieth -> 4.548257E-5, gesham -> 1.2634047E-6, chameleon -> 1.2634047E-6, tekoite -> 3.7902141E-6, stare -> 1.2634047E-6, lothe -> 5.0536187E-6, trow -> 1.2634047E-6, holon -> 3.7902141E-6, admonition -> 3.7902141E-6, mehunim -> 1.2634047E-6, know -> 9.639778E-4, chidon -> 1.2634047E-6, teachers -> 1.7687666E-5, trespasses -> 1.51608565E-5, chiun -> 1.2634047E-6, sur -> 1.2634047E-6, snuffeth -> 1.2634047E-6, throwing -> 1.2634047E-6, stool -> 1.2634047E-6, agony -> 1.2634047E-6, conditions -> 1.2634047E-6, coriander -> 2.5268093E-6, strokes -> 1.2634047E-6, raamah -> 6.3170237E-6, hazarmaveth -> 2.5268093E-6, there -> 0.0029045674, unholy -> 5.0536187E-6, blown -> 5.0536187E-6, twain -> 2.1477881E-5, amiss -> 5.0536187E-6, dishon -> 8.843833E-6, natural -> 1.6424261E-5, zedad -> 2.5268093E-6, rest -> 3.474363E-4, bathrabbim -> 1.2634047E-6, calah -> 2.5268093E-6, laugh -> 2.2741286E-5, shaharaim -> 1.2634047E-6, gadi -> 2.5268093E-6, triumph -> 1.2634047E-5, lead -> 7.580428E-5, rudder -> 1.2634047E-6, best -> 3.1585118E-5, orphans -> 1.2634047E-6, jericho -> 8.08579E-5, climbed -> 2.5268093E-6, seventy -> 7.7067685E-5, submitting -> 1.2634047E-6, broth -> 3.7902141E-6, listeth -> 2.5268093E-6, pul -> 5.0536187E-6, handstaves -> 1.2634047E-6, nameth -> 1.2634047E-6, mower -> 1.2634047E-6, amittai -> 2.5268093E-6, chesed -> 1.2634047E-6, mitylene -> 1.2634047E-6, marked -> 7.5804282E-6, anathoth -> 2.0214475E-5, enlighten -> 1.2634047E-6, vashti -> 1.2634047E-5, solemnity -> 2.5268093E-6, india -> 2.5268093E-6, brown -> 5.0536187E-6, travaileth -> 8.843833E-6, smotest -> 1.2634047E-6, yourselves -> 2.413103E-4, cotes -> 1.2634047E-6, notice -> 2.5268093E-6, porcius -> 1.2634047E-6, shebuel -> 3.7902141E-6, accepting -> 1.2634047E-6, joy -> 2.0846177E-4, wreathen -> 1.2634047E-5, ishod -> 1.2634047E-6, samaritan -> 3.7902141E-6, lighteth -> 3.7902141E-6, howled -> 1.2634047E-6, throat -> 8.843833E-6, accompanied -> 5.0536187E-6, jorim -> 1.2634047E-6, box -> 1.0107237E-5, finally -> 7.5804282E-6, roared -> 6.3170237E-6, keturah -> 5.0536187E-6, pressfat -> 1.2634047E-6, hattil -> 2.5268093E-6, machirites -> 1.2634047E-6, shooteth -> 3.7902141E-6, ammonitess -> 5.0536187E-6, wild -> 5.5589808E-5, ought -> 1.2255026E-4, joint -> 6.3170237E-6, meunim -> 1.2634047E-6, blossoms -> 2.5268093E-6, inquisition -> 3.7902141E-6, consecrate -> 1.7687666E-5, torn -> 2.1477881E-5, weigh -> 7.5804282E-6, mercyseat -> 1.2634047E-6, release -> 2.65315E-5, shall -> 0.012429376, beam -> 1.895107E-5, shuham -> 1.2634047E-6, ashamed -> 1.5413537E-4, inclined -> 1.6424261E-5, persian -> 2.5268093E-6, tents -> 8.3384715E-5, generation -> 1.3518431E-4, commissions -> 1.2634047E-6, teresh -> 2.5268093E-6, prescribing -> 1.2634047E-6, reprover -> 2.5268093E-6, followeth -> 1.895107E-5, owe -> 1.2634047E-6, rebuking -> 2.5268093E-6, talkers -> 2.5268093E-6, couch -> 8.843833E-6, bloweth -> 5.0536187E-6, discovering -> 1.2634047E-6, horn -> 4.548257E-5, oblation -> 4.4219167E-5, sincere -> 2.5268093E-6, assembled -> 4.6745976E-5, massah -> 5.0536187E-6, meah -> 2.5268093E-6, necessity -> 1.2634047E-5, smell -> 2.5268095E-5, ashteroth -> 1.2634047E-6, trembled -> 2.65315E-5, wittingly -> 1.2634047E-6, divided -> 8.717493E-5, brook -> 4.9272785E-5, revenges -> 1.2634047E-6, fatlings -> 6.3170237E-6, ascribed -> 2.5268093E-6, sapphire -> 1.1370643E-5, flies -> 1.2634047E-5, commotion -> 1.2634047E-6, own -> 7.529892E-4, scabbard -> 1.2634047E-6, walketh -> 5.1799594E-5, oppositions -> 1.2634047E-6, ivory -> 1.6424261E-5, professing -> 3.7902141E-6, manners -> 7.5804282E-6, justifying -> 2.5268093E-6, sibbechai -> 2.5268093E-6, cow -> 8.843833E-6, strengthening -> 2.5268093E-6, labouring -> 5.0536187E-6, saron -> 1.2634047E-6, bar -> 8.843833E-6, antioch -> 2.400469E-5, abasing -> 1.2634047E-6, emboldened -> 1.2634047E-6, plowed -> 6.3170237E-6, appeareth -> 1.2634047E-5, risen -> 6.443364E-5, tormented -> 1.0107237E-5, zephathah -> 1.2634047E-6, mending -> 2.5268093E-6, omar -> 3.7902141E-6, upholdeth -> 5.0536187E-6, onycha -> 1.2634047E-6, shovels -> 1.1370643E-5, testify -> 3.6638736E-5, ephesians -> 3.7902141E-6, sweareth -> 1.3897452E-5, continue -> 4.800938E-5, flanks -> 7.5804282E-6, understood -> 4.6745976E-5, prepare -> 1.0233578E-4, divineth -> 1.2634047E-6, stanched -> 1.2634047E-6, excel -> 6.3170237E-6, enabled -> 1.2634047E-6, kiriathaim -> 5.0536187E-6, ashbel -> 3.7902141E-6, silence -> 4.4219167E-5, hearty -> 1.2634047E-6, eliakim -> 1.895107E-5, east -> 1.9835454E-4, vision -> 9.9808974E-5, mused -> 1.2634047E-6, palal -> 1.2634047E-6, discovered -> 2.7794904E-5, hired -> 4.2955762E-5, habergeons -> 2.5268093E-6, first -> 5.483177E-4, dishes -> 3.7902141E-6, informed -> 7.5804282E-6, please -> 4.9272785E-5, invented -> 1.2634047E-6, odour -> 2.5268093E-6, withholden -> 1.2634047E-5, horhagidgad -> 2.5268093E-6, baptizeth -> 2.5268093E-6, effeminate -> 1.2634047E-6, submit -> 1.51608565E-5, doctors -> 2.5268093E-6, panteth -> 3.7902141E-6, holdest -> 7.5804282E-6, settled -> 8.843833E-6, invited -> 3.7902141E-6, regardeth -> 1.895107E-5, south -> 1.8066687E-4, hearing -> 4.9272785E-5, recompensing -> 1.2634047E-6, generally -> 2.5268093E-6, low -> 5.8116617E-5, emins -> 1.2634047E-6, gatherest -> 1.2634047E-6, thenceforth -> 5.0536187E-6, climb -> 5.0536187E-6, perversely -> 3.7902141E-6, defamed -> 1.2634047E-6, sarsechim -> 1.2634047E-6, reuel -> 1.2634047E-5, adonijah -> 3.2848522E-5, iddo -> 1.7687666E-5, envious -> 5.0536187E-6, humbleth -> 8.843833E-6, hattush -> 6.3170237E-6, deliveredst -> 3.7902141E-6, thirteen -> 1.895107E-5, bade -> 2.2741286E-5, eunice -> 1.2634047E-6, malchus -> 1.2634047E-6, trained -> 1.2634047E-6, bani -> 1.895107E-5, day -> 0.0022021143, bethcar -> 1.2634047E-6, shubael -> 3.7902141E-6, emptiers -> 1.2634047E-6, brasen -> 3.6638736E-5, vehemently -> 6.3170237E-6, intending -> 3.7902141E-6, reported -> 1.51608565E-5, zorites -> 1.2634047E-6, largeness -> 1.2634047E-6, dealeth -> 1.2634047E-5, abigail -> 2.1477881E-5, joying -> 1.2634047E-6, presbytery -> 1.2634047E-6, seest -> 4.548257E-5, persuade -> 1.0107237E-5, ringleader -> 1.2634047E-6, blue -> 6.3170235E-5, durable -> 2.5268093E-6, array -> 4.2955762E-5, trusty -> 1.2634047E-6, michmethah -> 2.5268093E-6, laadan -> 8.843833E-6, lightning -> 1.6424261E-5, missed -> 3.7902141E-6, accounting -> 1.2634047E-6, outcast -> 1.2634047E-6, belaites -> 1.2634047E-6, jarmuth -> 8.843833E-6, councils -> 2.5268093E-6, notwithstanding -> 4.548257E-5, sickle -> 1.51608565E-5, novice -> 1.2634047E-6, lamentations -> 3.7902141E-6, philosophy -> 1.2634047E-6, condemnest -> 1.2634047E-6, forgat -> 1.0107237E-5, seditions -> 1.2634047E-6, amariah -> 2.0214475E-5, dulcimer -> 3.7902141E-6, nostrils -> 1.895107E-5, mesha -> 5.0536187E-6, things -> 0.0014680763, cymbal -> 1.2634047E-6, ur -> 6.3170237E-6, breast -> 2.2741286E-5, shadow -> 9.222855E-5, waxeth -> 2.5268093E-6, yielding -> 8.843833E-6, bellies -> 1.2634047E-6, addeth -> 5.0536187E-6, divorced -> 5.0536187E-6, dirt -> 3.7902141E-6, administrations -> 1.2634047E-6, keepeth -> 5.8116617E-5, dissolvest -> 1.2634047E-6, arza -> 1.2634047E-6, massa -> 2.5268093E-6, lighter -> 6.3170237E-6, repayeth -> 1.2634047E-6, scribes -> 8.5911524E-5, beckoned -> 7.5804282E-6, thamar -> 1.2634047E-6, wandereth -> 7.5804282E-6, zion -> 1.9330092E-4, may -> 0.0012975166, staggered -> 1.2634047E-6, chaldea -> 8.843833E-6, riblah -> 1.3897452E-5, flax -> 1.3897452E-5, revilers -> 1.2634047E-6, kids -> 1.0107237E-5, flags -> 3.7902141E-6, overturned -> 1.2634047E-6, check -> 1.2634047E-6, pardoneth -> 1.2634047E-6, berothai -> 1.2634047E-6, accomplish -> 1.6424261E-5, stomacher -> 1.2634047E-6, clearly -> 6.3170237E-6, buried -> 1.339209E-4, heard -> 8.0984243E-4, ittahkazin -> 1.2634047E-6, behoved -> 2.5268093E-6, resen -> 1.2634047E-6, amalek -> 3.0321713E-5, shuhite -> 6.3170237E-6, scales -> 1.2634047E-5, revelations -> 2.5268093E-6, swell -> 5.0536187E-6, outcasts -> 8.843833E-6, covetous -> 1.1370643E-5, aridai -> 1.2634047E-6, preserved -> 2.0214475E-5, rekem -> 6.3170237E-6, justify -> 1.3897452E-5, scourging -> 1.2634047E-6, shekel -> 5.4326403E-5, language -> 3.4111927E-5, holes -> 1.3897452E-5, reaped -> 5.0536187E-6, eliadah -> 1.2634047E-6, acquainting -> 1.2634047E-6, drive -> 7.201407E-5, bodily -> 5.0536187E-6, ascend -> 1.6424261E-5, afternoon -> 1.2634047E-6, halteth -> 2.5268093E-6, sufficiency -> 3.7902141E-6, zara -> 1.2634047E-6, gentle -> 6.3170237E-6, keeper -> 2.65315E-5, mayest -> 1.4402813E-4, stomach -> 1.2634047E-6, cliffs -> 1.2634047E-6, homeborn -> 2.5268093E-6, offspring -> 1.51608565E-5, ceasing -> 8.843833E-6, lydda -> 3.7902141E-6, upbraided -> 1.2634047E-6, mephibosheth -> 1.895107E-5, zilpah -> 8.843833E-6, other -> 5.862198E-4, blocks -> 1.2634047E-6, josibiah -> 1.2634047E-6, bernice -> 3.7902141E-6, haste -> 6.948726E-5, curtain -> 3.2848522E-5, unjustly -> 2.5268093E-6, snare -> 5.8116617E-5, exorcists -> 1.2634047E-6, willeth -> 1.2634047E-6, aforehand -> 1.2634047E-6, malchishua -> 3.7902141E-6, creditor -> 3.7902141E-6, enjoined -> 3.7902141E-6, joezer -> 1.2634047E-6, stings -> 1.2634047E-6, trickleth -> 1.2634047E-6, wealthy -> 2.5268093E-6, correcteth -> 2.5268093E-6, cherethites -> 1.1370643E-5, reputed -> 2.5268093E-6, shittah -> 1.2634047E-6, vultures -> 1.2634047E-6, seize -> 5.0536187E-6, girgashite -> 1.2634047E-6, gahar -> 2.5268093E-6, hebron -> 9.222855E-5, troop -> 1.6424261E-5, renewing -> 2.5268093E-6, ebed -> 7.5804282E-6, begged -> 3.7902141E-6, jeiel -> 1.3897452E-5, ethiopia -> 2.5268095E-5, rejected -> 3.6638736E-5, hezro -> 1.2634047E-6, forty -> 1.9961795E-4, lest -> 3.0321712E-4, abiah -> 5.0536187E-6, pleasantness -> 1.2634047E-6, unrighteousness -> 2.65315E-5, cast -> 6.3296576E-4, woollen -> 7.5804282E-6, rags -> 5.0536187E-6, homer -> 1.3897452E-5, parents -> 2.65315E-5, ammonites -> 2.9058308E-5, fellowhelpers -> 1.2634047E-6, ispah -> 1.2634047E-6, striketh -> 3.7902141E-6, bakemeats -> 1.2634047E-6, imna -> 1.2634047E-6, fiftieth -> 5.0536187E-6, withheldest -> 1.2634047E-6, forefathers -> 2.5268093E-6, answering -> 3.9165545E-5, relief -> 1.2634047E-6, alphaeus -> 6.3170237E-6, conveyed -> 1.2634047E-6, dangerous -> 1.2634047E-6, business -> 3.6638736E-5, kingdoms -> 7.201407E-5, black -> 2.2741286E-5, eliphelet -> 7.5804282E-6, kine -> 3.0321713E-5, rescue -> 3.7902141E-6, repenting -> 1.2634047E-6, equals -> 1.2634047E-6, ant -> 1.2634047E-6, diggedst -> 1.2634047E-6, enough -> 4.042895E-5, act -> 5.0536187E-6, little -> 3.0574395E-4, haziel -> 1.2634047E-6, madian -> 1.2634047E-6, asaiah -> 7.5804282E-6, squared -> 1.2634047E-6, horem -> 1.2634047E-6, evermore -> 3.2848522E-5, as -> 0.0044471845, chedorlaomer -> 6.3170237E-6, forest -> 4.800938E-5, nebuchadnezzar -> 7.580428E-5, cheerfully -> 1.2634047E-6, stoodest -> 3.7902141E-6, given -> 6.2917557E-4, under -> 4.9525464E-4, absent -> 1.3897452E-5, lance -> 1.2634047E-6, neesings -> 1.2634047E-6, sparingly -> 2.5268093E-6, entice -> 1.0107237E-5, zeredathah -> 1.2634047E-6, slingstones -> 1.2634047E-6, jemuel -> 2.5268093E-6, reasoned -> 1.51608565E-5, tillage -> 3.7902141E-6, enhaddah -> 1.2634047E-6, print -> 5.0536187E-6, pallu -> 5.0536187E-6, arioch -> 8.843833E-6, wist -> 1.6424261E-5, stamped -> 1.1370643E-5, selvedge -> 2.5268093E-6, ammah -> 1.2634047E-6, grayheaded -> 2.5268093E-6, liars -> 1.0107237E-5, thefts -> 3.7902141E-6, berith -> 1.2634047E-6, nest -> 1.895107E-5, spoons -> 1.51608565E-5, withereth -> 1.0107237E-5, zarah -> 2.5268093E-6, sabtecha -> 1.2634047E-6, although -> 2.0214475E-5, footsteps -> 5.0536187E-6, held -> 6.5697044E-5, flowing -> 1.51608565E-5, scorn -> 2.0214475E-5, whirlwind -> 3.4111927E-5, bore -> 3.7902141E-6, head -> 4.5987932E-4, caused -> 1.1876004E-4, colour -> 1.7687666E-5, assuredly -> 1.1370643E-5, titles -> 2.5268093E-6, samos -> 1.2634047E-6, polled -> 3.7902141E-6, swifter -> 7.5804282E-6, goats -> 1.2255026E-4, bethhoglah -> 2.5268093E-6, jahaziel -> 7.5804282E-6, schoolmaster -> 2.5268093E-6, betharabah -> 3.7902141E-6, fetcht -> 1.2634047E-6, wandered -> 1.2634047E-5, shoham -> 1.2634047E-6, staves -> 6.190683E-5, arelites -> 1.2634047E-6, abase -> 5.0536187E-6, hazor -> 2.400469E-5, stony -> 8.843833E-6, chased -> 1.6424261E-5, thirst -> 3.9165545E-5, frontlets -> 3.7902141E-6, transgressors -> 2.5268095E-5, harosheth -> 3.7902141E-6, bondage -> 4.9272785E-5, entering -> 5.8116617E-5, helm -> 1.2634047E-6, prised -> 1.2634047E-6, esteemed -> 1.3897452E-5, tabering -> 1.2634047E-6, born -> 1.9961795E-4, overflown -> 3.7902141E-6, withdrawest -> 1.2634047E-6, hen -> 3.7902141E-6, lambs -> 1.0233578E-4, rumours -> 2.5268093E-6, mibzar -> 2.5268093E-6, vanities -> 1.6424261E-5, straiteneth -> 1.2634047E-6, berachiah -> 1.2634047E-6, zif -> 2.5268093E-6, hewers -> 1.1370643E-5, shimeathites -> 1.2634047E-6, esau -> 1.2634047E-4, reserveth -> 2.5268093E-6, reaping -> 3.7902141E-6, rie -> 2.5268093E-6, garmite -> 1.2634047E-6, ebronah -> 2.5268093E-6, comforted -> 4.548257E-5, fatter -> 1.2634047E-6, philistines -> 3.209048E-4, hew -> 1.51608565E-5, denounce -> 1.2634047E-6, inscription -> 1.2634047E-6, foreknew -> 1.2634047E-6, fan -> 1.0107237E-5, rendered -> 5.0536187E-6, joahaz -> 1.2634047E-6, pineth -> 1.2634047E-6, nineteenth -> 5.0536187E-6, affected -> 2.5268093E-6, lovely -> 5.0536187E-6, grind -> 8.843833E-6, consecration -> 1.1370643E-5, ammihud -> 1.2634047E-5, denieth -> 5.0536187E-6, ramathlehi -> 1.2634047E-6, eliud -> 2.5268093E-6, misrephothmaim -> 2.5268093E-6, gibeonite -> 2.5268093E-6, jonan -> 1.2634047E-6, carnal -> 1.3897452E-5, besides -> 1.0107237E-5, miracles -> 3.4111927E-5, extinct -> 2.5268093E-6, loss -> 1.2634047E-5, zealously -> 2.5268093E-6, anon -> 2.5268093E-6, rising -> 4.9272785E-5, abiezrites -> 2.5268093E-6, spun -> 2.5268093E-6, abound -> 2.400469E-5, soever -> 2.0214475E-5, wintered -> 1.2634047E-6, consolations -> 3.7902141E-6, rewards -> 6.3170237E-6, shaulites -> 1.2634047E-6, zealous -> 1.0107237E-5, makheloth -> 2.5268093E-6, pavilion -> 5.0536187E-6, hazarsusim -> 1.2634047E-6, hindermost -> 2.5268093E-6, aunt -> 1.2634047E-6, daubed -> 8.843833E-6, failed -> 1.51608565E-5, prevailest -> 1.2634047E-6, lodgings -> 1.2634047E-6, crystal -> 6.3170237E-6, commit -> 9.4755356E-5, evening -> 7.580428E-5, sopater -> 1.2634047E-6, hungerbitten -> 1.2634047E-6, prating -> 3.7902141E-6, jashobeam -> 3.7902141E-6, hananeel -> 5.0536187E-6, troops -> 8.843833E-6, torches -> 3.7902141E-6, sinew -> 3.7902141E-6, vials -> 6.3170237E-6, foal -> 3.7902141E-6, fadeth -> 8.843833E-6, vipers -> 5.0536187E-6, plowing -> 5.0536187E-6, nehelamite -> 3.7902141E-6, emerods -> 1.0107237E-5, reason -> 8.970174E-5, marketplaces -> 1.2634047E-6, plaister -> 8.843833E-6, galilee -> 9.096514E-5, manifested -> 1.2634047E-5, jediael -> 7.5804282E-6, pursuers -> 6.3170237E-6, orderings -> 1.2634047E-6, obed -> 1.6424261E-5, healing -> 1.7687666E-5, hor -> 1.51608565E-5, albeit -> 2.5268093E-6, trusteth -> 2.1477881E-5, mortality -> 1.2634047E-6, nun -> 3.6638736E-5, discharge -> 1.2634047E-6, scorner -> 1.3897452E-5, coney -> 2.5268093E-6, shadows -> 3.7902141E-6, withersoever -> 1.2634047E-6, nephew -> 2.5268093E-6, infinite -> 3.7902141E-6, eliphaz -> 1.895107E-5, ulla -> 1.2634047E-6, mede -> 1.2634047E-6, cyrene -> 5.0536187E-6, eshtaol -> 8.843833E-6, sand -> 3.537533E-5, abolish -> 1.2634047E-6, sodden -> 7.5804282E-6, wax -> 3.0321713E-5, bruit -> 2.5268093E-6, ishiah -> 1.2634047E-6, blains -> 2.5268093E-6, religious -> 2.5268093E-6, loammi -> 1.2634047E-6, pestilences -> 2.5268093E-6, marsena -> 1.2634047E-6, permission -> 1.2634047E-6, restingplace -> 1.2634047E-6, forsookest -> 2.5268093E-6, constrain -> 1.2634047E-6, forgave -> 1.1370643E-5, furbish -> 1.2634047E-6, shetharboznai -> 5.0536187E-6, passing -> 1.6424261E-5, receipt -> 3.7902141E-6, tobiah -> 1.895107E-5, tahanites -> 1.2634047E-6, regions -> 5.0536187E-6, feared -> 9.349195E-5, assembly -> 6.190683E-5, gamul -> 1.2634047E-6, dreams -> 2.65315E-5, bravery -> 1.2634047E-6, woundeth -> 1.2634047E-6, backbiting -> 1.2634047E-6, dead -> 4.5987932E-4, withdrawn -> 7.5804282E-6, zebina -> 1.2634047E-6, quiet -> 3.9165545E-5, hypocrisies -> 1.2634047E-6, chancellor -> 3.7902141E-6, julia -> 1.2634047E-6, languishing -> 1.2634047E-6, shemaah -> 1.2634047E-6, banqueting -> 1.2634047E-6, caphthorim -> 1.2634047E-6, disannulling -> 1.2634047E-6, zohar -> 5.0536187E-6, worms -> 1.0107237E-5, refraineth -> 1.2634047E-6, joha -> 2.5268093E-6, burnings -> 3.7902141E-6, planets -> 1.2634047E-6, tahrea -> 1.2634047E-6, madai -> 2.5268093E-6, treasurest -> 1.2634047E-6, locks -> 1.895107E-5, troubled -> 8.5911524E-5, soap -> 2.5268093E-6, mibhar -> 1.2634047E-6, unrighteous -> 1.1370643E-5, gad -> 9.096514E-5, corban -> 1.2634047E-6, extended -> 2.5268093E-6, knives -> 6.3170237E-6, vanish -> 5.0536187E-6, ephrath -> 6.3170237E-6, laodicea -> 6.3170237E-6, shewest -> 6.3170237E-6, tammuz -> 1.2634047E-6, skies -> 6.3170237E-6, mine -> 8.1994967E-4, sendeth -> 1.895107E-5, lodging -> 7.5804282E-6, hopeth -> 1.2634047E-6, mice -> 5.0536187E-6, gainsay -> 1.2634047E-6, ono -> 6.3170237E-6, thongs -> 1.2634047E-6, bidkar -> 1.2634047E-6, urgent -> 2.5268093E-6, gift -> 7.4540876E-5, thickness -> 5.0536187E-6, roarings -> 1.2634047E-6, esaias -> 2.65315E-5, ordinance -> 3.790214E-5, consecrations -> 5.0536187E-6, regemmelech -> 1.2634047E-6, elihu -> 1.3897452E-5, overturn -> 5.0536187E-6, ahira -> 6.3170237E-6, aholah -> 6.3170237E-6, warreth -> 1.2634047E-6, abundance -> 8.5911524E-5, skin -> 9.7282165E-5, jahleelites -> 1.2634047E-6, pillows -> 5.0536187E-6, nurse -> 1.2634047E-5, -> 8.970174E-5, liest -> 6.3170237E-6, amiable -> 1.2634047E-6)" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 100 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val kjBibleTextPerBook = kjBible.map(s => {val r = s.split(\"\"\"\\s*\\|\\s*\"\"\"); (r.head,r.last)})\nkjBibleTextPerBook.take(2) foreach println ", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "(gen,in the beginning god created the heaven and the earth.~)\n(gen,and the earth was without form, and void; and darkness was upon the face of the deep. and the spirit of god moved upon the face of the waters.~)\nkjBibleTextPerBook: org.apache.spark.rdd.RDD[(String, String)] = MapPartitionsRDD[180] at map at <console>:48\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 101 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val lengthPerBook = kjBibleTextPerBook.mapValues(_.size).reduceByKey(_ + _).cache()\nval bibleBookLength = lengthPerBook.collectAsMap()", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "lengthPerBook: org.apache.spark.rdd.RDD[(String, Int)] = ShuffledRDD[184] at reduceByKey at <console>:52\nbibleBookLength: scala.collection.Map[String,Int] = Map(jam -> 12137, co2 -> 32004, sa1 -> 129259, rom -> 50228, sol -> 13687, gen -> 196810, th1 -> 9663, pro -> 79971, eze -> 205261, pe2 -> 8700, jo3 -> 1594, zep -> 8501, ecc -> 28365, lam -> 18084, kg2 -> 120745, mal -> 9193, tit -> 5131, hab -> 7922, gal -> 16232, num -> 175610, psa -> 223712, mic -> 16329, mar -> 79123, nah -> 6912, co1 -> 48934, ti2 -> 9190, kg1 -> 126978, jon -> 6629, joe -> 10715, jde -> 3523, col -> 10720, ch2 -> 139054, joh -> 98035, rut -> 13005, hos -> 27114, jo2 -> 1553, pe1 -> 13459, job -> 94234, mat -> 124421, luk -> 134677, exo -> 169368, hag -> 5734, dan -> 61875, est -> 30217, phi -> 11558, sa2 -> 1..." | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "Map(jam -> 12137, co2 -> 32004, sa1 -> 129259, rom -> 50228, sol -> 13687, gen -> 196810, th1 -> 9663, pro -> 79971, eze -> 205261, pe2 -> 8700, jo3 -> 1594, zep -> 8501, ecc -> 28365, lam -> 18084, kg2 -> 120745, mal -> 9193, tit -> 5131, hab -> 7922, gal -> 16232, num -> 175610, psa -> 223712, mic -> 16329, mar -> 79123, nah -> 6912, co1 -> 48934, ti2 -> 9190, kg1 -> 126978, jon -> 6629, joe -> 10715, jde -> 3523, col -> 10720, ch2 -> 139054, joh -> 98035, rut -> 13005, hos -> 27114, jo2 -> 1553, pe1 -> 13459, job -> 94234, mat -> 124421, luk -> 134677, exo -> 169368, hag -> 5734, dan -> 61875, est -> 30217, phi -> 11558, sa2 -> 106388, isa -> 193993, rev -> 62072, th2 -> 5442, neh -> 57117, deu -> 146431, ti1 -> 12697, jos -> 100130, lev -> 126860, ezr -> 40386, heb -> 37207, jer -> 223708, jdg -> 98687, amo -> 21862, zac -> 32954, jo1 -> 12754, eph -> 16282, oba -> 3579, act -> 129841, plm -> 2320, ch1 -> 110958)" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 103 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "lengthPerBook.keyBy(_._2).sortByKey(false).map(_._2).collect().toSeq", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "res78: Seq[(String, Int)] = WrappedArray((psa,223712), (jer,223708), (eze,205261), (gen,196810), (isa,193993), (num,175610), (exo,169368), (deu,146431), (ch2,139054), (luk,134677), (act,129841), (sa1,129259), (kg1,126978), (lev,126860), (mat,124421), (kg2,120745), (ch1,110958), (sa2,106388), (jos,100130), (jdg,98687), (joh,98035), (job,94234), (pro,79971), (mar,79123), (rev,62072), (dan,61875), (neh,57117), (rom,50228), (co1,48934), (ezr,40386), (heb,37207), (zac,32954), (co2,32004), (est,30217), (ecc,28365), (hos,27114), (amo,21862), (lam,18084), (mic,16329), (eph,16282), (gal,16232), (sol,13687), (pe1,13459), (rut,13005), (jo1,12754), (ti1,12697), (jam,12137), (phi,11558), (col,10720), (joe,10715), (th1,9663), (mal,9193), (ti2,9190), (pe2,8700), (zep,8501), (hab,7922), (nah,6912), (jo..." | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "<div>\n <script> \n//$('#ul812920054 li').first().addClass('active');\n//$('#tab812920054 div').first().addClass('active');\n$('#ul812920054 a').click(function(){\n $('#tab812920054 div.active').removeClass('active');\n $('#ul812920054 li.active').removeClass('active');\n var id = $(this).attr('href');\n $(id).addClass('active');\n $(this).parent().addClass('active');\n});\n </script> \n <ul class=\"nav nav-tabs\" id=\"ul812920054\"><li>\n <a href=\"#tab812920054-0\"><i class=\"fa fa-table\"/></a>\n </li><li>\n <a href=\"#tab812920054-1\"><i class=\"fa fa-pie-chart\"/></a>\n </li><li>\n <a href=\"#tab812920054-2\"><i class=\"fa fa-bar-chart\"/></a>\n </li></ul>\n\n <div class=\"tab-content\" id=\"tab812920054\"><div class=\"tab-pane\" id=\"tab812920054-0\">\n <div class=\"table-container table-responsive\">\n <table class=\"table\">\n <thead><tr><th>X </th><th>Y </th></tr>\n </thead>\n <tbody><tr><td>psa</td><td>223712</td></tr><tr><td>jer</td><td>223708</td></tr><tr><td>eze</td><td>205261</td></tr><tr><td>gen</td><td>196810</td></tr><tr><td>isa</td><td>193993</td></tr><tr><td>num</td><td>175610</td></tr><tr><td>exo</td><td>169368</td></tr><tr><td>deu</td><td>146431</td></tr><tr><td>ch2</td><td>139054</td></tr><tr><td>luk</td><td>134677</td></tr><tr><td>act</td><td>129841</td></tr><tr><td>sa1</td><td>129259</td></tr><tr><td>kg1</td><td>126978</td></tr><tr><td>lev</td><td>126860</td></tr><tr><td>mat</td><td>124421</td></tr><tr><td>kg2</td><td>120745</td></tr><tr><td>ch1</td><td>110958</td></tr><tr><td>sa2</td><td>106388</td></tr><tr><td>jos</td><td>100130</td></tr><tr><td>jdg</td><td>98687</td></tr><tr><td>joh</td><td>98035</td></tr><tr><td>job</td><td>94234</td></tr><tr><td>pro</td><td>79971</td></tr><tr><td>mar</td><td>79123</td></tr><tr><td>...</td></tr>\n </tbody>\n </table></div>\n </div><div class=\"tab-pane\" id=\"tab812920054-1\">\n <div>\n <svg id=\"pie846489578\" width=\"600px\" height=\"400px\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><script data-this=\"{"data":[{"X":"psa","Y":223712},{"X":"jer","Y":223708},{"X":"eze","Y":205261},{"X":"gen","Y":196810},{"X":"isa","Y":193993},{"X":"num","Y":175610},{"X":"exo","Y":169368},{"X":"deu","Y":146431},{"X":"ch2","Y":139054},{"X":"luk","Y":134677},{"X":"act","Y":129841},{"X":"sa1","Y":129259},{"X":"kg1","Y":126978},{"X":"lev","Y":126860},{"X":"mat","Y":124421},{"X":"kg2","Y":120745},{"X":"ch1","Y":110958},{"X":"sa2","Y":106388},{"X":"jos","Y":100130},{"X":"jdg","Y":98687},{"X":"joh","Y":98035},{"X":"job","Y":94234},{"X":"pro","Y":79971},{"X":"mar","Y":79123}]}\" type=\"text/x-scoped-javascript\">/*<![CDATA[*/req(\n['d3', 'dimple'],\nfunction (d3, dimple) {\n var svg = d3.select(\"#pie846489578\");\n var myChart = new dimple.chart(svg, data);\n myChart.setBounds(100, 30, 380, 360);\n myChart.addMeasureAxis(\"p\", \"Y\");\n myChart.addSeries(\"X\", dimple.plot.pie);\n myChart.addLegend(20, 30, 60, 350, \"left\");\n myChart.draw();\n});\n /*]]>*/</script></svg>\n </div>\n </div><div class=\"tab-pane\" id=\"tab812920054-2\">\n <div>\n <svg id=\"bar1117877093\" width=\"600px\" height=\"400px\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><script data-this=\"{"data":[{"X":"psa","Y":223712},{"X":"jer","Y":223708},{"X":"eze","Y":205261},{"X":"gen","Y":196810},{"X":"isa","Y":193993},{"X":"num","Y":175610},{"X":"exo","Y":169368},{"X":"deu","Y":146431},{"X":"ch2","Y":139054},{"X":"luk","Y":134677},{"X":"act","Y":129841},{"X":"sa1","Y":129259},{"X":"kg1","Y":126978},{"X":"lev","Y":126860},{"X":"mat","Y":124421},{"X":"kg2","Y":120745},{"X":"ch1","Y":110958},{"X":"sa2","Y":106388},{"X":"jos","Y":100130},{"X":"jdg","Y":98687},{"X":"joh","Y":98035},{"X":"job","Y":94234},{"X":"pro","Y":79971},{"X":"mar","Y":79123}]}\" type=\"text/x-scoped-javascript\">/*<![CDATA[*/ req(\n['d3', 'dimple'],\nfunction (d3, dimple) {\n var svg = d3.select(\"#bar1117877093\");\n var chart = new dimple.chart(svg, data);\n chart.setBounds(50, 20, 540, 350);\n chart.addCategoryAxis(\"x\", \"X\");\n chart.addMeasureAxis(\"y\", \"Y\");\n chart.addSeries(null, dimple.plot.bar);\n chart.draw();\n});\n /*]]>*/</script></svg>\n </div>\n </div></div>\n </div>" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 106 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val kjBibleWordsPerBook = kjBibleTextPerBook.reduceByKey(_ + \" \" + _).mapValues(_.split(\"\"\"\\W+\"\"\")).cache()\nkjBibleWordsPerBook.take(1) foreach (x => {println(x._1); x._2.take(10) foreach println}) ", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "pe1\npeter\nan\napostle\nof\njesus\nchrist\nto\nthe\nstrangers\nscattered\nkjBibleWordsPerBook: org.apache.spark.rdd.RDD[(String, Array[String])] = MapPartitionsRDD[200] at mapValues at <console>:52\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 109 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "kjBibleWordsPerBook.lookup(\"gen\").head.take(10)", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "res81: Array[String] = Array(in, the, beginning, god, created, the, heaven, and, the, earth)\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "[Ljava.lang.String;@1c8ce94a" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 110 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val invDocumentFrequencies = kjBibleWordsPerBook.map{\n case (book, bkText) => (book, bkText.groupBy(word => word).mapValues(bibleBookLength(book) / _.size.toFloat).toSeq)\n }.cache()\n//kjBibleWordsPerBook.map(bkwds => (bkwds._1.toString,bkwds._2.groupBy(word => word).mapValues(bibleBookLength(bkwds._1) / _.size.toFloat).toSeq)).cache()\ninvDocumentFrequencies.lookup(\"gen\").head.sortBy(_._2)", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "invDocumentFrequencies: org.apache.spark.rdd.RDD[(String, Seq[(String, Float)])] = MapPartitionsRDD[206] at map at <console>:58\nres84: Seq[(String, Float)] = ArrayBuffer((and,53.51006), (the,80.06916), (of,144.18315), (his,301.39355), (he,301.85583), (to,321.58496), (in,328.01666), (unto,329.1137), (that,378.48077), (i,406.63223), (said,411.7364), (him,489.57712), (my,573.7901), (a,577.1554), (for,603.7117), (was,620.85175), (it,643.1699), (with,671.7065), (me,674.00684), (thou,692.993), (is,707.94965), (thy,707.94965), (thee,734.36566), (shall,759.88416), (be,765.79767), (s,768.78906), (they,771.8039), (all,787.24), (them,826.9328), (god,844.6781), (not,863.2018), (lord,932.74884), (father,979.15424), (which,988.995), (will,1009.28204), (land,1052.4598), (jacob,1087.348), (came,1118.23..." | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "<div>\n <script> \n//$('#ul272614373 li').first().addClass('active');\n//$('#tab272614373 div').first().addClass('active');\n$('#ul272614373 a').click(function(){\n $('#tab272614373 div.active').removeClass('active');\n $('#ul272614373 li.active').removeClass('active');\n var id = $(this).attr('href');\n $(id).addClass('active');\n $(this).parent().addClass('active');\n});\n </script> \n <ul class=\"nav nav-tabs\" id=\"ul272614373\"><li>\n <a href=\"#tab272614373-0\"><i class=\"fa fa-table\"/></a>\n </li><li>\n <a href=\"#tab272614373-1\"><i class=\"fa fa-pie-chart\"/></a>\n </li><li>\n <a href=\"#tab272614373-2\"><i class=\"fa fa-bar-chart\"/></a>\n </li></ul>\n\n <div class=\"tab-content\" id=\"tab272614373\"><div class=\"tab-pane\" id=\"tab272614373-0\">\n <div class=\"table-container table-responsive\">\n <table class=\"table\">\n <thead><tr><th>X </th><th>Y </th></tr>\n </thead>\n <tbody><tr><td>and</td><td>53.51006</td></tr><tr><td>the</td><td>80.06916</td></tr><tr><td>of</td><td>144.18315</td></tr><tr><td>his</td><td>301.39355</td></tr><tr><td>he</td><td>301.85583</td></tr><tr><td>to</td><td>321.58496</td></tr><tr><td>in</td><td>328.01666</td></tr><tr><td>unto</td><td>329.1137</td></tr><tr><td>that</td><td>378.48077</td></tr><tr><td>i</td><td>406.63223</td></tr><tr><td>said</td><td>411.7364</td></tr><tr><td>him</td><td>489.57712</td></tr><tr><td>my</td><td>573.7901</td></tr><tr><td>a</td><td>577.1554</td></tr><tr><td>for</td><td>603.7117</td></tr><tr><td>was</td><td>620.85175</td></tr><tr><td>it</td><td>643.1699</td></tr><tr><td>with</td><td>671.7065</td></tr><tr><td>me</td><td>674.00684</td></tr><tr><td>thou</td><td>692.993</td></tr><tr><td>is</td><td>707.94965</td></tr><tr><td>thy</td><td>707.94965</td></tr><tr><td>thee</td><td>734.36566</td></tr><tr><td>shall</td><td>759.88416</td></tr><tr><td>...</td></tr>\n </tbody>\n </table></div>\n </div><div class=\"tab-pane\" id=\"tab272614373-1\">\n <div>\n <svg id=\"pie1548937290\" width=\"600px\" height=\"400px\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><script data-this=\"{"data":[{"X":"and","Y":53.51005935668945},{"X":"the","Y":80.06916046142578},{"X":"of","Y":144.1831512451172},{"X":"his","Y":301.3935546875},{"X":"he","Y":301.8558349609375},{"X":"to","Y":321.5849609375},{"X":"in","Y":328.01666259765625},{"X":"unto","Y":329.11370849609375},{"X":"that","Y":378.48077392578125},{"X":"i","Y":406.6322326660156},{"X":"said","Y":411.73638916015625},{"X":"him","Y":489.5771179199219},{"X":"my","Y":573.7901000976562},{"X":"a","Y":577.1553955078125},{"X":"for","Y":603.711669921875},{"X":"was","Y":620.8517456054688},{"X":"it","Y":643.169921875},{"X":"with","Y":671.7064819335938},{"X":"me","Y":674.0068359375},{"X":"thou","Y":692.9929809570312},{"X":"is","Y":707.9496459960938},{"X":"thy","Y":707.9496459960938},{"X":"thee","Y":734.3656616210938},{"X":"shall","Y":759.8841552734375}]}\" type=\"text/x-scoped-javascript\">/*<![CDATA[*/req(\n['d3', 'dimple'],\nfunction (d3, dimple) {\n var svg = d3.select(\"#pie1548937290\");\n var myChart = new dimple.chart(svg, data);\n myChart.setBounds(100, 30, 380, 360);\n myChart.addMeasureAxis(\"p\", \"Y\");\n myChart.addSeries(\"X\", dimple.plot.pie);\n myChart.addLegend(20, 30, 60, 350, \"left\");\n myChart.draw();\n});\n /*]]>*/</script></svg>\n </div>\n </div><div class=\"tab-pane\" id=\"tab272614373-2\">\n <div>\n <svg id=\"bar1119823868\" width=\"600px\" height=\"400px\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><script data-this=\"{"data":[{"X":"and","Y":53.51005935668945},{"X":"the","Y":80.06916046142578},{"X":"of","Y":144.1831512451172},{"X":"his","Y":301.3935546875},{"X":"he","Y":301.8558349609375},{"X":"to","Y":321.5849609375},{"X":"in","Y":328.01666259765625},{"X":"unto","Y":329.11370849609375},{"X":"that","Y":378.48077392578125},{"X":"i","Y":406.6322326660156},{"X":"said","Y":411.73638916015625},{"X":"him","Y":489.5771179199219},{"X":"my","Y":573.7901000976562},{"X":"a","Y":577.1553955078125},{"X":"for","Y":603.711669921875},{"X":"was","Y":620.8517456054688},{"X":"it","Y":643.169921875},{"X":"with","Y":671.7064819335938},{"X":"me","Y":674.0068359375},{"X":"thou","Y":692.9929809570312},{"X":"is","Y":707.9496459960938},{"X":"thy","Y":707.9496459960938},{"X":"thee","Y":734.3656616210938},{"X":"shall","Y":759.8841552734375}]}\" type=\"text/x-scoped-javascript\">/*<![CDATA[*/ req(\n['d3', 'dimple'],\nfunction (d3, dimple) {\n var svg = d3.select(\"#bar1119823868\");\n var chart = new dimple.chart(svg, data);\n chart.setBounds(50, 20, 540, 350);\n chart.addCategoryAxis(\"x\", \"X\");\n chart.addMeasureAxis(\"y\", \"Y\");\n chart.addSeries(null, dimple.plot.bar);\n chart.draw();\n});\n /*]]>*/</script></svg>\n </div>\n </div></div>\n </div>" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 115 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "val tfIdf = invDocumentFrequencies.mapValues(_.map(wd => (wd._1, wd._2 * bibleFrequencies(wd._1))))", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "tfIdf: org.apache.spark.rdd.RDD[(String, Seq[(String, Float)])] = MapPartitionsRDD[209] at mapValues at <console>:70\n" | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "MapPartitionsRDD[209] at mapValues at <console>:70" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 116 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "tfIdf.lookup(\"gen\").head.sortBy(_._2)", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "res85: Seq[(String, Float)] = ArrayBuffer((rouse,0.24865067), (pildash,0.24865067), (butler,0.24865067), (methusael,0.24865067), (kenizzites,0.24865067), (sabtah,0.24865067), (jidlaph,0.24865067), (ashkenaz,0.24865067), (resen,0.24865067), (ford,0.24865067), (pilled,0.24865067), (lasha,0.24865067), (longedst,0.24865067), (shinab,0.24865067), (vowedst,0.24865067), (peniel,0.24865067), (gutters,0.24865067), (tebah,0.24865067), (shepho,0.24865067), (ehi,0.24865067), (huz,0.24865067), (jehovahjireh,0.24865067), (alvah,0.24865067), (irad,0.24865067), (venison,0.24865067), (wounding,0.24865067), (shaveh,0.24865067), (allonbachuth,0.24865067), (replenish,0.24865067), (fugitive,0.24865067), (dinah,0.24865067), (sevens,0.24865067), (bera,0.24865067), (belah,0.24865067), (ashteroth,0.24865067), (..." | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "<div>\n <script> \n//$('#ul909899693 li').first().addClass('active');\n//$('#tab909899693 div').first().addClass('active');\n$('#ul909899693 a').click(function(){\n $('#tab909899693 div.active').removeClass('active');\n $('#ul909899693 li.active').removeClass('active');\n var id = $(this).attr('href');\n $(id).addClass('active');\n $(this).parent().addClass('active');\n});\n </script> \n <ul class=\"nav nav-tabs\" id=\"ul909899693\"><li>\n <a href=\"#tab909899693-0\"><i class=\"fa fa-table\"/></a>\n </li><li>\n <a href=\"#tab909899693-1\"><i class=\"fa fa-pie-chart\"/></a>\n </li><li>\n <a href=\"#tab909899693-2\"><i class=\"fa fa-bar-chart\"/></a>\n </li></ul>\n\n <div class=\"tab-content\" id=\"tab909899693\"><div class=\"tab-pane\" id=\"tab909899693-0\">\n <div class=\"table-container table-responsive\">\n <table class=\"table\">\n <thead><tr><th>X </th><th>Y </th></tr>\n </thead>\n <tbody><tr><td>rouse</td><td>0.24865067</td></tr><tr><td>pildash</td><td>0.24865067</td></tr><tr><td>butler</td><td>0.24865067</td></tr><tr><td>methusael</td><td>0.24865067</td></tr><tr><td>kenizzites</td><td>0.24865067</td></tr><tr><td>sabtah</td><td>0.24865067</td></tr><tr><td>jidlaph</td><td>0.24865067</td></tr><tr><td>ashkenaz</td><td>0.24865067</td></tr><tr><td>resen</td><td>0.24865067</td></tr><tr><td>ford</td><td>0.24865067</td></tr><tr><td>pilled</td><td>0.24865067</td></tr><tr><td>lasha</td><td>0.24865067</td></tr><tr><td>longedst</td><td>0.24865067</td></tr><tr><td>shinab</td><td>0.24865067</td></tr><tr><td>vowedst</td><td>0.24865067</td></tr><tr><td>peniel</td><td>0.24865067</td></tr><tr><td>gutters</td><td>0.24865067</td></tr><tr><td>tebah</td><td>0.24865067</td></tr><tr><td>shepho</td><td>0.24865067</td></tr><tr><td>ehi</td><td>0.24865067</td></tr><tr><td>huz</td><td>0.24865067</td></tr><tr><td>jehovahjireh</td><td>0.24865067</td></tr><tr><td>alvah</td><td>0.24865067</td></tr><tr><td>irad</td><td>0.24865067</td></tr><tr><td>...</td></tr>\n </tbody>\n </table></div>\n </div><div class=\"tab-pane\" id=\"tab909899693-1\">\n <div>\n <svg id=\"pie1329791146\" width=\"600px\" height=\"400px\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><script data-this=\"{"data":[{"X":"rouse","Y":0.2486506700515747},{"X":"pildash","Y":0.2486506700515747},{"X":"butler","Y":0.2486506700515747},{"X":"methusael","Y":0.2486506700515747},{"X":"kenizzites","Y":0.2486506700515747},{"X":"sabtah","Y":0.2486506700515747},{"X":"jidlaph","Y":0.2486506700515747},{"X":"ashkenaz","Y":0.2486506700515747},{"X":"resen","Y":0.2486506700515747},{"X":"ford","Y":0.2486506700515747},{"X":"pilled","Y":0.2486506700515747},{"X":"lasha","Y":0.2486506700515747},{"X":"longedst","Y":0.2486506700515747},{"X":"shinab","Y":0.2486506700515747},{"X":"vowedst","Y":0.2486506700515747},{"X":"peniel","Y":0.2486506700515747},{"X":"gutters","Y":0.2486506700515747},{"X":"tebah","Y":0.2486506700515747},{"X":"shepho","Y":0.2486506700515747},{"X":"ehi","Y":0.2486506700515747},{"X":"huz","Y":0.2486506700515747},{"X":"jehovahjireh","Y":0.2486506700515747},{"X":"alvah","Y":0.2486506700515747},{"X":"irad","Y":0.2486506700515747}]}\" type=\"text/x-scoped-javascript\">/*<![CDATA[*/req(\n['d3', 'dimple'],\nfunction (d3, dimple) {\n var svg = d3.select(\"#pie1329791146\");\n var myChart = new dimple.chart(svg, data);\n myChart.setBounds(100, 30, 380, 360);\n myChart.addMeasureAxis(\"p\", \"Y\");\n myChart.addSeries(\"X\", dimple.plot.pie);\n myChart.addLegend(20, 30, 60, 350, \"left\");\n myChart.draw();\n});\n /*]]>*/</script></svg>\n </div>\n </div><div class=\"tab-pane\" id=\"tab909899693-2\">\n <div>\n <svg id=\"bar1783891409\" width=\"600px\" height=\"400px\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><script data-this=\"{"data":[{"X":"rouse","Y":0.2486506700515747},{"X":"pildash","Y":0.2486506700515747},{"X":"butler","Y":0.2486506700515747},{"X":"methusael","Y":0.2486506700515747},{"X":"kenizzites","Y":0.2486506700515747},{"X":"sabtah","Y":0.2486506700515747},{"X":"jidlaph","Y":0.2486506700515747},{"X":"ashkenaz","Y":0.2486506700515747},{"X":"resen","Y":0.2486506700515747},{"X":"ford","Y":0.2486506700515747},{"X":"pilled","Y":0.2486506700515747},{"X":"lasha","Y":0.2486506700515747},{"X":"longedst","Y":0.2486506700515747},{"X":"shinab","Y":0.2486506700515747},{"X":"vowedst","Y":0.2486506700515747},{"X":"peniel","Y":0.2486506700515747},{"X":"gutters","Y":0.2486506700515747},{"X":"tebah","Y":0.2486506700515747},{"X":"shepho","Y":0.2486506700515747},{"X":"ehi","Y":0.2486506700515747},{"X":"huz","Y":0.2486506700515747},{"X":"jehovahjireh","Y":0.2486506700515747},{"X":"alvah","Y":0.2486506700515747},{"X":"irad","Y":0.2486506700515747}]}\" type=\"text/x-scoped-javascript\">/*<![CDATA[*/ req(\n['d3', 'dimple'],\nfunction (d3, dimple) {\n var svg = d3.select(\"#bar1783891409\");\n var chart = new dimple.chart(svg, data);\n chart.setBounds(50, 20, 540, 350);\n chart.addCategoryAxis(\"x\", \"X\");\n chart.addMeasureAxis(\"y\", \"Y\");\n chart.addSeries(null, dimple.plot.bar);\n chart.draw();\n});\n /*]]>*/</script></svg>\n </div>\n </div></div>\n </div>" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 117 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "tfIdf.lookup(\"gen\").head.sortBy(_._2).toSeq.reverse", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "res86: Seq[(String, Float)] = ArrayBuffer((thousand,129.29836), (like,83.17365), (judgment,73.1033), (offerings,65.89243), (saith,62.759434), (prophet,60.422115), (offer,58.68156), (war,55.946407), (side,54.951805), (sacrifice,54.20585), (saul,52.216644), (poor,50.97339), (ways,50.97339), (glory,49.978786), (having,47.989582), (book,46.746326), (fire,45.503075), (whosoever,45.254425), (commandment,44.011173), (throne,43.76252), (kingdom,42.519264), (commandments,42.519264), (battle,42.270615), (reign,41.773315), (salvation,40.778713), (cause,40.778713), (received,39.78411), (cut,39.78411), (vessels,38.292206), (righteousness,38.043552), (enter,37.04895), (desolate,36.8003), (honour,36.054348), (verily,34.811096), (half,33.816494), (priest,33.816494), (houses,33.816494), (priests,33.1534..." | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "<div>\n <script> \n//$('#ul2014494831 li').first().addClass('active');\n//$('#tab2014494831 div').first().addClass('active');\n$('#ul2014494831 a').click(function(){\n $('#tab2014494831 div.active').removeClass('active');\n $('#ul2014494831 li.active').removeClass('active');\n var id = $(this).attr('href');\n $(id).addClass('active');\n $(this).parent().addClass('active');\n});\n </script> \n <ul class=\"nav nav-tabs\" id=\"ul2014494831\"><li>\n <a href=\"#tab2014494831-0\"><i class=\"fa fa-table\"/></a>\n </li><li>\n <a href=\"#tab2014494831-1\"><i class=\"fa fa-pie-chart\"/></a>\n </li><li>\n <a href=\"#tab2014494831-2\"><i class=\"fa fa-bar-chart\"/></a>\n </li></ul>\n\n <div class=\"tab-content\" id=\"tab2014494831\"><div class=\"tab-pane\" id=\"tab2014494831-0\">\n <div class=\"table-container table-responsive\">\n <table class=\"table\">\n <thead><tr><th>X </th><th>Y </th></tr>\n </thead>\n <tbody><tr><td>thousand</td><td>129.29836</td></tr><tr><td>like</td><td>83.17365</td></tr><tr><td>judgment</td><td>73.1033</td></tr><tr><td>offerings</td><td>65.89243</td></tr><tr><td>saith</td><td>62.759434</td></tr><tr><td>prophet</td><td>60.422115</td></tr><tr><td>offer</td><td>58.68156</td></tr><tr><td>war</td><td>55.946407</td></tr><tr><td>side</td><td>54.951805</td></tr><tr><td>sacrifice</td><td>54.20585</td></tr><tr><td>saul</td><td>52.216644</td></tr><tr><td>poor</td><td>50.97339</td></tr><tr><td>ways</td><td>50.97339</td></tr><tr><td>glory</td><td>49.978786</td></tr><tr><td>having</td><td>47.989582</td></tr><tr><td>book</td><td>46.746326</td></tr><tr><td>fire</td><td>45.503075</td></tr><tr><td>whosoever</td><td>45.254425</td></tr><tr><td>commandment</td><td>44.011173</td></tr><tr><td>throne</td><td>43.76252</td></tr><tr><td>kingdom</td><td>42.519264</td></tr><tr><td>commandments</td><td>42.519264</td></tr><tr><td>battle</td><td>42.270615</td></tr><tr><td>reign</td><td>41.773315</td></tr><tr><td>...</td></tr>\n </tbody>\n </table></div>\n </div><div class=\"tab-pane\" id=\"tab2014494831-1\">\n <div>\n <svg id=\"pie1946839602\" width=\"600px\" height=\"400px\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><script data-this=\"{"data":[{"X":"thousand","Y":129.29835510253906},{"X":"like","Y":83.17365264892578},{"X":"judgment","Y":73.10330200195312},{"X":"offerings","Y":65.8924331665039},{"X":"saith","Y":62.75943374633789},{"X":"prophet","Y":60.422115325927734},{"X":"offer","Y":58.68156051635742},{"X":"war","Y":55.946407318115234},{"X":"side","Y":54.951805114746094},{"X":"sacrifice","Y":54.205848693847656},{"X":"saul","Y":52.216644287109375},{"X":"poor","Y":50.973388671875},{"X":"ways","Y":50.973388671875},{"X":"glory","Y":49.97878646850586},{"X":"having","Y":47.98958206176758},{"X":"book","Y":46.7463264465332},{"X":"fire","Y":45.503074645996094},{"X":"whosoever","Y":45.254425048828125},{"X":"commandment","Y":44.011173248291016},{"X":"throne","Y":43.76251983642578},{"X":"kingdom","Y":42.519264221191406},{"X":"commandments","Y":42.519264221191406},{"X":"battle","Y":42.27061462402344},{"X":"reign","Y":41.7733154296875}]}\" type=\"text/x-scoped-javascript\">/*<![CDATA[*/req(\n['d3', 'dimple'],\nfunction (d3, dimple) {\n var svg = d3.select(\"#pie1946839602\");\n var myChart = new dimple.chart(svg, data);\n myChart.setBounds(100, 30, 380, 360);\n myChart.addMeasureAxis(\"p\", \"Y\");\n myChart.addSeries(\"X\", dimple.plot.pie);\n myChart.addLegend(20, 30, 60, 350, \"left\");\n myChart.draw();\n});\n /*]]>*/</script></svg>\n </div>\n </div><div class=\"tab-pane\" id=\"tab2014494831-2\">\n <div>\n <svg id=\"bar2111322011\" width=\"600px\" height=\"400px\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><script data-this=\"{"data":[{"X":"thousand","Y":129.29835510253906},{"X":"like","Y":83.17365264892578},{"X":"judgment","Y":73.10330200195312},{"X":"offerings","Y":65.8924331665039},{"X":"saith","Y":62.75943374633789},{"X":"prophet","Y":60.422115325927734},{"X":"offer","Y":58.68156051635742},{"X":"war","Y":55.946407318115234},{"X":"side","Y":54.951805114746094},{"X":"sacrifice","Y":54.205848693847656},{"X":"saul","Y":52.216644287109375},{"X":"poor","Y":50.973388671875},{"X":"ways","Y":50.973388671875},{"X":"glory","Y":49.97878646850586},{"X":"having","Y":47.98958206176758},{"X":"book","Y":46.7463264465332},{"X":"fire","Y":45.503074645996094},{"X":"whosoever","Y":45.254425048828125},{"X":"commandment","Y":44.011173248291016},{"X":"throne","Y":43.76251983642578},{"X":"kingdom","Y":42.519264221191406},{"X":"commandments","Y":42.519264221191406},{"X":"battle","Y":42.27061462402344},{"X":"reign","Y":41.7733154296875}]}\" type=\"text/x-scoped-javascript\">/*<![CDATA[*/ req(\n['d3', 'dimple'],\nfunction (d3, dimple) {\n var svg = d3.select(\"#bar2111322011\");\n var chart = new dimple.chart(svg, data);\n chart.setBounds(50, 20, 540, 350);\n chart.addCategoryAxis(\"x\", \"X\");\n chart.addMeasureAxis(\"y\", \"Y\");\n chart.addSeries(null, dimple.plot.bar);\n chart.draw();\n});\n /*]]>*/</script></svg>\n </div>\n </div></div>\n </div>" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 118 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "tfIdf.lookup(\"psa\").head.sortBy(_._2).toSeq.reverse", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "res87: Seq[(String, Float)] = ArrayBuffer((two,236.56868), (priest,153.75551), (saith,118.89672), (year,104.29372), (twenty,83.0958), (you,73.96657), (philistines,71.79025), (prophet,68.68123), (prophets,67.550674), (seven,65.43088), (ark,65.00693), (father,63.706783), (cities,63.31109), (came,59.156296), (wife,57.516994), (son,56.33933), (she,55.510258), (having,54.54929), (door,53.70137), (women,51.44026), (saying,51.051632), (elders,50.592346), (body,49.461792), (left,49.17915), (arose,48.89651), (reign,47.48332), (here,45.787487), (received,45.22221), (forty,44.65693), (border,44.65693), (other,43.714798), (these,43.279068), (samuel,40.134712), (brethren,39.85207), (money,39.56943), (pharaoh,38.580196), (half,38.438877), (witness,38.15624), (brother,37.873596), (isaac,37.308323), (s..." | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "<div>\n <script> \n//$('#ul1966961192 li').first().addClass('active');\n//$('#tab1966961192 div').first().addClass('active');\n$('#ul1966961192 a').click(function(){\n $('#tab1966961192 div.active').removeClass('active');\n $('#ul1966961192 li.active').removeClass('active');\n var id = $(this).attr('href');\n $(id).addClass('active');\n $(this).parent().addClass('active');\n});\n </script> \n <ul class=\"nav nav-tabs\" id=\"ul1966961192\"><li>\n <a href=\"#tab1966961192-0\"><i class=\"fa fa-table\"/></a>\n </li><li>\n <a href=\"#tab1966961192-1\"><i class=\"fa fa-pie-chart\"/></a>\n </li><li>\n <a href=\"#tab1966961192-2\"><i class=\"fa fa-bar-chart\"/></a>\n </li></ul>\n\n <div class=\"tab-content\" id=\"tab1966961192\"><div class=\"tab-pane\" id=\"tab1966961192-0\">\n <div class=\"table-container table-responsive\">\n <table class=\"table\">\n <thead><tr><th>X </th><th>Y </th></tr>\n </thead>\n <tbody><tr><td>two</td><td>236.56868</td></tr><tr><td>priest</td><td>153.75551</td></tr><tr><td>saith</td><td>118.89672</td></tr><tr><td>year</td><td>104.29372</td></tr><tr><td>twenty</td><td>83.0958</td></tr><tr><td>you</td><td>73.96657</td></tr><tr><td>philistines</td><td>71.79025</td></tr><tr><td>prophet</td><td>68.68123</td></tr><tr><td>prophets</td><td>67.550674</td></tr><tr><td>seven</td><td>65.43088</td></tr><tr><td>ark</td><td>65.00693</td></tr><tr><td>father</td><td>63.706783</td></tr><tr><td>cities</td><td>63.31109</td></tr><tr><td>came</td><td>59.156296</td></tr><tr><td>wife</td><td>57.516994</td></tr><tr><td>son</td><td>56.33933</td></tr><tr><td>she</td><td>55.510258</td></tr><tr><td>having</td><td>54.54929</td></tr><tr><td>door</td><td>53.70137</td></tr><tr><td>women</td><td>51.44026</td></tr><tr><td>saying</td><td>51.051632</td></tr><tr><td>elders</td><td>50.592346</td></tr><tr><td>body</td><td>49.461792</td></tr><tr><td>left</td><td>49.17915</td></tr><tr><td>...</td></tr>\n </tbody>\n </table></div>\n </div><div class=\"tab-pane\" id=\"tab1966961192-1\">\n <div>\n <svg id=\"pie11398410\" width=\"600px\" height=\"400px\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><script data-this=\"{"data":[{"X":"two","Y":236.5686798095703},{"X":"priest","Y":153.75550842285156},{"X":"saith","Y":118.89672088623047},{"X":"year","Y":104.29371643066406},{"X":"twenty","Y":83.0958023071289},{"X":"you","Y":73.96656799316406},{"X":"philistines","Y":71.79025268554688},{"X":"prophet","Y":68.68122863769531},{"X":"prophets","Y":67.55067443847656},{"X":"seven","Y":65.43087768554688},{"X":"ark","Y":65.00692749023438},{"X":"father","Y":63.706783294677734},{"X":"cities","Y":63.31108856201172},{"X":"came","Y":59.15629577636719},{"X":"wife","Y":57.51699447631836},{"X":"son","Y":56.33932876586914},{"X":"she","Y":55.510257720947266},{"X":"having","Y":54.54928970336914},{"X":"door","Y":53.70137023925781},{"X":"women","Y":51.44026184082031},{"X":"saying","Y":51.051631927490234},{"X":"elders","Y":50.59234619140625},{"X":"body","Y":49.4617919921875},{"X":"left","Y":49.17914962768555}]}\" type=\"text/x-scoped-javascript\">/*<![CDATA[*/req(\n['d3', 'dimple'],\nfunction (d3, dimple) {\n var svg = d3.select(\"#pie11398410\");\n var myChart = new dimple.chart(svg, data);\n myChart.setBounds(100, 30, 380, 360);\n myChart.addMeasureAxis(\"p\", \"Y\");\n myChart.addSeries(\"X\", dimple.plot.pie);\n myChart.addLegend(20, 30, 60, 350, \"left\");\n myChart.draw();\n});\n /*]]>*/</script></svg>\n </div>\n </div><div class=\"tab-pane\" id=\"tab1966961192-2\">\n <div>\n <svg id=\"bar833818598\" width=\"600px\" height=\"400px\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><script data-this=\"{"data":[{"X":"two","Y":236.5686798095703},{"X":"priest","Y":153.75550842285156},{"X":"saith","Y":118.89672088623047},{"X":"year","Y":104.29371643066406},{"X":"twenty","Y":83.0958023071289},{"X":"you","Y":73.96656799316406},{"X":"philistines","Y":71.79025268554688},{"X":"prophet","Y":68.68122863769531},{"X":"prophets","Y":67.55067443847656},{"X":"seven","Y":65.43087768554688},{"X":"ark","Y":65.00692749023438},{"X":"father","Y":63.706783294677734},{"X":"cities","Y":63.31108856201172},{"X":"came","Y":59.15629577636719},{"X":"wife","Y":57.51699447631836},{"X":"son","Y":56.33932876586914},{"X":"she","Y":55.510257720947266},{"X":"having","Y":54.54928970336914},{"X":"door","Y":53.70137023925781},{"X":"women","Y":51.44026184082031},{"X":"saying","Y":51.051631927490234},{"X":"elders","Y":50.59234619140625},{"X":"body","Y":49.4617919921875},{"X":"left","Y":49.17914962768555}]}\" type=\"text/x-scoped-javascript\">/*<![CDATA[*/ req(\n['d3', 'dimple'],\nfunction (d3, dimple) {\n var svg = d3.select(\"#bar833818598\");\n var chart = new dimple.chart(svg, data);\n chart.setBounds(50, 20, 540, 350);\n chart.addCategoryAxis(\"x\", \"X\");\n chart.addMeasureAxis(\"y\", \"Y\");\n chart.addSeries(null, dimple.plot.bar);\n chart.draw();\n});\n /*]]>*/</script></svg>\n </div>\n </div></div>\n </div>" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 119 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "tfIdf.lookup(\"co2\").head.sortBy(_._2).toSeq.reverse", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "res88: Seq[(String, Float)] = ArrayBuffer((king,102.70237), (son,96.71814), (people,86.65007), (go,60.327534), (israel,52.05878), (thee,51.580315), (sons,44.234802), (o,43.062218), (said,40.423897), (brought,34.894547), (two,33.84326), (pass,33.560223), (hand,29.638126), (bring,29.314653), (place,28.950748), (went,28.303804), (house,27.279476), (way,26.848179), (about,25.55429), (see,24.139101), (spake,23.73476), (against,22.467829), (words,22.076967), (years,21.793928), (off,20.50004), (three,19.610493), (than,19.489191), (servants,19.408321), (ever,19.246586), (gave,18.801811), (soul,18.559208), (put,18.41769), (commanded,17.912264), (city,17.548359), (they,17.543602), (shall,17.295206), (saith,17.00924), (work,16.982283), (came,16.925674), (high,16.820545), (these,16.510551), (his,16..." | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "<div>\n <script> \n//$('#ul263879610 li').first().addClass('active');\n//$('#tab263879610 div').first().addClass('active');\n$('#ul263879610 a').click(function(){\n $('#tab263879610 div.active').removeClass('active');\n $('#ul263879610 li.active').removeClass('active');\n var id = $(this).attr('href');\n $(id).addClass('active');\n $(this).parent().addClass('active');\n});\n </script> \n <ul class=\"nav nav-tabs\" id=\"ul263879610\"><li>\n <a href=\"#tab263879610-0\"><i class=\"fa fa-table\"/></a>\n </li><li>\n <a href=\"#tab263879610-1\"><i class=\"fa fa-pie-chart\"/></a>\n </li><li>\n <a href=\"#tab263879610-2\"><i class=\"fa fa-bar-chart\"/></a>\n </li></ul>\n\n <div class=\"tab-content\" id=\"tab263879610\"><div class=\"tab-pane\" id=\"tab263879610-0\">\n <div class=\"table-container table-responsive\">\n <table class=\"table\">\n <thead><tr><th>X </th><th>Y </th></tr>\n </thead>\n <tbody><tr><td>king</td><td>102.70237</td></tr><tr><td>son</td><td>96.71814</td></tr><tr><td>people</td><td>86.65007</td></tr><tr><td>go</td><td>60.327534</td></tr><tr><td>israel</td><td>52.05878</td></tr><tr><td>thee</td><td>51.580315</td></tr><tr><td>sons</td><td>44.234802</td></tr><tr><td>o</td><td>43.062218</td></tr><tr><td>said</td><td>40.423897</td></tr><tr><td>brought</td><td>34.894547</td></tr><tr><td>two</td><td>33.84326</td></tr><tr><td>pass</td><td>33.560223</td></tr><tr><td>hand</td><td>29.638126</td></tr><tr><td>bring</td><td>29.314653</td></tr><tr><td>place</td><td>28.950748</td></tr><tr><td>went</td><td>28.303804</td></tr><tr><td>house</td><td>27.279476</td></tr><tr><td>way</td><td>26.848179</td></tr><tr><td>about</td><td>25.55429</td></tr><tr><td>see</td><td>24.139101</td></tr><tr><td>spake</td><td>23.73476</td></tr><tr><td>against</td><td>22.467829</td></tr><tr><td>words</td><td>22.076967</td></tr><tr><td>years</td><td>21.793928</td></tr><tr><td>...</td></tr>\n </tbody>\n </table></div>\n </div><div class=\"tab-pane\" id=\"tab263879610-1\">\n <div>\n <svg id=\"pie780532285\" width=\"600px\" height=\"400px\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><script data-this=\"{"data":[{"X":"king","Y":102.7023696899414},{"X":"son","Y":96.7181396484375},{"X":"people","Y":86.65007019042969},{"X":"go","Y":60.32753372192383},{"X":"israel","Y":52.058780670166016},{"X":"thee","Y":51.58031463623047},{"X":"sons","Y":44.23480224609375},{"X":"o","Y":43.062217712402344},{"X":"said","Y":40.42389678955078},{"X":"brought","Y":34.89454650878906},{"X":"two","Y":33.84326171875},{"X":"pass","Y":33.56022262573242},{"X":"hand","Y":29.638126373291016},{"X":"bring","Y":29.314653396606445},{"X":"place","Y":28.950748443603516},{"X":"went","Y":28.303804397583008},{"X":"house","Y":27.279476165771484},{"X":"way","Y":26.84817886352539},{"X":"about","Y":25.554290771484375},{"X":"see","Y":24.139101028442383},{"X":"spake","Y":23.734760284423828},{"X":"against","Y":22.46782875061035},{"X":"words","Y":22.076967239379883},{"X":"years","Y":21.793928146362305}]}\" type=\"text/x-scoped-javascript\">/*<![CDATA[*/req(\n['d3', 'dimple'],\nfunction (d3, dimple) {\n var svg = d3.select(\"#pie780532285\");\n var myChart = new dimple.chart(svg, data);\n myChart.setBounds(100, 30, 380, 360);\n myChart.addMeasureAxis(\"p\", \"Y\");\n myChart.addSeries(\"X\", dimple.plot.pie);\n myChart.addLegend(20, 30, 60, 350, \"left\");\n myChart.draw();\n});\n /*]]>*/</script></svg>\n </div>\n </div><div class=\"tab-pane\" id=\"tab263879610-2\">\n <div>\n <svg id=\"bar488368427\" width=\"600px\" height=\"400px\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><script data-this=\"{"data":[{"X":"king","Y":102.7023696899414},{"X":"son","Y":96.7181396484375},{"X":"people","Y":86.65007019042969},{"X":"go","Y":60.32753372192383},{"X":"israel","Y":52.058780670166016},{"X":"thee","Y":51.58031463623047},{"X":"sons","Y":44.23480224609375},{"X":"o","Y":43.062217712402344},{"X":"said","Y":40.42389678955078},{"X":"brought","Y":34.89454650878906},{"X":"two","Y":33.84326171875},{"X":"pass","Y":33.56022262573242},{"X":"hand","Y":29.638126373291016},{"X":"bring","Y":29.314653396606445},{"X":"place","Y":28.950748443603516},{"X":"went","Y":28.303804397583008},{"X":"house","Y":27.279476165771484},{"X":"way","Y":26.84817886352539},{"X":"about","Y":25.554290771484375},{"X":"see","Y":24.139101028442383},{"X":"spake","Y":23.734760284423828},{"X":"against","Y":22.46782875061035},{"X":"words","Y":22.076967239379883},{"X":"years","Y":21.793928146362305}]}\" type=\"text/x-scoped-javascript\">/*<![CDATA[*/ req(\n['d3', 'dimple'],\nfunction (d3, dimple) {\n var svg = d3.select(\"#bar488368427\");\n var chart = new dimple.chart(svg, data);\n chart.setBounds(50, 20, 540, 350);\n chart.addCategoryAxis(\"x\", \"X\");\n chart.addMeasureAxis(\"y\", \"Y\");\n chart.addSeries(null, dimple.plot.bar);\n chart.draw();\n});\n /*]]>*/</script></svg>\n </div>\n </div></div>\n </div>" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 120 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "tfIdf.lookup(\"act\").head.sortBy(_._2).toSeq.reverse", | |
"outputs" : [ { | |
"name" : "stdout", | |
"output_type" : "stream", | |
"text" : "res89: Seq[(String, Float)] = ArrayBuffer((thereof,148.62181), (offering,118.76622), (servant,81.69279), (ever,78.08386), (sin,73.32665), (altar,62.007774), (congregation,59.71119), (aaron,57.414608), (daughter,53.641647), (end,50.360813), (babylon,48.228268), (sons,44.865414), (offerings,43.47106), (destroy,42.81489), (strong,41.830643), (tribe,39.534058), (wine,37.89364), (places,35.268974), (sword,34.776848), (fruit,34.120678), (shalt,33.136433), (wrath,32.480263), (rejoice,31.824097), (host,31.496012), (sheep,30.839846), (within,30.511763), (bare,30.347721), (year,30.2657), (cry,29.691555), (master,29.691555), (river,29.36347), (wicked,28.215178), (commandments,28.051136), (son,28.027702), (built,27.723051), (kings,27.394968), (benjamin,27.230928), (mine,26.61577), (o,24.957779), (c..." | |
}, { | |
"metadata" : { }, | |
"data" : { | |
"text/html" : "<div>\n <script> \n//$('#ul72011214 li').first().addClass('active');\n//$('#tab72011214 div').first().addClass('active');\n$('#ul72011214 a').click(function(){\n $('#tab72011214 div.active').removeClass('active');\n $('#ul72011214 li.active').removeClass('active');\n var id = $(this).attr('href');\n $(id).addClass('active');\n $(this).parent().addClass('active');\n});\n </script> \n <ul class=\"nav nav-tabs\" id=\"ul72011214\"><li>\n <a href=\"#tab72011214-0\"><i class=\"fa fa-table\"/></a>\n </li><li>\n <a href=\"#tab72011214-1\"><i class=\"fa fa-pie-chart\"/></a>\n </li><li>\n <a href=\"#tab72011214-2\"><i class=\"fa fa-bar-chart\"/></a>\n </li></ul>\n\n <div class=\"tab-content\" id=\"tab72011214\"><div class=\"tab-pane\" id=\"tab72011214-0\">\n <div class=\"table-container table-responsive\">\n <table class=\"table\">\n <thead><tr><th>X </th><th>Y </th></tr>\n </thead>\n <tbody><tr><td>thereof</td><td>148.62181</td></tr><tr><td>offering</td><td>118.76622</td></tr><tr><td>servant</td><td>81.69279</td></tr><tr><td>ever</td><td>78.08386</td></tr><tr><td>sin</td><td>73.32665</td></tr><tr><td>altar</td><td>62.007774</td></tr><tr><td>congregation</td><td>59.71119</td></tr><tr><td>aaron</td><td>57.414608</td></tr><tr><td>daughter</td><td>53.641647</td></tr><tr><td>end</td><td>50.360813</td></tr><tr><td>babylon</td><td>48.228268</td></tr><tr><td>sons</td><td>44.865414</td></tr><tr><td>offerings</td><td>43.47106</td></tr><tr><td>destroy</td><td>42.81489</td></tr><tr><td>strong</td><td>41.830643</td></tr><tr><td>tribe</td><td>39.534058</td></tr><tr><td>wine</td><td>37.89364</td></tr><tr><td>places</td><td>35.268974</td></tr><tr><td>sword</td><td>34.776848</td></tr><tr><td>fruit</td><td>34.120678</td></tr><tr><td>shalt</td><td>33.136433</td></tr><tr><td>wrath</td><td>32.480263</td></tr><tr><td>rejoice</td><td>31.824097</td></tr><tr><td>host</td><td>31.496012</td></tr><tr><td>...</td></tr>\n </tbody>\n </table></div>\n </div><div class=\"tab-pane\" id=\"tab72011214-1\">\n <div>\n <svg id=\"pie1895386277\" width=\"600px\" height=\"400px\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><script data-this=\"{"data":[{"X":"thereof","Y":148.62181091308594},{"X":"offering","Y":118.76622009277344},{"X":"servant","Y":81.69278717041016},{"X":"ever","Y":78.0838623046875},{"X":"sin","Y":73.32665252685547},{"X":"altar","Y":62.007774353027344},{"X":"congregation","Y":59.71118927001953},{"X":"aaron","Y":57.414608001708984},{"X":"daughter","Y":53.64164733886719},{"X":"end","Y":50.36081314086914},{"X":"babylon","Y":48.228267669677734},{"X":"sons","Y":44.865413665771484},{"X":"offerings","Y":43.47106170654297},{"X":"destroy","Y":42.81489181518555},{"X":"strong","Y":41.83064270019531},{"X":"tribe","Y":39.5340576171875},{"X":"wine","Y":37.893638610839844},{"X":"places","Y":35.26897430419922},{"X":"sword","Y":34.77684783935547},{"X":"fruit","Y":34.12067794799805},{"X":"shalt","Y":33.13643264770508},{"X":"wrath","Y":32.480262756347656},{"X":"rejoice","Y":31.8240966796875},{"X":"host","Y":31.49601173400879}]}\" type=\"text/x-scoped-javascript\">/*<![CDATA[*/req(\n['d3', 'dimple'],\nfunction (d3, dimple) {\n var svg = d3.select(\"#pie1895386277\");\n var myChart = new dimple.chart(svg, data);\n myChart.setBounds(100, 30, 380, 360);\n myChart.addMeasureAxis(\"p\", \"Y\");\n myChart.addSeries(\"X\", dimple.plot.pie);\n myChart.addLegend(20, 30, 60, 350, \"left\");\n myChart.draw();\n});\n /*]]>*/</script></svg>\n </div>\n </div><div class=\"tab-pane\" id=\"tab72011214-2\">\n <div>\n <svg id=\"bar948358029\" width=\"600px\" height=\"400px\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\"><script data-this=\"{"data":[{"X":"thereof","Y":148.62181091308594},{"X":"offering","Y":118.76622009277344},{"X":"servant","Y":81.69278717041016},{"X":"ever","Y":78.0838623046875},{"X":"sin","Y":73.32665252685547},{"X":"altar","Y":62.007774353027344},{"X":"congregation","Y":59.71118927001953},{"X":"aaron","Y":57.414608001708984},{"X":"daughter","Y":53.64164733886719},{"X":"end","Y":50.36081314086914},{"X":"babylon","Y":48.228267669677734},{"X":"sons","Y":44.865413665771484},{"X":"offerings","Y":43.47106170654297},{"X":"destroy","Y":42.81489181518555},{"X":"strong","Y":41.83064270019531},{"X":"tribe","Y":39.5340576171875},{"X":"wine","Y":37.893638610839844},{"X":"places","Y":35.26897430419922},{"X":"sword","Y":34.77684783935547},{"X":"fruit","Y":34.12067794799805},{"X":"shalt","Y":33.13643264770508},{"X":"wrath","Y":32.480262756347656},{"X":"rejoice","Y":31.8240966796875},{"X":"host","Y":31.49601173400879}]}\" type=\"text/x-scoped-javascript\">/*<![CDATA[*/ req(\n['d3', 'dimple'],\nfunction (d3, dimple) {\n var svg = d3.select(\"#bar948358029\");\n var chart = new dimple.chart(svg, data);\n chart.setBounds(50, 20, 540, 350);\n chart.addCategoryAxis(\"x\", \"X\");\n chart.addMeasureAxis(\"y\", \"Y\");\n chart.addSeries(null, dimple.plot.bar);\n chart.draw();\n});\n /*]]>*/</script></svg>\n </div>\n </div></div>\n </div>" | |
}, | |
"output_type" : "execute_result", | |
"execution_count" : 121 | |
} ] | |
}, { | |
"metadata" : { | |
"trusted" : true, | |
"collapsed" : false | |
}, | |
"cell_type" : "code", | |
"source" : "", | |
"outputs" : [ ] | |
} ], | |
"nbformat" : 4 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment